
.tech-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
}

.hero-content-tech {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.hero-text-tech {
    flex: 1;
    max-width: 600px;
}

.hero-visual-tech {
    flex: 1;
    position: relative;
    min-height: 500px;
}

.service-badge-tech {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(251, 118, 47, 0.15);
    color: #FF6A12FF;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(251, 118, 47, 0.3);
}

.hero-title-tech {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ffffff 0%, #ffd6b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.title-gradient {
    background: linear-gradient(90deg, #FF6A12FF 0%, #ff9a5a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}


@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero-subtitle-tech {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    color: rgba(0, 0, 0, 0.73);
    line-height: 1.4;
}

.hero-description-tech {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(0, 0, 0, 0.7);
}

.hero-cta-tech {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-tech {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-tech {
    background: linear-gradient(90deg, #FF6A12FF 0%, #ff873d 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(251, 118, 47, 0.3);
}

.btn-primary-tech:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(251, 118, 47, 0.4);
}

.btn-outline-tech {
    background: transparent;
    color: black;
    border: 1px solid rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.btn-outline-tech:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.3);
}

.hero-stats-tech {
    display: flex;
    gap: 30px;
}

.stat-item-tech {
    position: relative;
    padding-right: 30px;
}

.stat-item-tech:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.2), transparent);
}

.stat-number-tech {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(90deg, #FF6A12FF 0%, #ff873d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.stat-label-tech {
    font-size: 14px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.6);
}

/* Tech Dashboard Visual */
.tech-dashboard-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1000px;
}

.tech-dashboard {
    position: relative;
    width: 100%;
    height: 400px;
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotateX(5deg) rotateY(-5deg); }
    50% { transform: translateY(-20px) rotateX(7deg) rotateY(-7deg); }
}

.dashboard-screen {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.dashboard-frame {
    position: absolute;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    top: -10px;
    left: -10px;
    background: linear-gradient(135deg, rgba(251, 118, 47, 0.3) 0%, rgba(251, 118, 47, 0.1) 100%);
    border-radius: 20px;
    z-index: -1;
    backdrop-filter: blur(5px);
}

.screen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 15px;
    height: 100%;
}

.grid-item {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.data-visualization {
    width: 100%;
    height: 100%;
    position: relative;
}

.line-chart {
    background: linear-gradient(to bottom, transparent 70%, rgba(251, 118, 47, 0.1) 100%);
}

.line-chart::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
            linear-gradient(to right, rgba(251, 118, 47, 0.3) 1px, transparent 1px) 0 0 / 20px 20px,
            linear-gradient(to bottom, rgba(251, 118, 47, 0.3) 1px, transparent 1px) 0 0 / 20px 20px;
}

.line-chart::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background:
            linear-gradient(90deg, transparent, rgba(251, 118, 47, 0.5), transparent),
            url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 100"><path d="M0,80 Q50,20 100,50 T200,20" fill="none" stroke="%23FF6A12FF" stroke-width="2"/></svg>') center bottom / contain no-repeat;
}

.bar-chart {
    background:
            linear-gradient(to right, transparent 70%, rgba(251, 118, 47, 0.1) 100%);
}

.bar-chart::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 100"><rect x="20" y="60" width="30" height="40" fill="%23FF6A12FF"/><rect x="70" y="30" width="30" height="70" fill="%23ff873d"/><rect x="120" y="50" width="30" height="50" fill="%23FF6A12FF"/></svg>') center bottom / 80% 80% no-repeat;
}

.pie-chart {
    background:
            linear-gradient(to right, transparent 70%, rgba(251, 118, 47, 0.1) 100%);
}

.pie-chart::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background:
            conic-gradient(
                    #FF6A12FF 0% 40%,
                    #ff873d 40% 70%,
                    rgba(251, 118, 47, 0.5) 70% 100%
            );
    border-radius: 50%;
}

.funnel-chart {
    background:
            linear-gradient(to right, transparent 70%, rgba(251, 118, 47, 0.1) 100%);
}

.funnel-chart::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background:
            url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 100"><path d="M20,10 L180,10 L150,40 L50,40 Z" fill="%23ff873d"/><path d="M50,45 L150,45 L120,75 L80,75 Z" fill="%23FF6A12FF"/><path d="M80,80 L120,80 L100,95 Z" fill="rgba(251, 118, 47, 0.5)"/></svg>') center center / contain no-repeat;
}

