/*
Theme Name: ZavrAI
Theme URI: https://zavr.ai
Author: ZavrAI Team
Author URI: https://zavr.ai
Description: A living AI-powered website featuring ZAV, your interactive AI host character. Premium stealth design with emerald accents.
Version: 2.1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zavrai
Tags: dark, modern, ai, animation, custom-background, custom-logo, custom-menu, featured-images, threaded-comments
*/

/* ==========================================================================
   GOOGLE FONTS IMPORT
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ==========================================================================
   CSS CUSTOM PROPERTIES - Stealth Emerald Palette
   ========================================================================== */

:root {
    /* Stealth Emerald - Core Palette */
    --zav-void: #050505;
    /* Main Background - Void Black */
    --zav-carbon: #121212;
    /* Card Surface */
    --zav-graphite: #262626;
    /* Card Border */
    --zav-mist: #EDEDED;
    /* Primary Text - Mist White */
    --zav-steel: #A1A1AA;
    /* Secondary Text - Steel Grey */
    --zav-signal: #34D399;
    /* The Touch - Signal Green */

    /* Signal Green Variants */
    --zav-signal-dim: rgba(52, 211, 153, 0.15);
    --zav-signal-glow: rgba(52, 211, 153, 0.4);
    --zav-signal-bright: #5EEAD4;

    /* Legacy mapping for compatibility */
    --zav-bg-darkest: var(--zav-void);
    --zav-bg-dark: #080808;
    --zav-bg-medium: var(--zav-carbon);
    --zav-bg-light: #1a1a1a;
    --zav-bg-card: var(--zav-carbon);

    /* Text Colors */
    --zav-text-primary: var(--zav-mist);
    --zav-text-secondary: var(--zav-steel);
    --zav-text-muted: #71717A;

    /* Effects */
    --zav-glow: 0 0 30px var(--zav-signal-glow);
    --zav-glow-subtle: 0 0 20px rgba(52, 211, 153, 0.2);

    /* Typography */
    --font-primary: 'Space Grotesk', sans-serif;
    /* Headings, Brand, Nav, Footer */
    --font-body: 'Inter', sans-serif;
    /* Body, UI, Buttons, Labels */
    --letter-spacing-heading: -1px;

    /* Spacing */
    --section-padding: 7rem;
    --container-max: 1200px;
    --container-padding: 2rem;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   BIG & BOLD OVERRIDES - Cockpit Header + Poster Hero
   ========================================================================== */

.site-header {
    padding: 2rem 5% !important;
}

.site-header .container.header-inner {
    max-width: 100% !important;
    padding: 0 !important;
}

.header-inner {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    position: relative;
}

.header-left,
.header-right {
    position: relative;
    z-index: 20;
}

.header-center {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 10;
    padding: 0 !important;
}

.menu-toggle {
    padding: 12px 32px !important;
    border: 2px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 100px !important;
    color: #fff !important;
    text-transform: uppercase;
    font-weight: 700 !important;
    letter-spacing: 0.05em;
    background: transparent !important;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(255, 255, 255, 0.45) !important;
    box-shadow: none !important;
}

.header-cta-btn {
    padding: 12px 32px !important;
    border-radius: 100px !important;
    border: none !important;
    background: #10B981 !important;
    color: #000 !important;
    text-transform: uppercase;
    font-weight: 800 !important;
    letter-spacing: 0.05em;
}

.header-cta-btn:hover {
    background: #34D399 !important;
    color: #000 !important;
    transform: none !important;
}

@media (max-width: 768px) {
    .menu-toggle {
        padding: 8px 12px !important;
        font-size: 11px !important;
        border: 1px solid rgba(255, 255, 255, 0.3) !important;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }

    .menu-toggle__label {
        display: inline !important;
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .menu-toggle__lines {
        margin: 0;
    }

    .header-cta-btn {
        padding: 8px 12px !important;
        font-size: 11px !important;
    }

    .header-center,
    .site-logo {
        z-index: 10;
    }

}

/* ==========================================================================
   LENIS SMOOTH SCROLL
   ========================================================================== */

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
    scroll-snap-type: none !important;
    /* Lenis handles scroll physics; snap conflicts */
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

/* ==========================================================================
   BASE RESET & TYPOGRAPHY
   ========================================================================== */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Global Horizontal Scroll Fix
   NOTE: overflow-x:hidden must NOT be on <html> — it breaks scroll-snap.
   Keep it on <body> only. */
html {
    width: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--zav-void);
    color: var(--zav-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}



h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    letter-spacing: var(--letter-spacing-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--zav-mist);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
    margin-bottom: 1rem;
    color: var(--zav-steel);
}

a {
    color: var(--zav-signal);
    text-decoration: none;
    transition: color 0.3s var(--ease-in-out);
}

a:hover {
    color: var(--zav-signal-bright);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   SCROLL ANIMATIONS - Reveal System
   ========================================================================== */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.8s var(--ease-out-expo),
        transform 0.8s var(--ease-out-expo);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition:
        opacity 0.8s var(--ease-out-expo),
        transform 0.8s var(--ease-out-expo);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition:
        opacity 0.8s var(--ease-out-expo),
        transform 0.8s var(--ease-out-expo);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition:
        opacity 0.7s var(--ease-out-expo),
        transform 0.7s var(--ease-spring);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Staggered children */
.stagger>*:nth-child(1) {
    transition-delay: 0s;
}

.stagger>*:nth-child(2) {
    transition-delay: 0.08s;
}

.stagger>*:nth-child(3) {
    transition-delay: 0.16s;
}

.stagger>*:nth-child(4) {
    transition-delay: 0.24s;
}

.stagger>*:nth-child(5) {
    transition-delay: 0.32s;
}

.stagger>*:nth-child(6) {
    transition-delay: 0.4s;
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

section {
    position: relative;
    padding: var(--section-padding) 0;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-body);
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
    text-decoration: none;
}

.btn-primary {
    background: var(--zav-signal);
    color: var(--zav-void);
    box-shadow: var(--zav-glow-subtle);
}

.btn-primary:hover {
    background: #2ab885;
    /* Darker emerald for stealth */
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(52, 211, 153, 0.3);
    color: var(--zav-void);
}

.btn-outline {
    background: transparent;
    color: var(--zav-mist);
    border: 1px solid var(--zav-graphite);
}

.btn-outline:hover {
    border-color: var(--zav-signal);
    color: var(--zav-signal);
    background: var(--zav-signal-dim);
}

/* ==========================================================================
   HEADER - Stealth Design
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--zav-graphite);
    transition: all 0.4s var(--ease-in-out);
}

.site-header.scrolled {
    padding: 0.6rem 0;
    background: rgba(5, 5, 5, 0.95);
}

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

.site-logo {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--zav-mist);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0;
    letter-spacing: -0.02em;
}

.site-logo:hover,
.site-logo:focus,
.site-logo:active {
    color: var(--zav-mist);
}

/* Header-only logo sizing */
.site-header .site-logo {
    font-size: 1.45rem;
}

.site-logo .site-logo-mark {
    display: inline-flex;
    align-items: baseline;
}

.site-logo .logo-word {
    display: inline-block;
}

.site-logo .logo-slot {
    position: relative;
    display: inline-block;
    width: 1ch;
    margin-left: 1px;
    vertical-align: baseline;
}

/* Create a real baseline/line-box for the slot */
.site-logo .logo-slot::before {
    content: 'r';
    visibility: hidden;
}

.site-logo .logo-slot .slot-r,
.site-logo .logo-slot .slot-cursor {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    opacity: 0;
    line-height: inherit;
}

.site-logo .logo-slot .slot-r {
    animation: zav-logo-slot-r 2.2s steps(1, end) infinite;
}

.site-logo .logo-slot .slot-cursor {
    color: var(--zav-signal);
    transform: translateY(0);
    animation: zav-logo-slot-cursor 2.2s steps(1, end) infinite;
}

@keyframes zav-logo-slot-r {

    0%,
    39% {
        opacity: 1;
    }

    40%,
    45% {
        opacity: 0;
    }

    46%,
    89% {
        opacity: 0;
    }

    90%,
    95% {
        opacity: 0;
    }

    96%,
    100% {
        opacity: 1;
    }
}

@keyframes zav-logo-slot-cursor {

    0%,
    39% {
        opacity: 0;
    }

    40%,
    45% {
        opacity: 0;
    }

    /* Cursor on + blink */
    46%,
    58% {
        opacity: 1;
    }

    59%,
    64% {
        opacity: 0;
    }

    65%,
    89% {
        opacity: 1;
    }

    90%,
    95% {
        opacity: 0;
    }

    96%,
    100% {
        opacity: 0;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav-menu a {
    color: var(--zav-steel);
    font-size: 0.875rem;
    font-weight: 500;
    font-family: var(--font-primary);
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--zav-signal);
    transition: width 0.3s var(--ease-out-expo);
}

.nav-menu a:hover {
    color: var(--zav-mist);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-cta .btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.8rem;
}

/* ==========================================================================
   NEW HEADER LAYOUT - Centered Logo + Drawer Menu
   ========================================================================== */

/* Header Layout */
.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
}

/* Left Zone - Hamburger */
.header-left {
    display: flex;
    justify-content: flex-start;
}

/* Center Zone - Logo */
.header-center {
    display: flex;
    justify-content: center;
}

/* Right Zone - CTA */
.header-right {
    display: flex;
    justify-content: flex-end;
}

/* Logo Image */
.site-logo__img {
    height: auto;
    display: block;
    max-width: 100%;
}

/* Hamburger Menu Toggle */
.menu-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid rgba(52, 211, 153, 0.4);
    border-radius: 8px;
    padding: 0.6rem 1rem;
    color: var(--zav-signal);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: rgba(52, 211, 153, 0.1);
    border-color: var(--zav-signal);
    box-shadow: 0 0 15px rgba(52, 211, 153, 0.3);
}

.menu-toggle__lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 18px;
}

