        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #1A1A1A;
            --secondary: #1E3A5F;
            --accent: #8BC34A;
            --accent-dark: #689F38;
            --text: #2D2D2D;
            --text-light: #6B6B6B;
            --text-muted: #999999;
            --bg: #FFFFFF;
            --bg-alt: #F8F9FA;
            --bg-card: #FAFBFC;
            --border: #E8EAED;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.08);
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--text);
            background: var(--bg);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        header.scrolled {
            box-shadow: var(--shadow-sm);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            opacity: 0;
            animation: fadeInLeft 0.6s ease-out 0.2s forwards;
        }

        .logo img {
            height: 34px;
            width: auto;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 20px;
            opacity: 0;
            animation: fadeInRight 0.6s ease-out 0.2s forwards;
        }

        .language-selector {
            display: flex;
            gap: 4px;
            align-items: center;
            background: var(--bg-alt);
            padding: 4px;
            border-radius: 8px;
        }

        .lang-link {
            padding: 6px 14px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
            font-size: 13px;
            color: var(--text-muted);
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .lang-link:hover {
            color: var(--text);
        }

        .lang-link.active {
            color: var(--primary);
            background: white;
            box-shadow: var(--shadow-sm);
        }

        .nav-cta {
            background: var(--primary);
            color: white;
            padding: 6px 16px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
            font-size: 13px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid var(--primary);
            white-space: nowrap;
        }

        .nav-cta:hover {
            background: transparent;
            color: var(--primary);
            transform: translateY(-1px);
        }

        /* Scroll Reveal Classes */
        .reveal-up {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal-scale {
            opacity: 0;
            transform: scale(0.9);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .reveal-visible {
            opacity: 1 !important;
            transform: translate(0, 0) scale(1) !important;
        }

        /* Stagger delays */
        .delay-100 {
            transition-delay: 0.1s;
        }

        .delay-200 {
            transition-delay: 0.2s;
        }

        .delay-300 {
            transition-delay: 0.3s;
        }

        .delay-400 {
            transition-delay: 0.4s;
        }

        /* Animations */
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(20px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        /* Hero Section */
        .hero {
            padding: 140px 0 100px;
            background: linear-gradient(180deg, #0A0E1A 0%, var(--primary) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(139, 195, 74, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 20s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 25s ease-in-out infinite reverse;
        }

        /* Grid pattern overlay */
        .hero-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(rgba(139, 195, 74, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(139, 195, 74, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            opacity: 0.5;
        }

        /* Floating elements - soft glow bases (dimmed for map bg) */
        .hero-decoration {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.3;
            animation: floatSlow 20s ease-in-out infinite;
        }

        .hero-decoration-1 {
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, #8BC34A 0%, #689F38 100%);
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .hero-decoration-2 {
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
            top: 60%;
            right: 10%;
            animation-delay: 5s;
        }

        .hero-decoration-3 {
            width: 250px;
            height: 250px;
            background: linear-gradient(135deg, #8BC34A 0%, #3B82F6 100%);
            bottom: 10%;
            left: 15%;
            animation-delay: 10s;
        }

        @keyframes floatSlow {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            33% {
                transform: translate(30px, -30px) scale(1.1);
            }

            66% {
                transform: translate(-20px, 20px) scale(0.9);
            }
        }

        /* ===== MAP ROUTE HERO BACKGROUND ===== */
        .hero-roses-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
        }

        /* Map grid */
        .map-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.07;
            z-index: 0;
        }

        /* Route + roses canvas */
        .route-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        /* The visible dotted line */
        .route-line {
            fill: none;
            stroke: url(#routeGrad);
            stroke-width: 2.5;
            /* Thinner line */
            stroke-linecap: round;
            stroke-linejoin: round;
            /* Dotted pattern: 0 dash (dot), 15 gap */
            stroke-dasharray: 0 12;
            /* Adjusted gap slightly for finer look */
            filter: drop-shadow(0 0 6px rgba(139, 195, 74, 0.4));
        }

        /* The invisible mask path that "draws" the line */
        .route-mask-anim {
            fill: none;
            stroke: white;
            stroke-width: 8;
            /* Mask slightly reduced but still covering */
            stroke-linecap: round;
            stroke-linejoin: round;
            stroke-dasharray: var(--len);
            stroke-dashoffset: var(--len);
        }

        .route-mask-anim.animate {
            animation: drawRoute var(--dur) cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
            animation-delay: var(--del, 0s);
        }

        .route-glow {
            fill: none;
            stroke: rgba(139, 195, 74, 0.15);
            stroke-width: 8;
            /* Reduced glow width */
            stroke-linecap: round;
            stroke-linejoin: round;
            /* Match dot pattern for glow too? Or keep solid? Let's match roughly or just use mask too */
            mask: url(#routeMask);
        }

        @keyframes drawRoute {
            to {
                stroke-dashoffset: 0;
            }
        }

        /* Waypoint pin */
        .waypoint-pin {
            opacity: 0;
            transform-origin: center bottom;
        }

        .waypoint-pin.animate {
            animation: pinDrop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
            animation-delay: var(--del);
        }

        @keyframes pinDrop {
            0% {
                opacity: 0;
                transform: translateY(-20px) scale(0.3);
            }

            60% {
                opacity: 1;
                transform: translateY(2px) scale(1.05);
            }

            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        /* Rose petals at waypoint */
        .rose-petal {
            fill: none;
            stroke-linecap: round;
            stroke-dasharray: var(--len);
            stroke-dashoffset: var(--len);
        }

        .rose-petal.animate {
            animation: drawRoute var(--dur, 1.5s) cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
            animation-delay: var(--del);
        }

        .rose-fill-p {
            opacity: 0;
        }

        .rose-fill-p.animate {
            animation: rFillIn 0.8s ease forwards;
            animation-delay: var(--del);
        }

        @keyframes rFillIn {
            to {
                opacity: 1;
            }
        }

        /* Pulse ring */
        .wp-pulse {
            opacity: 0;
        }

        .wp-pulse.animate {
            animation: wpPulse 2s ease-out infinite;
            animation-delay: var(--del);
        }

        @keyframes wpPulse {
            0% {
                opacity: 0.5;
                r: 8;
            }

            100% {
                opacity: 0;
                r: 25;
            }
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(139, 195, 74, 0.3);
            border-radius: 100px;
            font-size: 13px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 32px;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.3s forwards;
            box-shadow: 0 4px 20px rgba(139, 195, 74, 0.2);
        }

        .hero-badge-dot {
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
            box-shadow: 0 0 10px var(--accent);
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.6;
                transform: scale(1.2);
            }
        }

        .hero h1 {
            font-family: 'Urbanist', sans-serif;
            font-size: clamp(48px, 6vw, 82px);
            font-weight: 800;
            background: linear-gradient(135deg, #FFFFFF 0%, #E0E7FF 50%, #C7D2FE 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.1;
            margin-bottom: 28px;
            letter-spacing: -0.04em;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.4s forwards;
            text-shadow: 0 0 60px rgba(139, 195, 74, 0.3);
        }

        .hero-subtitle {
            font-size: clamp(18px, 2.5vw, 23px);
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 48px;
            line-height: 1.6;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.5s forwards;
        }

        .hero-cta-group {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.6s forwards;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
            color: white;
            padding: 18px 36px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 17px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow:
                0 4px 20px rgba(139, 195, 74, 0.3),
                0 0 0 0 rgba(139, 195, 74, 0.4);
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn-primary:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow:
                0 8px 30px rgba(139, 195, 74, 0.4),
                0 0 0 8px rgba(139, 195, 74, 0.1);
        }

        .btn-primary span {
            position: relative;
            z-index: 1;
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            color: white;
            padding: 18px 36px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 17px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.4);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        }

        /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background: white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 48px;
            max-width: 100%;
            margin: 0 auto;
        }

        .stat-item {
            text-align: center;
            opacity: 0;
            animation: fadeIn 0.8s ease-out forwards;
        }

        .stat-item:nth-child(1) {
            animation-delay: 0.1s;
        }

        .stat-item:nth-child(2) {
            animation-delay: 0.2s;
        }

        .stat-item:nth-child(3) {
            animation-delay: 0.3s;
        }

        .stat-item:nth-child(4) {
            animation-delay: 0.4s;
        }

        .stat-number {
            font-family: 'Urbanist', sans-serif;
            font-size: 48px;
            font-weight: 700;
            color: #EF4444;
            margin-bottom: 8px;
            line-height: 1;
        }

        .stat-label {
            font-size: 14px;
            color: var(--text-light);
            font-weight: 500;
        }

        /* Section Styles */
        section {
            padding: 120px 0;
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 80px;
        }

        .section-label {
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.12em;
            color: var(--accent);
            margin-bottom: 16px;
        }

        .section-title {
            font-family: 'Urbanist', sans-serif;
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 700;
            color: var(--primary);
            line-height: 1.15;
            margin-bottom: 24px;
            letter-spacing: -0.03em;
        }

        .section-description {
            font-size: 19px;
            color: var(--text-light);
            line-height: 1.7;
        }

        /* Pain Section */
        .pain-section {
            background: var(--bg-alt);
        }

        /* Wire Orders Section */
        .wire-section {
            background: white;
            padding: 120px 0;
        }

        .wire-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .wire-text h2 {
            font-family: 'Urbanist', sans-serif;
            font-size: clamp(36px, 5vw, 48px);
            font-weight: 700;
            color: var(--primary);
            line-height: 1.2;
            margin-bottom: 24px;
            letter-spacing: -0.03em;
        }

        .wire-intro {
            font-size: 18px;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .wire-reality {
            font-size: 20px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 16px;
        }

        .wire-text>p {
            font-size: 17px;
            color: var(--text);
            line-height: 1.7;
            margin-bottom: 16px;
        }

        .wire-costs {
            list-style: none;
            padding: 0;
            margin: 24px 0;
        }

        .wire-costs li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            font-size: 16px;
            color: var(--text);
        }

        .wire-costs li::before {
            content: '−';
            color: #EF4444;
            font-size: 20px;
            font-weight: 700;
        }

        .wire-conclusion {
            font-size: 18px;
            font-weight: 600;
            color: #EF4444;
            margin-top: 24px;
        }

        .wire-visual {
            background: linear-gradient(135deg, #F1F8E9 0%, #E8F5E9 100%);
            padding: 48px;
            border-radius: 20px;
            border: 2px solid var(--accent);
        }

        .wire-box {
            background: white;
            padding: 40px;
            border-radius: 16px;
            box-shadow: var(--shadow-md);
        }

        .wire-box h3 {
            font-family: 'Urbanist', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 16px;
        }

        .wire-box-intro {
            font-size: 16px;
            color: var(--text-light);
            margin-bottom: 24px;
        }

        .wire-metrics {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 32px;
        }

        .wire-metric {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            background: var(--bg-alt);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .wire-metric:hover {
            transform: translateX(8px);
            background: var(--bg-card);
        }

        .metric-icon {
            font-size: 20px;
            flex-shrink: 0;
        }

        .metric-text {
            font-size: 15px;
            font-weight: 500;
            color: var(--text);
        }

        .wire-question {
            font-size: 17px;
            color: var(--text);
            line-height: 1.6;
            padding-top: 24px;
            border-top: 2px solid var(--border);
        }

        .wire-question strong {
            color: var(--accent-dark);
        }

        /* Delivery Proof Section */
        .proof-section {
            background: var(--bg-alt);
            padding: 120px 0;
        }

        .proof-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .proof-visual {
            background: white;
            padding: 48px;
            border-radius: 20px;
            border: 1px solid var(--border);
        }

        .proof-scenario {
            text-align: center;
            padding: 32px;
            background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
            border-radius: 16px;
        }

        /* Stacked notifications visual */
        .proof-notifications {
            position: relative;
            width: 280px;
            height: 240px;
            margin: 24px auto 0;
        }

        .notification-card {
            position: absolute;
            background: white;
            border-radius: 12px;
            padding: 12px 16px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            width: 100%;
            display: flex;
            align-items: center;
            gap: 12px;
            border-left: 4px solid #FF3B30;
        }

        .notification-card:nth-child(1) {
            top: 0;
            left: 0;
            z-index: 3;
        }

        .notification-card:nth-child(2) {
            top: 70px;
            left: 0;
            z-index: 2;
        }

        .notification-card:nth-child(3) {
            top: 140px;
            left: 0;
            z-index: 1;
        }

        .notification-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }

        .notification-content {
            flex: 1;
            min-width: 0;
        }

        .notification-name {
            font-weight: 600;
            font-size: 14px;
            color: var(--primary);
            margin-bottom: 2px;
        }

        .notification-message {
            font-size: 12px;
            color: var(--text-light);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .notification-badge {
            background: #FF3B30;
            color: white;
            font-size: 11px;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: 10px;
            flex-shrink: 0;
        }

        .proof-icon {
            font-size: 64px;
            margin-bottom: 24px;
            opacity: 0.7;
        }

        .proof-scenario h4 {
            font-family: 'Urbanist', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .proof-problems {
            list-style: none;
            padding: 0;
            text-align: left;
        }

        .proof-problems li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            font-size: 15px;
            color: var(--text-light);
        }

        .proof-problems li::before {
            content: '✗';
            color: #EF4444;
            font-size: 18px;
            font-weight: 700;
        }

        .proof-text h2 {
            font-family: 'Urbanist', sans-serif;
            font-size: clamp(36px, 5vw, 48px);
            font-weight: 700;
            color: var(--primary);
            line-height: 1.2;
            margin-bottom: 24px;
            letter-spacing: -0.03em;
        }

        .proof-text>p {
            font-size: 17px;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 32px;
        }

        .proof-solution {
            background: linear-gradient(135deg, #F1F8E9 0%, #E8F5E9 100%);
            padding: 32px;
            border-radius: 16px;
            margin-bottom: 32px;
            border: 2px solid var(--accent);
        }

        .proof-solution h3 {
            font-family: 'Urbanist', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .proof-list {
            list-style: none;
            padding: 0;
        }

        .proof-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            font-size: 16px;
            color: var(--text);
        }

        .proof-list li::before {
            content: '✓';
            display: flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            background: var(--accent);
            color: white;
            border-radius: 50%;
            font-size: 12px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .proof-result {
            font-size: 17px;
            color: var(--text);
            line-height: 1.7;
        }

        .proof-result strong {
            color: var(--accent-dark);
        }

        /* Product Showcase Section - Smooth Crossfade Slider */
        .product-section {
            background: var(--primary);
            padding: 120px 0;
            color: white;
            overflow: hidden;
        }

        .product-section .section-label {
            color: var(--accent);
        }

        .product-section .section-title {
            color: white;
        }

        .product-section .section-description {
            color: rgba(255, 255, 255, 0.8);
        }

        .product-showcase {
            margin-top: 80px;
            position: relative;
        }

        .product-scroll-container {
            position: relative;
            width: 100%;
            max-width: 1100px;
            margin: 0 auto;
            padding: 40px 24px 60px;
        }

        .product-scroll-wrapper {
            position: relative;
            width: 100%;
        }

        .product-item {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 60px;
            align-items: center;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            transform: translateX(60px);
            transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
            visibility: hidden;
        }

        .product-item.active {
            opacity: 1;
            transform: translateX(0);
            position: relative;
            pointer-events: auto;
            visibility: visible;
        }

        .product-item.slide-out-left {
            opacity: 0;
            transform: translateX(-60px);
            position: absolute;
            pointer-events: none;
            visibility: visible;
        }

        .product-reverse {
            grid-template-columns: 1fr 1.2fr;
        }

        .product-reverse .product-image {
            order: 2;
        }

        .product-reverse .product-description {
            order: 1;
        }

        .product-image {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .product-image:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
        }

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

        .product-description {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease-out 0.3s;
        }

        .product-item.active .product-description {
            opacity: 1;
            transform: translateY(0);
        }

        .product-item.slide-out-left .product-description {
            opacity: 0;
            transform: translateY(20px);
            transition-delay: 0s;
        }

        .product-description h3 {
            font-family: 'Urbanist', sans-serif;
            font-size: 32px;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .product-description p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.7;
        }

        /* Scroll indicators */
        .scroll-indicators {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 40px;
        }

        .scroll-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .scroll-dot.active {
            background: var(--accent);
            width: 24px;
            border-radius: 4px;
        }

        /* Mobile Phone Frame for Routes */
        .product-image.mobile-frame {
            background: linear-gradient(145deg, #2D3748 0%, #1A202C 100%);
            padding: 20px;
            border-radius: 45px;
            max-width: 380px;
            margin: 0 auto;
            position: relative;
            box-shadow:
                0 25px 50px rgba(0, 0, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.1),
                0 0 0 1px rgba(255, 255, 255, 0.05);
        }

        .product-image.mobile-frame::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 140px;
            height: 30px;
            background: linear-gradient(145deg, #2D3748 0%, #1A202C 100%);
            border-radius: 0 0 20px 20px;
            z-index: 10;
        }

        .product-image.mobile-frame::after {
            content: '';
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: rgba(0, 0, 0, 0.4);
            border-radius: 2px;
            z-index: 11;
        }

        .mobile-screen-wrapper {
            height: 620px;
            overflow: hidden;
            border-radius: 32px;
            position: relative;
            background: #F7FAFC;
        }

        .mobile-screen-wrapper img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 0;
            position: relative;
            animation: none;
            box-shadow: none;
        }

        /* Animation starts when visible */
        .product-image.mobile-frame.animate .mobile-screen-wrapper img {
            animation: mobileScroll 15s ease-in-out infinite;
        }

        @keyframes mobileScroll {

            0%,
            15% {
                transform: translateY(0);
            }

            35%,
            65% {
                transform: translateY(calc(-100% + 620px));
            }

            85%,
            100% {
                transform: translateY(0);
            }
        }

        .product-image.mobile-frame:hover .mobile-screen-wrapper img {
            animation-play-state: paused;
        }

        /* Mobile adjustments for phone frame */
        @media (max-width: 768px) {
            .product-image.mobile-frame {
                max-width: 300px;
            }

            .mobile-screen-wrapper {
                height: 500px;
            }

            .product-image.mobile-frame.animate .mobile-screen-wrapper img {
                animation: mobileScrollMobile 15s ease-in-out infinite;
            }

            @keyframes mobileScrollMobile {

                0%,
                15% {
                    transform: translateY(0);
                }

                35%,
                65% {
                    transform: translateY(calc(-100% + 500px));
                }

                85%,
                100% {
                    transform: translateY(0);
                }
            }
        }

        /* Side buttons */
        .product-image.mobile-frame .phone-button-left {
            position: absolute;
            left: -3px;
            top: 120px;
            width: 3px;
            height: 35px;
            background: linear-gradient(90deg, #1A202C 0%, #2D3748 100%);
            border-radius: 3px 0 0 3px;
            z-index: 5;
        }

        .product-image.mobile-frame .phone-button-right {
            position: absolute;
            right: -3px;
            top: 180px;
            width: 3px;
            height: 60px;
            background: linear-gradient(270deg, #1A202C 0%, #2D3748 100%);
            border-radius: 0 3px 3px 0;
            z-index: 5;
        }

        /* Pain Section */
        .pain-section {
            background: var(--bg-alt);
        }

        .pain-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 24px;
        }

        .pain-card {
            background: white;
            padding: 36px;
            border-radius: 16px;
            border: 1px solid var(--border);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .pain-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--accent);
            transform: scaleY(0);
            transform-origin: top;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .pain-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }

        .pain-card:hover::before {
            transform: scaleY(1);
        }

        .pain-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, #FFF5F5 0%, #FFE8E8 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            font-size: 26px;
            transition: transform 0.3s ease;
        }

        .pain-card:hover .pain-icon {
            transform: scale(1.1);
        }

        .pain-card h3 {
            font-family: 'Urbanist', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .pain-card p {
            color: var(--text-light);
            line-height: 1.7;
            font-size: 15px;
        }

        .pain-insight {
            margin-top: 80px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
            padding: 48px;
            background: white;
            border-radius: 16px;
            border: 1px solid var(--border);
        }

        .pain-insight p {
            font-family: 'Urbanist', sans-serif;
            font-size: 24px;
            font-weight: 600;
            color: var(--primary);
            line-height: 1.5;
        }

        /* Solution Section */
        .solution-section {
            background: white;
        }

        .solution-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
        }

        .solution-card {
            background: var(--bg-card);
            padding: 40px;
            border-radius: 16px;
            border: 1px solid var(--border);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .solution-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: var(--accent);
        }

        .solution-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #F1F8E9 0%, #DCEDC8 100%);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            font-size: 28px;
            transition: transform 0.3s ease;
        }

        .solution-card:hover .solution-icon {
            transform: rotate(5deg) scale(1.1);
        }

        .solution-card h3 {
            font-family: 'Urbanist', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .solution-card p {
            color: var(--text-light);
            line-height: 1.7;
            font-size: 15px;
        }

        /* Features Section */
        .features-section {
            background: var(--bg-alt);
        }

        .features-grid {
            display: grid;
            gap: 80px;
        }

        .feature-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .feature-row:nth-child(even) .feature-content {
            order: 2;
        }

        .feature-content h3 {
            font-family: 'Urbanist', sans-serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .feature-content p {
            font-size: 17px;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            color: var(--text);
            font-size: 15px;
        }

        .feature-list li::before {
            content: '✓';
            display: flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            background: var(--accent);
            color: white;
            border-radius: 50%;
            font-size: 12px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .feature-visual {
            background: white;
            padding: 40px;
            border-radius: 20px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-md);
        }

        .feature-visual-content {
            background: var(--bg-alt);
            padding: 32px;
            border-radius: 12px;
            min-height: 300px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .visual-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px;
            background: white;
            border-radius: 10px;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .visual-item:hover {
            transform: translateX(8px);
            box-shadow: var(--shadow-sm);
        }

        .visual-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            flex-shrink: 0;
        }

        .visual-text {
            flex: 1;
        }

        .visual-text h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 4px;
        }

        .visual-text p {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* Testimonials */
        .testimonials-section {
            background: white;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 32px;
        }

        .testimonial {
            background: var(--bg-card);
            padding: 40px;
            border-radius: 16px;
            border: 1px solid var(--border);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .testimonial:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .testimonial-quote {
            font-size: 17px;
            color: var(--text);
            line-height: 1.8;
            margin-bottom: 28px;
        }

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

        .author-avatar {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 700;
            font-size: 18px;
            flex-shrink: 0;
        }

        .author-info h5 {
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 4px;
            font-size: 15px;
        }

        .author-info p {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* CTA Section */
        .cta-section {
            padding: 140px 0;
            background: var(--primary);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -100px;
            left: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(139, 195, 74, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .cta-section h2 {
            font-family: 'Urbanist', sans-serif;
            font-size: clamp(40px, 5vw, 56px);
            font-weight: 800;
            margin-bottom: 24px;
            line-height: 1.15;
            letter-spacing: -0.03em;
        }

        .cta-section p {
            font-size: 20px;
            margin-bottom: 48px;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
            color: white;
            padding: 20px 40px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            font-size: 18px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow:
                0 4px 20px rgba(139, 195, 74, 0.3),
                0 0 0 0 rgba(139, 195, 74, 0.4);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .cta-button:hover::before {
            width: 300px;
            height: 300px;
        }

        .cta-button:hover {
            transform: translateY(-4px);
            box-shadow:
                0 8px 30px rgba(139, 195, 74, 0.4),
                0 0 0 8px rgba(139, 195, 74, 0.1);
        }

        .cta-button span {
            position: relative;
            z-index: 1;
        }

        .cta-note {
            margin-top: 24px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Footer */
        footer {
            padding: 60px 0;
            background: var(--bg-alt);
            border-top: 1px solid var(--border);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-logo img {
            height: 32px;
            opacity: 0.7;
        }

        .footer-text {
            font-size: 14px;
            color: var(--text-muted);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-decoration-1 {
                left: -50px;
            }

            .hero-decoration-2 {
                right: -50px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 120px 0 80px;
            }

            .nav-cta {
                display: none;
            }

            .stats-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 32px;
            }

            section {
                padding: 80px 0;
            }

            .pain-grid,
            .solution-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .wire-content,
            .proof-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .wire-visual {
                padding: 32px 24px;
            }

            .wire-box {
                padding: 32px 24px;
            }

            .proof-visual {
                padding: 32px 24px;
            }

            .feature-row {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .feature-row:nth-child(even) .feature-content {
                order: 1;
            }

            .product-item,
            .product-reverse {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .product-reverse .product-image {
                order: 1;
            }

            .product-reverse .product-description {
                order: 2;
            }

            .product-scroll-wrapper {
                padding: 0;
            }

            .nav-right {
                gap: 16px;
            }

            .nav-cta {
                padding: 7px 16px;
                font-size: 13px;
            }

            .btn-secondary {
                display: none;
            }

            .footer-content {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }