:root {
    --primary-dark: #075985;
    --primary-light: #0891B2;
    --text-dark: #0F172A;
    --text-medium: #475569;
    --text-light: #64748B;
    --bg-light: #F8FAFC;
    --bg-medium: #E2E8F0;
    --border: #CBD5E1;
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: clip;
}

body {
    overflow-x: clip;
    position: relative;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background: var(--bg-light);
}

h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: 1.5rem; }

p {
    color: var(--text-medium);
}

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

section {
    padding: 100px 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

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

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

@keyframes subtleFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(2%, 1%) rotate(1deg); }
    66% { transform: translate(-1%, 2%) rotate(-1deg); }
}

@keyframes subtlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

@keyframes tooltipBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(5px); }
}

@keyframes brandFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes penProgressGrow {
    from { width: 0%; }
}

@keyframes penActionSlideIn {
    from { opacity: 0; transform: translateX(-12px); }
    to { opacity: 1; transform: translateX(0); }
}

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

@keyframes penNotifSlideIn {
    from { opacity: 0; transform: translateY(10px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Scroll-triggered animation classes */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate-fade-up {
    transform: translateY(30px);
}

.animate-on-scroll.animate-fade-down {
    transform: translateY(-30px);
}

.animate-on-scroll.animate-scale {
    transform: scale(0.9);
}

.animate-on-scroll.animate-slide-left {
    transform: translateX(-50px);
}

.animate-on-scroll.animate-slide-right {
    transform: translateX(50px);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.5s; }

/* ============================================
   NAVIGATION
   ============================================ */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 24px;
    animation: fadeInDown 0.6s ease;
    transition: padding 0.4s ease, top 0.4s ease;
}

nav.scrolled {
    padding: 8px 24px;
    top: 12px;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    background: transparent;
    border-radius: 16px;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

nav.scrolled .nav-inner {
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: rgba(203, 213, 225, 0.5);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 8px 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo svg {
    height: 60px;
    width: auto;
    transition: height 0.3s ease;
    margin-left: -20px;
}

nav.scrolled .logo svg {
    height: 50px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links > a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-medium);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links > a:hover {
    color: var(--text-dark);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-cta .btn {
    white-space: nowrap;
}

.nav-cta-mobile {
    display: none;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #075985 0%, #0891B2 100%);
    color: #fff;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #064e73 0%, #0780a1 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid transparent;
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.05);
}

.btn-large {
    padding: 12px 24px;
    font-size: 15px;
}

.btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

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

.pen-hero {
    padding: 160px 0 80px;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(7, 89, 133, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 85% 10%, rgba(8, 145, 178, 0.06) 0%, transparent 40%),
        var(--bg-light);
    position: relative;
    overflow: hidden;
}

.pen-hero-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Left column */
.pen-hero-left {
    flex: 1 1 480px;
    max-width: 540px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pen-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(7, 89, 133, 0.09);
    border-radius: 100px;
    padding: 6px 16px;
    width: fit-content;
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-light);
    animation: fadeInUp 0.6s ease;
}

.pen-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-dark);
    flex-shrink: 0;
}

.pen-headline {
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -2.5px;
    color: var(--text-dark);
    animation: fadeInUp 0.7s ease 0.1s backwards;
}

.pen-headline .gradient-text {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pen-headline-row {
    display: inline;
}

.pen-subline {
    font-size: 17px;
    line-height: 1.65;
    color: var(--text-medium);
    animation: fadeInUp 0.7s ease 0.2s backwards;
}

.pen-cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
    animation: fadeInUp 0.7s ease 0.3s backwards;
}

.pen-cta-row .btn {
    white-space: nowrap;
}

.btn-outline-secondary {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-medium);
    border-radius: 8px;
}

.btn-outline-secondary:hover {
    border-color: var(--gray-400);
    background: #fff;
}

.pen-arrow {
    color: var(--primary-dark);
    font-weight: 500;
}

/* Right column: visual */
.pen-hero-visual {
    flex: 0 0 580px;
    position: relative;
    min-height: 0;
    animation: scaleIn 0.8s ease 0.3s backwards;
}

/* Grid for the 4 cards */
.pen-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding-right: 70px;
}

/* Shared card styles */
.pen-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 16px 40px rgba(0, 0, 0, 0.1);
    font-family: 'DM Sans', sans-serif;
}

.pen-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.pen-card-header-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pen-card-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.pen-card-meta {
    font-size: 11px;
    color: var(--gray-400);
}

/* Portal header bar */
.pen-portal-header {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 14px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--gray-200);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    animation: penCardIn 0.5s ease 0.3s backwards;
}

.pen-portal-logo svg {
    display: block;
    height: 28px;
    width: auto;
}

.pen-portal-user {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pen-portal-name {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-medium);
}

.pen-portal-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #1e293b;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Journey card */
.pen-card-journey {
    grid-column: 1 / -1;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: penCardIn 0.6s ease 0.4s backwards;
}

.pen-progress-track {
    width: 100%;
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    overflow: hidden;
}

.pen-progress-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, #1e293b, #475569);
    animation: penProgressGrow 1.2s ease 0.9s backwards;
}

.pen-milestones {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--gray-400);
}

.pen-milestone-active {
    color: #1e293b;
    font-weight: 600;
}

.pen-milestone-future {
    color: var(--gray-300);
}