.menu-toggle__lines span {
    display: block;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.menu-toggle.is-active .menu-toggle__lines span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-active .menu-toggle__lines span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .menu-toggle__lines span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Drawer Backdrop */
.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 98;
}

.drawer-backdrop.is-active {
    opacity: 1;
    visibility: visible;
}

/* Drawer Overlay */
.drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 99;
    display: none;
}

/* Header Drawer */
.header-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: rgba(5, 5, 5, 0.98);
    border-right: 1px solid var(--zav-graphite);
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.header-drawer.is-open {
    transform: translateX(0);
}

/* Drawer Header */
.drawer-header {
    display: flex;
    justify-content: flex-end;
    padding: 1.5rem;
    border-bottom: 1px solid var(--zav-graphite);
}

.drawer-close {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--zav-mist);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer-close:hover {
    border-color: var(--zav-signal);
    color: var(--zav-signal);
    background: rgba(52, 211, 153, 0.1);
}

/* Drawer Content */
.drawer-content {
    flex: 1;
    padding: 2rem 1.5rem;
    overflow-y: auto;
}

/* Drawer Navigation */
.drawer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.drawer-menu li {
    display: block;
}

.drawer-menu a {
    display: block;
    padding: 1rem 1.25rem;
    color: var(--zav-mist);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
}

