:root {
    --primary: #0047FF;
    --primary-dark: #0033CC;
    --dark: #0F172A;
    --text: #475569;
    --bg-white: #FFFEFC; 
    --bg-alt: #FFFEFC;   
    --section-padding: 140px;
    --radius: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg-white);
    color: var(--dark);
    line-height: 1.6;
    /* overflow-x: hidden; Removed to fix sticky positioning */
    width: 100%;
    position: relative;
    padding-top: 100px; /* Prevent content hiding behind fixed navbar */
}

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

/* Navbar */
.navbar {
    padding: 24px 0;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    background: rgba(255,254,252,0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
                width 0.6s cubic-bezier(0.23, 1, 0.32, 1),
                max-width 0.6s cubic-bezier(0.23, 1, 0.32, 1),
                height 0.6s cubic-bezier(0.23, 1, 0.32, 1),
                padding 0.6s cubic-bezier(0.23, 1, 0.32, 1),
                border-radius 0.6s cubic-bezier(0.23, 1, 0.32, 1),
                border-color 0.6s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.6s cubic-bezier(0.23, 1, 0.32, 1),
                background 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid transparent;
}

/* Bottom Pill State */
.navbar.bottom-nav {
    width: 90%;
    max-width: 900px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: rgba(255,255,255,0.5);
    padding: 12px 0;
    transform: translateX(-50%) translateY(calc(100vh - 100% - 30px));
}

/* Adjust content for pill state */
.navbar.bottom-nav .nav-content {
    padding: 0 30px;
}

/* Bottom Nav Overrides for Smoother Transition & Sizing */
.navbar.bottom-nav .logo {
    font-size: 1.2rem;
}

.navbar.bottom-nav .nav-cta {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.nav-content { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 800; transition: all 0.3s ease; }
.logo span { color: var(--primary); }
.nav-links { display: flex; gap: 40px; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 600; font-size: 0.9rem; transition: 0.3s; }
.nav-links a:hover { color: var(--primary); }
.nav-links a.active { color: var(--primary); }

.nav-item { display: flex; align-items: center; }
.nav-icon { display: none; }
.nav-text { display: block; }

/* Nav dots (mobile only) */
.nav-dots { display: none; }

/* Mobile nav toggle (hamburger) */
.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: none;
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    padding: 0;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: var(--primary);
    transition: transform 0.25s ease, opacity 0.25s ease, width 0.25s ease;
}

/* Buttons */
.btn { padding: 14px 28px; border-radius: var(--radius); font-weight: 700; text-decoration: none; border: none; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: 0.3s; font-family: inherit; }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(0,71,255,0.2); }
.btn-outline { border: 1px solid #D1D1D1; color: var(--primary); }
.btn-outline:hover { background: var(--bg-alt); }
.btn-lg { padding: 18px 36px; font-size: 1rem; height: 56px; }
.hero-actions .btn-lg { width: 200px; }
.btn-block { width: 100%; margin-top: 10px; }

/* Global Typography */
h1 { 
    font-size: clamp(2.4rem, 4vw, 4.5rem);
    font-weight: 700; 
    line-height: 1.1; 
    margin-bottom: 24px; 
    letter-spacing: -2px; 
}
h2 { 
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700; 
    line-height: 1.2; 
    margin-bottom: 20px; 
    letter-spacing: -1px; 
}
.text-blue { color: var(--primary); }
.pill { background: #EBF2FF; color: var(--primary); padding: 6px 16px; border-radius: 100px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; margin-bottom: 16px; display: inline-block; }
.label { color: var(--primary); font-weight: 800; text-transform: uppercase; letter-spacing: 2px; font-size: 0.75rem; display: block; margin-bottom: 12px; }
/* --- HERO SECTION --- */
.hero { 
    padding: 140px 0 100px;
    position: relative; 
    overflow: hidden; 
    text-align: center;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
    font-weight: 700;
}

.spline-container {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    max-width: 700px;
}

.spline-container spline-viewer {
    width: 100%;
    height: calc(100% + 58px);
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

.hero p { 
    font-size: 1.15rem; 
    color: var(--text); 
    margin: 0 auto 32px; 
    max-width: 580px; 
    line-height: 1.7;
}

.hero-actions { 
    display: flex; 
    justify-content: center; 
    gap: 16px; 
}

/* --- BACKGROUND ANIMATION --- */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; 
    pointer-events: none;
    overflow: hidden; 
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(0, 71, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
}

/* 1. Wrapper: Handles Position & Entrance Animation */
.hero-card-wrapper {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    /* Soft Popup Entrance */
    animation: popup 1s cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
}

/* 2. Inner Card: Handles Continuous Floating */
.float-card {
    background: #FFFFFF;
    padding: 10px;
    border-radius: 14px;
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.06), 
        0 4px 8px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    /* Infinite Float */
    animation: floaty 8s ease-in-out infinite;
}

.icon-box {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    width: 22px;
    height: 22px;
    stroke-width: 2.5px;
}

/* --- POSITIONS & DELAYS --- */

/* 1. Top Left - Orange */
.card-1 { top: 12%; left: 8%; animation-delay: 0.1s; }
.card-1 .float-card { animation-delay: 0s; }
.card-1 .icon-box.orange { background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%); color: #F97316; }

/* 2. Top Right - Purple */
.card-2 { top: 15%; right: 8%; animation-delay: 0.4s; }
.card-2 .float-card { animation-delay: -2s; }
.card-2 .icon-box.purple { background: linear-gradient(135deg, #FAF5FF 0%, #F3E8FF 100%); color: #9333EA; }

/* 3. Bottom Left - Green */
.card-3 { bottom: 15%; left: 10%; animation-delay: 0.7s; }
.card-3 .float-card { animation-delay: -4s; }
.card-3 .icon-box.green { background: linear-gradient(135deg, #ECFDF5 0%, #D1FAE5 100%); color: #10B981; }

/* 4. Bottom Right - Blue */
.card-4 { bottom: 18%; right: 12%; animation-delay: 0.2s; }
.card-4 .float-card { animation-delay: -1s; }
.card-4 .icon-box.blue { background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%); color: #2563EB; }

/* 5. Mid Left - Red (Inner) */
.card-5 { top: 45%; left: 18%; animation-delay: 0.5s; }
.card-5 .float-card { transform: scale(0.9); animation-delay: -3s; }
.card-5 .icon-box.red { background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%); color: #EF4444; }

/* 6. Mid Right - Cyan (Inner) */
.card-6 { top: 50%; right: 20%; animation-delay: 0.8s; }
.card-6 .float-card { transform: scale(0.9); animation-delay: -5s; }
.card-6 .icon-box.cyan { background: linear-gradient(135deg, #ECFEFF 0%, #CFFAFE 100%); color: #06B6D4; }

/* 7. Top Center - Yellow (Small) */
.card-7 { top: 8%; left: 45%; animation-delay: 0.3s; }
.card-7 .float-card { transform: scale(0.8); animation-delay: -1.5s; }
.card-7 .icon-box.yellow { background: linear-gradient(135deg, #FEFCE8 0%, #FEF9C3 100%); color: #EAB308; }

/* 8. Bottom Right-Center - Pink (Small) */
.card-8 { bottom: 12%; right: 25%; animation-delay: 0.6s; }
.card-8 .float-card { transform: scale(0.8); animation-delay: -2.5s; }
.card-8 .icon-box.pink { background: linear-gradient(135deg, #FDF2F8 0%, #FCE7F3 100%); color: #EC4899; }

/* --- KEYFRAMES --- */

/* Gentle Entrance */
@keyframes popup {
    0% {
        opacity: 0;
        transform: scale(0.6) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Infinite Float */
@keyframes floaty {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

/* Mobile */
@media (max-width: 768px) {
    .card-5, .card-6, .card-7, .card-8 { display: none; }
    .hero-card-wrapper { transform: scale(0.75); }
    .hero { padding: 100px 0 60px; }
    .hero h1 { font-size: 2.5rem; }
    .spline-container { height: 280px; }

    /* Move bottom cards up to clear the buttons and align with description */
    .card-3 { bottom: 35%; left: 5%; }
    .card-4 { bottom: 38%; right: 5%; }
}

/* --- TECH STACK MARQUEE (No Borders) --- */
.trust { 
    padding: 60px 0; 
    background: #FFFFFF;
    overflow: hidden; 
    width: 100%;
}

.trust p { 
    font-size: 0.75rem; 
    font-weight: 800; 
    color: #94A3B8; 
    letter-spacing: 2px; 
    margin-bottom: 40px; 
    text-transform: uppercase;
    text-align: center;
}

.marquee {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: scroll 40s linear infinite;
    animation-play-state: paused; 
    will-change: transform;
}

.marquee-track.scrolling {
    animation-play-state: running;
}

.marquee-track.scrolling:hover {
    animation-play-state: paused;
}

.tech-name {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.9;
    white-space: nowrap;
    cursor: default;
    transition: opacity 0.3s;
}

.tech-name:hover { opacity: 1; }

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 40px)); } 
}

.zapier { background-image: linear-gradient(135deg, #FF4F00 0%, #FF8C00 100%); }
.open-ai { background-image: linear-gradient(135deg, #10A37F 0%, #2DD4BF 100%); }
.slack { background-image: linear-gradient(135deg, #E01E5A 0%, #EC4899 100%); }
.notion { background-image: linear-gradient(135deg, #374151 0%, #6B7280 100%); }
.hubspot { background-image: linear-gradient(135deg, #FF5C35 0%, #F97316 100%); }
.make { background-image: linear-gradient(135deg, #6d28d9 0%, #a855f7 100%); }
.salesforce { background-image: linear-gradient(135deg, #00A1E0 0%, #00C6FF 100%); }
.shopify { background-image: linear-gradient(135deg, #96bf48 0%, #47c1bf 100%); }
.airtable { background-image: linear-gradient(135deg, #F9D51C 0%, #FFB600 100%); }
.stripe { background-image: linear-gradient(135deg, #635BFF 0%, #7E73FF 100%); }

@media (max-width: 768px) {
    .marquee-track { gap: 40px; animation-duration: 25s; }
    .tech-name { font-size: 1.5rem; }
}

/* --- SERVICES SECTION --- */
.services { 
    padding: var(--section-padding) 0; 
    background: var(--bg-alt); 
    overflow: hidden;
}

.section-title { 
    text-align: center; 
    margin-bottom: 80px; 
}

.services-grid { 
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
}

.card { 
    background: #FFFFFF; 
    padding: 40px; 
    border-radius: 24px; 
    position: relative;
    border: 2px solid transparent; 
    box-shadow: 0 0 0 1px #E2E8F0; 
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.card p {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.6;
}

.card-icon-bg {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: 0.3s;
}

.card-icon-bg i { width: 24px; height: 24px; stroke-width: 2.5px; }

.card-icon-bg.blue { background: #EFF6FF; color: #2563EB; }
.card-icon-bg.purple { background: #FAF5FF; color: #9333EA; }
.card-icon-bg.orange { background: #FFF7ED; color: #F97316; }
.card-icon-bg.green { background: #ECFDF5; color: #10B981; }
.card-icon-bg.pink { background: #FDF2F8; color: #EC4899; }
.card-icon-bg.cyan { background: #ECFEFF; color: #06B6D4; }

.card:hover { 
    transform: translateY(-8px); 
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.04),
        0 0 0 0 transparent;
    background: 
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, #0047FF, #9333EA, #F97316) border-box;
}

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

@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .card { padding: 30px; }
}

/* --- PREMIUM ABOUT SECTION --- */
.about { 
    padding: var(--section-padding) 0;
    position: relative; 
    overflow: hidden;
}

.about-grid { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 100px; 
    align-items: center; 
}

.about-visual {
    position: relative;
}

.image-stack {
    position: relative;
    z-index: 2;
}

.image-stack img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    transform: rotate(-2deg); 
    transition: 0.5s ease;
}

.about-visual:hover .image-stack img {
    transform: rotate(0deg);
}

.floating-badge {
    position: absolute;
    bottom: 40px;
    right: -30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    padding: 16px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: floatBadge 6s ease-in-out infinite;
}

.badge-icon {
    width: 48px;
    height: 48px;
    background: #ECFDF5;
    color: #10B981;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-text { display: flex; flex-direction: column; }
.badge-text strong { font-size: 1.1rem; color: var(--dark); font-weight: 800; }
.badge-text span { font-size: 0.85rem; color: var(--text); font-weight: 600; }

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.about-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 71, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.about-content { text-align: left; }
.about-content h2 { margin-bottom: 24px; }
.about-content p { color: var(--text); font-size: 1.1rem; margin-bottom: 32px; line-height: 1.7; }

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--dark);
    font-size: 0.95rem;
}

.value-item i {
    color: var(--primary);
    width: 20px;
    height: 20px;
}

.stats-box {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.stat h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.stat p {
    font-size: 0.85rem;
    color: #64748B;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: #E2E8F0;
}

@media (max-width: 968px) {
    .about-grid { grid-template-columns: 1fr; gap: 60px; }
    .about-visual { order: 2; }
    .floating-badge { right: 0; bottom: 20px; }
}

/* --- SCROLL PROCESS SECTION --- */
.process-wrapper {
    height: 200vh; 
    position: relative;
    background: var(--bg-white);
    width: 100%;
    /* overflow: hidden; Removed to restore sticky behavior */
}

.process-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

.process-sticky .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.progress-track {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 2px;
    background: transparent;
    margin: 40px 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.line-bg {
    position: absolute;
    top: 50%;
    left: 25px; 
    right: 25px; 
    height: 2px;
    background: #E2E8F0;
    transform: translateY(-50%);
    z-index: 1;
}

.line-fill {
    position: absolute;
    top: 50%;
    left: 25px; 
    width: 0%; 
    height: 2px;
    background: linear-gradient(90deg, #0033CC, #0047FF);
    transform: translateY(-50%);
    z-index: 2;
    transition: width 0.1s linear; 
    box-shadow: 0 0 15px rgba(0, 71, 255, 0.3);
}

.step-marker {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    padding: 0 5px;
}

.marker-circle {
    width: 50px;
    height: 50px;
    background: #FFFFFF;
    border: 2px solid #E2E8F0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: #94A3B8;
    transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 2;
}

#marker-1.active .marker-circle {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 0 0 6px rgba(0, 71, 255, 0.1);
    transform: scale(1.1);
}

#marker-2.active .marker-circle,
#marker-3.active .marker-circle {
    border: 2px solid transparent;
    background: 
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(135deg, #0047FF, #9333EA, #F97316) border-box;
    color: var(--primary);
    box-shadow: 0 0 0 6px rgba(147, 51, 234, 0.1);
    transform: scale(1.1);
}

.rotating-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 66px;
    height: 66px;
    border-radius: 50%;
    border: 1px dashed var(--primary);
    opacity: 0;
    transition: 0.4s;
    pointer-events: none;
}

.step-marker.active .rotating-ring {
    opacity: 0.6;
    animation: spin 10s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.process-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1000px;
}

.process-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    text-align: center;
    transition: all 0.5s ease;
    opacity: 0.5;
    filter: grayscale(1);
    transform: translateY(10px);
}

.process-card.active {
    opacity: 1;
    filter: grayscale(0);
    transform: translateY(0);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.p-icon {
    width: 50px;
    height: 50px;
    background: #EFF6FF;
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.p-icon i { width: 24px; height: 24px; }

@media (max-width: 900px) {
    .process-wrapper { height: auto; padding: 60px 0; }
    .process-sticky { position: relative; height: auto; }
    .progress-track { display: none; }
    .process-cards-grid { grid-template-columns: 1fr; gap: 40px; }
    .process-card { opacity: 1; filter: grayscale(0); transform: none; }
}

.vsl { padding: var(--section-padding) 0; text-align: center; overflow: hidden; }
.vsl-box h2 { font-size: 2rem; }
.video-container { 
    margin-top: 40px; 
    max-width: 900px; 
    margin-inline: auto; 
    aspect-ratio: 16/9; 
    background: #000; 
    border-radius: 30px; 
    overflow: hidden; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    cursor: pointer; 
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}
.video-placeholder { color: white; display: flex; flex-direction: column; align-items: center; gap: 15px; }
.play-icon { width: 60px; height: 60px; fill: var(--primary); color: var(--primary); }

/* --- PRICING SECTION --- */
.pricing {
    padding: var(--section-padding) 0;
    background: var(--bg-alt);
    overflow: hidden;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.pricing-card {
    background: #FFFFFF;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #E2E8F0;
    position: relative;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: var(--primary);
}

.pricing-card.popular {
    border: 2px solid var(--primary);
    box-shadow: 0 20px 40px rgba(0, 71, 255, 0.08);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.pricing-header .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1;
}

.pricing-header .price span {
    font-size: 1rem;
    color: var(--text);
    font-weight: 600;
}

.pricing-header p {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.6;
}

.pricing-subtext {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.5;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--dark);
    font-size: 0.95rem;
    font-weight: 600;
}

.pricing-features li i {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

/* --- FLOATING MENU --- */
.floating-menu {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.floating-menu.floating-menu-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-50%) translateX(20px);
}

.floating-menu.floating-menu-hidden.visible {
    opacity: 1;
    pointer-events: all;
    transform: translateY(-50%);
}

.floating-toggle {
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 71, 255, 0.4);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    position: relative;
}

.floating-menu:hover .floating-toggle {
    width: 200px;
    height: 220px;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 71, 255, 0.5);
}

/* Icon Animation */
.floating-toggle > svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    opacity: 1;
    width: 24px;
    height: 24px;
    pointer-events: none;
}

.floating-menu:hover .floating-toggle > svg {
    opacity: 0 !important;
    visibility: hidden !important;
    display: none;
}

/* Links Container */
.floating-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    inset: 0;
    padding: 32px;
    transition: all 0.4s ease;
    transform: translateY(10px);
}

.floating-menu:hover .floating-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0.15s;
}

/* Link Styling */
.floating-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.floating-links a:hover {
    color: white;
    transform: translateX(8px);
}

@media (max-width: 768px) {
    .floating-menu {
        display: none;
    }
}

/* --- CUSTOM SELECT STYLING --- */
.custom-select {
    position: relative;
    width: 100%;
}

.select-trigger {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    color: white;
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    transition: all 0.3s ease;
}

.select-trigger span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.select-trigger.placeholder {
    color: #94A3B8;
}

.select-trigger:hover {
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.08);
}

.select-trigger.active {
    border-color: var(--primary);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 0 3px rgba(0, 71, 255, 0.1);
}

.select-trigger i {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    color: #94A3B8;
}

.select-trigger.active i {
    transform: rotate(180deg);
    color: var(--primary);
}

.select-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: #0F172A;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    max-height: 300px;
    overflow-y: auto;
}

.select-options.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-option {
    padding: 14px 18px;
    cursor: pointer;
    transition: 0.2s;
    color: #CBD5E1;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.custom-option:last-child {
    border-bottom: none;
}

.custom-option:hover {
    background: rgba(255,255,255,0.05);
    color: white;
    padding-left: 22px;
}

.custom-option.selected {
    background: var(--primary);
    color: white;
}

/* Scrollbar for options */
.select-options::-webkit-scrollbar {
    width: 6px;
}
.select-options::-webkit-scrollbar-track {
    background: transparent;
}
.select-options::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
}

/* --- ABOUT PAGE STYLES --- */
.about-hero {
    padding: 100px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.about-hero p {
    font-size: 1.2rem;
    color: var(--text);
    line-height: 1.7;
}

.about-mission {
    padding: 80px 0;
    overflow: hidden;
}

/* --- BENTO GRID STYLES --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.bento-item {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #E2E8F0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.bento-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
    background: linear-gradient(180deg, #FFFFFF 0%, #EFF6FF 100%);
}

.bento-item.span-2 {
    grid-column: span 2;
    background: linear-gradient(135deg, #FFFFFF 30%, #E0E7FF 100%);
}

.bento-item.span-2:hover {
    background: linear-gradient(135deg, #FFFFFF 20%, #DBEAFE 100%);
}

.bento-content {
    position: relative;
    z-index: 2;
}

.bento-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.bento-item p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.6;
}

/* Decorative Background Elements for Bento */
.bento-bg-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    z-index: 1;
    transition: 0.5s ease;
}

.circle-1 {
    width: 200px;
    height: 200px;
    background: rgba(0, 71, 255, 0.15);
    top: -50px;
    right: -50px;
}

.circle-2 {
    width: 250px;
    height: 250px;
    background: rgba(147, 51, 234, 0.1);
    bottom: -80px;
    left: -50px;
}

.bento-item:hover .circle-1 {
    transform: scale(1.2);
    opacity: 0.6;
}

.bento-item:hover .circle-2 {
    transform: scale(1.2);
    opacity: 0.6;
}

@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-item.span-2 {
        grid-column: auto;
    }
}

/* Values Grid (Legacy - can be removed if unused) */
.values-section {
    padding: var(--section-padding) 0;
    background: var(--bg-alt);
    overflow: hidden;
}

.values-cards-grid {
    display: none; /* Hidden in favor of Bento Grid */
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    transition: 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: var(--primary);
}

.v-icon {
    width: 50px;
    height: 50px;
    background: #EFF6FF;
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    text-align: center;
}

.member-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 24px;
    border: 4px solid white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.team-card:hover .member-img {
    transform: scale(1.05);
    border-color: var(--primary);
}

.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.team-card span {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 16px;
}

.member-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.member-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F1F5F9;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.member-socials a:hover {
    background: var(--primary);
    color: white;
}

/* About CTA */
.about-cta {
    padding: 100px 0;
    text-align: center;
    background: #0F172A;
    color: white;
    margin-top: 60px;
    overflow: hidden;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.cta-box p {
    color: #94A3B8;
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-inline: auto;
}

@media (max-width: 1024px) {
    .values-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 60px; }
}

@media (max-width: 768px) {
    .values-cards-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .about-hero { padding: 120px 0 60px; }
}

/* --- AUTOMATIONS PAGE STYLES --- */
.automations-hero {
    padding: 80px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.automations-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.automations-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 0;
    letter-spacing: -2px;
}

.automations-hero .spline-container {
    max-width: 700px;
    margin: -50px auto 32px;
}

.automations-hero p {
    font-size: 1.2rem;
    color: var(--text);
    line-height: 1.7;
    padding-top: 24px;
}

/* --- Staggered Hero Entrance --- */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.automations-hero-content .spline-container,
.automations-hero-content .pill,
.automations-hero-content h1,
.automations-hero-content > p {
    opacity: 0;
    animation: heroFadeIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.automations-hero-content .spline-container {
    animation-delay: 0s;
}

.automations-hero-content .pill {
    animation-delay: 3.0s;
}

.automations-hero-content h1 {
    animation-delay: 3.35s;
}

.automations-hero-content > p {
    animation-delay: 3.7s;
}

/* Automations Hero — Tablet */
@media (max-width: 1024px) {
    .automations-hero {
        padding: 60px 0 60px;
    }

    .automations-hero .spline-container {
        height: 380px;
        margin: -30px auto 24px;
    }
}

/* Automations Hero — Mobile */
@media (max-width: 768px) {
    .automations-hero {
        padding: 40px 0 48px;
    }

    .automations-hero-content {
        max-width: 100%;
    }

    .automations-hero h1 {
        font-size: clamp(2rem, 7vw, 2.6rem);
        margin-bottom: 8px;
    }

    .automations-hero .spline-container {
        display: none;
    }

    .automations-hero p {
        font-size: 1.05rem;
        padding-top: 0;
    }

    .automations-hero-content .pill {
        animation-delay: 0.2s;
    }

    .automations-hero-content h1 {
        animation-delay: 0.5s;
    }

    .automations-hero-content > p {
        animation-delay: 0.8s;
    }
}

.automations-showcase {
    padding: 60px 0 var(--section-padding);
    background: var(--bg-white);
}

.automation-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 100px;
    border: 1px solid #E2E8F0;
    background: white;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(0, 71, 255, 0.2);
}

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

.automation-card {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.automation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.ac-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.ac-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ac-icon i {
    width: 24px;
    height: 24px;
    stroke-width: 2px;
}

.ac-icon.blue { background: #EFF6FF; color: #2563EB; }
.ac-icon.purple { background: #FAF5FF; color: #9333EA; }
.ac-icon.green { background: #ECFDF5; color: #10B981; }
.ac-icon.orange { background: #FFF7ED; color: #F97316; }
.ac-icon.pink { background: #FDF2F8; color: #EC4899; }

.ac-category {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.automation-card h3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.automation-card p {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.ac-workflow {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #F8FAFC;
    border-radius: 16px;
    margin-bottom: 30px;
    border: 1px solid #E2E8F0;
}

.ac-workflow .tool {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    color: var(--dark);
}

.ac-workflow .tool i {
    width: 20px;
    height: 20px;
}

.ac-workflow .connector {
    color: #94A3B8;
    display: flex;
    align-items: center;
}

.ac-workflow .connector i {
    width: 16px;
    height: 16px;
}

.ac-metrics {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #E2E8F0;
    padding-top: 20px;
}

.metric {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
}

.metric span {
    color: #64748B;
    font-weight: 500;
    display: block;
    font-size: 0.85rem;
    margin-bottom: 4px;
}

@media (max-width: 768px) {
    .automation-grid {
        grid-template-columns: 1fr;
    }
    .ac-workflow {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* --- DYNAMIC OPTIONS STYLING --- */
.dynamic-options-label {
    color: #94A3B8;
    font-size: 0.875rem;
    margin-bottom: 10px;
    font-weight: 600;
    display: block;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.checkbox-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.checkbox-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.checkbox-option.selected {
    background: rgba(0, 71, 255, 0.15);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 71, 255, 0.1);
}

.checkbox-option.selected span {
    color: white;
    font-weight: 600;
}

/* Custom Checkbox */
.checkbox-option input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    margin: 0;
    display: grid;
    place-content: center;
    transition: 0.2s;
    flex-shrink: 0;
    background: transparent;
}

.checkbox-option input[type="checkbox"]::before {
    content: "";
    width: 10px;
    height: 10px;
    transform: scale(0);
    transition: 0.2s transform ease-in-out;
    box-shadow: inset 1em 1em white;
    transform-origin: center;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    background-color: white;
}

.checkbox-option input[type="checkbox"]:checked {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-option input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.checkbox-option span {
    color: #E2E8F0;
    font-size: 0.85rem;
    font-weight: 400;
    transition: 0.3s;
}

/* Form Success & Error States */
.form-success {
    text-align: center;
    padding: 60px 20px;
}

.form-success .success-icon {
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #10B981;
}

.form-success .success-icon svg {
    width: 40px;
    height: 40px;
}

.form-success h2 {
    margin-bottom: 16px;
}

.form-success p {
    color: #94A3B8;
    font-size: 1.1rem;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

.form-error {
    color: #EF4444;
    font-size: 0.9rem;
    margin-bottom: 12px;
    text-align: center;
}

.contact { padding: var(--section-padding) 0; overflow: hidden; }
.contact-card { 
    background: var(--dark); 
    color: white; 
    padding: 50px 60px; 
    border-radius: 32px; 
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2); 
}
.contact-header { text-align: center; margin-bottom: 32px; }
.contact-header h2 { font-size: 1.75rem; }
.contact-header p { font-size: 0.95rem; margin-top: 8px; color: #94A3B8; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
input, textarea, select { width: 100%; padding: 14px 16px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); color: white; font-family: inherit; font-size: 0.9rem; appearance: none; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0, 71, 255, 0.08); }
.contact-form { max-width: 680px; margin: 0 auto; }
.contact-form textarea { resize: vertical; min-height: 70px; max-height: 140px; }
select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 1em; }
option { background: var(--dark); color: white; }

/* --- FOOTER CONNECTED CONTACT (HOMEPAGE) --- */
.contact.footer-connected {
    padding-bottom: 0;
}
.contact.footer-connected .container {
    max-width: 100%;
    padding: 0;
}
.contact.footer-connected .contact-card {
    background: linear-gradient(180deg, #F0F4FF 0%, var(--bg-white) 100%);
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: none;
    border-bottom: none;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    max-width: 100%;
    padding: 80px max(24px, calc((100vw - 1152px) / 2));
}
.contact.footer-connected .contact-header {
    text-align: left;
    margin-bottom: 0;
}
.contact.footer-connected .contact-header h2 {
    font-size: 2.25rem;
    line-height: 1.2;
    color: var(--primary);
}
.contact.footer-connected .contact-header p {
    color: var(--text);
}
.contact.footer-connected .contact-info-col {
    padding-right: 20px;
}
.contact-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 20px;
}
.contact-detail-item i,
.contact-detail-item svg {
    color: var(--primary);
    width: 24px;
    height: 24px;
    padding: 12px;
    background: rgba(0, 71, 255, 0.08);
    border-radius: 12px;
    box-sizing: content-box;
}
.contact-detail-item h4 {
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 4px;
}
.contact-detail-item p {
    color: var(--text);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}
.contact.footer-connected .contact-form {
    margin: 0;
    max-width: none;
}
.contact.footer-connected input,
.contact.footer-connected textarea,
.contact.footer-connected .select-trigger {
    background: white;
    border: 1.5px solid #CBD5E1;
    color: var(--dark);
    box-shadow: 0 2px 8px rgba(0, 71, 255, 0.04);
}
.contact.footer-connected input::placeholder,
.contact.footer-connected textarea::placeholder {
    color: #94A3B8;
}
.contact.footer-connected input:focus,
.contact.footer-connected textarea:focus,
.contact.footer-connected .select-trigger.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 71, 255, 0.1);
}
.contact.footer-connected .select-trigger.placeholder {
    color: #94A3B8;
}
.contact.footer-connected .contact-detail-item i {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 71, 255, 0.25);
}
.contact.footer-connected .checkbox-option {
    background: white;
    border: 1.5px solid #CBD5E1;
    box-shadow: 0 2px 6px rgba(0, 71, 255, 0.04);
}
.contact.footer-connected .checkbox-option:hover {
    background: #F8FAFC;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 71, 255, 0.1);
}
.contact.footer-connected .checkbox-option.selected {
    background: rgba(0, 71, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 71, 255, 0.15);
}
.contact.footer-connected .checkbox-option span {
    color: var(--dark);
}
.contact.footer-connected .checkbox-option.selected span {
    color: var(--primary);
    font-weight: 600;
}
.contact.footer-connected .checkbox-option input[type="checkbox"] {
    border-color: #CBD5E1;
}
.contact.footer-connected .checkbox-option:hover input[type="checkbox"] {
    border-color: var(--primary);
}
.contact.footer-connected .dynamic-options-label {
    color: var(--dark);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .contact.footer-connected .contact-card {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .contact.footer-connected .contact-info-col {
        padding-right: 0;
    }
    .contact.footer-connected .contact-header {
        text-align: center;
    }
    .contact-details {
        align-items: center;
        text-align: center;
    }
    .contact-detail-item {
        flex-direction: column;
        gap: 12px;
    }
}

.faq { padding: var(--section-padding) 0; background: var(--bg-white); overflow: hidden; }
.faq-list { max-width: 850px; margin: 0 auto; }

.faq-item {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.faq-header {
    padding: 30px 40px;
    transition: 0.3s;
}

.faq-header h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    transition: color 0.3s ease;
}

.faq-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content { overflow: hidden; }

.faq-content p {
    padding: 0 40px 35px 40px;
    color: var(--text);
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.faq-item:hover .faq-body { grid-template-rows: 1fr; }
.faq-item:hover .faq-content p { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.faq-item:hover { border-color: var(--primary); box-shadow: 0 20px 40px rgba(0, 71, 255, 0.12); transform: translateY(-4px); }
.faq-item:hover .faq-header h4 { color: var(--primary); }

@media (max-width: 1024px) {
    .hero-grid, .about-grid, .services-grid, .process-steps { grid-template-columns: 1fr; gap: 60px; }
    .form-row { grid-template-columns: 1fr; gap: 12px; }
    .options-grid { grid-template-columns: 1fr; }
    h1 { font-size: 3rem; }
    .contact-card { padding: 40px 20px; }

    /* Pricing Tablet */
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .pricing-card.popular {
        transform: none;
        order: -1;
    }
    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }
}

@media (max-width: 768px) {
    .faq-header { padding: 20px 25px; }
    .faq-content p { padding: 0 25px 25px 25px; }
}

.reveal, .reveal-up, .reveal-left, .reveal-right { opacity: 0; transition: 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-up { transform: translateY(60px); }
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }
.active { opacity: 1; transform: translate(0,0); }

.footer {
    padding: 80px 0 30px;
    background: var(--bg-white);
    border-top: none;
    margin-top: 0;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand p {
    color: var(--text);
    font-size: 0.95rem;
    margin: 20px 0 24px;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: 0.3s;
}

.social-icon:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-3px);
}

.social-icon i { width: 18px; height: 18px; }

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--dark);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.95rem;
    transition: 0.2s;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.newsletter-col p {
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 20px;
}

.newsletter-form {
    position: relative;
    display: flex;
}

.newsletter-form input {
    width: 100%;
    padding: 14px 50px 14px 16px;
    border-radius: 10px;
    border: 1px solid #E2E8F0;
    background: white;
    color: var(--dark);
    font-size: 0.9rem;
    outline: none;
    transition: 0.3s;
}

.newsletter-form input::placeholder {
    color: #94A3B8;
}

.newsletter-form input:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 71, 255, 0.1);
}

.btn-icon {
    position: absolute;
    right: 6px;
    top: 6px;
    bottom: 6px;
    width: 40px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.btn-icon:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.btn-icon i { width: 18px; height: 18px; }

.footer-bottom {
    border-top: 1px solid #F1F5F9;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #64748B;
}

.footer-bottom p {
    color: #64748B;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom-links a {
    color: #64748B;
    text-decoration: none;
    transition: 0.2s;
}

.footer-bottom-links a:hover { color: var(--primary); }

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-brand, .newsletter-col {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .social-links { justify-content: center; }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
    .newsletter-form { max-width: 400px; margin: 0 auto; }
}

/* --- GLOBAL MOBILE LAYOUT REFINEMENTS --- */
@media (max-width: 1024px) {
    .container {
        padding-inline: 20px;
    }
}

/* --- PROCESS PAGE STYLES --- */
.process-hero {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.process-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.process-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.process-hero p {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 40px;
}

.process-timeline-section {
    padding: 80px 0 120px;
    background: #F8FAFC;
}

.timeline-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.timeline-step {
    display: flex;
    gap: 40px;
    position: relative;
}

.timeline-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-width: 100px;
}

.t-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(0, 71, 255, 0.1);
    line-height: 1;
    margin-bottom: -20px;
    z-index: 1;
}

.t-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: white;
    border: 2px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.t-icon i { width: 28px; height: 28px; }
.t-icon.blue { color: var(--primary); border-color: rgba(0, 71, 255, 0.2); }
.t-icon.purple { color: #A855F7; border-color: rgba(168, 85, 247, 0.2); }
.t-icon.orange { color: #F97316; border-color: rgba(249, 115, 22, 0.2); }
.t-icon.green { color: #22C55E; border-color: rgba(34, 197, 94, 0.2); }
.t-icon.pink { color: #EC4899; border-color: rgba(236, 72, 153, 0.2); }
.t-icon.dark { color: white; background: var(--dark); border-color: var(--dark); }

.t-line {
    flex-grow: 1;
    width: 2px;
    background: #E2E8F0;
    margin-top: 15px;
    min-height: 50px;
}

/* Hide line on last child */
.timeline-step:last-child .t-line {
    display: none;
}

.timeline-content {
    background: white;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #E2E8F0;
    flex-grow: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: var(--primary);
}

.timeline-step:last-child .timeline-content {
    background: var(--dark);
    color: white;
    border-color: var(--primary);
}

.timeline-step:last-child .timeline-content h3 {
    color: white;
}

.timeline-step:last-child .timeline-content p {
    color: #CBD5E1;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
    letter-spacing: -0.5px;
}

.timeline-content p {
    font-size: 1.05rem;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.6;
}

.t-deliverables {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    border-top: 1px solid #E2E8F0;
    padding-top: 24px;
}

.timeline-step:last-child .t-deliverables {
    border-top-color: rgba(255,255,255,0.1);
}

.t-deliverables li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
}

.t-deliverables li i {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

@media (max-width: 768px) {
    .container {
        padding-inline: 16px;
    }

    /* Mobile Navbar Base (Top State) */
    .navbar {
        width: 90%;
        border-radius: 100px;
        padding: 12px 0;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        transform: translateX(-50%) translateY(20px);
    }

    .navbar.bottom-nav {
        width: 44px;
        height: 36px;
        border-radius: 100px;
        padding: 0;
        transform: translateX(-50%) translateY(calc(100vh - 100% - 30px));
        background: var(--primary);
        box-shadow: 0 15px 40px rgba(0,71,255,0.35);
    }

    .navbar.bottom-nav .nav-content {
        height: 100%;
        padding: 0;
    }

    .nav-content {
        position: relative;
        justify-content: center;
        padding: 0 20px;
        height: 48px; /* Fixed height to contain absolute elements */
    }

    .navbar .logo {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 1.4rem;
        opacity: 1;
        visibility: visible;
        transition: all 0.3s ease;
        margin: 0;
    }

    .navbar.bottom-nav .logo {
        opacity: 0;
        visibility: hidden;
        transform: translate(-50%, -10px);
    }

    .nav-toggle, .nav-cta {
        display: none !important;
    }

    .desktop-only {
        display: none !important;
    }

    .nav-links {
        position: absolute !important;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: transparent !important;
        box-shadow: none !important;
        padding: 0 !important;
        flex-direction: row !important;
        gap: 24px !important; /* Reduced gap to fit more icons on mobile */
        align-items: center;
        justify-content: center;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .navbar.bottom-nav .nav-links {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition-delay: 0s;
    }

    /* Nav Items (Icons + Text) */
    .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 4px;
        gap: 4px;
        text-decoration: none;
    }

    .nav-icon {
        display: block !important;
        width: 22px;
        height: 22px;
        stroke-width: 1.5px;
        color: #94A3B8;
        transition: all 0.3s ease;
    }

    .nav-text {
        display: block !important;
        font-size: 0.65rem;
        font-weight: 700;
        color: #94A3B8;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
    }

    .nav-item:hover .nav-icon,
    .nav-item.active .nav-icon,
    .nav-item:hover .nav-text,
    .nav-item.active .nav-text {
        color: var(--primary);
    }

    /* --- Nav Dots (collapsed circle state) --- */
    .navbar.bottom-nav .nav-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
        opacity: 1;
        transition: opacity 0.2s ease;
    }

    .nav-dots span {
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: white;
        animation: dotWave 1.4s ease-in-out infinite;
    }

    .nav-dots span:nth-child(2) { animation-delay: 0.15s; }
    .nav-dots span:nth-child(3) { animation-delay: 0.3s; }

    @keyframes dotWave {
        0%, 100% { transform: translateY(0); opacity: 1; }
        50% { transform: translateY(-4px); opacity: 0.5; }
    }

    /* --- Expanded state: circle → pill --- */
    .navbar.bottom-nav.nav-expanded {
        width: 90%;
        height: auto;
        border-radius: 100px;
        padding: 12px 0;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 20px 50px rgba(0,0,0,0.18);
    }

    .navbar.bottom-nav.nav-expanded .nav-content {
        height: 48px;
        padding: 0 20px;
    }

    .navbar.bottom-nav.nav-expanded .nav-dots {
        opacity: 0;
        pointer-events: none;
    }

    .navbar.bottom-nav.nav-expanded .nav-links {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition-delay: 0.15s;
    }

    .navbar.bottom-nav.nav-expanded .desktop-only {
        display: flex !important;
    }

    /* Hero: tighten spacing & font-size on small screens */
    .hero {
        padding: 96px 0 64px;
    }

    .hero h1 {
        font-size: clamp(2.1rem, 7vw, 2.7rem);
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 200px;
    }

    /* Process Page Adjustments */
    .process-hero {
        padding: 120px 0 60px;
    }
    
    .timeline-step {
        flex-direction: column;
        gap: 20px;
    }
    .timeline-visual {
        flex-direction: row;
        align-items: center;
        gap: 20px;
        justify-content: flex-start;
    }
    .t-number {
        margin-bottom: 0;
    }
    .t-line {
        display: none;
    }
    .timeline-content {
        padding: 24px;
    }

    /* Sections: reduce large gaps for a more compact, app-like feel */
    .services,
    .about,
    .vsl,
    .faq,
    .contact {
        padding: 80px 0;
    }

    .pricing {
        padding: 80px 0;
    }

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

    .section-title {
        margin-bottom: 48px;
    }

    /* Fix floating badge overflow */
    .floating-badge {
        right: 0;
        bottom: 20px;
        left: auto;
        transform: none;
        max-width: 90%;
    }

    /* Contact card full width with softer padding */
    .contact .container {
        padding-inline: 0;
    }

    .contact-card {
        padding: 32px 20px 36px;
        border-radius: 0;
    }

    /* Footer: vertical stacking with more breathing room on links */
    .footer {
        padding-top: 56px;
    }

    .footer-grid {
        gap: 32px;
        text-align: left;
    }

    .social-links {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* --- LEGAL PAGES (Privacy, Terms, Cookies) --- */
.legal-hero {
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
}

.legal-hero h1 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.legal-meta {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
}

.legal-body {
    padding: 0 0 var(--section-padding);
}

.legal-content {
    max-width: 720px;
    margin: 0 auto;
}

.legal-content section {
    margin-bottom: 48px;
}

.legal-content h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
    letter-spacing: -0.3px;
}

.legal-content p,
.legal-content li {
    font-size: 1rem;
    color: #64748B;
    line-height: 1.85;
    margin-bottom: 14px;
}

.legal-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 14px;
}

.legal-content ul li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
}

.legal-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.5;
}

.legal-content a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.legal-content a:hover {
    text-decoration: underline;
}

.legal-divider {
    height: 1px;
    background: #F1F5F9;
    margin: 48px 0;
}

.legal-content .callout {
    background: #F8FAFC;
    border-left: 3px solid var(--primary);
    padding: 20px 24px;
    border-radius: 0 12px 12px 0;
    margin: 24px 0;
}

.legal-content .callout p {
    margin-bottom: 0;
    color: var(--dark);
    font-weight: 500;
}

@media (max-width: 768px) {
    .legal-hero {
        padding: 80px 0 40px;
    }
    .legal-content {
        padding: 0 4px;
    }
    .legal-content section {
        margin-bottom: 36px;
    }
}

/* ==========================================================
   MOBILE VARIANT 2 — Page Links Navbar
   Same visual behavior as default (dots → pill),
   but links point to pages instead of sections.
   
   Usage: replace <nav class="navbar"> with
          <nav class="navbar mobile-v2">
   ========================================================== */

/* Desktop: show section links, hide page links */
.navbar.mobile-v2 .nav-links.mobile-nav {
    display: none;
}

.navbar.mobile-v2 .nav-links.desktop-nav {
    display: flex;
}

/* Mobile: show page links, hide section links */
@media (max-width: 768px) {
    .navbar.mobile-v2 .nav-links.desktop-nav {
        display: none;
    }

    .navbar.mobile-v2 .nav-links.mobile-nav {
        display: flex;
    }

    .navbar.mobile-v2.bottom-nav.nav-expanded .nav-links.mobile-nav {
        gap: 16px !important;
    }

    .navbar.mobile-v2 .nav-item.current-page .nav-icon {
        color: var(--primary);
    }

    .navbar.mobile-v2 .nav-item.current-page .nav-text {
        color: var(--primary);
    }
}

/*  HTML STRUCTURE — drop this inside any page:
    ─────────────────────────────────────────────

    <nav class="navbar mobile-v2">
        <div class="container nav-content">
            <div class="logo">Business<span>AI</span></div>

            <button class="nav-toggle" aria-label="Toggle navigation">
                <span></span><span></span><span></span>
            </button>

            <button class="nav-dots" aria-label="Open menu">
                <span></span><span></span><span></span>
            </button>

            <div class="nav-links">
                <a href="index.html" class="nav-item">
                    <i data-lucide="home" class="nav-icon"></i>
                    <span class="nav-text">Home</span>
                </a>
                <a href="about.html" class="nav-item">
                    <i data-lucide="info" class="nav-icon"></i>
                    <span class="nav-text">About</span>
                </a>
                <a href="automations.html" class="nav-item">
                    <i data-lucide="zap" class="nav-icon"></i>
                    <span class="nav-text">Automations</span>
                </a>
                <a href="process.html" class="nav-item">
                    <i data-lucide="workflow" class="nav-icon"></i>
                    <span class="nav-text">Process</span>
                </a>
            </div>

            <a href="#" class="btn btn-primary nav-cta show-audit-btn">Book Free Audit</a>
        </div>
    </nav>

    JS — add this to script.js to auto-highlight the current page:
    ──────────────────────────────────────────────────────────────

    if (document.querySelector('.navbar.mobile-v2')) {
        document.querySelectorAll('.navbar.mobile-v2 .nav-item').forEach(item => {
            const href = item.getAttribute('href');
            const path = window.location.pathname;
            if (path.endsWith(href) || (href === 'index.html' && (path.endsWith('/') || path === ''))) {
                item.classList.add('current-page');
            }
        });
    }
*/