/* Insights card */
.pen-card-insights {
    grid-column: 1;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: penCardIn 0.6s ease 0.6s backwards;
}

.pen-sparkle-icon {
    color: #1e293b;
    flex-shrink: 0;
}

.pen-insight-block {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.pen-label {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pen-label-theme {
    color: #1e293b;
}

.pen-label-breakthrough {
    color: #059669;
}

.pen-insight-block p {
    font-size: 11px;
    line-height: 1.5;
    color: var(--text-medium);
}

/* Actions card */
.pen-card-actions {
    grid-column: 2;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: penCardIn 0.6s ease 0.75s backwards;
}

.pen-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.pen-dot-cyan {
    background: var(--primary-light);
}

.pen-dot-brand {
    background: #1e293b;
}

.pen-dot-green {
    background: #059669;
}

.pen-badge-sm {
    font-size: 10px;
    font-weight: 600;
    color: #1e293b;
    background: rgba(30, 41, 59, 0.08);
    border-radius: 8px;
    padding: 2px 8px;
}

.pen-action-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.pen-action-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--text-dark);
    animation: penActionSlideIn 0.4s ease backwards;
}

.pen-action-row:nth-child(1) { animation-delay: 1.0s; }
.pen-action-row:nth-child(2) { animation-delay: 1.15s; }
.pen-action-row:nth-child(3) { animation-delay: 1.3s; }
.pen-action-row:nth-child(4) { animation-delay: 1.45s; }

.pen-action-done {
    color: var(--gray-400);
}

.pen-checkbox {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    border: 1.5px solid #475569;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    background: transparent;
}

.pen-checkbox-done {
    background: #059669;
    border-color: #059669;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
}

/* Briefing card */
.pen-card-briefing {
    grid-column: 1 / -1;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    animation: penCardIn 0.6s ease 0.9s backwards;
}

.pen-card-briefing .pen-card-header {
    justify-content: flex-start;
    gap: 6px;
}

.pen-tag-green {
    font-size: 10px;
    font-weight: 600;
    color: #059669;
    background: rgba(5, 150, 105, 0.07);
    border-radius: 8px;
    padding: 2px 8px;
}

.pen-briefing-body {
    font-size: 11px;
    line-height: 1.5;
    color: var(--text-medium);
}

.pen-briefing-suggest {
    background: var(--bg-light);
    border-radius: 6px;
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.pen-suggest-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gray-400);
    text-transform: uppercase;
}

/* Phone mockup */
.pen-phone {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 210px;
    height: 440px;
    background: var(--gray-800);
    border-radius: 36px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 8px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    padding: 5px;
    z-index: 5;
    animation: penPhoneSlideUp 0.7s ease 0.5s backwards;
}

.pen-phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 34px;
    overflow: hidden;
    background: linear-gradient(180deg, #0F172A 0%, #1e293b 40%, #334155 70%, #475569 100%);
    display: flex;
    flex-direction: column;
}

.pen-phone-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 18px 0;
    height: 36px;
    position: relative;
}

.pen-phone-time {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
}

.pen-phone-island {
    position: absolute;
    left: 50%;
    top: 7px;
    transform: translateX(-50%);
    width: 66px;
    height: 20px;
    background: #0F172A;
    border-radius: 12px;
}

.pen-phone-icons {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #fff;
}

.pen-phone-lock {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 0 10px;
}

.pen-phone-date {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.69);
}

.pen-phone-clock {
    font-size: 42px;
    font-weight: 200;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1.1;
}

.pen-phone-notifs {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 3px 9px;
    flex: 1;
    overflow: hidden;
}

/* Notification cards */
.pen-notif {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    padding: 8px 9px;
    animation: penNotifSlideIn 0.45s ease backwards;
}

.pen-notif:nth-child(1) { animation-delay: 1.1s; }
.pen-notif:nth-child(2) { animation-delay: 1.3s; }
.pen-notif:nth-child(3) { animation-delay: 1.5s; }
.pen-notif:nth-child(4) { animation-delay: 1.7s; }

.pen-notif-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.pen-notif-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

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

.pen-notif-app {
    font-size: 8px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

.pen-notif-time {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.45);
}