.drawer-menu a:hover {
    background: rgba(52, 211, 153, 0.1);
    color: var(--zav-signal);
    border-left-color: var(--zav-signal);
    padding-left: 1.5rem;
}

/* Desktop Responsive */
@media (min-width: 769px) {
    .menu-toggle__label {
        display: inline;
    }

    .header-center {
        padding: 0 1rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        padding: 0.5rem 0.75rem;
    }

    .menu-toggle__label {
        display: none;
    }

    .header-center {
        padding: 0 0.5rem;
    }

    .site-logo__img {
        max-width: 80px;
    }

    .header-cta-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .header-drawer {
        width: 280px;
    }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--zav-void);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Subtle gradient overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(52, 211, 153, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(52, 211, 153, 0.02) 0%, transparent 40%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 10;
    padding: 2rem;
    margin: 0 auto;
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--zav-graphite);
    border-radius: 8px;
    /* Matching btn style */
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--zav-steel);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--zav-signal);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.hero-title {
    font-size: clamp(2.6rem, 6.8vw, 5.2rem);
    font-weight: 700;
    color: var(--zav-mist);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    max-width: 800px;
}

.hero-title .highlight {
    color: var(--zav-signal);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 600px;
    margin: 0 auto;
    color: var(--zav-steel);
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

/* ==========================================================================
   HERO BENEFITS LIST
   ========================================================================== */

.hero-benefits {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--zav-steel);
    font-size: 0.9rem;
    font-weight: 500;
}

.benefit-icon {
    color: var(--zav-signal);
    stroke-width: 3;
    flex-shrink: 0;
}

.trusted-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--zav-steel);
    font-family: var(--font-body);
}

.trusted-badge svg {
    stroke: var(--zav-signal);
    color: var(--zav-signal);
    flex-shrink: 0;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--zav-text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-indicator::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--zav-signal), transparent);
    animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    50.1% {
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ==========================================================================
   SECTIONS COMMON
   ========================================================================== */

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--zav-steel);
    /* Grey instead of green */
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--zav-steel);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */

.services {
    background: var(--zav-void);
    border-top: 1px solid var(--zav-graphite);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--zav-carbon);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--zav-graphite);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(52, 211, 153, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--zav-graphite);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 1.25rem;
    color: var(--zav-mist);
}

.service-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.service-title {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--zav-mist);
}

.service-description {
    color: var(--zav-steel);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 1.25rem;
}

.service-features li {
    padding: 0.35rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: var(--zav-steel);
    font-size: 0.85rem;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 4px;
    height: 4px;
    background: var(--zav-signal);
    border-radius: 50%;
}

.service-stat {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 16px;
    background: transparent;
    border: 2px solid #10B981;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

/* ==========================================================================
   PROCESS SECTION
   ========================================================================== */

.process {
    background: var(--zav-void);
    border-top: 1px solid var(--zav-graphite);
}

.process-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 700px;
    margin: 0 auto;
}

.process-phase {
    position: relative;
    padding: 2rem 0 2rem 3rem;
    border-left: 1px solid var(--zav-graphite);
}

.process-phase:last-child {
    border-left-color: transparent;
}

.process-phase::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 2rem;
    width: 9px;
    height: 9px;
    background: var(--zav-signal);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(52, 211, 153, 0.2);
    /* Desaturated shadow */
}

.phase-number {
    font-family: var(--font-body);
    font-size: 0.7rem;
    color: var(--zav-steel);
    /* Grey instead of green */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.phase-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--zav-mist);
}

.phase-description {
    color: var(--zav-steel);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.phase-tasks {
    list-style: none;
}

.phase-tasks li {
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
    color: var(--zav-text-muted);
    font-size: 0.85rem;
}

.phase-tasks li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--zav-graphite);
}

.phase-duration {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--zav-signal);
}

/* ==========================================================================
   RESULTS / STATS SECTION
   ========================================================================== */

.results {
    background: var(--zav-carbon);
    border-top: 1px solid var(--zav-graphite);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.testimonials-grid,
#results.stats-grid {
    align-items: center;
}

.stats-merged {
    margin-top: 3rem;
    margin-bottom: 0;
}

#results.stats-grid {
    position: relative;
    z-index: 1;
    background: transparent;
    padding-top: 2rem;
    padding-bottom: 1.5rem;
    margin-top: 2rem;
    justify-content: center;
    margin-bottom: 0;
}

#results.stats-grid::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -1.5rem;
    bottom: -1.5rem;
    width: 100vw;
    background: var(--zav-void);
    border-top: 1px solid var(--zav-graphite);
    z-index: -1;
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--zav-carbon);
    border-radius: 12px;
    border: 1px solid var(--zav-graphite);
    transition: all 0.4s var(--ease-out-expo);
}

.stat-item:hover {
    border-color: rgba(52, 211, 153, 0.3);
}

.stat-number {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    color: var(--zav-mist);
    /* White instead of green */
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--zav-steel);
    margin-top: 0.5rem;
}

