:root {
    /* Brand Colors (Updated from Logo) */
    --neon-green: #7FE559; /* Minty Green */
    --neon-cyan: #3AB8E6;  /* Sky Blue Cyan */
    --primary: var(--neon-cyan);
    --secondary: var(--neon-green);
    --dark: #050505;       /* Pure Black for Logo */
    --dark-alt: #111111;   
    --light: #F9FCF8;
    --white: #FFFFFF;
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
    
    /* Gradients */
    --brand-gradient: linear-gradient(180deg, var(--neon-green) 0%, var(--neon-cyan) 100%);
    
    /* Typography */
    --font-head: 'Inter', sans-serif;
    --font-body: 'Roboto', sans-serif;
    
    /* Variables */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Basics */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--dark); /* Switched to dark mode to match logo */
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

/* Gradient Text Utility */
.gradient-text {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.brand-logo {
    display: flex;
    align-items: center;
}
.brand-logo img {
    height: 75px;
    width: auto;
    mix-blend-mode: screen;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-family: var(--font-head);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 14px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-family: var(--font-head);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--light);
}

/* Loader */
.loading {
    overflow: hidden;
}
.loader {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: var(--white);
    z-index: 9999;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    background: #000000;
    z-index: 1000;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

.brand-logo {
    font-size: 1.8rem;
    color: var(--primary);
    letter-spacing: -1px;
}
.brand-logo img {
    height: 44px;
    width: auto;
    display: block;
}

.nav-links a {
    margin: 0 15px;
    font-weight: 500;
    font-family: var(--font-head);
    color: var(--white);
}

.nav-links a:hover {
    color: var(--neon-green);
}

/* ============================================
   SCROLL-DRIVEN VIDEO TRANSFORMATION
   ============================================ */

.scroll-video-section {
    height: 500vh; /* scroll distance — controls animation speed */
    position: relative;
}

.scroll-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

#scrollCanvas {
    position: absolute;
    inset: 0;
    display: block;
    background: #000;
}

/* Frame preload overlay */
.frame-loader {
    position: absolute;
    inset: 0;
    background: #000;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}
.frame-loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 240px;
}
.frame-loader-label {
    font-family: var(--font-head);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.4);
}
.frame-loader-track {
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}
.frame-loader-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-cyan));
    border-radius: 2px;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(127,229,89,0.5);
}

/* Progress bar */
.svs-progress-track {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.1);
    z-index: 10;
}
.svs-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-cyan));
    transition: width 0.05s linear;
    box-shadow: 0 0 8px rgba(127,229,89,0.6);
}

/* Annotation Cards — minimized bottom strip */
.anno-card {
    position: absolute;
    left: 50%;
    top: auto;
    bottom: 44px;
    transform: translateX(-50%) translateY(16px);
    max-width: 340px;
    width: max-content;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(127,229,89,0.25);
    border-radius: 50px;
    padding: 10px 20px 10px 14px;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.anno-card.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}
.anno-card--right {
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(16px);
}
.anno-card--right.visible {
    transform: translateX(-50%) translateY(0);
}

.anno-num {
    font-family: var(--font-head);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--dark);
    background: var(--neon-green);
    text-transform: uppercase;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 0;
    opacity: 1;
}
.anno-body {
    display: flex;
    align-items: center;
    gap: 10px;
}
.anno-body h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0;
    letter-spacing: -0.3px;
    white-space: nowrap;
}
.anno-body p {
    display: none;
}
.anno-cta {
    display: inline-block;
    margin-top: 0;
    color: var(--neon-green);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(127,229,89,0.4);
    padding-bottom: 1px;
    white-space: nowrap;
    transition: var(--transition);
}
.anno-cta:hover {
    color: #fff;
    border-bottom-color: #fff;
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    pointer-events: none;
    width: max-content;
}
.scroll-hint span {
    font-size: 1.75rem;
    font-family: var(--font-head);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-indent: 0.12em;
    color: #fff;
    background: rgba(0,0,0,0.65);
    padding: 10px 28px;
    border-radius: 8px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.9);
    white-space: nowrap;
    display: block;
    text-align: center;
}
.scroll-chevron {
    width: 49px;
    height: 49px;
    border-right: 4px solid var(--neon-green);
    border-bottom: 4px solid var(--neon-green);
    transform: rotate(45deg);
    filter: drop-shadow(0 0 10px rgba(127,229,89,0.9));
    animation: chevronBounce 1.4s ease-in-out infinite;
}
@keyframes chevronBounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.8; }
    50% { transform: rotate(45deg) translateY(7px); opacity: 1; }
}