.pen-notif-title {
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pen-notif-body {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Greystone branding overrides */
.pen-notif-icon-brand {
    background: #1e293b;
}

.pen-notif-icon-letter {
    font-family: Georgia, serif;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    line-height: 1;
}

.pen-notif-app-brand {
    color: #fff;
    letter-spacing: 1.5px;
}

.pen-suggest-item {
    font-size: 11px;
    color: #1e293b;
}

/* Credibility bar */
.pen-credibility {
    text-align: center;
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    animation: fadeInUp 0.8s ease 0.5s backwards;
}

.pen-credibility p {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-400);
    letter-spacing: 0.2px;
}

.pen-cred-track {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.pen-cred-logos {
    display: flex;
    align-items: center;
    gap: 96px;
    width: max-content;
    animation: logoScroll 25s linear infinite;
}

/* Responsive: Pen Hero */

/* Large desktop squeeze */
@media (max-width: 1200px) {
    .pen-hero-row {
        gap: 32px;
    }

    .pen-hero-visual {
        transform: scale(0.82);
        transform-origin: top center;
    }
}

@media (max-width: 1060px) {
    .pen-hero-visual {
        transform: scale(0.72);
        transform-origin: top center;
    }
}

/* Tablet landscape — stack vertically */
@media (max-width: 960px) {
    .pen-hero {
        padding: 140px 0 60px;
    }

    .pen-hero-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 48px;
    }

    .pen-hero-left {
        flex: none;
        max-width: 720px;
        align-items: center;
    }

    .pen-headline {
        font-size: clamp(2.25rem, 4.5vw, 3rem);
    }

    .pen-headline br {
        display: none;
    }

    .pen-cta-row {
        justify-content: center;
    }

    .pen-hero-visual {
        flex: none;
        width: 580px;
        transform: scale(0.95);
        transform-origin: top center;
        text-align: left;
    }
}

/* Tablet portrait */
@media (max-width: 768px) {
    .pen-hero {
        padding: 120px 0 60px;
    }

    .pen-hero-visual {
        flex: none;
        width: 580px;
        transform: scale(0.82);
        transform-origin: top center;
        animation: none;
    }

    .pen-credibility {
        margin-top: 48px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .pen-hero {
        padding: 110px 0 48px;
    }

    .pen-hero-row {
        gap: 36px;
    }

    .pen-headline {
        font-size: 2.35rem;
        letter-spacing: -1.5px;
    }

    .pen-headline br {
        display: none;
    }

    .pen-subline {
        font-size: 15px;
    }

    .pen-cta-row {
        flex-direction: column;
        width: 100%;
    }

    .pen-cta-row .btn {
        width: 100%;
    }

    .pen-hero-visual {
        width: 580px;
        transform: scale(0.62);
        transform-origin: top center;
        margin-bottom: -180px;
    }

    .pen-credibility {
        margin-top: 40px;
    }
}

/* Small mobile */
@media (max-width: 400px) {
    .pen-hero {
        padding: 100px 0 40px;
    }

    .pen-headline {
        font-size: 2rem;
    }

    .pen-badge {
        font-size: 11px;
        padding: 5px 12px;
    }

    .pen-subline {
        font-size: 14px;
    }

    .pen-hero-visual {
        transform: scale(0.52);
        transform-origin: top center;
        margin-bottom: -230px;
    }
}

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

.hero {
    padding: 160px 0 100px;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(7, 89, 133, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 85% 10%, rgba(8, 145, 178, 0.06) 0%, transparent 40%),
        radial-gradient(ellipse 50% 35% at 15% 15%, rgba(7, 89, 133, 0.05) 0%, transparent 40%),
        var(--bg-light);
    position: relative;
    overflow: visible;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 30% 20%, rgba(7, 89, 133, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 70% 60%, rgba(8, 145, 178, 0.03) 0%, transparent 30%);
    animation: subtleFloat 20s ease-in-out infinite;
    pointer-events: none;
}

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

.hero h1 {
    color: var(--text-dark);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    animation: fadeInUp 0.8s ease 0.2s backwards;
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-image {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 50px;
    position: relative;
    z-index: 1;
    animation: scaleIn 0.8s ease 0.6s backwards;
}


/* Logo Cloud */
.logo-cloud {
    margin-top: 40px;
    text-align: center;
}

.logo-cloud-label {
    font-size: 0.8125rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}

.logo-cloud-track {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-cloud-scroll {
    display: flex;
    align-items: center;
    gap: 96px;
    width: max-content;
    animation: logoScroll 25s linear infinite;
}

@keyframes logoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.logo-cloud-img {
    height: 32px;
    width: auto;
    flex-shrink: 0;
    opacity: 0.7;
    user-select: none;
    pointer-events: none;
}

.logo-cloud-img-tall {
    height: 40px;
}

.logo-cloud-img[alt="Meta"] {
    height: 24px;
}

.logo-cloud-img[alt="Goldman Sachs"] {
    height: 30px;
}

.logo-cloud-img[alt="Oracle"] {
    height: 22px;
}

.logo-cloud-img[alt="Salesforce"] {
    height: 44px;
}

.logo-cloud-img[alt="U.S. Department of State"] {
    height: 48px;
}

.logo-cloud-item {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-400);
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.3s ease;
    user-select: none;
}

.logo-meta {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo-goldman {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    font-size: 1.125rem;
    letter-spacing: 0.02em;
}

.logo-deloitte {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.logo-chanel {
    font-family: 'Didot', Georgia, 'Times New Roman', serif;
    font-weight: 400;
    letter-spacing: 0.2em;
    font-size: 1.125rem;
}

.logo-google {
    font-family: 'Arial', sans-serif;
    font-weight: 400;
    letter-spacing: 0;
}

.logo-nhs {
    font-family: 'Arial', Helvetica, sans-serif;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.logo-oracle {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.08em;
    font-size: 1.125rem;
}

.logo-monster {
    font-family: 'Arial Black', 'Arial', sans-serif;
    font-weight: 900;
    letter-spacing: 0.03em;
    font-size: 1rem;
}

.logo-microsoft {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    letter-spacing: 0;
}

.logo-state {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.01em;
}

.hero-image .browser-frame {
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
    overflow: hidden;
    border: 1px solid var(--border);
}

/* Browser Frame */
.browser-frame {
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    z-index: 1;
}

.browser-frame:hover {
    box-shadow: 0 35px 60px -15px rgba(0,0,0,0.25);
}

.browser-bar {
    background: var(--bg-medium);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
}

.browser-dot:nth-child(1) { background: #ef4444; }
.browser-dot:nth-child(2) { background: #f59e0b; }
.browser-dot:nth-child(3) { background: #22c55e; }

.browser-content {
    background: #fff;
    color: var(--gray-400);
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.browser-content iframe {
    border: none;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 142.86%;
    height: 142.86%;
    transform: scale(0.7);
    transform-origin: top left;
}

.browser-content.iframe-container {
    aspect-ratio: 16/10;
    position: relative;
}

/* Try Me Tooltip */
.try-me-tooltip {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
    white-space: nowrap;
    animation: tooltipBounce 1.5s ease-in-out infinite;
}

.try-me-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #1a1a1a;
}

.try-me-tooltip svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* Niche Cards */
.niche-cards {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: nowrap;
    margin-top: 32px;
}

.niche-card.hint-pulse {
    animation: subtlePulse 0.6s ease-in-out;
    animation-delay: calc(var(--pulse-delay, 0) * 0.1s);
}

.niche-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.niche-card:hover {
    border-color: var(--gray-400);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.niche-card.active {
    border-color: var(--primary-dark);
    box-shadow: 0 4px 16px rgba(7, 89, 133, 0.15);
}

.niche-card-logo {
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: visible;
}

.niche-card-logo svg {
    height: 100%;
    width: auto;
    display: block;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */

/* ============================================
   PROBLEM SECTION V2 — VISUAL
   ============================================ */

.problem-v2 {
    background: #fff;
    padding: 100px 0;
    position: relative;
}

.problem-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.problem-v2 h2 {
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 32px;
    font-size: clamp(2rem, 4vw, 2.625rem);
    letter-spacing: -0.5px;
    max-width: 100%;
}

.problem-v2-opening {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.7;
    max-width: 100%;
    margin: 0 auto 32px;
}

.problem-v2-then {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 48px;
}

.problem-v2-inbox-label {
    text-align: center;
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--gray-400);
    letter-spacing: 1px;
    margin-bottom: 16px;
}

/* Simulated Inbox */
.simulated-inbox {
    max-width: 780px;
    margin: 0 auto;
    background: var(--gray-100);
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.inbox-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: var(--gray-200);
}

.inbox-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-light);
}

.inbox-count {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.inbox-list {
    display: flex;
    flex-direction: column;
}

.inbox-email {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--gray-200);
}

.inbox-email:last-child {
    border-bottom: none;
}

.inbox-email-unread {
    background: #fff;
}

.inbox-email-read {
    background: #fff;
}

.inbox-email-coaching {
    background: var(--gray-100);
    opacity: 0.6;
}

/* Coaching email starts highlighted, then fades to buried */
.inbox-coaching-start {
    opacity: 1 !important;
    background: #f0f9ff !important;
}

.inbox-coaching-start .inbox-dot {
    background: var(--primary-dark) !important;
}

.inbox-coaching-start .inbox-from {
    color: var(--text-dark) !important;
    font-weight: 600 !important;
}

.inbox-coaching-start .inbox-subject {
    color: var(--text-light) !important;
}

.inbox-coaching-buried {
    opacity: 0.6 !important;
    background: var(--gray-100) !important;
    transition: opacity 0.5s ease, background 0.5s ease;
}

.inbox-coaching-buried .inbox-dot {
    background: transparent !important;
    transition: background 0.5s ease;
}

.inbox-coaching-buried .inbox-from {
    color: var(--gray-400) !important;
    font-weight: 400 !important;
    transition: color 0.5s ease, font-weight 0.3s ease;
}

.inbox-coaching-buried .inbox-subject {
    color: var(--gray-400) !important;
    transition: color 0.5s ease;
}

/* Flood emails: collapsed + off-screen left initially */
.inbox-flood {
    max-height: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    border-bottom-width: 0 !important;
    opacity: 0;
    transform: translateX(-100%);
    overflow: hidden;
}

.inbox-flood.inbox-flood-show {
    max-height: 200px;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
    border-bottom-width: 1px !important;
    overflow: visible;
    animation: inbox-flood-in 0.45s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

@keyframes inbox-flood-in {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.inbox-flood.inbox-flood-hide {
    animation: inbox-flood-out 0.4s cubic-bezier(0.55, 0, 1, 0.45) forwards;
    max-height: 0;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    border-bottom-width: 0 !important;
    overflow: hidden;
}

@keyframes inbox-flood-out {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-100%);
    }
}

.inbox-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.inbox-email-unread .inbox-dot {
    background: var(--primary-dark);
}

.inbox-email-read .inbox-dot {
    background: transparent;
}

.inbox-email-coaching .inbox-dot {
    background: transparent;
}

.inbox-email-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.inbox-from {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-dark);
}

.inbox-email-coaching .inbox-from {
    color: var(--gray-400);
    font-weight: 400;
}

.inbox-subject {
    font-size: 0.75rem;
    color: var(--text-light);
}

.inbox-email-read .inbox-subject {
    color: var(--gray-400);
}

.inbox-email-coaching .inbox-subject {
    color: var(--gray-400);
}

.inbox-preview {
    font-size: 0.6875rem;
    color: var(--gray-400);
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.problem-v2-caption {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 6px;
    font-style: normal;
}

.problem-v2-subcaption {
    text-align: center;
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 420px;
    margin: 0 auto 64px;
}

/* Pain Point Cards */
.pain-point-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 64px;
}

.pain-card {
    background: var(--bg-light);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pain-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(7, 89, 133, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pain-card h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

/* Closing Callout */
.problem-v2-closing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-top: 16px;
}

.closing-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    border-radius: 2px;
}

.closing-line {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.3;
    max-width: 600px;
}

/* ============================================
   PORTAL REVEAL SECTION
   ============================================ */

.portal-reveal {
    background: var(--bg-light);
    padding: 100px 0 0;
    position: relative;
}

.portal-reveal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.portal-reveal h2 {
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 24px;
    font-size: clamp(2rem, 4vw, 2.625rem);
    letter-spacing: -0.5px;
}

.reveal-intro {
    text-align: center;
    font-size: 1.0625rem;
    color: var(--text-medium);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto 48px;
}

/* Feature Cards */
.reveal-feature-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1040px;
    margin: 0 auto 64px;
}

.reveal-feature-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reveal-feature-icon {
    flex-shrink: 0;
}

.reveal-feature-card h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
}

.reveal-feature-card p {
    font-size: 0.8125rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Demo */
.reveal-demo {
    max-width: 1040px;
    margin: 0 auto 48px;
    position: relative;
}

.reveal-demo .browser-frame {
    border: 1px solid var(--border);
    border-radius: 16px;
}

/* Mobile Portal Preview */
.reveal-demo-mobile {
    display: none;
    max-width: 480px;
    margin: 0 auto 48px;
}

.mobile-preview-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 20px 40px -12px rgba(0,0,0,0.12);
}

.mobile-preview-app {
    display: flex;
    min-height: 280px;
    background: #fafafa;
}

.mobile-preview-sidebar {
    width: 48px;
    background: #fff;
    border-right: 1px solid #f0f0f0;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.mobile-preview-logo {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 8px;
}

.mobile-preview-logo svg {
    width: 32px;
    height: 32px;
    display: block;
}

.mobile-preview-nav-item {
    width: 32px;
    height: 8px;
    border-radius: 4px;
    background: var(--gray-200);
}

.mobile-preview-nav-item.active {
    background: var(--gray-700);
}

.mobile-preview-main {
    flex: 1;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-preview-welcome {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: -8px;
}

.mobile-preview-subtitle {
    font-family: 'Inter', 'DM Sans', sans-serif;
    font-size: 0.75rem;
    color: var(--text-light);
}

.mobile-preview-stats {
    display: flex;
    gap: 8px;
}

.mobile-preview-stat {
    flex: 1;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 10px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.mobile-preview-stat-num {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-800);
}

.mobile-preview-stat-label {
    font-size: 0.625rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-preview-card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-preview-card-header {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.5625rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.mobile-preview-card-line {
    height: 6px;
    border-radius: 3px;
    background: var(--gray-100);
}

.mobile-preview-card-line.w90 { width: 90%; }
.mobile-preview-card-line.w80 { width: 80%; }
.mobile-preview-card-line.w70 { width: 70%; }
.mobile-preview-card-line.w60 { width: 60%; }
.mobile-preview-card-line.w50 { width: 50%; }

.mobile-preview-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.mobile-preview-overlay:hover {
    background: rgba(15, 23, 42, 0.5);
}

.mobile-preview-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gray-900);
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    transition: transform 0.2s ease;
}

.mobile-preview-overlay:hover .mobile-preview-cta {
    transform: scale(1.03);
}

/* Fullscreen Demo Overlay */
.demo-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    z-index: 10000;
    background: #fff;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.demo-overlay.active {
    opacity: 1;
    visibility: visible;
    touch-action: none;
    overscroll-behavior: contain;
}

.demo-overlay-close {
    position: fixed;
    top: max(12px, env(safe-area-inset-top));
    right: max(12px, env(safe-area-inset-right));
    z-index: 10001;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.demo-overlay-close:hover {
    background: rgba(0, 0, 0, 0.55);
}

.demo-overlay-close svg {
    color: #fff;
}

.demo-overlay iframe {
    flex: 1;
    width: 100%;
    height: 100%;
    border: none;
}

.reveal-tooltip {
    position: absolute;
    top: -48px;
    right: 40px;
    background: #0F172A;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    white-space: nowrap;
    z-index: 10;
    animation: tooltipBob 2s ease-in-out infinite;
}

.reveal-tooltip-arrow {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #0F172A;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

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

/* Closing */
.reveal-closing {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 700px;
    margin: 0 auto 48px;
}

.reveal-closing-quote {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 20px 32px;
    width: 100%;
    text-align: center;
}

.reveal-closing-quote p {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.reveal-closing-text {
    font-size: 1.0625rem;
    color: var(--text-medium);
    text-align: center;
    max-width: 500px;
}

/* Responsive */
@media (max-width: 768px) {
    .pain-point-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .reveal-feature-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .reveal-demo {
        display: none;
    }

    .reveal-demo-mobile {
        display: block;
    }

    .problem-v2-then {
        font-size: 2rem;
    }

    .closing-line {
        font-size: 1.375rem;
    }
}

@media (max-width: 480px) {
    .reveal-feature-cards {
        grid-template-columns: 1fr;
    }
}

.mid-page-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 16px 24px 48px;
    text-align: center;
}

.mid-page-cta-closer {
    width: 100%;
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text-medium);
    font-style: italic;
}

.mid-page-cta p {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-medium);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works {
    background: var(--bg-light);
    padding: 100px 0;
}

.how-it-works h2 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.step {
    text-align: center;
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.15);
    box-shadow: 0 10px 30px rgba(7, 89, 133, 0.4);
}

.step h3 {
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.step p {
    font-size: 0.9375rem;
    color: var(--text-medium);
}

/* ============================================
   THREE THINGS SECTION
   ============================================ */

.three-things {
    background: var(--gray-900);
    padding: 100px 0;
    position: relative;
}

.three-things::before {
    display: none;
}

.three-things > .container > h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--gray-800);
    border-radius: 16px;
    border: 1px solid var(--gray-700);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.feature-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(8, 145, 178, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    flex-shrink: 0;
}

.feature-card-icon svg {
    width: 20px;
    height: 20px;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--gray-200);
    font-weight: 800;
    line-height: 1.3;
}

.feature-card > p {
    font-size: 0.9375rem;
    color: var(--gray-400);
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-list li {
    font-size: 0.8125rem;
    color: var(--gray-400);
    line-height: 1.5;
    padding-left: 20px;
    position: relative;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
}

.feature-list li strong {
    color: #fff;
}

.feature-card:nth-child(1) .feature-list li,
.feature-card:nth-child(3) .feature-list li {
    color: #fff;
}

/* Legacy feature rows (unused) */
.feature-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

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

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-badge {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--primary-light);
    background: none;
    padding: 0;
    width: fit-content;
}

.feature-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.feature-content p {
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.feature-extra {
    font-size: 0.875rem !important;
    color: var(--text-light) !important;
    font-style: italic;
}

.feature-visual {
    flex: 1;
}

.feature-placeholder {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* AI Intelligence Section */
.feature-intelligence {
    background: var(--bg-light);
    border-radius: 20px;
    border: 1px solid var(--gray-200);
    padding: 60px 48px;
}

.feature-intelligence-header {
    text-align: center;
    margin-bottom: 48px;
}

.feature-intelligence-header .feature-badge {
    margin: 0 auto 16px;
}

.feature-intelligence-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 12px;
}

.feature-intelligence-header p {
    font-size: 0.9375rem;
    color: var(--text-medium);
    max-width: 550px;
    margin: 0 auto;
}

.ai-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ai-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ai-card svg {
    flex-shrink: 0;
    margin-bottom: 4px;
}

.ai-card h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-dark);
}

.ai-card-sub {
    font-size: 0.8125rem !important;
    color: var(--primary-dark) !important;
    font-weight: 500;
}

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

.ai-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(7, 89, 133, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.ai-card-highlight {
    font-size: 0.8125rem !important;
    font-weight: 600;
    color: var(--primary-dark) !important;
    background: rgba(7, 89, 133, 0.06);
    padding: 8px 12px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-dark);
    margin-top: 4px;
}

/* Feature Detail Pills */
.feature-details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

.feature-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--text-medium);
    background: rgba(7, 89, 133, 0.04);
    padding: 6px 14px 6px 10px;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

.feature-detail svg {
    flex-shrink: 0;
}

/* ============================================
   BEFORE & AFTER SECTION
   ============================================ */

.before-after {
    background: var(--bg-light);
    padding: 100px 0;
    position: relative;
}

.before-after::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.before-after > .container > h2 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 48px;
}

.ba-table {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    background: #fff;
}

.ba-header {
    display: grid;
    grid-template-columns: 180px 1fr 1fr;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}

.ba-col-label {
    padding: 16px 20px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-dark);
}