/* ==========================================================================
   FOUNDERS SECTION
   ========================================================================== */

.founders {
    background: var(--zav-void);
    border-top: 1px solid var(--zav-graphite);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.founder-card {
    background: var(--zav-carbon);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--zav-graphite);
    transition: all 0.4s var(--ease-out-expo);
}

.founder-card:hover {
    border-color: rgba(52, 211, 153, 0.2);
}

.founder-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    background: var(--zav-graphite);
    padding: 2px;
    border: 1px solid rgba(52, 211, 153, 0.3);
}

.founder-avatar img,
.avatar-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-placeholder {
    background: var(--zav-void);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--zav-signal);
}

.founder-name {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--zav-mist);
}

.founder-role {
    color: var(--zav-signal);
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}

.founder-bio {
    color: var(--zav-steel);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

.testimonials {
    background: var(--zav-carbon);
    border-top: 1px solid var(--zav-graphite);
    padding-bottom: 0;
}

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

.testimonial-card {
    background: var(--zav-void);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--zav-graphite);
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--zav-mist);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--zav-signal-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--zav-signal);
    font-weight: 600;
    font-size: 0.9rem;
}

.testimonial-info h4 {
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
    color: var(--zav-mist);
}

.testimonial-info p {
    font-size: 0.8rem;
    color: var(--zav-steel);
    margin: 0;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

.contact {
    background: var(--zav-void);
    border-top: 1px solid var(--zav-graphite);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-content h2 {
    margin-bottom: 1rem;
}

.contact-content p {
    color: var(--zav-steel);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-form {
    background: var(--zav-carbon);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--zav-graphite);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--zav-steel);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--zav-void);
    border: 1px solid var(--zav-graphite);
    border-radius: 8px;
    color: var(--zav-mist);
    font-size: 0.9rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--zav-signal);
    box-shadow: 0 0 0 2px var(--zav-signal-dim);
}

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

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--zav-text-muted);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
    background: var(--zav-void);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--zav-graphite);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .site-logo {
    margin-bottom: 1rem;
    justify-content: flex-start;
    text-align: left;
}

/* Disable logo animation in footer */
.footer-brand .site-logo .logo-slot .slot-r,
.footer-brand .site-logo .logo-slot .slot-cursor {
    animation: none;
    opacity: 1;
}

.footer-brand .site-logo .logo-slot .slot-r {
    opacity: 1;
}

.footer-brand .site-logo .logo-slot .slot-cursor {
    opacity: 0;
}

/* Footer Logo Image */
.footer-logo__img {
    height: auto;
    display: block;
    max-width: 100%;
}

.footer-brand p {
    color: var(--zav-steel);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-title {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--zav-mist);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--zav-steel);
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--zav-signal);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--zav-graphite);
    text-align: center;
    color: var(--zav-text-muted);
    font-size: 0.8rem;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    .process-timeline {
        grid-template-columns: 1fr;
    }

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

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

/* ==========================================================================
   MOBILE ORB - Embedded Hero Strategy
   ========================================================================== */

/* Desktop: Hide mobile hero orb, show floating orb */
@media (min-width: 769px) {
    #zav-mobile-hero-orb {
        display: none;
    }
}

