/* =====================================================
   MORNINGAI - PREMIUM DESIGN SYSTEM
   World-class design for Jony Ive & Brian Chesky
   ===================================================== */

:root {
    /* Brand Colors */
    --primary: #FF385C;
    --primary-dark: #e6324f;
    --black: #000000;
    --dark: #22252A;
    --gray-600: #4a4a4a;
    --gray-500: #8B8C8F;
    --gray-300: #E2E3E6;
    --gray-100: #F7F7F7;
    --white: #FFFFFF;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing Scale */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 48px;
    --space-8: 64px;
    --space-9: 96px;
    --space-10: 128px;

    /* Animation */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration: 300ms;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 24px 80px rgba(0,0,0,0.16);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: var(--dark); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* Smooth reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

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

/* Stagger children animations */
.stagger-children > * {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-5);
}

/* =====================================================
   HEADER
   ===================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background var(--duration) var(--ease), backdrop-filter var(--duration) var(--ease);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

/* Pricing page: header always readable (dark text on light background) */
body.page-pricing .header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
body.page-pricing .header .nav-link,
body.page-pricing .header .logo-img {
    color: var(--dark);
}
body.page-pricing .header .logo-img {
    filter: brightness(0);
}
body.page-pricing .header .nav-link:hover {
    color: var(--gray-600);
}
body.page-pricing .header .mobile-toggle span {
    background: var(--dark);
}
body.page-pricing .header .btn-nav {
    background: var(--black);
    color: var(--white);
}
body.page-pricing .header .btn-nav:hover {
    background: var(--dark);
    color: var(--white);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    z-index: 10;
}

.logo-img {
    height: 32px;
    width: auto;
    transition: filter var(--duration) var(--ease);
}

.header.scrolled .logo-img {
    filter: brightness(0);
}

.footer-logo-img {
    height: 28px;
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: var(--space-2) var(--space-4);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    transition: color var(--duration) var(--ease);
}

.header.scrolled .nav-link { color: var(--dark); }
.nav-link:hover { color: var(--white); }
.header.scrolled .nav-link:hover { color: var(--primary); }

.chevron {
    transition: transform var(--duration) var(--ease);
}

.nav-dropdown { position: relative; }
.nav-dropdown:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown-content {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 280px;
    padding: var(--space-3);
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transition: all var(--duration) var(--ease);
}

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    border-radius: 8px;
    transition: background var(--duration) var(--ease);
}

.dropdown-item:hover { background: var(--gray-100); }

.dropdown-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.dropdown-item strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.dropdown-item span {
    font-size: 13px;
    color: var(--gray-500);
}

/* Dropdown Group */
.dropdown-group {
    margin-bottom: var(--space-2);
    padding-bottom: var(--space-2);
    border-bottom: 1px solid var(--gray-300);
}

.dropdown-group-label {
    display: block;
    padding: var(--space-2) var(--space-4);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
}

.dropdown-divider {
    height: 1px;
    background: var(--gray-300);
    margin: var(--space-2) var(--space-3);
}

.dropdown-content-grouped {
    min-width: 200px;
}

/* Mega Dropdown */
.dropdown-content-mega {
    min-width: 680px;
    left: 0;
    transform: translateX(0) translateY(8px);
}

.nav-dropdown:hover .dropdown-content-mega {
    transform: translateX(0) translateY(0);
}

.dropdown-mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
}

.dropdown-mega-grid .dropdown-group {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.dropdown-mega-grid .dropdown-item {
    padding: var(--space-2) var(--space-3);
}

.dropdown-mega-grid .dropdown-item strong {
    font-size: 13px;
    font-weight: 500;
}

/* Full-width mega menu (Jasper-style): viewport-centered so it never clips */
.dropdown-mega-full {
    position: fixed;
    left: 50%;
    top: 72px;
    width: 90vw;
    max-width: 1100px;
    margin-left: 0;
    transform: translateX(-50%) translateY(8px);
    padding: var(--space-6);
    box-sizing: border-box;
    z-index: 1001;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

.nav-dropdown:hover .dropdown-mega-full {
    transform: translateX(-50%) translateY(0);
}

/* Mega panel (Who we serve, Resources): same viewport-centered treatment */
.dropdown-mega-panel {
    position: fixed;
    left: 50%;
    top: 72px;
    width: 90vw;
    max-width: 720px;
    margin-left: 0;
    transform: translateX(-50%) translateY(8px);
    padding: 0;
    box-sizing: border-box;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--duration) var(--ease), visibility var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.nav-dropdown:hover .dropdown-mega-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-panel-inner {
    padding: var(--space-6);
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

.mega-panel-desc {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: var(--space-5);
    line-height: 1.5;
}

.mega-panel-grid {
    display: grid;
    gap: var(--space-4);
}

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

.mega-panel-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.mega-panel-card {
    display: block;
    padding: var(--space-4);
    border-radius: 12px;
    background: var(--gray-100);
    text-decoration: none;
    color: inherit;
    transition: background var(--duration) var(--ease);
    border: 1px solid transparent;
}

.mega-panel-card:hover {
    background: var(--gray-300);
    border-color: var(--gray-300);
}

.mega-panel-card-title {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: var(--space-2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
}

.mega-panel-card-desc {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
}

.mega-panel-card .mega-section-arrow {
    flex-shrink: 0;
}

.mega-section {
    margin-bottom: var(--space-4);
}

.mega-section-dna {
    margin-bottom: var(--space-4);
}

.mega-section-link {
    display: block;
    padding: var(--space-4);
    border-radius: 12px;
    background: var(--gray-100);
    transition: background var(--duration) var(--ease);
    text-decoration: none;
    color: inherit;
}

.mega-section-link:hover {
    background: var(--gray-300);
}

.mega-section-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: var(--space-2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
}

.mega-section-arrow {
    font-size: 1.25rem;
    color: var(--gray-500);
    flex-shrink: 0;
}

.mega-section-desc {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
    margin: 0;
    max-width: 520px;
}

/* Primary nav link (e.g. Pricing) - no dropdown */
.nav-link-pricing {
    white-space: nowrap;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.btn-nav {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    background: var(--black);
    border-radius: 8px;
    transition: all var(--duration) var(--ease);
}

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

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    min-width: 48px;
    min-height: 48px;
    padding: 12px;
    z-index: 10;
}

.mobile-toggle span {
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 1px;
    transition: all var(--duration) var(--ease);
}

.header.scrolled .mobile-toggle span { background: var(--dark); }

/* Mobile toggle active state */
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Open States */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: var(--space-4);
        padding-bottom: 180px; /* Space for fixed nav-actions so content isn't cut off */
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        transform: translateX(-100%);
        transition: transform 0.3s var(--ease);
        z-index: 999;
    }

    .nav-menu.mobile-open {
        transform: translateX(0);
    }

    /* Primary nav link (e.g. Pricing) on mobile - large touch target */
    .nav-link-pricing {
        display: flex;
        align-items: center;
        min-height: 48px;
        padding: 14px 16px;
        font-size: 16px;
        border-radius: 8px;
        color: var(--dark);
    }

    /* Nav actions positioned at bottom of the slide-in menu */
    .nav-actions {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--white);
        padding: var(--space-5);
        padding-bottom: max(var(--space-5), env(safe-area-inset-bottom));
        border-top: 1px solid var(--gray-300);
        flex-direction: column;
        gap: var(--space-3);
        transform: translateX(-100%);
        transition: transform 0.3s var(--ease);
        z-index: 1000;
    }

    .nav-actions.mobile-open {
        transform: translateX(0);
    }

    .nav-actions .btn-nav {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
        background: var(--black);
        color: var(--white);
    }

    .nav-actions .btn-nav:hover {
        background: var(--dark);
        color: var(--white);
    }

    .nav-actions .nav-link {
        color: var(--dark);
        text-align: center;
        padding: var(--space-3);
    }

    .nav-dropdown {
        width: 100%;
        flex-shrink: 0;
    }

    .nav-dropdown .nav-link {
        color: var(--dark);
        width: 100%;
        justify-content: space-between;
        min-height: 48px;
        padding: 14px 16px;
        font-size: 16px;
        border-radius: 8px;
    }

    .nav-dropdown.open .nav-link {
        background: var(--gray-100);
        font-weight: 600;
    }

    .dropdown-content {
        position: static;
        transform: none;
        min-width: 100%;
        padding: 0;
        background: var(--gray-100);
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s var(--ease), visibility 0s 0.4s;
    }

    /* Large max-height so expanded Platform menu is never cut off; parent scrolls */
    .nav-dropdown.open .dropdown-content {
        visibility: visible;
        max-height: 4000px;
        overflow-y: visible;
        transition: max-height 0.4s var(--ease), visibility 0s 0s;
    }

    .nav-dropdown:hover .dropdown-content {
        opacity: 1;
        visibility: hidden;
        transform: none;
    }

    .nav-dropdown.open:hover .dropdown-content {
        visibility: visible;
    }

    .dropdown-content-mega,
    .dropdown-mega-full,
    .dropdown-mega-panel {
        position: static;
        min-width: 100%;
        max-width: none;
        width: 100%;
        left: 0;
        top: auto;
        transform: none;
        padding: var(--space-3);
        margin-left: 0;
    }

    .nav-dropdown:hover .dropdown-mega-full,
    .nav-dropdown:hover .dropdown-mega-panel {
        transform: none;
    }

    .mega-panel-inner {
        padding: var(--space-3);
    }

    .mega-panel-grid-2,
    .mega-panel-grid-3 {
        grid-template-columns: 1fr;
    }

    .mega-panel-card {
        min-height: 44px;
        padding: 14px 16px;
    }

    .mega-panel-card-title {
        font-size: 1rem;
    }

    .mega-panel-card-desc {
        font-size: 12px;
    }

    .dropdown-mega-grid {
        grid-template-columns: 1fr;
        gap: var(--space-1);
    }

    .dropdown-mega-grid .dropdown-group {
        margin-top: var(--space-3);
    }

    .dropdown-mega-grid .dropdown-group:first-child {
        margin-top: 0;
    }

    .dropdown-group-label {
        padding: 8px 16px;
        font-size: 12px;
    }

    .dropdown-item {
        min-height: 44px;
        padding: 12px 16px;
        font-size: 15px;
    }

    /* Mega section (DNA) on mobile - tappable */
    .mega-section-link {
        min-height: 44px;
        padding: 14px 16px;
    }

    .mega-section-title {
        font-size: 1.1rem;
    }

    .mega-section-desc {
        font-size: 13px;
    }

    .nav-dropdown .chevron {
        transition: transform 0.3s var(--ease);
    }

    .nav-dropdown.open .chevron {
        transform: rotate(180deg);
    }
}

/* Mobile overlay: tap to close menu */
.nav-mobile-overlay {
    display: none;
}
@media (max-width: 1024px) {
    .nav-mobile-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
        pointer-events: none;
    }
    body.mobile-nav-open .nav-mobile-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-video,
.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 140px var(--space-6) var(--space-8);
}

