/* ============================================
   GROWTH SYSTEMS — SALES FUNNEL
   Dark, premium, high-converting design
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --bg-primary: #050505;
    --bg-secondary: #0a0a0a;
    --bg-card: #0f0f0f;
    --bg-card-hover: #141414;
    --bg-elevated: #1a1a1a;

    --text-primary: #f5f5f5;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --text-faint: #444444;

    --accent-primary: #6d5acd;
    --accent-light: #8b7ae0;
    --accent-glow: rgba(109, 90, 205, 0.3);
    --accent-subtle: rgba(109, 90, 205, 0.08);

    --green: #22c55e;
    --green-glow: rgba(34, 197, 94, 0.15);

    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(255, 255, 255, 0.12);

    /* Spacing */
    --section-pad: clamp(80px, 10vw, 140px);
    --container-max: 1200px;
    --container-narrow: 800px;

    /* Transitions */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --duration: 0.6s;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: var(--accent-primary);
    color: white;
}

/* --- Grain Overlay --- */
.grain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

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

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
}

strong {
    font-weight: 600;
    color: var(--text-primary);
}

/* --- Animations --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent-primary);
    color: white;
    padding: 14px 28px;
    box-shadow: 0 0 30px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.1);
}

.btn-primary:hover {
    background: var(--accent-light);
    box-shadow: 0 0 50px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    padding: 14px 28px;
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    color: var(--text-primary);
    border-color: var(--border-hover);
    background: rgba(255,255,255,0.03);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    padding: 14px 28px;
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    background: var(--accent-subtle);
    box-shadow: 0 0 30px rgba(109, 90, 205, 0.1);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 12px;
}

.btn-xl {
    padding: 20px 40px;
    font-size: 18px;
    border-radius: 14px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-primary);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
}

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

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

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

.nav-cta {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-light);
    padding: 10px 20px;
    border: 1px solid rgba(109, 90, 205, 0.3);
    border-radius: 8px;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: var(--accent-subtle);
    border-color: var(--accent-primary);
}

.nav-back {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.nav-back:hover {
    color: var(--text-primary);
}

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
    border-bottom: 1px solid var(--border);
}

.mobile-menu a {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 0;
}

.mobile-menu-cta {
    color: var(--accent-light) !important;
    font-weight: 600 !important;
    margin-top: 8px;
    padding: 14px !important;
    background: var(--accent-subtle);
    border-radius: 10px;
    text-align: center;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 0 60px;
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0.4;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--accent-subtle);
    border: 1px solid rgba(109, 90, 205, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-light);
    margin-bottom: 32px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

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

.gradient-text {
    background: linear-gradient(135deg, var(--accent-light), #a78bfa, var(--accent-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

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

/* --- Stats Bar --- */
.stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 80px;
    padding: 32px 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    position: relative;
    z-index: 1;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 0 20px;
}

.stat-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--border);
}

/* --- Sections --- */
.section {
    padding: var(--section-pad) 0;
    position: relative;
}

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

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-light);
    padding: 6px 14px;
    background: var(--accent-subtle);
    border: 1px solid rgba(109, 90, 205, 0.15);
    border-radius: 6px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* --- Problem Cards --- */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.problem-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.4s var(--ease);
}

.problem-card:hover {
    border-color: var(--border-hover);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.problem-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: 12px;
    color: #ef4444;
    margin-bottom: 20px;
}

.problem-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.problem-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- Bridge --- */
.bridge {
    text-align: center;
    position: relative;
}

.bridge-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--accent-primary), transparent);
    margin: 0 auto;
}

.bridge-content {
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.bridge-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.bridge-content p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

/* --- Framework / Phases --- */
.framework-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.phase-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s var(--ease);
}

.phase-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.phase-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.phase-accent-1 { background: linear-gradient(90deg, var(--accent-primary), transparent); }
.phase-accent-2 { background: linear-gradient(90deg, var(--accent-light), transparent); }
.phase-accent-3 { background: linear-gradient(90deg, #a78bfa, transparent); }

.phase-header {
    padding: 28px 28px 0;
}

.phase-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-light);
    display: block;
    margin-bottom: 8px;
}