/* Mobile: Show hero-embedded orb, hide floating orb */
@media (max-width: 768px) {

    /* Hide the floating orb */
    #zav-character {
        display: none !important;
    }

    /* Show and style the hero-embedded orb */
    #zav-mobile-hero-orb {
        display: block;
        margin: 20px auto;
        width: 140px;
        height: 140px;
        position: relative;
    }

    .zav-orb-container {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .zav-orb-mobile {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: radial-gradient(circle at center, #FFFFFF 10%, #E0FFF8 30%, #00FFA3 80%, rgba(0, 255, 163, 0.1) 100%);
        border: 1px solid rgba(0, 255, 163, 0.4);
        box-shadow: 0 0 30px #00FFA3, 0 0 70px rgba(0, 255, 163, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.5);
        position: relative;
        animation: zav-float 4s ease-in-out infinite;
    }

    .zav-eyes-wrapper-mobile {
        position: absolute;
        top: 35%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        gap: 20px;
        z-index: 2;
    }

    .zav-eyes-wrapper-mobile .eye {
        width: 12px;
        height: 20px;
        background: #002b1b;
        border-radius: 6px;
        animation: zav-blink 6s infinite;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem;
    }

    .nav-menu {
        display: none;
    }

    .hero-content {
        margin-top: 60px;
        padding: 1rem;
        gap: 1rem;
    }

    .hero-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        word-wrap: break-word;
        padding: 0 0.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 0.75rem;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-benefits {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
        margin-top: 1rem;
    }

    .benefit-item {
        font-size: 0.85rem;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0.5rem;
        width: auto;
        white-space: nowrap;
    }

    .benefit-icon {
        flex-shrink: 0;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .scroll-indicator {
        position: absolute;
        bottom: 20px;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: auto;
        text-align: center;
        margin: 0;
        padding: 0;
    }

    /* Hero mobile fixes */
    .hero {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 1rem;
        box-sizing: border-box;
    }

    .integrations-list {
        flex-wrap: wrap;
        padding: 0 20px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px 15px;
        text-align: left;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: left;
        margin-bottom: 20px;
    }

    .footer-brand .site-logo {
        justify-content: flex-start;
    }

    .site-footer {
        padding-bottom: 100px !important;
    }

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

    .founders-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Founders - Force 1 column on mobile */
    .founders-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .founder-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Stats section mobile fixes - 2 columns */
    .stats-grid,
    .stats-bar .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem;
        padding: 0 0.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .stat-item {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
        padding: 1rem 0.5rem;
        text-align: center;
    }

    .stat-number {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .stat-label {
        font-size: 0.75rem;
    }

    /* Testimonials mobile fixes */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .testimonial-card {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
        padding: 1.5rem;
    }

    /* Ecosystem/Services mobile fixes */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .service-card {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
        padding: 1.5rem;
    }

    /* Process mobile fixes */
    .process-timeline {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .process-phase {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Ensure sections don't overflow */
    .founders,
    .stats-bar,
    .results,
    .testimonials,
    .services,
    .process {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .founders .container,
    .stats-bar .container,
    .results .container,
    .testimonials .container,
    .services .container,
    .process .container {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
        box-sizing: border-box;
    }
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */

.text-signal {
    color: var(--zav-mist);
}

.text-zav-green {
    color: var(--zav-signal);
}

.bg-signal {
    background: var(--zav-signal);
}

.glow {
    box-shadow: var(--zav-glow);
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1;
        transform: none;
    }
}

/* ==========================================================================
   INTEGRATIONS BAR
   ========================================================================== */

.integrations {
    padding: 2.5rem 0;
    border-top: 1px solid var(--zav-graphite);
    border-bottom: 1px solid var(--zav-graphite);
    background: var(--zav-carbon);
    overflow: hidden;
}

.integrations-label {
    font-size: 0.7rem;
    color: var(--zav-steel);
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    display: block;
    text-transform: uppercase;
    text-align: center;
}

.integrations-track {
    overflow: hidden;
    position: relative;
    width: 100%;
    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);
}

.integrations-list {
    display: flex;
    align-items: center;
    gap: 5rem;
    animation: scroll-logos 50s linear infinite;
    width: max-content;
    padding: 0.5rem 0;
}

.integrations-track:hover .integrations-list {
    animation-play-state: paused;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.integration-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.5s var(--ease-out-expo);
    cursor: default;
}

.integration-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.15);
}

.integration-logo {
    height: 100%;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    /* Support SVG, PNG, JPG */
}

/* ==========================================================================
   CASE STUDIES SECTION
   ========================================================================== */

.case-studies {
    background: var(--zav-void);
    padding: var(--section-padding) 0;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.case-study-card {
    background: var(--zav-carbon);
    border: 1px solid var(--zav-graphite);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.case-study-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--zav-signal), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.case-study-card:hover {
    border-color: var(--zav-signal);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.case-study-card:hover::before {
    opacity: 1;
}

.case-study-header {
    margin-bottom: 1.5rem;
}

.case-study-header h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--zav-mist);
}

.case-study-stat {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--zav-signal);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.case-study-desc {
    color: var(--zav-steel);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ==========================================================================
   FOUNDERS SECTION
   ========================================================================== */

.founders {
    background: var(--zav-carbon);
    padding: 3rem 0 var(--section-padding);
    border-top: 1px solid var(--zav-graphite);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 700px;
    margin: 3rem auto 0;
}

.founder-card {
    text-align: center;
    padding: 2rem;
    background: var(--zav-void);
    border: 1px solid var(--zav-graphite);
    border-radius: 12px;
    transition: all 0.4s var(--ease-out-expo);
}

.founder-card:hover {
    border-color: var(--zav-signal);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.founder-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--zav-signal);
    box-shadow: 0 0 30px var(--zav-signal-glow);
}

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

.founder-name {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--zav-mist);
}

.founder-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--zav-signal);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.founder-link:hover {
    color: var(--zav-signal-bright);
    transform: translateX(4px);
}

.founder-link svg {
    fill: currentColor;
}

/* ==========================================================================
   STATS BAR (COMPACT VERSION)
   ========================================================================== */

.stats-bar {
    padding: 4rem 0;
    background: var(--zav-void);
    border-top: 1px solid var(--zav-graphite);
}

.stats-bar .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stats-bar .stat-item {
    text-align: center;
}

/* ==========================================================================
   ECOMMERCE RESPONSIVE ADDITIONS
   ========================================================================== */

@media (max-width: 768px) {
    .case-studies-grid {
        grid-template-columns: 1fr;
    }

    .integrations-list {
        gap: 2.5rem;
    }

    .integration-item {
        height: 35px;
    }

    .integration-logo {
        max-width: 100px;
    }

    .stats-bar .stats-grid {
        grid-template-columns: 1fr !important;
    }

    .case-study-stat {
        font-size: 2rem;
    }

    /* Mobile: Force all cards to 1 column */
    .founders-grid,
    .stats-grid,
    .testimonials-grid,
    .services-grid {
        grid-template-columns: 1fr !important;
    }

    @keyframes scroll-logos {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }
}

/* ==========================================================================
   TESTIMONIAL AVATAR IMAGES
   ========================================================================== */

.testimonial-avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    flex-shrink: 0;
    border: 2px solid var(--zav-signal);
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.testimonial-metric {
    display: inline-block;
    margin-top: 1rem;
    padding: 8px 16px;
    background: transparent;
    border: 2px solid #10B981;
    border-radius: 100px;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

/* Alias support for legacy/new class names */
.pill,
.stat-box {
    background: transparent;
    border: 2px solid #10B981;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
    padding: 8px 16px;
    border-radius: 100px;
}

/* ==========================================================================
   MOBILE CARD FIX - FORCE 1 COLUMN (OVERRIDE ALL)
   ========================================================================== */

@media (max-width: 768px) {

    /* Force all card grids to single column */
    .founders-grid,
    .stats-bar .stats-grid,
    .stats-grid,
    .testimonials-grid,
    .services-grid,
    .case-studies-grid {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Ensure cards don't overflow */
    .founder-card,
    .stat-item,
    .testimonial-card,
    .service-card,
    .case-study-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }
}

/* ==========================================================================
   FOUNDER IMAGES
   ========================================================================== */

.founder-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.25rem;
    background: var(--zav-graphite);
    padding: 2px;
    border: 2px solid rgba(52, 211, 153, 0.3);
}

.founder-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .founder-avatar {
        width: 100px;
        height: 100px;
    }
}