.hero-text {
    max-width: 640px;
}

.hero-rotate-wrap {
    display: block;
    text-align: left;
}

.hero-rotate-word {
    display: inline-block;
    color: var(--white);
    transition: opacity 0.35s var(--ease);
}

.hero-rotate-word.fade-out {
    opacity: 0;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 600;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: var(--space-5);
    letter-spacing: -0.03em;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}

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

.hero-subhead {
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255,255,255,0.75);
    margin-bottom: var(--space-6);
    letter-spacing: -0.01em;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 0.4s forwards;
}

/* Pills */
.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 0.5s forwards;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 10px 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
    user-select: none;
    position: relative;
    overflow: hidden;
}

.pill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.15) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.pill:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-1px);
}

.pill:hover::before {
    opacity: 1;
    transform: scale(2);
}

.pill:has(input:checked) {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.35);
}

.pill input { display: none; }

.pill-check {
    width: 16px;
    height: 16px;
    border: 1.5px solid rgba(255,255,255,0.5);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s var(--ease-spring);
    flex-shrink: 0;
}

.pill input:checked + .pill-check {
    background: var(--white);
    border-color: var(--white);
    transform: scale(1.05);
}

.pill input:checked + .pill-check::after {
    content: '';
    width: 8px;
    height: 5px;
    border-left: 2px solid var(--dark);
    border-bottom: 2px solid var(--dark);
    transform: rotate(-45deg) translateY(-1px);
}

.pill span:last-child {
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: -0.01em;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) 0.6s forwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    background: var(--primary);
    border-radius: 8px;
    transition: all var(--duration) var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--duration) var(--ease);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 56, 92, 0.35);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(255, 56, 92, 0.25);
}

.cta-note {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

/* Homepage hero: primary CTA black with white text */
.hero .btn-primary,
.hero .hero-cta-btn {
    background: var(--black);
    color: var(--white);
}
.hero .btn-primary:hover,
.hero .hero-cta-btn:hover {
    background: var(--dark);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.hero .btn-primary::before { opacity: 0; }

/* Trusted Bar */
.trusted-bar {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-7);
    padding: var(--space-5) var(--space-6);
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
}

.trusted-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    white-space: nowrap;
}

.trusted-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
}

.trusted-logo {
    height: 24px;
    width: auto;
    opacity: 0.6;
    filter: brightness(0) invert(1);
    transition: opacity var(--duration) var(--ease);
}

.trusted-logo:hover { opacity: 1; }

/* =====================================================
   VIDEO SECTION
   ===================================================== */

.video-section {
    padding: var(--space-9) 0;
    background: var(--white);
}

.video-section-fullwidth {
    padding: 0;
    background: var(--dark);
}

.video-wrapper {
    text-align: center;
}

.video-wrapper-fullwidth {
    width: 100%;
    position: relative;
}

.video-embed-fullwidth {
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    width: 100%;
    background: var(--dark);
}

.video-embed-fullwidth iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-unmute-btn {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: 14px 24px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    z-index: 10;
}

.video-unmute-btn:hover {
    background: rgba(0, 0, 0, 0.85);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translate(-50%, 50%) scale(1.05);
}

.video-unmute-btn svg {
    width: 20px;
    height: 20px;
}

.video-unmute-btn.muted .unmute-icon { display: block; }
.video-unmute-btn.muted .mute-icon { display: none; }
.video-unmute-btn:not(.muted) .unmute-icon { display: none; }
.video-unmute-btn:not(.muted) .mute-icon { display: block; }

.video-unmute-btn .unmute-text {
    transition: opacity 0.3s var(--ease);
}

.video-unmute-btn:not(.muted) .unmute-text {
    display: none;
}

.video-caption-fullwidth {
    text-align: center;
    padding: var(--space-5) var(--space-6);
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    background: var(--dark);
}

.video-player {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.12);
    background: var(--gray-100);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.video-player:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 100px rgba(0,0,0,0.16);
}

.video-poster {
    width: 100%;
    display: block;
}

.video-embed {
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    width: 100%;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 88px;
    height: 88px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    transition: all 0.4s var(--ease);
}

.play-button::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.play-button svg {
    width: 28px;
    height: 28px;
    margin-left: 4px;
    color: var(--primary);
    transition: transform 0.3s var(--ease);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 12px 48px rgba(0,0,0,0.2);
}

.play-button:hover svg {
    transform: scale(1.1);
}

.video-caption {
    margin-top: var(--space-5);
    font-size: 14px;
    color: var(--gray-500);
}