.phase-title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.phase-body {
    padding: 20px 28px 28px;
}

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

.phase-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    border-bottom: 1px solid var(--border);
}

.phase-list li:last-child {
    border-bottom: none;
}

.phase-list li svg {
    flex-shrink: 0;
    color: var(--green);
    margin-top: 2px;
}

.framework-footer {
    text-align: center;
}

.framework-footer p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* --- Results Grid --- */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.result-card {
    padding: 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.4s var(--ease);
}

.result-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.result-header {
    margin-bottom: 16px;
}

.result-industry {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-light);
    display: block;
    margin-bottom: 8px;
}

.result-spend {
    display: flex;
    align-items: center;
    gap: 8px;
}

.result-from {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-muted);
}

.result-spend svg {
    color: var(--green);
}

.result-to {
    font-size: 20px;
    font-weight: 700;
    color: var(--green);
}

.result-metric {
    padding: 10px 14px;
    background: var(--green-glow);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: 8px;
    margin-bottom: 16px;
}

.result-metric-value {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 600;
    color: var(--green);
}

.result-key {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* --- Who It's For --- */
.who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.who-card {
    position: relative;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s var(--ease);
}

.who-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.who-card:first-child {
    border-color: rgba(109, 90, 205, 0.3);
    background: linear-gradient(to bottom, rgba(109, 90, 205, 0.05), var(--bg-card));
}

.who-card-badge {
    position: absolute;
    top: -1px;
    right: 24px;
    padding: 4px 12px;
    background: var(--accent-primary);
    color: white;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 0 0 8px 8px;
}

.who-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.who-card-list {
    list-style: none;
    margin-bottom: 20px;
    flex: 1;
}

.who-card-list li {
    position: relative;
    padding: 8px 0 8px 20px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.who-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15px;
    width: 6px;
    height: 6px;
    background: var(--text-faint);
    border-radius: 50%;
}

.who-card-need {
    padding: 14px 16px;
    background: var(--accent-subtle);
    border: 1px solid rgba(109, 90, 205, 0.1);
    border-radius: 10px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* --- FAQ --- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-item.active {
    border-color: rgba(109, 90, 205, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(255,255,255,0.02);
}

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

.faq-item.active .faq-question svg {
    transform: rotate(45deg);
    color: var(--accent-light);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* --- CTA Section --- */
.section-cta {
    position: relative;
    padding: var(--section-pad) 0;
    overflow: hidden;
    background: var(--bg-primary);
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0.3;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-availability {
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-muted);
}

/* --- Footer --- */
.footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
}

.footer-text {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.ty-page {
    background: var(--bg-primary);
}

.ty-hero {
    position: relative;
    padding: 120px 0 40px;
    overflow: hidden;
}

.ty-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.ty-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--green-glow);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 50%;
    color: var(--green);
    margin-bottom: 32px;
}

.ty-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.ty-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.ty-expect {
    max-width: 560px;
    margin: 0 auto;
    text-align: left;
}

.ty-expect h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.ty-expect-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ty-expect-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.ty-expect-item svg {
    flex-shrink: 0;
    color: var(--green);
    margin-top: 1px;
}

/* LinkedIn Section */
.ty-linkedin {
    max-width: 560px;
    margin: 32px auto 0;
    text-align: center;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.ty-linkedin-text {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.ty-linkedin .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.ty-linkedin .btn svg {
    width: 20px;
    height: 20px;
}

/* Certifications Section */
.ty-certifications-section {
    padding: 40px 0 80px;
    background: var(--bg-secondary);
}

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

.ty-certifications-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.ty-certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
}

.certification-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.certification-badge:hover {
    transform: translateY(-4px);
    border-color: var(--purple);
    box-shadow: 0 8px 24px rgba(109, 90, 205, 0.15);
}

.certification-badge img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(1.1);
}

.certification-badge p {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    margin: 0;
}

/* Calendly (kept for backwards compatibility, but hidden by default) */
.ty-calendly-section {
    padding: 40px 0 80px;
    display: none; /* Hidden since V2 uses calendar embed in modal */
}

.calendly-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    min-height: 700px;
}

/* Trust bar on TY page */
.ty-trust {
    padding: 0 0 80px;
}

.ty-trust-content {
    text-align: center;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.ty-trust-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 16px;
}

.ty-trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    padding: 0 24px;
}