/* ==========================================================================
   INTERACTIVE FOOTER - FOOROR STYLE
   Full-width with massive typography and background color change
   ========================================================================== */

.footer-interactive {
    --footer-active-bg: #6B21A8;
    width: 85%;
    margin: 0 auto;
    min-height: 600px;
    padding: 4rem 5vw;
    background-color: var(--zav-carbon);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: background-color 0.5s ease, width 0.8s ease-out;
    position: relative;
    overflow: hidden;
}

.footer-interactive.is-expanded {
    width: 95%;
}

.footer-interactive-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    min-height: 500px;
}

/* Left Side - Intro + Methods */
.footer-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Intro Text */
.footer-intro {
    margin-bottom: 3rem;
}

.intro-line1 {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: -0.5rem;
}

.intro-line2 {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

/* Contact Methods */
.footer-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-method {
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 1;
    filter: none;
}

/* Desktop: Blur ALL non-hovered siblings when hovering on any method */
@media (hover: hover) and (pointer: fine) {
    .footer-methods:has(> .footer-method:hover)>.footer-method:not(:hover) {
        opacity: 0.35;
        filter: blur(3px);
    }
}

.footer-method:hover {
    opacity: 1;
    filter: none;
}

.method-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.method-label {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #ffffff;
    display: block;
    line-height: 1.1;
    transition: all 0.3s ease;
}

.method-value {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    display: block;
    margin-top: 0.5rem;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
    font-weight: 500;
}

/* Desktop: Show method value on active/hover */
@media (hover: hover) and (pointer: fine) {
    .method-value {
        opacity: 0;
        transform: translateY(-10px);
    }

    .footer-method.is-active .method-value,
    .footer-method:hover .method-value {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Right Side - Big Icon Display */
.footer-right {
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.footer-display-icon {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-display-icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100%;
    max-height: 400px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transform: translate(-50%, -50%);
}

/* Icon Animation Classes */
.method-icon-img {
    animation-duration: 0.5s;
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
    animation-fill-mode: forwards;
}

.method-icon-img.icon-exit {
    animation-name: icon-exit;
}

.method-icon-img.icon-exit-down {
    animation-name: icon-exit-down;
}

.method-icon-img.icon-enter {
    animation-name: icon-enter;
}

@keyframes icon-exit {
    0% {
        transform: translate(-50%, -50%);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -150%);
        opacity: 0;
    }
}

@keyframes icon-exit-down {
    0% {
        transform: translate(-50%, -50%);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 150%);
        opacity: 1;
    }
}

@keyframes icon-enter {
    0% {
        transform: translate(-50%, 150%);
        opacity: 0;
    }

    100% {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

/* Footer Branding & Strip */
.footer-branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--zav-graphite);
}

.footer-brand .site-logo {
    font-size: 1.5rem;
}

/* Bottom Strip Links */
.footer-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
}

.strip-link {
    font-size: 0.85rem;
    font-family: var(--font-body);
    color: var(--zav-steel);
    text-decoration: none;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
    position: relative;
    padding: 0 0.75rem;
}

.strip-link:hover {
    color: var(--zav-signal);
    text-decoration: underline;
}

/* Separator between links */
.strip-link:not(:first-child)::before {
    content: '|';
    position: absolute;
    left: -0.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--zav-graphite);
    font-weight: 300;
    pointer-events: none;
}

.strip-link::after {
    content: none;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--zav-graphite);
}

.copyright {
    font-size: 0.8rem;
    color: var(--zav-text-muted);
    margin: 0;
}

/* ==========================================================================
   HEADER DRAWER FIX
   ========================================================================== */

.header-drawer {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    height: 100dvh;
    background: #050505;
    z-index: 9999;
}

.drawer-content {
    flex: 1;
    padding: 2rem 1.5rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.drawer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
}

.drawer-menu li {
    display: block;
    width: 100%;
}

.drawer-menu a {
    display: block;
    padding: 1rem 1.25rem;
    color: var(--zav-mist);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
    word-break: break-word;
}

.drawer-menu a:hover,
.drawer-menu a:focus {
    background: rgba(52, 211, 153, 0.1);
    color: var(--zav-signal);
    border-left-color: var(--zav-signal);
    padding-left: 1.5rem;
}

/* Drawer Backdrop */
.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
}

.drawer-backdrop.is-active {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   INTERACTIVE FOOTER - TABLET RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    .footer-interactive {
        padding: 3rem 4vw;
        min-height: 500px;
    }

    .footer-interactive-inner {
        gap: 3rem;
        min-height: 400px;
    }

    .footer-right {
        flex: 0 0 40%;
        min-height: 300px;
    }

    .footer-display-icon img {
        max-height: 300px;
    }

    .method-label {
        font-size: clamp(2rem, 5vw, 4rem);
    }
}