/* =====================================================
   SHOWCASE SECTION (Made with MorningAI)
   ===================================================== */

/* =====================================================
   BUCKMASON-INSPIRED CURATED PORTFOLIO GALLERY
   ===================================================== */

.showcase-section {
    padding: var(--space-10) 0 var(--space-10);
    background: var(--dark);
    overflow: hidden;
    position: relative;
}

.showcase-header {
    text-align: center;
    margin-bottom: var(--space-10);
    padding-top: 0;
    position: relative;
    z-index: 1;
}

.showcase-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0;
}

/* Portfolio Gallery Container - Contained, not full page */
.portfolio-gallery {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* BuckMason-inspired Grid Layout */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
    grid-auto-rows: auto;
}

/* Portfolio Items - Clean and Minimal */
.portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.01);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
    animation: fadeInUp 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.portfolio-item:nth-child(1) { animation-delay: 0.1s; }
.portfolio-item:nth-child(2) { animation-delay: 0.15s; }
.portfolio-item:nth-child(3) { animation-delay: 0.2s; }
.portfolio-item:nth-child(4) { animation-delay: 0.25s; }
.portfolio-item:nth-child(5) { animation-delay: 0.3s; }
.portfolio-item:nth-child(6) { animation-delay: 0.35s; }
.portfolio-item:nth-child(7) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-item-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.portfolio-item img,
.portfolio-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Row 1: Four square pieces (like BuckMason's top row) */
.portfolio-item-square {
    grid-column: span 1;
    aspect-ratio: 1 / 1;
}

/* Row 2: Two half-width pieces */
.portfolio-item-wide {
    grid-column: span 2;
    aspect-ratio: 2 / 1.3;
}

/* Row 3: One full-width hero piece */
.portfolio-item-hero {
    grid-column: span 4;
    aspect-ratio: 4 / 1.8;
}

/* Hover Effects - Subtle and Sophisticated */
.portfolio-item:hover {
    transform: translateY(-2px);
}

.portfolio-item:hover img,
.portfolio-item:hover video {
    transform: scale(1.03);
}

/* Video Support */
.portfolio-item[data-type="video"] video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-item[data-type="video"]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.portfolio-item[data-type="video"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-left: 14px solid rgba(0, 0, 0, 0.8);
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
}

.portfolio-item[data-type="video"]:hover::after,
.portfolio-item[data-type="video"]:hover::before {
    opacity: 1;
}

.portfolio-item[data-type="video"]:hover::after {
    transform: translate(-50%, -50%) scale(1.05);
}

/* GIF Support */
.portfolio-item[data-type="gif"] img {
    image-rendering: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .portfolio-gallery {
        padding: 0 var(--space-5);
    }
    
    .portfolio-grid {
        gap: var(--space-3);
    }
    
    .portfolio-item-square {
        aspect-ratio: 1 / 1;
    }
    
    .portfolio-item-wide {
        aspect-ratio: 2 / 1.4;
    }
    
    .portfolio-item-hero {
        aspect-ratio: 4 / 2;
    }
}

@media (max-width: 768px) {
    .showcase-section {
        padding: var(--space-9) 0 var(--space-9);
    }
    
    .showcase-header {
        margin-bottom: var(--space-9);
        padding-top: 0;
    }
    
    .showcase-title {
        font-size: 36px;
    }
    
    .portfolio-gallery {
        padding: 0 var(--space-4);
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-3);
    }
    
    /* On mobile: 2x2 grid for squares, then stacked wide items, then full-width hero */
    .portfolio-item-square {
        grid-column: span 1;
        aspect-ratio: 1 / 1;
    }
    
    .portfolio-item-wide {
        grid-column: span 2;
        aspect-ratio: 2 / 1.5;
    }
    
    .portfolio-item-hero {
        grid-column: span 2;
        aspect-ratio: 2 / 1.6;
    }
}

@media (max-width: 480px) {
    .showcase-section {
        padding: var(--space-8) 0 var(--space-8);
    }
    
    .showcase-header {
        margin-bottom: var(--space-8);
        padding-top: 0;
    }
    
    .showcase-title {
        font-size: 32px;
    }
    
    .portfolio-grid {
        gap: var(--space-2);
    }
    
    .portfolio-item-square {
        aspect-ratio: 1 / 1;
    }
    
    .portfolio-item-wide {
        aspect-ratio: 2 / 1.6;
    }
    
    .portfolio-item-hero {
        aspect-ratio: 2 / 1.8;
    }
}

/* Showcase text-only variant (no images) */
.showcase-section-text .showcase-header {
    margin-bottom: var(--space-6);
}

.showcase-section-text .showcase-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-top: var(--space-3);
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.showcase-output-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
    max-width: 900px;
    margin: 0 auto;
}

.showcase-output-item {
    padding: var(--space-4) var(--space-5);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.showcase-output-item:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.18);
}

.showcase-output-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.02em;
}

/* Section header styles for other sections */
.section-header {
    margin-bottom: var(--space-7);
}

.section-header-centered {
    text-align: center;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-600);
    letter-spacing: -0.01em;
}

/* =====================================================
   TOOLS SECTION
   ===================================================== */

.tools-section {
    padding: var(--space-9) 0;
    background: var(--white);
}

.tool-card {
    background: var(--gray-100);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s var(--ease);
    position: relative;
}

.tool-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(255,255,255,0.8) 0%, transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.tool-card:hover::before {
    opacity: 1;
}

.tool-card-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: var(--space-6);
}

.tool-card-content {
    padding: var(--space-7);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tool-card-visual {
    padding: var(--space-6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-card-visual-top {
    padding: var(--space-5);
}

.tool-image {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}

.tool-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: 6px 12px;
    background: var(--white);
    border-radius: 100px;
    margin-bottom: var(--space-4);
    width: fit-content;
}

.tool-badge-icon {
    width: 18px;
    height: 18px;
}

.tool-badge span {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
}

.tool-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: var(--space-4);
}

.tool-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: var(--space-5);
}

.tool-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    transition: all var(--duration) var(--ease);
    position: relative;
}

.tool-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--duration) var(--ease);
}

.tool-link svg {
    width: 18px;
    height: 18px;
    transition: transform var(--duration) var(--ease);
}

.tool-link:hover {
    gap: var(--space-3);
}

.tool-link:hover::after {
    width: calc(100% - 26px);
}

.tool-link:hover svg {
    transform: translateX(2px);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

.tools-grid .tool-card {
    display: flex;
    flex-direction: column;
}

.tools-grid .tool-card-content {
    padding: var(--space-5);
}

.tools-grid .tool-title {
    font-size: 22px;
}

.tools-cta {
    text-align: center;
    margin-top: var(--space-7);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    transition: all var(--duration) var(--ease);
}

.btn-secondary:hover {
    border-color: var(--dark);
    box-shadow: var(--shadow-md);
}

/* =====================================================
   CAPABILITIES SECTION
   ===================================================== */

.capabilities-section {
    padding: var(--space-9) 0;
    background: var(--gray-100);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
}

.capability-card {
    padding: var(--space-6);
    background: var(--white);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s var(--ease);
    border: 1px solid transparent;
}

.capability-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
    border-color: var(--gray-300);
}

.capability-image {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-4);
    object-fit: contain;
}

.capability-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: var(--space-2);
}

.capability-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-600);
}

/* =====================================================
   BENEFITS SECTION
   ===================================================== */

.benefits-section {
    padding: var(--space-9) 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--space-4);
}

.benefit-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: var(--space-2);
}

.benefit-item p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--gray-500);
}

/* =====================================================
   FOUNDER SECTION
   ===================================================== */

.founder-section {
    padding: var(--space-10) 0;
    background: var(--black);
}

.founder-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.founder-image-wrapper {
    display: none;
}

.founder-image {
    display: none;
}

.founder-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: var(--space-4);
}