.ty-trust-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
}

.ty-trust-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.ty-trust-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

.ty-trust-text {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ============================================
   FORM MODAL
   ============================================ */

.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s;
}

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

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.modal-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.35s var(--ease);
}

.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
}

/* Scrollbar styling for modal */
.modal-container::-webkit-scrollbar {
    width: 6px;
}

.modal-container::-webkit-scrollbar-track {
    background: transparent;
}

.modal-container::-webkit-scrollbar-thumb {
    background: var(--border-hover);
    border-radius: 3px;
}

.modal-card {
    background: #0c0c14;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
}

.modal-close:hover {
    color: var(--text-primary);
    border-color: var(--border-hover);
    background: rgba(255,255,255,0.03);
}

.modal-header {
    margin-bottom: 28px;
}

.modal-title {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
    color: #ffffff;
}

.modal-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

/* Form elements */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 24px;
}

.form-group:last-of-type {
    margin-bottom: 0;
}

.form-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.85);
}

.required {
    color: var(--accent-light);
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #ffffff;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    outline: none;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.25);
}

.form-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px var(--accent-subtle);
}

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

.form-error {
    font-size: 12px;
    color: #ef4444;
    display: none;
}

.form-input.error + .form-error {
    display: block;
}

/* Chip selectors */
.chip-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    padding: 9px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.chip:hover {
    border-color: var(--border-hover);
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.chip.chip-selected {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
    box-shadow: 0 0 20px rgba(109, 90, 205, 0.25);
}

/* Submit button */
.btn-submit {
    margin-top: 8px;
    padding: 16px;
    font-size: 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent-primary), #8b5cf6);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-submit:hover::before {
    transform: translateX(100%);
}

.btn-submit:hover {
    box-shadow: 0 0 40px rgba(109, 90, 205, 0.4);
    transform: translateY(-1px);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Body lock when modal is open */
body.modal-open {
    overflow: hidden;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ============================================
   2-STEP FORM STYLES
   ============================================ */

/* Progress Bar */
.form-progress {
    margin-bottom: 24px;
}

.form-progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
}

.form-progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    overflow: hidden;
    position: relative;
}

.form-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary), #8b5cf6);
    border-radius: 100px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(109, 90, 205, 0.4);
}

/* Form Steps Container */
.form-steps {
    position: relative;
    overflow: hidden;
}

.form-step {
    display: none;
    animation: fadeSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-step.active {
    display: block;
}

.form-step.exiting {
    animation: fadeSlideOut 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

/* Step Title */
.step-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.step-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
    line-height: 1.5;
}

/* Step 2 Summary Display */
.step-summary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-summary-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--accent-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
}

.step-summary-content {
    flex: 1;
    min-width: 0;
}

