        :root {
            --primary: #f06223;
            --primary-dark: #d4551a;
            --primary-light: #fef3ed;
            --secondary: #8b7355;
            --secondary-light: #f8f3ee;
            --dark: #2c1810;
            --dark-light: #4a3628;
            --text: #2c1810;
            --text-muted: #7a6a5a;
            --border: #e8ddd0;
            --white: #ffffff;
            --bg-light: #f8f3ee;
            --shadow: 0 30px 70px rgba(44, 24, 16, 0.08);
            --shadow-lg: 0 40px 90px rgba(44, 24, 16, 0.12);
            --radius: 24px;
            --radius-sm: 12px;
            --gradient-primary: linear-gradient(135deg, #f06223, #d4551a);
            --gradient-secondary: linear-gradient(135deg, #8b7355, #6b5a42);
            --gradient-hero: linear-gradient(135deg, #2c1810 0%, #4a3628 50%, #2c1810 100%);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            color: var(--text);
            background: var(--bg-light);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }
        a {
            color: inherit;
            text-decoration: none;
        }
        .container {
            max-width: 1200px;
        }
        .bg-light {
            background: var(--bg-light);
        }
        .bg-white {
            background: var(--white);
        }
        .bg-dark {
            background: var(--dark);
        }
        .section-padding {
            padding: 100px 0;
            position: relative;
        }
        .section-padding-sm {
            padding: 70px 0;
            position: relative;
        }
        .btn-primary-custom {
            background: var(--gradient-primary);
            color: var(--white);
            border: none;
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.4s ease;
            box-shadow: 0 12px 32px rgba(240, 98, 35, 0.3);
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 45px rgba(240, 98, 35, 0.4);
            color: var(--white);
        }
        .btn-outline-custom {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.2);
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.4s ease;
        }
        .btn-outline-custom:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-3px);
            background: rgba(240, 98, 35, 0.1);
        }
        .btn-cta-large {
            background: var(--gradient-primary);
            color: var(--white);
            border: none;
            padding: 20px 55px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 17px;
            transition: all 0.4s ease;
            box-shadow: 0 15px 40px rgba(240, 98, 35, 0.35);
        }
        .btn-cta-large:hover {
            transform: translateY(-4px);
            box-shadow: 0 25px 55px rgba(240, 98, 35, 0.45);
            color: var(--white);
        }
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .section-header .label {
            display: inline-block;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--primary);
            background: rgba(240, 98, 35, 0.08);
            padding: 0.35rem 1.4rem;
            border-radius: 50px;
            margin-bottom: 1rem;
        }
        .section-header h2 {
            font-weight: 700;
            color: var(--dark);
            font-size: clamp(2rem, 3.5vw, 2.8rem);
            line-height: 1.12;
            margin-bottom: 0.5rem;
        }
        .section-header h2 .accent {
            color: var(--primary);
        }
        .section-header p {
            color: var(--text-muted);
            font-size: 1.1rem;
            max-width: 620px;
            margin: 0 auto;
        }

        /* ============================================================
               HERO — With Phone Mockup
            ============================================================ */
        .hero-service {
            position: relative;
            min-height: 100vh;
            min-height: 100svh;
            display: flex;
            align-items: center;
            background: var(--gradient-hero);
            overflow: hidden;
            padding: 0;
        }
        .hero-service .bg-image {
            position: absolute;
            inset: 0;
            background-image: url('https://www.fourtender.com/assets/uploads/2026/07/1783282720_7f9acd7722262b123ccc.jpg');
            background-size: cover;
            background-position: center;
            opacity: 1;
            z-index: 0;
        }
        .hero-service .gradient-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(44, 24, 16, 0.95) 0%, rgba(44, 24, 16, 0.6) 100%);
            z-index: 1;
        }
        .hero-service .floating-shapes {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 1;
            overflow: hidden;
        }
        .hero-service .floating-shapes span {
            position: absolute;
            border-radius: 50%;
            opacity: 0.06;
        }
        .hero-service .floating-shapes span:nth-child(1) {
            width: 400px;
            height: 400px;
            background: var(--primary);
            top: -100px;
            right: -100px;
            animation: shapeFloat 20s ease-in-out infinite;
        }
        .hero-service .floating-shapes span:nth-child(2) {
            width: 300px;
            height: 300px;
            background: var(--secondary);
            bottom: -80px;
            left: -80px;
            animation: shapeFloat 25s ease-in-out infinite reverse;
        }
        @keyframes shapeFloat {
            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(60px, -80px) scale(1.1);
            }
            66% {
                transform: translate(-40px, 50px) scale(0.9);
            }
        }
        .hero-service .container {
            position: relative;
            z-index: 2;
        }
        .hero-content {
            padding: 40px 0;
            color: var(--white);
        }
        .hero-content .service-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.08);
            color: var(--white);
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 2px;
            padding: 0.3rem 1.2rem;
            border-radius: 50px;
            margin-bottom: 1.2rem;
            text-transform: uppercase;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        .hero-content h1 {
            font-weight: 700;
            font-size: clamp(38px, 5vw, 56px);
            line-height: 1.05;
            margin-bottom: 1.5rem;
            color: var(--white);
        }
        .hero-content h1 .accent {
            color: var(--primary);
        }
        .hero-content p.lead {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.15rem;
            max-width: 520px;
            line-height: 1.8;
        }
		
		/* Floating App Icons */
        .hero-app-icons {
            display: flex;
            gap: 16px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        .hero-app-icons .app-icon {
            width: 70px;
            height: 70px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--white);
            transition: all 0.4s ease;
            animation: iconFloat 6s ease-in-out infinite;
        }
        .hero-app-icons .app-icon:nth-child(2) {
            animation-delay: -1.5s;
        }
        .hero-app-icons .app-icon:nth-child(3) {
            animation-delay: -3s;
        }
        .hero-app-icons .app-icon:nth-child(4) {
            animation-delay: -4.5s;
        }
        .hero-app-icons .app-icon:hover {
            transform: translateY(-8px) scale(1.1);
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }
        @keyframes iconFloat {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }
		
        /* Phone Mockup */
        .hero-phone-mockup {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 40px 0;
        }
        .hero-phone-mockup .phone-frame {
            position: relative;
            width: 280px;
            height: 560px;
            background: var(--dark);
            border-radius: 40px;
            padding: 12px;
            box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
            border: 2px solid rgba(255, 255, 255, 0.1);
            animation: phoneFloat 6s ease-in-out infinite;
        }
        @keyframes phoneFloat {
            0%,
            100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-15px);
            }
        }
        .hero-phone-mockup .phone-frame .phone-screen {
            width: 100%;
            height: 100%;
            background: linear-gradient(145deg, #1a1a2e, #2d2d44);
            border-radius: 30px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
            position: relative;
        }
        .hero-phone-mockup .phone-frame .phone-screen .app-icon {
            font-size: 4rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }
        .hero-phone-mockup .phone-frame .phone-screen .app-title {
            color: var(--white);
            font-weight: 700;
            font-size: 1.4rem;
        }
        .hero-phone-mockup .phone-frame .phone-screen .app-subtitle {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
        }
        .hero-phone-mockup .phone-frame .phone-screen .app-features {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 15px;
            justify-content: center;
        }
        .hero-phone-mockup .phone-frame .phone-screen .app-features span {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 50px;
            padding: 0.2rem 0.8rem;
            font-size: 0.6rem;
            color: rgba(255, 255, 255, 0.6);
        }
        .hero-phone-mockup .phone-frame .notch {
            position: absolute;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 20px;
            background: var(--dark);
            border-radius: 0 0 12px 12px;
            z-index: 2;
        }

        @media (max-width: 991.98px) {
            .hero-service {
                min-height: auto;
                padding: 60px 0;
            }
            .hero-content {
                padding: 0;
                text-align: center;
            }
            .hero-content p.lead {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }
            .hero-content .d-flex {
                justify-content: center;
            }
            .hero-phone-mockup {
                padding: 20px 0;
            }
            .hero-phone-mockup .phone-frame {
                width: 220px;
                height: 440px;
            }
            .hero-phone-mockup .phone-frame .phone-screen .app-icon {
                font-size: 3rem;
            }
            .hero-phone-mockup .phone-frame .phone-screen .app-title {
                font-size: 1.1rem;
            }
            .hero-service .floating-shapes span:nth-child(1) {
                width: 250px;
                height: 250px;
            }
            .hero-service .floating-shapes span:nth-child(2) {
                width: 200px;
                height: 200px;
            }
        }
        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 30px;
            }
            .hero-content p.lead {
                font-size: 1rem;
            }
            .hero-phone-mockup .phone-frame {
                width: 180px;
                height: 360px;
                border-radius: 30px;
                padding: 8px;
            }
            .hero-phone-mockup .phone-frame .phone-screen {
                border-radius: 22px;
            }
            .hero-phone-mockup .phone-frame .phone-screen .app-icon {
                font-size: 2.4rem;
            }
            .hero-phone-mockup .phone-frame .phone-screen .app-title {
                font-size: 0.9rem;
            }
            .hero-phone-mockup .phone-frame .phone-screen .app-features span {
                font-size: 0.5rem;
                padding: 0.1rem 0.5rem;
            }
        }

        /* ============================================================
               FEATURE CARDS — Full Width, No Padding
            ============================================================ */
        .hero-features-section {
            background: var(--bg-light);
            padding: 0px 0;
            width: 100%;
        }
        .hero-features {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 0px;
            max-width: 100%;
            margin: 0 auto;
            padding: 0 0px;
			background: linear-gradient(135deg,#2c1810 0%,#4a3628 50%,#2c1810 100%);
        }
        .hero-features .feature-card {
			background: rgba(255,255,255,0.05);
			backdrop-filter: blur(20px);
			border: 1px solid rgba(255,255,255,0.08);
            padding: 1.8rem 1rem;
            text-align: center;
            transition: all 0.4s ease;
            box-shadow: 0 2px 8px rgba(44, 24, 16, 0.02);
        }
        .hero-features .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow);
            border-color: transparent;
        }
        .hero-features .feature-card .icon {
            font-size: 2rem;
            color: var(--primary);
            display: block;
            margin-bottom: 0.5rem;
            transition: all 0.4s ease;
        }
        .hero-features .feature-card:hover .icon {
            transform: scale(1.1);
        }
        .hero-features .feature-card h2 {
            font-size: 0.85rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 0.2rem;
        }
        .hero-features .feature-card p {
            font-size: 0.7rem;
            color: rgba(255,255,255,0.5);
            margin-bottom: 0;
        }

        @media (max-width: 991.98px) {
            .hero-features {
                grid-template-columns: repeat(3, 1fr);
                gap: 12px;
                padding: 0 15px;
            }
            .hero-features .feature-card {
                padding: 1.5rem 0.8rem;
            }
        }
        @media (max-width: 576px) {
            .hero-features {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
                padding: 0 15px;
            }
            .hero-features .feature-card {
                padding: 1.2rem 0.6rem;
            }
            .hero-features .feature-card .icon {
                font-size: 1.5rem;
            }
            .hero-features .feature-card h2 {
                font-size: 0.75rem;
            }
            .hero-features .feature-card p {
                font-size: 0.65rem;
            }
        }

        /* ============================================================
               SERVICES — Premium Card Grid
            ============================================================ */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .service-grid .service-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 2.5rem 2rem;
            border: 1px solid var(--border);
            transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        .service-grid .service-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        .service-grid .service-card:hover::before {
            opacity: 1;
        }
        .service-grid .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }
        .service-grid .service-card .icon-wrap {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            margin-bottom: 1.2rem;
            background: rgba(240, 98, 35, 0.08);
            color: var(--primary);
            transition: all 0.4s ease;
        }
        .service-grid .service-card:hover .icon-wrap {
            background: var(--primary);
            color: var(--white);
            transform: scale(1.05);
        }
        .service-grid .service-card .card-number {
            font-family: "JetBrains Mono", monospace;
            font-size: 3rem;
            font-weight: 700;
            color: rgba(240, 98, 35, 0.04);
            position: absolute;
            top: 15px;
            right: 20px;
            line-height: 1;
            transition: all 0.4s ease;
        }
        .service-grid .service-card:hover .card-number {
            color: rgba(240, 98, 35, 0.1);
            transform: scale(1.05);
        }
        .service-grid .service-card h3 {
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }
        .service-grid .service-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }
        .service-grid .service-card .tech-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }
        .service-grid .service-card .tech-tags span {
            background: rgba(240, 98, 35, 0.06);
            color: var(--primary);
            font-size: 0.6rem;
            font-weight: 600;
            padding: 0.2rem 0.8rem;
            border-radius: 50px;
            border: 1px solid rgba(240, 98, 35, 0.06);
        }
        @media (max-width: 991.98px) {
            .service-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px) {
            .service-grid {
                grid-template-columns: 1fr;
            }
            .service-grid .service-card {
                padding: 1.8rem 1.5rem;
            }
        }

        /* ============================================================
               TECH STACK — Premium Pill Tags
            ============================================================ */
        .tech-tags-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            padding: 1rem 0;
        }
        .tech-tags-container .tech-tag {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 50px;
            padding: 0.8rem 2rem;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text);
            transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
            cursor: default;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 2px 8px rgba(44, 24, 16, 0.02);
        }
        .tech-tags-container .tech-tag:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(240, 98, 35, 0.08);
        }
        .tech-tags-container .tech-tag .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            display: inline-block;
        }
        .tech-tags-container .tech-tag .dot.swift {
            background: #F05138;
        }
        .tech-tags-container .tech-tag .dot.kotlin {
            background: #7F52FF;
        }
        .tech-tags-container .tech-tag .dot.java {
            background: #007396;
        }
        .tech-tags-container .tech-tag .dot.flutter {
            background: #02569B;
        }
        .tech-tags-container .tech-tag .dot.reactnative {
            background: #61DAFB;
        }
        .tech-tags-container .tech-tag .dot.ionic {
            background: #4A8BF5;
        }
        .tech-tags-container .tech-tag .dot.xamarin {
            background: #5A2D7C;
        }
        .tech-tags-container .tech-tag .dot.pwa {
            background: #5A0FC8;
        }
        .tech-tags-container .tech-tag .dot.firebase {
            background: #FFCA28;
        }
        .tech-tags-container .tech-tag .dot.graphql {
            background: #E10098;
        }
        .tech-tags-container .tech-tag .dot.rest {
            background: #009688;
        }
        .tech-tags-container .tech-tag .dot.aws {
            background: #FF9900;
        }

        /* ============================================================
               WHY CHOOSE US — Clean Icon Grid
            ============================================================ */
        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .why-grid .why-item {
            background: var(--white);
            border-radius: var(--radius);
            padding: 2.5rem 2rem;
            text-align: center;
            border: 1px solid var(--border);
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
        }
        .why-grid .why-item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.5s ease;
        }
        .why-grid .why-item:hover::before {
            opacity: 1;
        }
        .why-grid .why-item:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }
        .why-grid .why-item .icon-wrap {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin: 0 auto 1rem;
            background: rgba(240, 98, 35, 0.08);
            color: var(--primary);
            transition: all 0.4s ease;
        }
        .why-grid .why-item:hover .icon-wrap {
            background: var(--primary);
            color: var(--white);
            transform: scale(1.1);
        }
        .why-grid .why-item h3 {
            font-weight: 700;
            color: var(--dark);
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
        }
        .why-grid .why-item p {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 0;
        }
        @media (max-width: 991.98px) {
            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px) {
            .why-grid {
                grid-template-columns: 1fr;
            }
            .why-grid .why-item {
                padding: 1.8rem 1.5rem;
            }
        }

        /* ============================================================
               PROCESS — Zigzag Layout
            ============================================================ */
        .process-zigzag {
            display: flex;
            flex-direction: column;
            gap: 30px;
            max-width: 900px;
            margin: 0 auto;
        }
        .process-zigzag .step {
            display: flex;
            align-items: center;
            gap: 40px;
            padding: 2rem 2.5rem;
            background: var(--white);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            transition: all 0.4s ease;
        }
        .process-zigzag .step:nth-child(even) {
            flex-direction: row-reverse;
        }
        .process-zigzag .step:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow);
            border-color: transparent;
        }
        .process-zigzag .step .step-num {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--gradient-primary);
            color: var(--white);
            font-weight: 700;
            font-size: 1.6rem;
            font-family: "JetBrains Mono", monospace;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 8px 24px rgba(240, 98, 35, 0.25);
            transition: all 0.4s ease;
        }
        .process-zigzag .step:hover .step-num {
            transform: scale(1.08);
        }
        .process-zigzag .step .step-content h3 {
            font-weight: 700;
            color: var(--dark);
            font-size: 1.2rem;
            margin-bottom: 0.2rem;
        }
        .process-zigzag .step .step-content p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 0;
        }
        @media (max-width: 768px) {
            .process-zigzag .step {
                flex-direction: column !important;
                text-align: center;
                padding: 1.5rem;
                gap: 20px;
            }
            .process-zigzag .step .step-num {
                width: 56px;
                height: 56px;
                font-size: 1.2rem;
            }
        }

        /* ============================================================
               FAQ — Clean Grid
            ============================================================ */
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        .faq-grid .faq-item {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 1.8rem 2rem;
            transition: all 0.4s ease;
        }
        .faq-grid .faq-item:hover {
            border-color: var(--primary);
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(44, 24, 16, 0.04);
        }
        .faq-grid .faq-item .faq-icon {
            display: inline-block;
            color: var(--primary);
            font-size: 1.2rem;
            margin-bottom: 0.4rem;
        }
        .faq-grid .faq-item h3 {
            font-weight: 700;
            color: var(--dark);
            font-size: 1rem;
            margin-bottom: 0.4rem;
        }
        .faq-grid .faq-item p {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 0;
        }
        @media (max-width: 768px) {
            .faq-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ============================================================
               CTA — Premium Dark
            ============================================================ */
        .cta-premium {
            background: var(--gradient-hero);
            position: relative;
            overflow: hidden;
            text-align: center;
            padding: 80px 0;
        }
        .cta-premium .cta-bg-image {
            position: absolute;
            inset: 0;
            background-image: url('https://www.fourtender.com/assets/uploads/2026/07/1783282720_7f9acd7722262b123ccc.jpg');
            background-size: cover;
            background-position: center;
            opacity: 0.3;
        }
        .cta-premium .cta-shapes {
            position: absolute;
            inset: 0;
            pointer-events: none;
            overflow: hidden;
        }
        .cta-premium .cta-shapes span {
            position: absolute;
            border-radius: 50%;
            opacity: 0.05;
        }
        .cta-premium .cta-shapes span:nth-child(1) {
            width: 400px;
            height: 400px;
            background: var(--primary);
            top: -150px;
            right: -100px;
            animation: shapeFloat 20s ease-in-out infinite;
        }
        .cta-premium .cta-shapes span:nth-child(2) {
            width: 300px;
            height: 300px;
            background: var(--secondary);
            bottom: -100px;
            left: -80px;
            animation: shapeFloat 25s ease-in-out infinite reverse;
        }
        .cta-premium .cta-content {
            position: relative;
            z-index: 2;
        }
        .cta-premium .cta-content h2 {
            font-weight: 700;
            color: var(--white);
            font-size: clamp(32px, 4vw, 46px);
            margin-bottom: 1rem;
        }
        .cta-premium .cta-content h2 .accent {
            color: var(--primary);
        }
        .cta-premium .cta-content p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 1.1rem;
            max-width: 540px;
            margin: 0 auto 2.5rem;
        }

        @media (max-width: 991.98px) {
            .section-padding {
                padding: 60px 0;
            }
            .section-header {
                margin-bottom: 40px;
            }
        }
        @media (max-width: 576px) {
            .section-padding {
                padding: 50px 0;
            }
            .section-header h2 {
                font-size: 1.8rem;
            }
            .cta-premium .cta-content h2 {
                font-size: 28px;
            }
        }
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation: none !important;
                transition: none !important;
            }
            .hero-service .floating-shapes span,
            .cta-premium .cta-shapes span,
            .hero-phone-mockup .phone-frame {
                animation: none !important;
            }
            .service-grid .service-card:hover,
            .why-grid .why-item:hover,
            .process-zigzag .step:hover,
            .faq-grid .faq-item:hover,
            .tech-tags-container .tech-tag:hover,
            .hero-features .feature-card:hover {
                transform: none !important;
            }
        }