.founder-headline {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-6);
    letter-spacing: -0.02em;
}

.founder-text {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255,255,255,0.75);
    margin-bottom: var(--space-5);
}

.founder-signature {
    margin-top: var(--space-7);
    padding-top: var(--space-6);
    border-top: 1px solid rgba(255,255,255,0.15);
}

.founder-signature strong {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}

.founder-signature span {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
}

/* =====================================================
   FEATURE BRAND SHOWCASE SECTION
   ===================================================== */

.feature-section {
    position: relative;
    background: #1a1a1a;
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: var(--space-9) 0 var(--space-8);
}

.feature-header {
    width: 100%;
    padding: 0 var(--space-5);
    margin-bottom: 0;
}

.feature-header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 1fr);
    gap: clamp(var(--space-5), 6vw, var(--space-8));
    align-items: center;
}

.feature-headline-block {
    display: flex;
    flex-direction: column;
}

.feature-headline {
    font-family: var(--font-display);
    font-size: clamp(42px, 5.5vw, 60px);
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.02em;
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.feature-headline em {
    font-style: italic;
    color: var(--white);
    font-weight: 700;
}

.feature-headline-sub {
    color: var(--white);
    font-weight: 400;
    display: block;
}

.feature-statement-block {
    display: flex;
    align-items: center;
}

.feature-statement {
    font-family: var(--font-body);
    font-size: clamp(16px, 1.85vw, 19px);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 400;
    margin: 0;
    text-align: left;
    max-width: 42ch;
}

.feature-visual-wrapper {
    position: relative;
    width: 100%;
    padding: 0 var(--space-6);
    min-height: 320px;
    height: 40vh;
    max-height: 480px;
    overflow: hidden;
}

.feature-visual {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    min-height: 320px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 50%, rgba(255,255,255,0.08) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature-visual-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.04) 0%, transparent 50%),
                      radial-gradient(circle at 80% 50%, rgba(255,255,255,0.03) 0%, transparent 50%);
    pointer-events: none;
}

.feature-visual-tagline {
    position: relative;
    z-index: 1;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0;
}

@media (max-width: 1024px) {
    .feature-header-content {
        grid-template-columns: 1fr;
        gap: var(--space-6);
        align-items: start;
    }

    .feature-statement-block {
        align-items: flex-start;
    }

    .feature-statement {
        max-width: 52ch;
    }
}

@media (max-width: 768px) {
    .feature-section {
        min-height: auto;
        padding: var(--space-7) 0 var(--space-5);
    }

    .feature-header {
        padding: 0 var(--space-5);
        margin-bottom: var(--space-5);
    }

    .feature-header-content {
        gap: var(--space-5);
    }

    .feature-headline {
        font-size: clamp(32px, 8vw, 48px);
    }

    .feature-statement {
        font-size: clamp(15px, 4vw, 18px);
    }

    .feature-visual-wrapper {
        min-height: 260px;
        height: 32vh;
        max-height: 360px;
        padding: 0 var(--space-5);
    }

    .feature-visual {
        min-height: 260px;
    }
}

/* Powered by: technology logos (homepage trust) */
.powered-by-section {
    padding: var(--space-5) 0;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-300);
}

.powered-by-section .container {
    text-align: center;
}

.powered-by-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    margin-bottom: var(--space-4);
}

.powered-by-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
}

.powered-by-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    opacity: 0.7;
    transition: opacity 0.2s var(--ease);
}

.powered-by-logo:hover {
    opacity: 1;
}

.powered-by-logo img {
    height: 28px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
    filter: grayscale(100%);
}

.powered-by-logo:hover img {
    filter: grayscale(0%);
}

.powered-by-logo.powered-by-text {
    opacity: 0.85;
}

.powered-by-logo.powered-by-text span {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    white-space: nowrap;
}

.powered-by-logo.powered-by-text:hover span {
    color: var(--dark);
}

@media (max-width: 768px) {
    .powered-by-logos {
        gap: var(--space-5);
    }
    .powered-by-logo img {
        max-width: 64px;
    }
}

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

.testimonials-section {
    padding: var(--space-9) 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
}

.testimonial-card {
    padding: var(--space-6);
    background: var(--gray-100);
    border-radius: 20px;
    transition: all 0.4s var(--ease);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 64px;
    line-height: 1;
    color: var(--gray-300);
    opacity: 0.5;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.testimonial-card-featured {
    background: var(--dark);
}

.testimonial-card-featured::before {
    color: rgba(255,255,255,0.1);
}

.testimonial-card-featured .testimonial-text,
.testimonial-card-featured .testimonial-author strong {
    color: var(--white);
}

.testimonial-card-featured .testimonial-author span {
    color: rgba(255,255,255,0.6);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-4);
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    color: #FBBF24;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: var(--space-5);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-avatar-initials {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gray-100);
    border: 2px solid var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--gray-500);
}

/* =====================================================
   CTA SECTION
   ===================================================== */

.cta-section {
    padding: var(--space-10) 0;
    background: var(--dark);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    background: rgba(255, 56, 92, 0.1);
    border-radius: 100px;
    margin-bottom: var(--space-5);
}

.cta-headline {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-4);
}

.cta-text {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    margin-bottom: var(--space-6);
}

.cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
}

.btn-large {
    padding: 18px 36px;
    font-size: 16px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    transition: all var(--duration) var(--ease);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

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

.footer {
    padding: var(--space-8) 0 var(--space-6);
    background: var(--dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: var(--space-7);
    margin-bottom: var(--space-7);
}

.footer-brand .logo { margin-bottom: var(--space-4); }
.footer-brand .logo-icon,
.footer-brand .logo-wordmark { color: var(--white); }

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.6);
    max-width: 280px;
}

.footer-column h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    margin-bottom: var(--space-4);
}

.footer-column a {
    display: block;
    padding: var(--space-2) 0;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: color var(--duration) var(--ease);
}

.footer-column a:hover { color: var(--white); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-6);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.footer-social {
    display: flex;
    gap: var(--space-4);
}

.footer-social a {
    color: rgba(255,255,255,0.5);
    transition: color var(--duration) var(--ease);
}

.footer-social a:hover { color: var(--white); }

.footer-social svg {
    width: 20px;
    height: 20px;
}

/* =====================================================
   PLATFORM SHOWCASE SECTION
   ===================================================== */

.platform-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.platform-bg {
    position: relative;
    width: 100%;
    min-height: 400px;
}

.platform-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(165deg, #2a2a2a 0%, #1a1a1a 40%, #0f0f0f 100%);
}

.platform-bg-image {
    width: 100%;
    height: auto;
    display: block;
}

.platform-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: var(--space-9) 0 var(--space-6);
    z-index: 2;
}

.platform-header {
    text-align: center;
    margin-bottom: var(--space-7);
}

.platform-headline {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.platform-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
}

.platform-feature {
    padding: var(--space-5);
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
}

.platform-feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.platform-feature h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: var(--space-2);
}

.platform-feature p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-600);
}

.platform-quote-section {
    position: absolute;
    bottom: var(--space-9);
    left: 0;
    right: 0;
    z-index: 2;
}

.platform-quote {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.platform-quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.platform-quote-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.platform-quote-initials {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    flex-shrink: 0;
}

.platform-quote-info {
    text-align: left;
}

.platform-quote-info strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}

.platform-quote-info span {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}

.platform-quote-text {
    font-family: var(--font-display);
    font-size: 22px;
    font-style: italic;
    line-height: 1.5;
    color: var(--white);
    text-shadow: 0 2px 15px rgba(0,0,0,0.3);
    position: relative;
}

.platform-quote-text::before {
    content: '"';
    position: absolute;
    left: -20px;
    top: -10px;
    font-size: 48px;
    color: var(--primary);
    opacity: 0.3;
    font-style: normal;
}

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

    .platform-content {
        padding: var(--space-7) 0 var(--space-5);
    }

    .platform-quote-section {
        bottom: var(--space-6);
    }
}