.step-summary-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.step-summary-value {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Step Navigation Buttons */
.step-actions {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.btn-back {
    flex: 0 0 auto;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.btn-continue {
    flex: 1;
    padding: 16px;
    font-size: 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent-primary), #8b5cf6);
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    margin-top: 28px;
}

.btn-continue::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-continue:hover::before {
    transform: translateX(100%);
}

.btn-continue:hover {
    box-shadow: 0 0 40px rgba(109, 90, 205, 0.4);
    transform: translateY(-1px);
}

.btn-continue:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Trust Signals */
.step-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    flex-wrap: wrap;
}

.step-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.step-trust-icon {
    color: var(--accent-primary);
    flex-shrink: 0;
}

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

@media (max-width: 1024px) {
    .framework-timeline {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

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

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

@media (max-width: 768px) {
    .nav-links, .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu.active {
        display: flex;
    }

    .hero {
        padding: 100px 0 40px;
        min-height: auto;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        justify-content: center;
    }

    .stats-bar {
        flex-direction: column;
        gap: 24px;
        padding: 24px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

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

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

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

    .ty-expect-grid {
        grid-template-columns: 1fr;
    }

    .ty-trust-stats {
        flex-direction: column;
        gap: 20px;
    }

    .ty-trust-divider {
        width: 60px;
        height: 1px;
    }

    .btn-xl {
        padding: 16px 28px;
        font-size: 16px;
    }
}

@media (max-width: 520px) {
    .modal-overlay {
        padding: 12px;
    }

    .modal-card {
        padding: 24px;
        border-radius: 16px;
    }

    .modal-title {
        font-size: 20px;
    }

    .chip {
        padding: 8px 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-title {
        font-size: 28px;
    }

    .phase-header,
    .phase-body {
        padding-left: 20px;
        padding-right: 20px;
    }

    .problem-card,
    .result-card,
    .who-card {
        padding: 24px;
    }
}

/* ============================================
   AUDIT PAGE SPECIFIC STYLES
   ============================================ */

/* Audit Deliverables Grid */
.audit-deliverables-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.audit-deliverable {
    position: relative;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.4s var(--ease);
}

.audit-deliverable:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    background: var(--bg-card-hover);
}

.audit-deliverable-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-light);
    background: var(--accent-subtle);
    border: 1px solid rgba(109, 90, 205, 0.15);
    border-radius: 6px;
    padding: 4px 10px;
    display: inline-block;
    margin-bottom: 16px;
}

.audit-deliverable h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.audit-deliverable p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Audit Qualification Grid */
.audit-qualify-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.audit-qualify-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.4s var(--ease);
}

.audit-qualify-card:hover {
    transform: translateY(-2px);
}

.audit-qualify-yes {
    border-color: rgba(34, 197, 94, 0.3);
    background: linear-gradient(to bottom, rgba(34, 197, 94, 0.05), var(--bg-card));
}

.audit-qualify-no {
    border-color: rgba(239, 68, 68, 0.2);
    background: linear-gradient(to bottom, rgba(239, 68, 68, 0.03), var(--bg-card));
}

.audit-qualify-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.audit-qualify-yes .audit-qualify-header svg {
    color: var(--green);
    flex-shrink: 0;
}

.audit-qualify-no .audit-qualify-header svg {
    color: #ef4444;
    flex-shrink: 0;
}

.audit-qualify-header h3 {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.audit-qualify-list {
    list-style: none;
}

.audit-qualify-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    border-bottom: 1px solid var(--border);
}

.audit-qualify-list li:last-child {
    border-bottom: none;
}

.audit-qualify-yes .audit-qualify-list li svg {
    color: var(--green);
    flex-shrink: 0;
    margin-top: 3px;
}

.audit-qualify-no .audit-qualify-list li svg {
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 3px;
}

/* Audit Process Grid */
.audit-process-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 24px;
    align-items: center;
    margin-bottom: 60px;
}

.audit-process-step {
    padding: 32px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s var(--ease);
}

.audit-process-step:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.audit-process-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--accent-subtle);
    border: 1px solid rgba(109, 90, 205, 0.2);
    border-radius: 50%;
    font-family: 'JetBrains Mono', monospace;
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-light);
    margin-bottom: 16px;
}

.audit-process-step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.audit-process-step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.audit-process-connector {
    color: var(--accent-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive - Audit Page */
@media (max-width: 1024px) {
    .audit-deliverables-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .audit-qualify-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .audit-process-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .audit-process-connector {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .audit-deliverable,
    .audit-qualify-card,
    .audit-process-step {
        padding: 24px;
    }
}

/* ============================================
   MOBILE STICKY CTA BAR
   ============================================ */

.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.98) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
    padding: 12px 20px;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    display: none; /* Hidden by default, shown only on mobile via media query */
}

.mobile-sticky-cta.show {
    transform: translateY(0);
    opacity: 1;
}

.mobile-sticky-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    max-width: 100%;
}