/* Hero Text Section (below scroll section) */
.hero-text-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 5% 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center top, rgba(127,229,89,0.06) 0%, transparent 60%), var(--dark);
}
.hero-text-section .hero-content {
    max-width: 780px;
}
.hero-text-section .hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    margin-bottom: 24px;
    letter-spacing: -3px;
}
.hero-text-section .hero-subtitle {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 44px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.hero-text-section .hero-actions {
    justify-content: center;
}

/* Hero Section (legacy — keep for fallback but override) */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 5% 60px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* Premier Partner Banner */
.premier-partner-banner {
    background: linear-gradient(135deg, #050505 0%, #0a120e 100%);
    border-top: 1px solid rgba(127, 229, 89, 0.2); /* Neon Green tint */
    border-bottom: 1px solid rgba(127, 229, 89, 0.2);
    padding: 60px 5%;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.premier-partner-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(127, 229, 89, 0.05) 0%, transparent 70%);
}
.container-slim {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.partner-label {
    display: inline-block;
    color: var(--neon-green);
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}
.partner-text h2 {
    font-size: 2.1rem;
    margin-bottom: 10px;
    color: var(--white);
    letter-spacing: -1px;
}
.partner-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.text-accent {
    color: var(--secondary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

.hero-3d-container {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.nano-banana-placeholder {
    width: 600px;
    height: 500px;
    background: #E8F5E9;
    border: 2px dashed var(--secondary);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-family: var(--font-head);
    font-weight: 600;
}

.nano-banana-placeholder span {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Trust Banner */
.trust-banner {
    text-align: center;
    padding: 60px 5%;
    background: #060606;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    border-top: 1px solid rgba(255,255,255,0.03);
}
.trust-banner p {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
}
.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.8rem;
    color: rgba(255,255,255,0.75); /* Brightened so they stand out more */
    transition: var(--transition);
}
.trust-logos span {
    transition: var(--transition);
}
.trust-logos span:hover {
    color: var(--white);
    text-shadow: 0 0 10px rgba(161, 235, 52, 0.4);
}
.trust-logos .dot {
    color: var(--neon-cyan);
    font-size: 1.5rem;
    opacity: 0.5;
}

/* Utilities */
.bg-light { background: var(--dark-alt); }
.bg-dark { background: #000; color: var(--white); }
.bg-dark h2 { color: var(--white); }
.container { max-width: 1200px; margin: 0 auto; padding: 100px 5%; }

/* Grid blocks */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.card {
    background: var(--dark);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.05);
    border-top: 4px solid transparent;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    border-top: 4px solid var(--neon-green);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.card p {
    color: var(--text-muted);
}

/* Services */
.section-headers { text-align: center; max-width: 700px; margin: 0 auto; }
.section-desc { font-size: 1.1rem; color: var(--text-muted); margin-top: 15px;}
.h2-title { font-size: 2.6rem; letter-spacing: -1px;}

.service-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 100px;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
}

.service-image {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #e0e0e0;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #1B4D2E, #4CAF50);
    color: white;
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 600;
}

.badge {
    display: inline-block;
    padding: 5px 12px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-text h2 {
    font-size: 2.1rem;
    margin-bottom: 20px;
}

.feature-list {
    margin: 20px 0 30px;
}

.feature-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-weight: 500;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 800;
}

.link-arrow {
    font-family: var(--font-head);
    font-weight: 600;
    color: var(--primary);
    border-bottom: 2px solid transparent;
}
.link-arrow:hover {
    color: var(--secondary);
    border-bottom: 2px solid var(--secondary);
}

/* Contact/CTA */
.cta-section {
    padding: 100px 5%;
    text-align: center;
}
.cta-content {
    max-width: 600px;
    margin: 0 auto;
}
.cta-content p {
    margin: 20px 0 40px;
    color: #aaaaaa;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input, .contact-form select {
    width: 100%;
    padding: 15px;
    border: 1px solid #333;
    background: transparent;
    border-radius: 4px;
    color: white;
    font-family: var(--font-body);
}

.contact-form select option {
    background: #1a1a1a;
    color: white;
}

.contact-form input:focus {
    outline: none;
    border-color: var(--secondary);
}

.w-full { width: 100%; }

/* Service Areas SEO Footer */
.service-areas {
    background-color: var(--dark-alt);
    padding: 60px 5%;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.service-tagline {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-family: var(--font-head);
    font-weight: 600;
}
.city-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.city-chips span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    cursor: default;
    transition: var(--transition);
}
.city-chips span:hover {
    color: var(--neon-cyan);
    border-color: rgba(58, 184, 230, 0.5);
    background: rgba(58, 184, 230, 0.05);
    transform: translateY(-2px);
}
.city-chips a {
    background: rgba(127, 229, 89, 0.06);
    border: 1px solid rgba(127, 229, 89, 0.25);
    color: var(--neon-green);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
}
.city-chips a:hover {
    background: rgba(127, 229, 89, 0.12);
    border-color: rgba(127, 229, 89, 0.5);
    transform: translateY(-2px);
}
.text-center { text-align: center; }

/* City Feature Photo */
.city-feature-photo {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 5% 60px;
}
.city-feature-photo img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.07);
    display: block;
}
@media (max-width: 768px) {
    .city-feature-photo img { height: 240px; }
}

/* Footer */
footer {
    background: #0a0f0d;
    color: white;
    padding: 60px 5% 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3, .footer-col h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-col p {
    color: #888;
    margin-bottom: 10px;
}
.footer-col a {
    display: block;
    color: #888;
    margin-bottom: 10px;
}
.footer-col a:hover {
    color: var(--secondary);
}
.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 20px;
    color: #555;
    font-size: 0.9rem;
}

/* ============================================
   BLOG PREVIEW SECTION (Homepage)
   ============================================ */
.blog-preview-section {
    background: var(--dark-alt);
    border-top: 1px solid rgba(255,255,255,0.04);
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 60px;
}

.bp-card {
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
    color: inherit;
}

.bp-card:hover {
    transform: translateY(-6px);
    border-color: rgba(127,229,89,0.3);
    box-shadow: 0 16px 50px rgba(0,0,0,0.4);
}

.bp-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}
.bp-thumb-1 { background: linear-gradient(135deg, #0a2010, #1a5c2a); }
.bp-thumb-2 { background: linear-gradient(135deg, #0a1520, #0d3a52); }
.bp-thumb-3 { background: linear-gradient(135deg, #1a1a0a, #3d3d10); }

.bp-body {
    padding: 24px 24px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bp-tag {
    display: inline-block;
    font-family: var(--font-head);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--neon-green);
    margin-bottom: 10px;
}

.bp-body h3 {
    font-size: 1.1rem;
    line-height: 1.4;
    letter-spacing: -0.3px;
    margin-bottom: 10px;
    color: var(--white);
}

.bp-body p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 18px;
}

.bp-read {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--neon-cyan);
    transition: color 0.2s;
}

.bp-card:hover .bp-read {
    color: var(--white);
}

.blog-preview-cta {
    text-align: center;
    margin-top: 48px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}
.mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: #000;
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    font-family: var(--font-head);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}
.mobile-menu a:hover { color: var(--neon-green); }
.mobile-menu-close {
    position: absolute;
    top: 24px; right: 24px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

/* ── Phone icon color ── */
.ph-icon {
    color: var(--neon-green);
    font-style: normal;
}

/* ── Nav phone number ── */
.nav-phone {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--neon-green) !important;
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.nav-phone:hover { color: var(--white) !important; }
.nav-phone-mobile {
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--neon-green);
}

/* ── Hero body copy ── */
.hero-body {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ── About section ── */
.about-section .section-headers {
    max-width: 860px;
}
.about-section .h2-title {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    line-height: 1.35;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── 6-card grid — 3 cols desktop, 2 cols tablet, 1 col mobile ── */
.grid-3.value-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (max-width: 960px) {
    .grid-3.value-cards { grid-template-columns: repeat(2, 1fr); }
}

/* ── Stats section ── */
.stats-section {
    background: #0c1f0c;
    padding: 70px 5%;
    display: flex;
    justify-content: center;
}
.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    text-align: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 900px;
}
.stat-number {
    font-family: var(--font-head);
    font-size: 4rem;
    font-weight: 800;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.stat-label {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 8px;
}

/* ── Quotes section ── */
.quotes-section {
    padding: 60px 5%;
}
.quotes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
@media (max-width: 900px) {
    .quotes-grid { grid-template-columns: 1fr; }
}
.quote-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 28px;
}
.quote-text {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.7;
}
.quote-attr {
    font-size: 0.85rem;
    color: var(--neon-green);
    font-weight: 600;
}

/* ── Service perfect-for line ── */
.service-perfect {
    margin-top: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
}
.service-perfect strong {
    color: var(--neon-green);
}

/* ── CTA sub-copy ── */
.cta-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: -8px;
    margin-bottom: 20px;
}

/* ── CTA trust signals ── */
.cta-trust-signals {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    justify-content: center;
    flex-wrap: wrap;
    text-align: left;
}
.cta-trust-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    max-width: 240px;
}
.cta-trust-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}
.cta-trust-item strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.cta-trust-item p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
}

/* ── Sticky Bottom CTA Bar ── */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #0a1a0a 0%, #0f2a0f 100%);
    border-top: 1px solid rgba(127,229,89,0.25);
    z-index: 900;
    padding: 14px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.sticky-cta.visible {
    transform: translateY(0);
}
.sticky-cta-text {
    display: flex;
    flex-direction: column;
}
.sticky-cta-text strong {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}
.sticky-cta-text span {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 2px;
}
.sticky-cta-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}
.sticky-cta-actions .btn-primary {
    padding: 10px 22px;
    font-size: 0.9rem;
    white-space: nowrap;
}
.sticky-cta-actions .sticky-phone {
    font-family: var(--font-head);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--neon-green);
    white-space: nowrap;
    text-decoration: none;
}
.sticky-cta-actions .sticky-phone:hover {
    color: var(--white);
}
.sticky-cta-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.3);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    flex-shrink: 0;
}
.sticky-cta-close:hover { color: var(--white); }