@media (max-width: 768px) {
    .platform-section {
        background: var(--dark);
    }

    .platform-bg {
        display: none;
    }

    .platform-content {
        position: relative;
        padding: var(--space-8) 0 var(--space-6);
    }

    .platform-features {
        grid-template-columns: 1fr;
    }

    .platform-headline {
        font-size: 28px;
    }

    .platform-feature {
        padding: var(--space-4);
    }

    .platform-feature h4 {
        font-size: 15px;
    }

    .platform-feature p {
        font-size: 13px;
    }

    .platform-quote-section {
        position: relative;
        bottom: auto;
        padding: var(--space-6) 0;
    }

    .platform-quote-text {
        font-size: 16px;
    }

    .platform-quote-text::before {
        left: 0;
        top: -30px;
    }
}

/* =====================================================
   CAPABILITY SECTIONS (Customer Marketing, Trade Marketing, Strategy)
   ===================================================== */

.capability-section {
    padding: var(--space-10) 0;
}

.capability-section-dark {
    background: var(--dark);
}

.capability-section-light {
    background: var(--white);
}

.capability-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(255, 56, 92, 0.2) 0%, rgba(255, 56, 92, 0.1) 100%);
    border: 1px solid rgba(255, 56, 92, 0.3);
    border-radius: 100px;
    margin-bottom: var(--space-5);
    box-shadow: 0 2px 12px rgba(255, 56, 92, 0.15);
}

.capability-eyebrow::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary);
}

.capability-eyebrow-dark {
    background: linear-gradient(135deg, rgba(255, 56, 92, 0.15) 0%, rgba(255, 56, 92, 0.08) 100%);
    border-color: rgba(255, 56, 92, 0.2);
}

.section-title-light {
    color: var(--white);
}

.section-subtitle-light {
    color: rgba(255, 255, 255, 0.7);
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-5);
    margin-top: var(--space-8);
}

.capability-card {
    text-align: left;
    padding: var(--space-5) var(--space-6);
    border-radius: 12px;
    transition: box-shadow 0.2s var(--ease);
}

.capability-grid-dark .capability-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
}

.capability-grid-dark .capability-card:hover {
    background: rgba(255,255,255,0.08);
    box-shadow: var(--shadow-md);
}

.capability-grid-light .capability-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    box-shadow: var(--shadow-sm);
}

.capability-grid-light .capability-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--gray-300);
}

.capability-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--space-2);
    letter-spacing: -0.01em;
}

.capability-grid-dark .capability-card h4 {
    color: var(--white);
}

.capability-grid-light .capability-card h4 {
    color: var(--dark);
}

.capability-card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.capability-grid-dark .capability-card p {
    color: rgba(255,255,255,0.75);
}

.capability-grid-light .capability-card p {
    color: var(--gray-600);
}

.capability-video-player {
    width: 100%;
    display: block;
    border-radius: 16px;
}

@media (max-width: 1024px) {
    .capability-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: var(--space-4);
    }
}

@media (max-width: 768px) {
    .capability-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
        margin-top: var(--space-6);
    }

    .capability-card {
        padding: var(--space-4) var(--space-5);
    }

    .capability-card h4 {
        font-size: 17px;
    }

    .capability-card p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .capability-section {
        padding: var(--space-8) 0;
    }
}

/* =====================================================
   DNA SECTION COMPACT
   ===================================================== */

.dna-section-compact {
    padding: var(--space-8) 0;
    background: var(--white);
}

.dna-section-compact .dna-header {
    margin-bottom: var(--space-6);
}

.dna-section-compact .dna-headline {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: var(--space-3);
}

.dna-section-compact .dna-subhead {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.dna-cards-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
}

.dna-card-compact {
    background: var(--gray-100);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s var(--ease);
}

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

.dna-card-compact-image {
    height: 180px;
    overflow: hidden;
}

.dna-card-compact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dna-card-compact-content {
    padding: var(--space-5);
}

.dna-card-compact-content h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: var(--space-2);
}

.dna-card-compact-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-600);
}

@media (max-width: 1024px) {
    .dna-cards-compact {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .dna-section-compact {
        padding: var(--space-6) 0;
    }

    .dna-card-compact-image {
        height: 150px;
    }

    .dna-card-compact-content {
        padding: var(--space-4);
    }

    .dna-card-compact-content h3 {
        font-size: 18px;
    }
}

/* =====================================================
   END TO END FLOW SECTION (Legacy - keeping for reference)
   ===================================================== */

.flow-section,
.unified-flow-section {
    padding: var(--space-9) 0;
    background: var(--dark);
}

.unified-flow-content {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: var(--space-8);
    align-items: start;
}

.flow-header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.flow-headline {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: var(--space-4);
}

.flow-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
}

.flow-content {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: var(--space-8);
    align-items: start;
}

.flow-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.flow-step {
    text-align: left;
    padding: var(--space-5);
    background: transparent;
    border: none;
    border-left: 3px solid rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.flow-step:hover {
    border-left-color: rgba(255,255,255,0.4);
}

.flow-step.active {
    border-left-color: var(--primary);
    background: rgba(255,255,255,0.05);
}

.flow-step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-2);
}

.flow-step-tool {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(255, 56, 92, 0.15);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s var(--ease);
}

.flow-step.active .flow-step-tool {
    opacity: 1;
    transform: translateX(0);
}

.flow-tool-icon {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.flow-step h4 {
    font-size: 20px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    margin-bottom: var(--space-2);
    transition: color 0.3s var(--ease);
}

.flow-step.active h4 {
    color: var(--white);
}

.flow-step p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.4);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s var(--ease);
}

.flow-step.active p {
    max-height: 100px;
    opacity: 1;
    color: rgba(255,255,255,0.7);
}

.flow-video {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--black);
}

.flow-video-player {
    width: 100%;
    display: block;
    border-radius: 16px;
}

/* =====================================================
   DNA SYSTEM SECTION
   ===================================================== */

.dna-section {
    padding: var(--space-10) 0;
    background: var(--white);
}

.dna-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-9);
}

.dna-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    background: rgba(255, 56, 92, 0.1);
    border-radius: 100px;
    margin-bottom: var(--space-4);
}

.dna-headline {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600;
    color: var(--dark);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: var(--space-5);
}

.dna-subhead {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-600);
}

.dna-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-9);
}

.dna-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: center;
}

.dna-card:nth-child(even) {
    direction: rtl;
}

.dna-card:nth-child(even) > * {
    direction: ltr;
}

.dna-card-image {
    position: relative;
}

.dna-card-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.dna-card-content {
    padding: var(--space-6);
}

.dna-card-content h3 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: var(--space-4);
}

.dna-card-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-600);
}

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

    .flow-steps {
        flex-direction: row;
        overflow-x: auto;
        gap: 0;
        padding-bottom: var(--space-4);
    }

    .flow-step {
        flex: 0 0 auto;
        min-width: 160px;
        border-left: none;
        border-bottom: 3px solid rgba(255,255,255,0.2);
        padding: var(--space-4);
    }

    .flow-step.active {
        border-bottom-color: var(--primary);
    }

    .flow-step p {
        display: none;
    }

    .dna-card {
        grid-template-columns: 1fr;
        gap: var(--space-5);
    }

    .dna-card:nth-child(even) {
        direction: ltr;
    }

    .dna-card-content {
        text-align: center;
        padding: 0;
    }
}

@media (max-width: 768px) {
    .dna-card-content h3 {
        font-size: 28px;
    }

    .dna-card-content p {
        font-size: 16px;
    }
}

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