.metric-display {
    text-align: center;
}

.metric-value {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(90deg, #FF6A12FF 0%, #ff873d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.metric-label {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tech-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    z-index: -1;
}

.orb-1 {
    width: 200px;
    height: 200px;
    background: #FF6A12FF;
    top: -50px;
    right: -50px;
    animation: float-orb 8s ease-in-out infinite;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: #ff873d;
    bottom: -100px;
    left: -100px;
    animation: float-orb 10s ease-in-out infinite 2s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    background: #00c6ff;
    top: 50%;
    right: 20%;
    animation: float-orb 7s ease-in-out infinite 1s;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(20px, 20px); }
    50% { transform: translate(0, 30px); }
    75% { transform: translate(-20px, 10px); }
}

/* Scroll Prompt */
.scroll-prompt-tech {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.mouse-tech {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    position: relative;
    margin-bottom: 10px;
}

.wheel-tech {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 2px;
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% { top: 5px; opacity: 1; }
    50% { top: 15px; opacity: 0.5; }
    100% { top: 5px; opacity: 1; }
}

.arrows-tech {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.arrows-tech span {
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid rgba(0, 0, 0, 0.6);
    border-bottom: 2px solid rgba(0, 0, 0, 0.6);
    transform: rotate(45deg);
    margin: -3px 0;
    animation: scroll-arrows 2s infinite;
}

.arrows-tech span:nth-child(1) { animation-delay: 0.1s; }
.arrows-tech span:nth-child(2) { animation-delay: 0.2s; }
.arrows-tech span:nth-child(3) { animation-delay: 0.3s; }

@keyframes scroll-arrows {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .hero-title-tech {
        font-size: 60px;
    }

    .hero-content-tech {
        gap: 50px;
    }
}

@media (max-width: 992px) {
    .hero-content-tech {
        flex-direction: column;
    }

    .hero-text-tech {
        max-width: 100%;
        text-align: center;
    }

    .hero-cta-tech {
        justify-content: center;
    }

    .hero-stats-tech {
        justify-content: center;
    }

    .hero-visual-tech {
        width: 100%;
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-title-tech {
        font-size: 48px;
    }

    .hero-subtitle-tech {
        font-size: 20px;
    }

    .hero-description-tech {
        font-size: 16px;
    }

    .hero-cta-tech {
        flex-direction: column;
        gap: 15px;
    }

    .hero-stats-tech {
        flex-direction: column;
        gap: 20px;
    }

    .stat-item-tech:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title-tech {
        font-size: 36px;
    }

    .hero-subtitle-tech {
        font-size: 18px;
    }

    .tech-dashboard {
        height: 300px;
    }
}


/* Service Overview */
.service-overview {
    padding: 100px 0;
    background-color: #f8fafc;
}


.overview-content {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.overview-text {
    flex: 1;
}

.overview-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #4a5568;
}



.overview-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.feature-item {
    background: rgba(251, 118, 47, 0.1);
    color: #FF6A12FF;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.overview-image {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}



.overview-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.overview-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overview-image:hover .image-overlay {
    opacity: 1;
}

.image-overlay i {
    font-size: 48px;
    margin-bottom: 10px;
}

.image-overlay span {
    font-size: 18px;
    font-weight: 600;
}

/* Process Section */
.service-process {
    padding: 100px 0;
    background-color: white;
}


.process-steps {
    margin-top: 60px;
}

.process-step {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
    align-items: center;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    font-size: 120px;
    font-weight: 800;
    color: rgba(251, 118, 47, 0.1);
    line-height: 1;
    min-width: 120px;
}


.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2d3748;
}


.step-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #4a5568;
}


.step-features {
    list-style: none;
    padding: 0;
}

.step-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #4a5568;
}


.step-features i {
    color: #FF6A12FF;
    margin-right: 10px;
}

.step-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}


.step-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.step-image:hover img {
    transform: scale(1.05);
}

/* Benefits Section */
.service-benefits {
    padding: 100px 0;
    background-color: #f8fafc;
}



.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}


.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(251, 118, 47, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #FF6A12FF;
    font-size: 32px;
}


.benefit-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2d3748;
}



.benefit-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 20px;
}


.benefit-stats {
    margin-top: 20px;
}