/* ==========================================================================
   INTERACTIVE FOOTER - MOBILE RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {
    .footer-interactive {
        padding: 2.5rem 1.5rem;
        min-height: auto;
    }

    .footer-interactive-inner {
        flex-direction: column;
        gap: 2rem;
        min-height: auto;
    }

    .footer-left {
        width: 100%;
        order: 1;
    }

    .footer-right {
        flex: none;
        width: 100%;
        order: 2;
        min-height: 200px;
    }

    .footer-intro {
        margin-bottom: 2rem;
        text-align: center;
    }

    .footer-interactive {
        padding: 3rem 1.5rem;
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 5, 5, 0.95) 100%) !important;
        border: 1px solid rgba(52, 211, 153, 0.3);
    }

    .footer-interactive-inner {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }

    .footer-left {
        flex: 1;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-intro {
        text-align: center;
        width: 100%;
    }

    .intro-line1,
    .intro-line2 {
        text-align: center;
    }

    .footer-right {
        display: none !important;
    }

    .footer-methods {
        gap: 1.5rem;
        align-items: center;
        width: 100%;
    }

    .footer-method {
        text-align: center;
        width: 100%;
        opacity: 1 !important;
        filter: none !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .method-link {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .method-label {
        font-size: clamp(1.5rem, 6vw, 2rem);
        color: var(--zav-signal) !important;
        text-align: center;
    }

    .method-value {
        font-size: 1rem;
        color: var(--zav-mist) !important;
        opacity: 1 !important;
        transform: none !important;
        text-align: center;
    }

    .footer-strip {
        gap: 1rem;
    }

    .strip-link {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .footer-interactive {
        padding: 2.5rem 1rem;
    }

    .footer-methods {
        gap: 1.25rem;
    }

    .method-label {
        font-size: clamp(1.5rem, 8vw, 1.75rem);
    }
}

@media (max-width: 768px) {

    .testimonials .section-header,
    .contact-content,
    .contact-methods {
        text-align: center;
    }

    .testimonials-grid {
        padding: 0 !important;
        justify-items: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        justify-items: center;
    }

    .service-card {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 320px;
        width: 100%;
        margin: 0 auto;
    }

    .service-icon {
        margin: 0 auto 1.25rem !important;
    }

    .testimonial-card {
        max-width: 320px !important;
        width: 100%;
        margin: 0 auto;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .testimonial-quote {
        text-align: center;
        width: 100%;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .testimonial-author {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-align: left;
        margin: 1.25rem auto 0;
        gap: 0.85rem;
        width: auto;
    }

    .testimonial-avatar,
    .testimonial-avatar-img {
        width: 44px;
        height: 44px;
        margin: 0 !important;
        flex-shrink: 0;
    }

    .testimonial-info {
        text-align: center;
    }

    .testimonial-info h4 {
        font-size: 0.85rem;
    }

    .testimonial-info p {
        font-size: 0.75rem;
    }

    .testimonial-metric {
        padding: 6px 12px;
        font-size: 0.75rem;
        margin-top: 0.75rem;
    }

    .testimonial-card {
        padding: 1.25rem;
        max-width: 300px !important;
    }

    #results.stats-grid {
        grid-template-columns: 1fr !important;
        width: min(280px, calc(100vw - 4rem)) !important;
        max-width: min(280px, calc(100vw - 4rem)) !important;
        margin: 2rem auto 0;
        padding: 1.25rem 0 2.25rem !important;
        gap: 0.9rem;
        justify-items: center;
    }

    #results.stats-grid::before {
        bottom: -2.25rem;
    }

    #results .stat-item {
        width: 100% !important;
        max-width: 280px !important;
        margin: 0 auto;
        padding: 1.1rem 0.75rem !important;
    }

    .contact-grid {
        gap: 2rem;
        justify-items: center;
    }

    .contact-form {
        max-width: 340px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   MOBILE HEADER + HERO COMPACT FIXES
   ========================================================================== */