@media (max-width: 1024px) {
    /* Mobile menu and actions are visible but positioned off-screen via transform */
    /* The .mobile-open class slides them into view */
    .mobile-toggle { display: flex; }

    .tool-card-large { grid-template-columns: 1fr; }
    .tools-grid { grid-template-columns: 1fr; }
    .capabilities-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .founder-layout { grid-template-columns: 1fr; text-align: center; }
    .founder-image-wrapper { max-width: 400px; margin: 0 auto; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero-content { padding: 120px var(--space-5) var(--space-6); }
    .hero-headline { font-size: 36px; }
    .hero-cta { flex-direction: column; align-items: flex-start; }

    .trusted-bar { flex-direction: column; align-items: center; gap: var(--space-4); }
    .trusted-logos { gap: var(--space-5); flex-wrap: wrap; justify-content: center; }
    .trusted-logo { height: 20px; }

    .showcase-title { font-size: 32px; }

    .capabilities-grid { grid-template-columns: 1fr; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }

    .cta-buttons { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand { margin-bottom: var(--space-5); }
    .footer-brand p { max-width: 100%; }
    .footer-bottom { flex-direction: column; gap: var(--space-4); }
}

@media (max-width: 480px) {
    .benefits-grid { grid-template-columns: 1fr; }
    .pill { padding: 8px 12px; }
    .pill span:last-child { font-size: 13px; }
}

/* =====================================================
   PLACEHOLDER PAGE STYLES
   ===================================================== */

.placeholder-hero {
    padding: 160px 0 80px;
    background: var(--dark);
    text-align: center;
}

.placeholder-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: var(--space-4);
}

.placeholder-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.03em;
    margin-bottom: var(--space-5);
}

.placeholder-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.placeholder-content {
    padding: var(--space-9) 0;
    background: var(--white);
}

.placeholder-box {
    padding: var(--space-8);
    background: var(--gray-100);
    border-radius: 16px;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-box p {
    font-size: 18px;
    color: var(--gray-500);
}

/* Dropdown divider for grouped menus */
.dropdown-divider {
    height: 1px;
    background: var(--gray-300);
    margin: var(--space-2) 0;
}

.dropdown-content-grouped {
    min-width: 200px;
}

/* =====================================================
   INDUSTRY PAGE STYLES
   ===================================================== */

/* Industry Hero */
.industry-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--dark) 0%, #1a1d21 100%);
    overflow: hidden;
}

.industry-hero .container {
    display: block;
    text-align: center;
}

.industry-hero-content {
    max-width: 880px;
    margin: 0 auto;
}

.industry-eyebrow {
    display: inline-block;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    background: rgba(255, 56, 92, 0.1);
    border-radius: 100px;
    margin-bottom: var(--space-5);
}

.industry-headline {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-5);
}

.industry-subhead {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-6);
}

.industry-hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
}

.industry-hero-cta .btn-primary {
    width: fit-content;
}

.cta-note-light {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.industry-hero-visual {
    position: relative;
    min-height: 320px;
}

.industry-hero-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
}

/* Hero message: gradient + key message when no image (keeps hero looking complete) */
.industry-hero-message {
    width: 100%;
    min-height: 320px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-8);
    text-align: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.14) 100%);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

/* Trusted Section */
.trusted-section {
    padding: var(--space-6) 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-300);
}

.trusted-section .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    flex-wrap: wrap;
}

.trusted-label-dark {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-500);
    white-space: nowrap;
}

.trusted-logos-dark {
    display: flex;
    align-items: center;
    gap: var(--space-7);
    flex-wrap: wrap;
    justify-content: center;
}

.trusted-logo-dark {
    height: 28px;
    width: auto;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all var(--duration) var(--ease);
}

.trusted-logo-dark:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Pain Section */
.pain-section {
    padding: var(--space-9) 0;
    background: var(--gray-100);
}

.pain-headline {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 600;
    color: var(--dark);
    text-align: center;
    margin-bottom: var(--space-7);
    letter-spacing: -0.02em;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
}

.pain-item {
    padding: var(--space-6);
    background: var(--white);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s var(--ease);
}

.pain-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pain-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.pain-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: var(--space-2);
}

.pain-item p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-600);
}

/* Solution Intro */
.solution-intro {
    padding: var(--space-9) 0;
    background: var(--white);
    text-align: center;
}

.solution-headline {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 600;
    color: var(--dark);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-4);
}

.solution-subhead {
    font-size: 20px;
    line-height: 1.7;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

/* Feature Blocks */
.feature-block {
    padding: var(--space-9) 0;
}

.feature-block-light {
    background: var(--white);
}

.feature-block-dark {
    background: var(--gray-100);
}

.feature-block-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: center;
}

.feature-block-grid-reverse {
    direction: rtl;
}

.feature-block-grid-reverse > * {
    direction: ltr;
}

.feature-block-content {
    max-width: 520px;
}

.feature-block-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
    margin-bottom: var(--space-3);
}

.feature-block-headline {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 600;
    color: var(--dark);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-4);
}

.feature-block-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: var(--space-5);
}

.feature-block-list {
    margin-bottom: var(--space-5);
}

.feature-block-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-2) 0;
    font-size: 15px;
    color: var(--gray-600);
}

.feature-block-list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 600;
    flex-shrink: 0;
}

.feature-block-testimonial {
    padding: var(--space-5);
    background: var(--gray-100);
    border-radius: 12px;
    border-left: 3px solid var(--primary);
}

.feature-block-dark .feature-block-testimonial {
    background: var(--white);
}

.feature-block-testimonial p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--dark);
    font-style: italic;
    margin-bottom: var(--space-3);
}

.feature-block-testimonial cite {
    font-size: 13px;
    font-style: normal;
    color: var(--gray-500);
}

.feature-block-visual {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-block-image {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.feature-block-message {
    width: 100%;
    min-height: 280px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-8);
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.feature-block-light .feature-block-message {
    background: linear-gradient(135deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.08) 100%);
    color: var(--dark);
    border: 1px solid rgba(0,0,0,0.08);
}

.feature-block-dark .feature-block-message {
    background: linear-gradient(135deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.1) 100%);
    color: var(--dark);
    border: 1px solid rgba(0,0,0,0.1);
}

/* How It Works */
.how-it-works {
    padding: var(--space-9) 0;
    background: var(--dark);
    text-align: center;
}

.how-it-works .section-header {
    margin-bottom: var(--space-8);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-7);
}

.step-item {
    padding: var(--space-6);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s var(--ease);
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-4);
}

.step-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-2);
}

.step-item p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.steps-cta {
    margin-top: var(--space-6);
}

/* Benefits Grid Large */
.benefits-section-large {
    padding: var(--space-9) 0;
    background: var(--white);
}

.benefits-grid-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
}

.benefit-card {
    padding: var(--space-6);
    background: var(--gray-100);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s var(--ease);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.benefit-card .benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: var(--space-2);
}

.benefit-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-600);
}

/* Testimonials Section Full */
.testimonials-section-full {
    padding: var(--space-9) 0;
    background: var(--gray-100);
}

.testimonials-section-full .section-header {
    text-align: center;
    margin-bottom: var(--space-7);
}

/* FAQ Section */
.faq-section {
    padding: var(--space-9) 0;
    background: var(--white);
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: var(--space-7);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-5);
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    padding: var(--space-5);
    background: var(--gray-100);
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: var(--space-3);
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
}

/* CTA Section Industry */
.cta-section-industry {
    padding: var(--space-10) 0;
    background: linear-gradient(135deg, var(--dark) 0%, #1a1d21 100%);
    text-align: center;
}

.cta-section-industry .cta-content {
    max-width: 650px;
}

.cta-note-secondary {
    margin-top: var(--space-4);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* =====================================================
   REQUEST INFO FORM (Premium Runway-inspired two-column)
   ===================================================== */

.request-form-wrapper {
    max-width: 1000px;
    margin: var(--space-10) auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-9);
    align-items: start;
    text-align: left;
}

.request-form-copy {
    padding-right: var(--space-6);
}

.request-form-copy .request-form-headline {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.2vw, 24px);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-4);
    line-height: 1.35;
}