.stat {
    display: inline-block;
    margin: 0 10px;
}

.number {
    font-size: 28px;
    font-weight: 700;
    color: #FF6A12FF;
    display: block;
}

.label {
    font-size: 14px;
    color: #718096;
}

/* Case Studies */
.service-cases {
    padding: 100px 0;
    background-color: white;
}


.cases-slider {
    margin-top: 50px;
    padding-bottom: 50px;
}

.case-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.case-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-card:hover .case-image img {
    transform: scale(1.1);
}

.case-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(251, 118, 47, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.case-content {
    padding: 30px;
}

.case-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2d3748;
}


.case-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 20px;
}

.case-results {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.result {
    text-align: center;
}

.number {
    font-size: 24px;
    font-weight: 700;
    color: #FF6A12FF;
}

.label {
    font-size: 14px;
    color: #718096;
}


.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #cbd5e0;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #FF6A12FF;
}


/* CTA Section */
.service-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #FF6A12FF 0%, #ff873d 100%);
    color: white;
}

.cta-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.cta-content {
    flex: 1;
}

.cta-subtitle {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-image img {
    width: 100%;
    height: auto;
    display: block;
}

.btn-primary {
    background: white;
    color: #FF6A12FF;
    border: none;
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #FF6A12FF;
}

/* Testimonials */
.service-testimonials {
    padding: 100px 0;
    background-color: #f8fafc;
}

.testimonials-slider {
    margin-top: 50px;
    padding-bottom: 50px;
}

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}


.testimonial-rating {
    color: #f6b01e;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 30px;
    color: #4a5568;
}


.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #2d3748;
}

.author-info span {
    font-size: 14px;
    color: #718096;
}

/* Final CTA */
.service-final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    text-align: center;
    color: white;
}

.final-cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Contact Form */
.service-contact {
    padding: 100px 0;
    background-color: white;
}


.contact-container {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2d3748;
}

.contact-info p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #4a5568;
}


.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(251, 118, 47, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF6A12FF;
    font-size: 24px;
}



.contact-details h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2d3748;
}



.contact-details a, .contact-details address {
    font-size: 16px;
    color: #4a5568;
    text-decoration: none;
    transition: color 0.3s ease;
    font-style: normal;
}


.contact-details a:hover {
    color: #FF6A12FF;
}

.contact-form {
    flex: 1;
    background: #f8fafc;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}



.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}



.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6A12FF;
    box-shadow: 0 0 0 3px rgba(251, 118, 47, 0.2);
}



.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-content, .overview-content, .cta-container, .contact-container {
        gap: 40px;
    }

    .process-step {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .hero-content, .overview-content, .cta-container, .contact-container {
        flex-direction: column;
    }

    .hero-image, .overview-image, .cta-image {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }

    .process-step {
        flex-direction: column;
        gap: 20px;
    }

    .step-image {
        order: -1;
    }

    .step-number {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content h2 {
        font-size: 24px;
    }

    .hero-cta, .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 15px;
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .stat-item {
        width: 100%;
    }

    .service-overview, .service-process, .service-benefits,
    .service-cases, .service-cta, .service-testimonials,
    .service-final-cta, .service-contact {
        padding: 70px 0;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p, .overview-text p {
        font-size: 16px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .case-content, .testimonial-card {
        padding: 25px;
    }

    .contact-form {
        padding: 25px;
    }
}


.service-tools {
    padding: 100px 0;
    color: #1f2937;
    position: relative;
}

.service-tools .section-header {
    margin-bottom: 60px;
}



.service-tools .tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.tool-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f97316, #fb923c);
    opacity: 0.08;
    transition: all 0.5s ease;
}

.tool-card:hover::before {
    left: 0;
}

.tool-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.icon-wrap {
    background: linear-gradient(135deg, #f97316, #fb923c);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #fff;
    font-size: 28px;
    transition: all 0.3s ease;
}

.tool-card:hover .icon-wrap {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.5);
}

.tool-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #FF6A12FF;
    margin-bottom: 15px;
}

.tool-card p {
    font-size: 1rem;
    color: #374151;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .service-tools {
        padding: 70px 0;
    }

    .tool-card {
        padding: 30px 20px;
    }

    .tool-card h3 {
        font-size: 1.2rem;
    }

    .icon-wrap {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}