.ba-col-header {
    padding: 14px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ba-col-header.ba-col-today {
    color: var(--text-light);
}

.ba-col-header.ba-col-coachui {
    color: var(--primary-dark);
}

.ba-row {
    display: grid;
    grid-template-columns: 180px 1fr 1fr;
    border-bottom: 1px solid var(--gray-100);
    transition: background 0.2s ease;
}

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

.ba-row:hover {
    background: var(--gray-50);
}

.ba-col {
    padding: 16px 20px;
    font-size: 0.875rem;
    line-height: 1.6;
}

.ba-col.ba-col-today {
    color: var(--text-light);
}

.ba-col.ba-col-coachui {
    color: var(--text-dark);
    font-weight: 500;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    background: #fff;
    padding: 100px 0;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.faq-section > .container > h2 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 48px;
}

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

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

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

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.faq-question svg {
    flex-shrink: 0;
    color: var(--text-light);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 400px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--primary-dark);
    text-decoration: underline;
}

.faq-answer strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* ============================================
   OUTCOMES SECTION
   ============================================ */

.outcomes {
    background: var(--bg-light);
    padding: 100px 0;
    position: relative;
}

.outcomes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.outcomes > .container > h2 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 60px;
}

.outcomes-row {
    display: flex;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 24px;
}