.mobile-sticky-text {
    flex: 1;
    min-width: 0;
}

.mobile-sticky-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-sticky-subtitle {
    font-size: 12px;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-sticky-cta .btn-sm {
    flex-shrink: 0;
    padding: 10px 20px;
    font-size: 14px;
    white-space: nowrap;
}

/* Show on mobile only */
@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }
}

@media (max-width: 480px) {
    .mobile-sticky-cta {
        padding: 10px 16px;
    }

    .mobile-sticky-title {
        font-size: 13px;
    }

    .mobile-sticky-subtitle {
        font-size: 11px;
    }

    .mobile-sticky-cta .btn-sm {
        padding: 9px 16px;
        font-size: 13px;
    }
}

/* ============================================
   URGENCY BANNER
   ============================================ */

.urgency-banner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    animation: pulse-urgency 3s ease-in-out infinite;
}

@keyframes pulse-urgency {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
        border-color: rgba(239, 68, 68, 0.3);
    }
    50% {
        box-shadow: 0 0 0 4px rgba(239, 68, 68, 0);
        border-color: rgba(239, 68, 68, 0.5);
    }
}

.urgency-banner svg {
    color: #ef4444;
    flex-shrink: 0;
}

.urgency-banner strong {
    color: #ef4444;
    font-weight: 700;
    font-size: 16px;
}

/* Responsive - Urgency */
@media (max-width: 520px) {
    .urgency-banner {
        font-size: 13px;
        padding: 10px 16px;
        gap: 8px;
    }

    .urgency-banner svg {
        width: 16px;
        height: 16px;
    }

    .urgency-banner strong {
        font-size: 15px;
    }
}

/* ============================================
   SOCIAL PROOF NOTIFICATION
   ============================================ */

.social-proof-notification {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
    max-width: 320px;
    transform: translateX(-120%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
}

.social-proof-notification.show {
    transform: translateX(0);
    opacity: 1;
}

.social-proof-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(22, 163, 74, 0.05) 100%);
    border: 1.5px solid rgba(34, 197, 94, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
}

.social-proof-content {
    flex: 1;
    min-width: 0;
}

.social-proof-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.social-proof-action {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 4px;
    line-height: 1.3;
}

.social-proof-time {
    font-size: 12px;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
}

/* Responsive - Social Proof */
@media (max-width: 520px) {
    .social-proof-notification {
        bottom: 16px;
        left: 16px;
        right: 16px;
        max-width: none;
        padding: 14px 16px;
    }

    .social-proof-icon {
        width: 36px;
        height: 36px;
    }

    .social-proof-icon svg {
        width: 16px;
        height: 16px;
    }

    .social-proof-name {
        font-size: 13px;
    }

    .social-proof-action {
        font-size: 12px;
    }

    .social-proof-time {
        font-size: 11px;
    }
}

/* ============================================
   EXIT INTENT MODAL
   ============================================ */

.exit-intent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.exit-intent-overlay.active {
    opacity: 1;
    visibility: visible;
}

.exit-intent-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.exit-intent-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 10001;
}

.exit-intent-card {
    position: relative;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    max-width: 560px;
    width: 100%;
    padding: 48px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
    transform: scale(0.95);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s ease;
}

.exit-intent-overlay.active .exit-intent-card {
    transform: scale(1);
    opacity: 1;
}

.exit-intent-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.exit-intent-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    transform: rotate(90deg);
}

.exit-intent-content {
    text-align: center;
}

.exit-intent-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
    border: 2px solid rgba(239, 68, 68, 0.3);
    border-radius: 50%;
    margin-bottom: 24px;
    color: #ef4444;
}

.exit-intent-icon svg {
    animation: pulse-warning 2s ease-in-out infinite;
}

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

.exit-intent-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.exit-intent-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.exit-intent-highlight {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-light);
    line-height: 1.5;
    margin-bottom: 32px;
    padding: 16px;
    background: rgba(109, 90, 205, 0.1);
    border: 1px solid rgba(109, 90, 205, 0.2);
    border-radius: 12px;
}