@media (max-width: 640px) {
    .sticky-cta { flex-wrap: wrap; padding: 12px 5%; gap: 10px; }
    .sticky-cta-text strong { font-size: 0.9rem; }
    .sticky-cta-text span { display: none; }
    .sticky-cta-actions .sticky-phone { display: none; }
    .sticky-cta-actions .btn-primary { width: 100%; text-align: center; padding: 10px; }
    .sticky-cta-actions { width: 100%; }
}

/* ── Nav collapse: covers portrait AND landscape phones ── */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .hamburger { display: flex; }

    /* Center logo, pin hamburger to the right */
    .nav-container {
        justify-content: center;
        position: relative;
    }
    .brand-logo img {
        height: 56px;
        width: auto;
    }
    .hamburger {
        position: absolute;
        right: 5%;
        top: 50%;
        transform: translateY(-50%);
    }

    /* Canvas sits flush behind the black navbar — no gap */
    .scroll-sticky { top: 0; height: 100vh; }
}

/* Responsive */
@media (max-width: 768px) {
    /* Scroll video section — shorter scroll distance on mobile */
    .scroll-video-section { height: 300vh; }

    /* Annotation cards — mobile adjustments */
    .anno-card, .anno-card--right {
        left: 50%;
        right: auto;
        max-width: calc(100% - 40px);
        bottom: 60px;
        transform: translateX(-50%) translateY(16px) !important;
        padding: 8px 16px 8px 10px;
    }
    .anno-card.visible, .anno-card--right.visible {
        transform: translateX(-50%) translateY(0) !important;
    }
    .anno-body h3 { font-size: 0.85rem; white-space: normal; }
    .anno-cta { font-size: 0.78rem; }

    /* Scroll hint — smaller, centered, wrappable */
    .scroll-hint { bottom: 18%; gap: 8px; }
    .scroll-hint span {
        font-size: 0.82rem;
        padding: 7px 14px;
        white-space: normal;
        max-width: 85vw;
        text-align: center;
        letter-spacing: 0.07em;
    }
    .scroll-chevron { width: 26px; height: 26px; border-width: 3px; }

    /* Hero text */
    .hero-text-section {
        padding: 60px 6% 40px;
        min-height: auto;
    }
    .hero-text-section .hero-title {
        letter-spacing: -1px;
        font-size: clamp(1.9rem, 9vw, 2.8rem);
    }
    .hero-text-section .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 28px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    /* Section headings */
    .h2-title { font-size: 1.8rem; letter-spacing: -0.5px; }
    .section-desc { font-size: 0.92rem; line-height: 1.6; margin-top: 10px; }
    .section-headers { margin-bottom: 0; }

    /* Container padding */
    .container { padding: 44px 6%; }

    /* Why Turf cards — 2 columns, compact */
    .grid-3 { gap: 10px; margin-top: 20px; }
    .grid-3.value-cards { grid-template-columns: repeat(2, 1fr); }
    .card { padding: 16px 14px; }
    .card-icon { font-size: 1.8rem; margin-bottom: 8px; }
    .card h3 { font-size: 0.95rem; margin-bottom: 6px; line-height: 1.3; }
    .card p { font-size: 0.82rem; line-height: 1.45; }

    /* Trust banner */
    .trust-logos { font-size: 1.1rem; gap: 16px; flex-wrap: wrap; }

    /* Partner banner */
    .partner-text h2 { font-size: 1.6rem; }
    .premier-partner-banner { padding: 36px 6%; }

    /* Services */
    .service-row, .service-row.reverse {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        margin-top: 48px;
    }
    .service-image { aspect-ratio: 16/9; }
    .service-text { padding: 0 2%; }
    .service-text h2 { font-size: 1.6rem; }
    .feature-list li { text-align: left; }
    .link-arrow { display: inline-block; margin-top: 8px; }

    /* Legacy hero */
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 150px;
    }
    .hero-3d-container { margin-top: 50px; }
    .nano-banana-placeholder { width: 100%; height: 300px; }

    /* Stats */
    .stats-grid { flex-direction: column; gap: 24px; }
    .stat-number { font-size: 3rem; }

    /* Quotes */
    .quotes-grid { grid-template-columns: 1fr; }

    /* CTA trust signals */
    .cta-trust-signals { flex-direction: column; gap: 16px; }

    /* Form */
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 1rem;
    }

    /* Footer */
    .footer-container { grid-template-columns: 1fr; gap: 28px; }
}