@media (max-width: 768px) {

    html,
    body {
        scrollbar-width: none;
        -ms-overflow-style: none;
        overflow-x: hidden !important;
    }

    html::-webkit-scrollbar,
    body::-webkit-scrollbar {
        width: 0;
        height: 0;
        display: none;
    }

    *::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

    .site-header {
        padding: 0.8rem max(0.9rem, env(safe-area-inset-left)) !important;
    }

    .site-header .container.header-inner {
        padding: 0 !important;
    }

    .header-inner {
        min-height: 40px;
    }

    .header-left,
    .header-right {
        flex: 0 0 auto;
        min-width: 106px;
        display: flex;
        align-items: center;
    }

    .header-left {
        justify-content: flex-start;
    }

    .header-right {
        justify-content: flex-end;
        padding-right: max(6px, env(safe-area-inset-right));
    }

    .menu-toggle,
    .header-cta-btn {
        padding: 6px 10px !important;
        font-size: 9px !important;
        letter-spacing: 0.04em;
        white-space: nowrap;
    }

    .header-cta-btn {
        max-width: 122px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .site-header .site-logo {
        font-size: 1.05rem !important;
    }

    .header-center,
    .site-logo {
        z-index: 30;
    }

    .hero {
        min-height: 100svh;
    }

    .hero-content {
        margin-top: -60px;
        gap: 0.5rem;
        padding: 0.5rem 1rem 1.5rem;
    }

    .hero-title {
        font-size: 2.25rem !important;
        line-height: 1.08 !important;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 0.94rem;
        line-height: 1.55;
        max-width: 370px;
    }

    .hero-benefits {
        margin-bottom: 0.35rem;
    }

    .hero-social-proof {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .trusted-badge {
        display: block;
        font-size: 0.92rem;
        line-height: 1.4;
        max-width: 320px;
        margin: 0 auto;
        text-align: center;
    }

    .trusted-badge svg {
        display: inline-block;
        vertical-align: middle;
        width: 16px;
        height: 16px;
        margin-right: 0.4rem;
        margin-bottom: 2px;
    }

    #zav-mobile-hero-orb,
    #zav-character {
        display: none !important;
    }

    .zav-orb-mobile {
        width: 96px;
        height: 96px;
    }

    .scroll-indicator {
        position: absolute !important;
        top: auto !important;
        bottom: 14px !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        z-index: 30;
        margin: 0;
        pointer-events: none;
    }
}

@media (min-width: 769px) {
    .hero-content {
        align-items: center;
        text-align: center;
    }

    .hero-title-line2 {
        display: inline-block;
        white-space: nowrap;
    }

    .hero-subtitle,
    .hero-social-proof,
    .hero-cta,
    .hero-benefits {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .hero-benefits {
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        max-width: none;
        white-space: nowrap;
    }

    .hero-subtitle-emphasis {
        color: #ffffff;
        font-weight: 700;
        text-decoration: underline;
        text-underline-offset: 3px;
        white-space: nowrap;
        display: inline-block;
    }

    .hero-title-desktop-break {
        display: block;
    }

    .scroll-indicator {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: auto;
        margin: 0 !important;
        padding: 0 !important;
        bottom: 56px !important;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-title-desktop-break {
        display: none;
    }
}

/* ==========================================================================
   CONTACT AUDIT PAGE STYLES
   ========================================================================== */

.contact-audit-page {
    background: var(--zav-void);
    min-height: 100vh;
}

.contact-audit-section {
    padding: clamp(8rem, 10vw, 10rem) 1.5rem clamp(4rem, 6vw, 6rem);
}

.contact-audit-container {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0));
    border: 1px solid var(--zav-graphite);
    border-radius: 20px;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.contact-audit-header {
    margin-bottom: 2rem;
}

.contact-audit-kicker {
    margin: 0 0 0.75rem;
    font-family: var(--font-primary);
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    color: var(--zav-signal);
    text-transform: uppercase;
}

.contact-audit-header h1 {
    margin: 0 0 0.75rem;
    font-family: var(--font-primary);
    color: var(--zav-mist);
    font-size: clamp(2rem, 4.2vw, 3rem);
    line-height: 1.1;
}

.contact-audit-subtitle {
    margin: 0;
    color: var(--zav-steel);
    font-size: 1rem;
    font-family: var(--font-body);
}

.audit-message {
    border-radius: 12px;
    padding: 0.95rem 1rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
    font-size: 0.92rem;
}

.audit-message-success {
    color: #b9f7dc;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.6);
}

.audit-message-error {
    color: #ffd0d0;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.45);
}

.contact-audit-form {
    display: grid;
    gap: 1rem;
}

.audit-field-group {
    display: grid;
    gap: 0.5rem;
}

.audit-field-group label {
    color: var(--zav-mist);
    font-family: var(--font-primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.audit-field-group input,
.audit-field-group select,
.audit-field-group textarea {
    width: 100%;
    border: 1px solid var(--zav-graphite);
    border-radius: 10px;
    background: var(--zav-carbon);
    color: var(--zav-mist);
    padding: 0.9rem 1rem;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Style select dropdowns to match theme */
.audit-field-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2334D399' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.audit-field-group select option {
    background: var(--zav-carbon);
    color: var(--zav-mist);
    padding: 0.5rem;
}

.audit-field-group select option:hover,
.audit-field-group select option:focus,
.audit-field-group select option:checked {
    background: var(--zav-signal);
    color: var(--zav-void);
}

.audit-field-group textarea {
    resize: vertical;
    min-height: 140px;
}

.audit-field-group input::placeholder,
.audit-field-group textarea::placeholder {
    color: var(--zav-text-muted);
}

.audit-field-group input:focus,
.audit-field-group select:focus,
.audit-field-group textarea:focus {
    outline: none;
    border-color: var(--zav-signal);
    box-shadow: 0 0 0 2px var(--zav-signal-dim);
}

.audit-submit-btn {
    margin-top: 0.5rem;
    border: none;
    border-radius: 999px;
    background: #10B981;
    color: #04130d;
    min-height: 56px;
    width: 100%;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-shadow: 0 12px 24px rgba(16, 185, 129, 0.28);
}

.audit-submit-btn:hover {
    background: #34D399;
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(52, 211, 153, 0.35);
}

.audit-submit-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--zav-void), 0 0 0 4px var(--zav-signal);
}

/* Mobile styles for contact audit */
@media (max-width: 768px) {
    .contact-audit-section {
        padding-top: 7rem;
        padding-bottom: 3rem;
    }

    .contact-audit-container {
        border-radius: 12px;
        padding: 1.25rem;
    }

    .contact-audit-header h1 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .audit-submit-btn {
        min-height: 52px;
        font-size: 0.88rem;
    }
}