.exit-intent-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.exit-intent-cta,
.exit-intent-cta-audit {
    width: 100%;
    animation: pulse-cta 2s ease-in-out infinite;
}

@keyframes pulse-cta {
    0%, 100% { box-shadow: 0 0 0 0 rgba(109, 90, 205, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(109, 90, 205, 0); }
}

.exit-intent-dismiss {
    width: 100%;
    font-size: 14px;
    color: var(--text-muted);
}

.exit-intent-dismiss:hover {
    color: var(--text-secondary);
}

/* Responsive - Exit Intent */
@media (max-width: 520px) {
    .exit-intent-card {
        padding: 36px 24px;
    }

    .exit-intent-title {
        font-size: 24px;
    }

    .exit-intent-text {
        font-size: 15px;
    }

    .exit-intent-highlight {
        font-size: 16px;
        padding: 12px;
    }

    .exit-intent-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }

    .exit-intent-icon svg {
        width: 36px;
        height: 36px;
    }
}

/* ============================================
   LIGHT THEME VARIANT (for A/B Testing)
   ============================================ */

body.light-theme {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f3f5;
    --accent-primary: #6d5acd;
    --accent-light: #8b7adb;
    --accent-subtle: rgba(109, 90, 205, 0.1);
    --text-primary: #0a0a0a;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --text-faint: #a0aec0;
    --border: rgba(0, 0, 0, 0.1);
    --border-color: rgba(0, 0, 0, 0.1);
    --border-hover: rgba(109, 90, 205, 0.3);
    --green: #22c55e;
}

/* Light theme specific overrides */
body.light-theme .grain {
    background-image: none;
}