.outcomes-row-2 {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.outcome-card-v2 {
    flex: 1;
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow 0.3s ease;
}

.outcome-card-v2:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.outcome-card-v2 svg {
    flex-shrink: 0;
}

.outcome-card-v2 h3 {
    color: var(--text-dark);
    font-size: 1.125rem;
}

.outcome-card-v2 p {
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing {
    background: var(--bg-light);
    padding: 100px 0;
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.pricing > .container > h2 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.pricing-sub {
    text-align: center;
    font-size: 1.0625rem;
    color: var(--text-medium);
    margin-bottom: 48px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
}

.pricing-card-featured {
    border-color: var(--primary-dark);
    box-shadow: 0 8px 32px rgba(7, 89, 133, 0.12);
    position: relative;
}

.pricing-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.pricing-card-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--primary-dark);
}

.pricing-plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.pricing-period {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-desc {
    font-size: 0.9375rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-top: 4px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.pricing-features li {
    font-size: 0.9375rem;
    color: var(--text-dark);
    padding-left: 28px;
    position: relative;
    line-height: 1.4;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.875rem;
}

.pricing-cta {
    width: 100%;
}

.btn-outline-primary {
    background: transparent;
    border: 1px solid var(--primary-dark);
    color: var(--primary-dark);
    border-radius: 10px;
}

.btn-outline-primary:hover {
    background: rgba(7, 89, 133, 0.06);
}

/* ============================================
   TESTIMONIAL SECTION
   ============================================ */

.testimonial-v2 {
    background: var(--bg-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.testimonial-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.testimonial-v2-quote {
    font-size: 5rem;
    line-height: 1;
    color: var(--primary-dark);
    opacity: 0.2;
    font-family: Georgia, serif;
    margin-bottom: -20px;
}

.testimonial-v2-text {
    font-size: 1.375rem;
    color: var(--text-dark);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 32px;
    font-style: italic;
    border: none;
    padding: 0;
}

.testimonial-v2-attrib {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

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

.testimonial-v2-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}

.testimonial-v2-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
}

.testimonial-v2-role {
    font-size: 0.875rem;
    color: var(--text-medium);
}

.testimonial-v2-context {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-top: 4px;
}

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

.final-cta-v2 {
    background: var(--gray-900);
    padding: 100px 0;
    text-align: center;
}

.final-cta-v2-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    border-radius: 2px;
    margin: 0 auto 32px;
}

.final-cta-v2 h2 {
    color: #fff;
    margin-bottom: 16px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-v2 p {
    color: var(--gray-400);
    font-size: 1.0625rem;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.final-cta-v2 .final-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.btn-ghost {
    background: transparent;
    color: var(--gray-400);
    border: 1px solid var(--gray-600);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-color: var(--gray-500);
}

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

.footer-v2 {
    background: var(--gray-900);
    padding: 60px 0 40px;
}

.footer-v2-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.footer-v2-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-v2-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.footer-v2-tagline {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer-v2-links {
    display: flex;
    gap: 60px;
}

.footer-v2-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-v2-col-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.footer-v2-col a {
    font-size: 0.875rem;
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-v2-col a:hover {
    color: #fff;
}

.footer-v2-divider {
    height: 1px;
    background: var(--gray-800);
    margin: 40px 0 24px;
}

.footer-v2-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* ============================================
   MOBILE HERO MOCKUP
   ============================================ */

.hero-mobile-mockup {
    display: none;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    border: 1px solid var(--border);
}

.hero-mobile-mockup .mockup-sidebar {
    display: none;
}

.hero-mobile-mockup .mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
    background: #fff;
    min-height: 0;
}

.hero-mobile-mockup .mockup-logo {
    height: 28px;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    padding: 0;
}

.hero-mobile-mockup .mockup-logo svg {
    height: 100%;
    width: auto;
    display: block;
}

.hero-mobile-mockup .mockup-user {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-mobile-mockup .mockup-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--brand-color, #1e293b);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-mobile-mockup .mockup-main {
    padding: 16px;
    background: #fafafa;
}

.hero-mobile-mockup .mockup-welcome {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.hero-mobile-mockup .mockup-subtitle {
    font-size: 13px;
    color: #666;
    margin-bottom: 16px;
}

.hero-mobile-mockup .mockup-progress-card {
    background: var(--brand-color, #1e293b);
    border-radius: 12px;
    padding: 16px;
    color: #fff;
    margin-bottom: 16px;
}

.hero-mobile-mockup .mockup-progress-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.hero-mobile-mockup .mockup-progress-subtitle {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 12px;
}

.hero-mobile-mockup .mockup-progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
}

.hero-mobile-mockup .mockup-progress-fill {
    height: 100%;
    background: #fff;
    border-radius: 3px;
    width: 33%;
}

.hero-mobile-mockup .mockup-insights-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.hero-mobile-mockup .mockup-insights-title {
    font-size: 12px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.hero-mobile-mockup .mockup-insights-summary {
    font-size: 14px;
    color: #1a1a1a;
    line-height: 1.5;
    margin-bottom: 12px;
}

.hero-mobile-mockup .mockup-insights-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.hero-mobile-mockup .mockup-topic {
    font-size: 11px;
    font-weight: 500;
    color: #666;
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 12px;
}

.hero-mobile-mockup .brand-view {
    display: none;
}

.hero-mobile-mockup .brand-view.active {
    display: block;
    animation: brandFadeIn 0.5s ease;
}

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

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .steps-grid,
    .audience-grid,
    .pricing-grid,
    .pricing-grid-3 {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-row,
    .feature-row-reverse {
        flex-direction: column;
        gap: 40px;
    }

    .ai-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .outcomes-row {
        flex-direction: column;
    }

    .outcomes-row-2 {
        max-width: 100%;
    }

    .ba-header,
    .ba-row {
        grid-template-columns: 140px 1fr 1fr;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-image .browser-frame,
    .hero-image .try-me-tooltip,
    .niche-cards {
        display: none;
    }

    .hero-mobile-mockup {
        display: block;
    }

    .hero-image {
        padding-top: 0;
        animation: none;
    }
}

@media (max-width: 640px) {
    section {
        padding: 60px 0;
    }

    .container {
        padding: 0 16px;
        max-width: 100%;
    }

    .hero-mobile-mockup {
        overflow: hidden;
    }

    nav {
        padding: 12px 12px;
        left: 0;
        right: 0;
        width: 100%;
        box-sizing: border-box;
    }

    nav.scrolled {
        padding: 8px 12px;
        top: 0;
    }

    .nav-inner {
        width: 100%;
        max-width: none;
        box-sizing: border-box;
    }

    nav.scrolled .nav-inner {
        padding: 8px 12px;
    }

    .logo svg {
        height: 36px;
        margin-left: -8px;
    }

    nav.scrolled .logo svg {
        height: 32px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero h1 br {
        display: none;
    }

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

    .hero-cta {
        flex-direction: column;
    }

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

    .mid-page-cta {
        flex-direction: column;
    }

    .mid-page-cta .btn {
        width: 100%;
    }

    .final-cta-v2 p {
        white-space: normal;
    }

    .final-cta-v2 .final-cta-buttons {
        flex-direction: column;
    }

    .final-cta-v2 .final-cta-buttons .btn {
        width: 100%;
    }

    .footer-v2-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-v2-links {
        gap: 32px;
        flex-wrap: wrap;
    }

    .footer-v2-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .testimonial-v2-text {
        font-size: 1.125rem;
    }

    .feature-intelligence {
        padding: 40px 24px;
    }

    .audience-card-v2 {
        padding: 28px;
    }

    .ba-header,
    .ba-row {
        grid-template-columns: 1fr;
    }

    .ba-col-label {
        padding: 12px 16px 4px;
        font-weight: 700;
        font-size: 0.8125rem;
    }

    .ba-col-header {
        padding: 12px 16px;
    }

    .ba-col-header:first-child {
        display: none;
    }

    .ba-col {
        padding: 4px 16px 12px;
    }

    .ba-col.ba-col-today {
        padding-bottom: 4px;
    }

    .ba-col.ba-col-today::before {
        content: 'Today: ';
        font-weight: 600;
        color: var(--text-light);
    }

    .ba-col.ba-col-coachui::before {
        content: 'CoachUI: ';
        font-weight: 600;
        color: var(--primary-dark);
    }

    .ba-header {
        display: none;
    }

    .ba-row {
        padding: 8px 0;
    }
}

/* ============================================
   HAMBURGER MENU
   ============================================ */

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

@media (max-width: 1024px) {
    .hamburger {
        display: flex;
        order: 3;
        margin-left: auto;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        border-radius: 0 0 16px 16px;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 16px 24px 28px;
        gap: 0;
        border: 1px solid var(--gray-200);
        border-top: none;
    }

    .nav-links.mobile-open {
        display: flex;
    }

    .nav-links > a {
        padding: 14px 0;
        font-size: 16px;
        border-bottom: 1px solid var(--gray-100);
    }

    .nav-links > a:last-of-type {
        border-bottom: none;
    }

    .nav-inner {
        position: relative;
    }

    .nav-cta {
        display: none;
    }

    .nav-cta-mobile {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding-top: 16px;
        padding-bottom: 4px;
        border-top: 1px solid var(--gray-100);
        margin-top: 4px;
        overflow: visible;
    }

    .nav-cta-mobile .btn {
        text-align: center;
        width: 100%;
        box-sizing: border-box;
        overflow: visible;
        white-space: nowrap;
        min-width: 0;
    }
}

/* ============================================
   HOW IT WORKS — ensure styles exist
   ============================================ */

.how-it-works {
    background: #fff;
    padding: 100px 0;
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ============================================
   TESTIMONIALS GRID
   ============================================ */

.testimonials-section {
    background: #fff;
    padding: 100px 0;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.testimonials-section > .container > h2 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 48px;
}

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

.testimonial-card-v3 {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonial-card-v3 blockquote {
    font-size: 0.9375rem;
    color: var(--text-dark);
    line-height: 1.7;
    font-style: italic;
    border: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.testimonial-card-v3 blockquote::before {
    content: '\201C';
    font-size: 2rem;
    font-family: Georgia, serif;
    color: var(--primary-dark);
    opacity: 0.3;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.testimonial-card-attrib {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.testimonial-card-initials {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-card-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-dark);
}

.testimonial-card-role {
    font-size: 0.8125rem;
    color: var(--text-medium);
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        gap: 16px;
    }
}

/* ============================================
   PRICING TOGGLE
   ============================================ */

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.pricing-toggle-label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.2s;
    user-select: none;
}

.pricing-toggle-label.pricing-toggle-active {
    color: var(--text-dark);
    font-weight: 600;
}

.pricing-toggle-switch {
    position: relative;
    width: 48px;
    height: 26px;
    background: var(--gray-300);
    border-radius: 13px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    padding: 0;
}

.pricing-toggle-switch.active {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
}

.pricing-toggle-knob {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.pricing-toggle-switch.active .pricing-toggle-knob {
    transform: translateX(22px);
}

.pricing-save-badge {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #059669;
    background: rgba(5, 150, 105, 0.08);
    padding: 2px 8px;
    border-radius: 8px;
    margin-left: 4px;
}

.pricing-annual-note {
    font-size: 0.8125rem !important;
    color: var(--text-light) !important;
    display: none;
    margin-top: 2px;
}

.pricing-annual-note.visible {
    display: block;
}

/* Most Popular Badge */
.pricing-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 0.3px;
}