.request-form-copy .request-form-body {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-6);
}

.request-form-copy .request-form-expert {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.9);
}

.request-form-copy .request-form-expert a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s var(--ease);
}

.request-form-copy .request-form-expert a:hover {
    border-bottom-color: var(--primary);
}

.request-form-fields {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: var(--space-6);
}

.request-info-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.request-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
}

.request-info-form .form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.request-info-form .form-group label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.02em;
}

.request-info-form .form-group label .required {
    color: var(--primary);
}

/* Minimalist underline-only inputs (Runway style) */
.request-info-form .form-group input,
.request-info-form .form-group textarea {
    width: 100%;
    padding: 10px 0 12px;
    font-size: 15px;
    font-family: var(--font-body);
    color: var(--white);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 0;
    transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.request-info-form .form-group input::placeholder,
.request-info-form .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.request-info-form .form-group input:focus,
.request-info-form .form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--primary);
    box-shadow: none;
}

.request-info-form .form-group textarea {
    resize: vertical;
    min-height: 88px;
    padding-top: 4px;
}

.request-form-submit {
    width: 100%;
    margin-top: var(--space-3);
}

.request-form-success {
    grid-column: 1 / -1;
    text-align: center;
    padding: var(--space-6);
}

.request-form-success p {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--white);
}

/* Request info as its own section (light bg) so it doesn't blend with CTA */
.request-info-section {
    background: var(--gray-100);
    padding: var(--space-10) 0;
}

.request-info-section .request-form-wrapper {
    margin-top: 0;
}

.request-info-section .request-form-copy .request-form-headline {
    color: var(--dark);
}

.request-info-section .request-form-copy .request-form-body,
.request-info-section .request-form-copy .request-form-expert {
    color: var(--gray-600);
}

.request-info-section .request-form-copy .request-form-expert a {
    color: var(--dark);
}

.request-info-section .request-form-copy .request-form-expert a:hover {
    border-bottom-color: var(--dark);
}

.request-info-section .request-form-fields {
    background: var(--white);
    border: 1px solid var(--gray-300);
}

.request-info-section .request-info-form .form-group label {
    color: var(--dark);
}

.request-info-section .request-info-form .form-group label .required {
    color: var(--gray-500);
}

.request-info-section .request-info-form .form-group input,
.request-info-section .request-info-form .form-group textarea {
    color: var(--dark);
    border-bottom-color: var(--gray-300);
}

.request-info-section .request-info-form .form-group input::placeholder,
.request-info-section .request-info-form .form-group textarea::placeholder {
    color: var(--gray-500);
}

.request-info-section .request-info-form .form-group input:focus,
.request-info-section .request-info-form .form-group textarea:focus {
    border-bottom-color: var(--dark);
}

.request-info-section .request-form-success p {
    color: var(--dark);
}

/* Request form on industry/feature pages (dark CTA) */
.cta-section-industry .request-form-wrapper {
    max-width: 1000px;
}

.cta-section-industry .request-form-copy .request-form-headline {
    color: var(--white);
}

.cta-section-industry .request-form-copy .request-form-body,
.cta-section-industry .request-form-copy .request-form-expert {
    color: rgba(255, 255, 255, 0.8);
}

.cta-section-industry .request-form-fields {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

.cta-section-industry .request-info-form .form-group label {
    color: rgba(255, 255, 255, 0.9);
}

.cta-section-industry .request-info-form .form-group input,
.cta-section-industry .request-info-form .form-group textarea {
    background: transparent;
    border-bottom-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
}

.cta-section-industry .request-info-form .form-group input::placeholder,
.cta-section-industry .request-info-form .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .request-form-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-6);
        margin-top: var(--space-8);
    }

    .request-form-copy {
        padding-right: 0;
    }

    .request-form-grid {
        grid-template-columns: 1fr;
    }

    .request-form-fields {
        padding: var(--space-5);
    }
}

/* Industry Page Responsive */
@media (max-width: 1024px) {
    .industry-hero-content {
        max-width: 100%;
    }

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

    .feature-block-grid,
    .feature-block-grid-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .feature-block-content {
        max-width: 100%;
        text-align: center;
    }

    .feature-block-list {
        text-align: left;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

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

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

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

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

    .benefits-grid-large {
        grid-template-columns: 1fr;
    }

    .trusted-section .container {
        flex-direction: column;
        gap: var(--space-4);
    }

    .feature-block {
        padding: var(--space-7) 0;
    }
}

/* ==========================================================================
   Stats Section (Feature Pages)
   ========================================================================== */

.stats-section {
    padding: var(--space-8) 0;
    background: linear-gradient(135deg, var(--sage-50) 0%, var(--cream) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--sage-700);
    line-height: 1;
}

.stat-label {
    font-size: var(--text-base);
    color: var(--charcoal-600);
    font-weight: 500;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-5);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-4);
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: var(--text-sm);
    }
}

/* ==========================================================================
   Use Cases Section (Feature Pages)
   ========================================================================== */

.use-cases-section {
    padding: var(--space-9) 0;
    background: var(--white);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
    margin-top: var(--space-7);
}

.use-case-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.use-case-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--sage-100);
    border-radius: var(--radius-full);
}

.use-case-icon svg {
    width: 32px;
    height: 32px;
    color: var(--sage-700);
}

.use-case-card h3 {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--charcoal-900);
    margin-bottom: var(--space-2);
}

.use-case-card p {
    font-size: var(--text-base);
    color: var(--charcoal-600);
    line-height: 1.6;
}

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

@media (max-width: 576px) {
    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .use-case-card {
        padding: var(--space-5);
    }
}

/* ==========================================================================
   Coming Soon Section
   ========================================================================== */

.coming-soon-section {
    padding: var(--space-9) 0;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
}

.coming-soon-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.coming-soon-badge {
    display: inline-block;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    background: var(--primary);
    border-radius: 100px;
    margin-bottom: var(--space-5);
}

.coming-soon-headline {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 600;
    color: var(--dark);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-4);
}

.coming-soon-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto var(--space-7);
}

.coming-soon-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
}

.coming-soon-feature {
    padding: var(--space-5);
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-300);
    text-align: center;
}

.coming-soon-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 56, 92, 0.1);
    border-radius: 50%;
}

.coming-soon-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.coming-soon-feature h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: var(--space-2);
}

.coming-soon-feature p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .coming-soon-features {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* =====================================================
   WAITLIST MODAL
   ===================================================== */

.waitlist-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}

.waitlist-modal.active {
    opacity: 1;
    visibility: visible;
}

.waitlist-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.waitlist-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    padding: var(--space-6);
    max-width: 420px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s var(--ease);
    box-shadow: var(--shadow-xl);
}

.waitlist-modal.active .waitlist-modal-content {
    transform: translateY(0) scale(1);
}

.waitlist-modal-close {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--gray-500);
    background: var(--gray-100);
    border-radius: 50%;
    transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.waitlist-modal-close:hover {
    background: var(--gray-300);
    color: var(--dark);
}

.waitlist-modal-header {
    text-align: center;
    margin-bottom: var(--space-5);
}

.waitlist-modal-header h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: var(--space-2);
}

.waitlist-modal-header p {
    color: var(--gray-600);
    font-size: 15px;
}

.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group select {
    padding: 12px 14px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 15px;
    color: var(--dark);
    background: var(--white);
    transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 56, 92, 0.1);
}

.form-group input::placeholder {
    color: var(--gray-500);
}

.form-divider {
    display: flex;
    align-items: center;
    margin: var(--space-3) 0;
    color: var(--gray-500);
    font-size: 13px;
}