body.light-theme .hero-bg-grid {
    opacity: 0.3;
    background-image:
        linear-gradient(rgba(109, 90, 205, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(109, 90, 205, 0.03) 1px, transparent 1px);
}

body.light-theme .hero-glow {
    background: radial-gradient(circle at 50% 0%, rgba(109, 90, 205, 0.08), transparent 70%);
}

body.light-theme .nav {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-theme .mobile-menu {
    background: #ffffff;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-theme .gradient-text {
    background: linear-gradient(135deg, #6d5acd 0%, #8b7adb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.light-theme .text-muted-hero {
    color: #718096;
}

body.light-theme .stats-bar {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-theme .stat-divider {
    background: rgba(0, 0, 0, 0.1);
}

body.light-theme .problem-card,
body.light-theme .result-card,
body.light-theme .who-card,
body.light-theme .faq-item,
body.light-theme .phase-card,
body.light-theme .audit-deliverable,
body.light-theme .audit-qualify-card,
body.light-theme .audit-process-step {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

body.light-theme .problem-card:hover,
body.light-theme .result-card:hover,
body.light-theme .who-card:hover,
body.light-theme .phase-card:hover,
body.light-theme .audit-deliverable:hover,
body.light-theme .audit-qualify-card:hover,
body.light-theme .audit-process-step:hover {
    background: #f8f9fa;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

body.light-theme .section-dark {
    background: #f8f9fa;
}

body.light-theme .bridge {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-theme .bridge-line {
    background: linear-gradient(90deg, transparent, rgba(109, 90, 205, 0.2), transparent);
}

body.light-theme .cta-glow {
    background: radial-gradient(circle at 50% 50%, rgba(109, 90, 205, 0.12), transparent 70%);
}

body.light-theme .footer {
    background: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Light theme - Modal */
body.light-theme .modal-overlay {
    background: rgba(0, 0, 0, 0.6);
}

body.light-theme .modal-backdrop {
    background: rgba(0, 0, 0, 0.3);
}

body.light-theme .modal-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

body.light-theme .modal-title {
    color: #0a0a0a;
}

body.light-theme .modal-subtitle {
    color: #4a5568;
}

body.light-theme .form-label {
    color: #2d3748;
}

body.light-theme .form-input {
    background: #f8f9fa;
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    color: #0a0a0a;
}

body.light-theme .form-input::placeholder {
    color: #a0aec0;
}

body.light-theme .form-input:hover {
    background: #f1f3f5;
    border-color: rgba(0, 0, 0, 0.25);
}

body.light-theme .form-input:focus {
    background: #ffffff;
    border-color: #6d5acd;
    box-shadow: 0 0 0 3px rgba(109, 90, 205, 0.15);
}

body.light-theme .chip {
    background: #f8f9fa;
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    color: #2d3748;
}

body.light-theme .chip:hover {
    background: #e9ecef;
    border-color: rgba(109, 90, 205, 0.4);
}

body.light-theme .chip-selected {
    background: rgba(109, 90, 205, 0.1);
    border-color: #6d5acd;
    color: #6d5acd;
}

body.light-theme .modal-close {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #4a5568;
}

body.light-theme .modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #0a0a0a;
}

/* Light theme - Mobile Sticky CTA */
body.light-theme .mobile-sticky-cta {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 1) 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
}

/* Light theme - Social Proof */
body.light-theme .social-proof-notification {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

/* Light theme - Exit Intent */
body.light-theme .exit-intent-backdrop {
    background: rgba(0, 0, 0, 0.5);
}

body.light-theme .exit-intent-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

body.light-theme .exit-intent-title {
    background: linear-gradient(135deg, #0a0a0a 0%, #6d5acd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.light-theme .exit-intent-text {
    color: #4a5568;
}

body.light-theme .exit-intent-close {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #4a5568;
}

body.light-theme .exit-intent-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #0a0a0a;
}

/* Light theme - 2-Step Form */
body.light-theme .form-progress-label {
    color: #4a5568;
}

body.light-theme .form-progress-bar {
    background: rgba(0, 0, 0, 0.08);
}

body.light-theme .form-progress-fill {
    box-shadow: 0 0 20px rgba(109, 90, 205, 0.3);
}

body.light-theme .step-title {
    color: #0a0a0a;
}

body.light-theme .step-subtitle {
    color: #4a5568;
}

body.light-theme .step-summary {
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-theme .step-summary-label {
    color: #718096;
}

body.light-theme .step-summary-value {
    color: #0a0a0a;
}

body.light-theme .step-summary-icon {
    background: rgba(109, 90, 205, 0.1);
    color: #6d5acd;
}

body.light-theme .btn-back {
    background: #f8f9fa;
    border: 1.5px solid rgba(0, 0, 0, 0.15);
    color: #2d3748;
}

body.light-theme .btn-back:hover {
    background: #e9ecef;
    border-color: rgba(109, 90, 205, 0.4);
    color: #0a0a0a;
}

body.light-theme .step-trust {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: #718096;
}

/* ============================================
   V2 CALENDAR EMBED STYLES
   ============================================ */

/* Calendar Container */
.calendar-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 32px;
    overflow: hidden;
}

.calendar-container iframe {
    border-radius: 8px;
    max-width: 100%;
    display: block;
}

/* Calendar Instructions */
.calendar-instructions {
    margin-top: 24px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.calendar-instructions strong {
    color: #ffffff;
    font-weight: 600;
}

/* Booking Confirmation CTA */
.calendar-confirm-section {
    margin-top: 20px;
    text-align: center;
}

.calendar-confirm-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 14px;
}

.calendar-confirm-hint svg {
    color: #22c55e;
    flex-shrink: 0;
}

.btn-booking-confirmed {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: #22c55e;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.btn-booking-confirmed:hover {
    background: #16a34a;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

/* Light theme overrides */
body.light-theme .calendar-confirm-hint {
    color: #6b7280;
}

/* Light Theme - Calendar */
body.light-theme .calendar-container {
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

body.light-theme .calendar-instructions {
    background: #f8f9fa;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #4a5568;
}

body.light-theme .calendar-instructions strong {
    color: #0a0a0a;
}

/* Responsive Calendar */
@media (max-width: 768px) {
    .calendar-container {
        padding: 12px;
    }

    .calendar-container iframe {
        height: 500px;
    }
}