.form-divider span {
    padding: 0 var(--space-3);
    white-space: nowrap;
}

.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-300);
}

.referral-inputs {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.referral-inputs input {
    padding: 12px 14px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 15px;
    color: var(--dark);
    background: var(--white);
    transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.referral-inputs input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 56, 92, 0.1);
}

.referral-inputs input::placeholder {
    color: var(--gray-500);
}

.referral-inputs input.input-error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.waitlist-submit {
    margin-top: var(--space-4);
    width: 100%;
}

/* Form validation styles */
.form-group input.input-error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group .error-message,
.referral-inputs .error-message {
    display: block;
    color: #ef4444;
    font-size: 13px;
    margin-top: 6px;
}

.waitlist-success {
    text-align: center;
    padding: var(--space-6) 0;
}

.waitlist-success .success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    margin-bottom: var(--space-5);
}

.waitlist-success .success-icon svg {
    color: #22c55e;
}

.waitlist-success h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: var(--space-2);
}

.waitlist-success p {
    color: var(--gray-600);
    font-size: 16px;
}

@media (max-width: 640px) {
    .waitlist-modal-content {
        padding: var(--space-6);
        margin: var(--space-4);
    }

    .waitlist-modal-header h2 {
        font-size: 26px;
    }
}

/* =====================================================
   LEGAL / POLICY PAGES (Privacy, Terms)
   ===================================================== */

.legal-section {
    padding: var(--space-8) 0 var(--space-10);
    background: var(--white);
}

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

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin-top: var(--space-7);
    margin-bottom: var(--space-3);
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-top: var(--space-5);
    margin-bottom: var(--space-2);
}

.legal-content p {
    margin-bottom: var(--space-4);
    line-height: 1.7;
    color: var(--dark);
}

.legal-content ul {
    margin-bottom: var(--space-4);
    padding-left: var(--space-5);
    list-style: disc;
}

.legal-content li {
    margin-bottom: var(--space-2);
    line-height: 1.7;
}

.legal-content .legal-address {
    margin-top: var(--space-2);
    white-space: pre-line;
}

/* =====================================================
   PRICING PAGE
   ===================================================== */

.pricing-page {
    padding-top: 72px;
    background: var(--white);
}

.pricing-hero {
    padding: var(--space-9) 0 var(--space-7);
    text-align: center;
}

.pricing-hero-content {
    max-width: 640px;
    margin: 0 auto;
}

.pricing-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    margin-bottom: var(--space-4);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: 999px;
}

.pricing-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    color: var(--black);
    margin-bottom: var(--space-4);
    line-height: 1.2;
}

.pricing-subhead {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

.pricing-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.pricing-toggle-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
}

.pricing-toggle {
    display: inline-flex;
    background: var(--gray-100);
    border-radius: 10px;
    padding: 4px;
    gap: 2px;
}

.pricing-toggle-btn {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    background: transparent;
    border-radius: 8px;
    transition: all var(--duration) var(--ease);
}

.pricing-toggle-btn:hover {
    color: var(--dark);
}

.pricing-toggle-btn-active {
    color: var(--white) !important;
    background: var(--black);
    box-shadow: var(--shadow-sm);
}

.pricing-toggle-save {
    display: inline-block;
    margin-left: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 6px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
}

.pricing-cards-section {
    padding: 0 0 var(--space-9);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    max-width: 900px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 16px;
    padding: var(--space-6);
    transition: box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-500);
}

.pricing-card-featured {
    border-color: var(--black);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.06);
}

.pricing-card-featured:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.pricing-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    background: var(--black);
    border-radius: 999px;
    white-space: nowrap;
}

.pricing-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: var(--space-2);
}

.pricing-card-desc {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: var(--space-5);
    line-height: 1.5;
}

.pricing-card-price {
    margin-bottom: var(--space-5);
    font-size: 14px;
    color: var(--gray-600);
}

.pricing-card-price .pricing-price-monthly,
.pricing-card-price .pricing-price-annual {
    font-family: var(--font-body);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
}

.pricing-price-suffix {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-600);
}

.pricing-features {
    flex: 1;
    margin: 0 0 var(--space-6);
    padding: 0;
    list-style: none;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) 0;
    font-size: 14px;
    color: var(--dark);
    line-height: 1.4;
}

.pricing-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: var(--gray-600);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pricing-check::after {
    content: '';
    width: 6px;
    height: 10px;
    margin-bottom: 2px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Pricing page uses premium (black) CTAs */
.pricing-page .pricing-cta,
.pricing-page .btn-primary {
    background: var(--black);
    color: var(--white);
}

.pricing-page .pricing-cta:hover,
.pricing-page .btn-primary:hover {
    background: var(--dark);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.pricing-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: auto;
    text-align: center;
}

/* Add-ons: simple, discrete list */
.pricing-addons-section {
    padding: var(--space-6) 0;
    background: var(--white);
    border-top: 1px solid var(--gray-300);
}

.pricing-addons-headline {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
    text-align: center;
    margin-bottom: var(--space-1);
}

.pricing-addons-subhead {
    text-align: center;
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: var(--space-5);
}

.pricing-addons-list {
    max-width: 560px;
    margin: 0 auto;
}

.pricing-addon-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-2) var(--space-4);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 14px;
}

.pricing-addon-row:last-child {
    border-bottom: none;
}

.pricing-addon-name {
    font-weight: 500;
    color: var(--dark);
}

.pricing-addon-meta {
    color: var(--gray-600);
    text-align: right;
}

.pricing-addon-desc {
    grid-column: 1 / -1;
    color: var(--gray-500);
    font-size: 13px;
    line-height: 1.4;
}

/* Trust strip */
.pricing-trust-section {
    padding: var(--space-6) 0;
    border-top: 1px solid var(--gray-300);
}

.pricing-trust-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-5);
}

.pricing-trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
}

.pricing-trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--gray-300);
    color: var(--dark);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
}

/* Final CTA */
.pricing-cta-section {
    padding: var(--space-9) 0;
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}

.pricing-cta-block {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}

.pricing-cta-headline {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--black);
    margin-bottom: var(--space-3);
}

.pricing-cta-text {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: var(--space-5);
    line-height: 1.6;
}

/* Why / FAQ / Trusted sections */
.pricing-why-section,
.pricing-faq-section {
    padding: var(--space-8) 0;
    background: var(--white);
}

.pricing-trusted-section {
    padding: var(--space-6) 0;
    background: var(--gray-100);
    border-top: 1px solid var(--gray-300);
}

.pricing-section-headline {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    text-align: center;
    margin-bottom: var(--space-2);
}

.pricing-section-subhead {
    text-align: center;
    font-size: 16px;
    color: var(--gray-600);
    max-width: 560px;
    margin: 0 auto var(--space-6);
    line-height: 1.6;
}

.pricing-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-6);
    max-width: 900px;
    margin: 0 auto;
}

.pricing-why-item {
    text-align: center;
}

.pricing-why-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: var(--space-2);
}

.pricing-why-text {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.pricing-trusted-label {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500);
    margin-bottom: var(--space-4);
}

.pricing-trusted-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
}

.pricing-trusted-logo {
    height: 28px;
    width: auto;
    opacity: 0.7;
    filter: grayscale(1);
}

.pricing-faq-list {
    max-width: 640px;
    margin: 0 auto;
}

.pricing-faq-item {
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-faq-item:last-child {
    border-bottom: none;
}

.pricing-faq-q {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: var(--space-2);
}

.pricing-faq-a {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    .pricing-card-featured {
        order: -1;
    }
    .pricing-trust-grid {
        flex-direction: column;
    }
    .pricing-addon-row {
        grid-template-columns: 1fr;
    }
    .pricing-addon-meta {
        text-align: left;
    }
}
