/* Kingmaker Analytics - Team Building Microsite */
/* Premium Enterprise Aesthetic - V2 */

:root {
    /* Colors - Rich, understated luxury */
    --color-bg: #08090a;
    --color-bg-elevated: #0e1012;
    --color-bg-card: #141618;
    --color-bg-subtle: #1a1d20;
    --color-border: #252a2e;
    --color-border-subtle: #1c2024;
    
    --color-text: #f5f5f5;
    --color-text-secondary: #b8bcc0;
    --color-text-muted: #6b7280;
    --color-text-subtle: #4b5563;
    
    /* Gold accent - warm, sophisticated */
    --color-accent: #c9a962;
    --color-accent-light: #ddc07a;
    --color-accent-dim: rgba(201, 169, 98, 0.12);
    --color-accent-glow: rgba(201, 169, 98, 0.25);
    
    /* Status colors */
    --color-success: #34d399;
    --color-error: #f87171;
    
    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing scale */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;
    
    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    
    /* Layout */
    --max-width: 1200px;
    --max-width-narrow: 800px;
    
    /* Animation */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Ambient Background */
.ambient-glow {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100vh;
    background: radial-gradient(ellipse 80% 50% at 50% 0%, var(--color-accent-dim) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Links & Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--color-accent-light);
}

/* Selection */
::selection {
    background: var(--color-accent-dim);
    color: var(--color-text);
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-8);
    position: relative;
    z-index: 1;
}

/* Section Headers */
.section-header {
    margin-bottom: var(--space-16);
}

.section-header.centered {
    text-align: center;
    max-width: var(--max-width-narrow);
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-flex;
    align-items: center;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    margin-bottom: var(--space-4);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--color-text);
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--color-text-secondary);
    margin-top: var(--space-4);
    max-width: 600px;
}

.section-header.centered .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-8);
    background: linear-gradient(135deg, var(--color-accent) 0%, #b89b50 100%);
    color: var(--color-bg);
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(201, 169, 98, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 98, 0.3);
    color: var(--color-bg);
}

.btn-primary svg {
    transition: transform 0.3s var(--ease-out);
}

.btn-primary:hover svg {
    transform: translateX(3px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4) var(--space-8);
    background: transparent;
    color: var(--color-text-secondary);
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-ghost:hover {
    border-color: var(--color-text-muted);
    color: var(--color-text);
}

.btn-full {
    width: 100%;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--space-4) 0;
    background: linear-gradient(180deg, rgba(8, 9, 10, 0.95) 0%, rgba(8, 9, 10, 0.8) 100%);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border-subtle);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--color-accent);
    display: block;
    object-fit: contain;
    height: 1.5rem;
    width: auto;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text);
}

.nav-cta {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-accent);
    padding: var(--space-2) var(--space-4);
    border: 1px solid var(--color-accent-dim);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.nav-cta:hover {
    background: var(--color-accent-dim);
    color: var(--color-accent-light);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-32) var(--space-8) var(--space-16);
    text-align: center;
    position: relative;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Eyebrow */
.hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-10);
}

.eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--color-border);
}

.eyebrow-text {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
}

/* Hero Title */
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-8);
}

.hero-title-accent {
    color: var(--color-accent);
    font-style: italic;
    font-weight: 400;
}

/* Hero Copy */
.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--color-text);
    max-width: 680px;
    margin: 0 auto var(--space-4);
}

.hero-subtext {
    font-size: 1.0625rem;
    color: var(--color-text-secondary);
    max-width: 620px;
    margin: 0 auto var(--space-10);
}

/* Hero CTAs */
.hero-cta-group {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    margin-top: var(--space-20);
    padding: var(--space-10) var(--space-8);
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    flex: 1;
    text-align: center;
    padding: 0 var(--space-6);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--color-accent);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-plus {
    font-size: 0.6em;
    vertical-align: top;
    margin-left: 2px;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    margin-top: var(--space-2);
    line-height: 1.4;
}

.stat-label span {
    color: var(--color-text-subtle);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
}

.hero-scroll-indicator span {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--color-accent) 0%, transparent 100%);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.6); }
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem {
    padding: var(--space-32) 0;
    background: var(--color-bg-elevated);
    position: relative;
}

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

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

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

.problem-card {
    display: flex;
    gap: var(--space-5);
    padding: var(--space-8);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

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

.problem-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent-dim);
    border-radius: var(--radius-md);
    color: var(--color-accent);
}

.problem-content {
    flex: 1;
}

.problem-number {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 0.05em;
    margin-bottom: var(--space-2);
}

.problem-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-2);
}

.problem-card p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.65;
}

/* Problem Callout */
.problem-callout {
    display: flex;
    gap: var(--space-6);
    padding: var(--space-10);
    background: var(--color-bg-subtle);
    border: 1px solid var(--color-accent);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.callout-accent {
    flex-shrink: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    border-radius: 2px;
}

.callout-content {
    flex: 1;
}

.callout-lead {
    font-size: 1.0625rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2);
}

.callout-emphasis {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--color-text);
    line-height: 1.2;
}

/* ============================================
   CREDIBILITY SECTION
   ============================================ */
.credibility {
    padding: var(--space-32) 0;
}

.credibility-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-16);
    align-items: start;
}

/* Image Frame */
.credibility-image {
    position: sticky;
    top: 100px;
}

.image-frame {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--color-bg-card) 0%, var(--color-bg-elevated) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}

.placeholder-initials {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 400;
    color: var(--color-accent);
    opacity: 0.4;
}

.image-badge {
    position: absolute;
    bottom: var(--space-4);
    right: var(--space-4);
    width: 40px;
    height: 40px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon {
    font-size: 1.25rem;
    color: var(--color-bg);
}

.image-caption {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: var(--space-4);
    text-align: center;
}

.caption-name {
    font-weight: 600;
    color: var(--color-text);
}

.caption-title {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

/* Credibility Content */
.credibility-intro {
    font-size: 1.125rem;
    color: var(--color-text);
    margin-bottom: var(--space-12);
    line-height: 1.7;
}

/* Timeline */
.credibility-timeline {
    margin-bottom: var(--space-12);
}

.timeline-item {
    display: flex;
    gap: var(--space-6);
    padding-bottom: var(--space-8);
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.marker-dot {
    width: 12px;
    height: 12px;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--color-accent-glow);
}

.marker-line {
    flex: 1;
    width: 1px;
    background: var(--color-border);
    margin-top: var(--space-3);
}

.timeline-content {
    flex: 1;
    padding-top: 0;
}

.timeline-company {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: var(--space-2);
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-3);
}

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

.timeline-content strong {
    color: var(--color-text);
}

.timeline-award {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-4);
    padding: var(--space-2) var(--space-4);
    background: var(--color-accent-dim);
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    color: var(--color-accent);
}

.award-icon {
    font-size: 0.875rem;
}

/* Credentials */
.credibility-credentials {
    display: flex;
    gap: var(--space-6);
}

.credential {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-5);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-md);
}

.credential-icon {
    color: var(--color-accent);
}

.credential-text {
    display: flex;
    flex-direction: column;
}

.credential-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
}

.credential-detail {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

/* ============================================
   OFFERINGS SECTION
   ============================================ */
.how-it-works {
    padding: var(--space-32) 0;
    background: var(--color-bg-elevated);
    position: relative;
}

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

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

.offering-card {
    position: relative;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    overflow: hidden;
}

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

/* Card Glow Effect */
.card-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 120px;
    background: radial-gradient(ellipse at center, var(--color-accent-dim) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.offering-card:hover .card-glow {
    opacity: 1;
}

.offering-card.featured {
    border-color: var(--color-accent);
}

.offering-card.featured .card-glow,
.offering-card.featured .featured-glow {
    opacity: 1;
}

.offering-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: var(--color-accent);
    color: var(--color-bg);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: var(--space-2) var(--space-5);
    border-radius: 100px;
}

/* Offering Header */
.offering-header {
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-6);
    border-bottom: 1px solid var(--color-border-subtle);
}

.offering-tier {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    margin-bottom: var(--space-2);
}

.offering-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: var(--space-3);
}

.offering-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: var(--space-3);
}

.price-currency {
    font-size: 1rem;
    color: var(--color-accent);
}

.price-amount {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-accent);
    line-height: 1;
}

.price-range {
    font-size: 1rem;
    color: var(--color-accent);
    opacity: 0.8;
}

.offering-tagline {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    font-style: italic;
}

/* Offering Body */
.offering-body {
    flex: 1;
    margin-bottom: var(--space-6);
}

.offering-features {
    list-style: none;
}

.offering-features li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.feature-check {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    background: var(--color-accent-dim);
    border-radius: 50%;
    position: relative;
}

.feature-check::after {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
}

/* Offering Footer */
.offering-footer {
    padding-top: var(--space-6);
    border-top: 1px solid var(--color-border-subtle);
}

.offering-meta {
    margin-bottom: var(--space-4);
}

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

.meta-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

.meta-value {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
}

.offering-ideal {
    font-size: 0.8125rem;
    color: var(--color-text-subtle);
    line-height: 1.6;
}

/* ============================================
   DELIVERABLES SECTION
   ============================================ */
.deliverables {
    padding: var(--space-32) 0;
}

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

.deliverable {
    padding: var(--space-8);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
}

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

.deliverable-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-5);
    background: var(--color-accent-dim);
    border-radius: var(--radius-lg);
    color: var(--color-accent);
}

.deliverable h3 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-3);
}

.deliverable p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.65;
}

/* ============================================
   WHO FOR SECTION
   ============================================ */
.who-for {
    padding: var(--space-32) 0;
    background: var(--color-bg-elevated);
    position: relative;
}

.who-for::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-border) 50%, transparent 100%);
}

.who-for-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-12);
    align-items: start;
}

.who-for-main {
    /* Main content area */
}

.who-for-main .section-header {
    margin-bottom: var(--space-10);
}

/* Qualifications */
.qualification-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.qualification-item {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-5) var(--space-6);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
}

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

.qual-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent-dim);
    border-radius: 50%;
    color: var(--color-accent);
}

.qual-content {
    font-size: 1rem;
    color: var(--color-text-secondary);
}

.qual-content strong {
    color: var(--color-text);
}

/* Sidebar */
.who-for-sidebar {
    position: sticky;
    top: 100px;
}

/* Not For Card */
.not-for-card {
    padding: var(--space-8);
    background: linear-gradient(135deg, rgba(248, 113, 113, 0.05) 0%, var(--color-bg-subtle) 100%);
    border: 1px solid rgba(248, 113, 113, 0.2);
    border-radius: var(--radius-xl);
}

.not-for-card h3 {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-error);
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid rgba(248, 113, 113, 0.15);
}

.not-for-list {
    list-style: none;
    margin-bottom: var(--space-6);
}

.not-for-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.not-for-list li:last-child {
    margin-bottom: 0;
}

.not-for-list svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-error);
    opacity: 0.8;
}

.not-for-note {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    padding-top: var(--space-5);
    margin-top: var(--space-5);
    border-top: 1px solid var(--color-border-subtle);
    line-height: 1.6;
}

.not-for-note a {
    color: var(--color-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.not-for-note a:hover {
    color: var(--color-accent-light);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
    padding: var(--space-32) 0;
}

.process-visual {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.process-line {
    position: absolute;
    left: 28px;
    top: 40px;
    bottom: 40px;
    width: 1px;
    background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-border) 100%);
}

.process-step {
    display: flex;
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-marker {
    flex-shrink: 0;
    width: 56px;
    display: flex;
    justify-content: center;
}

.step-number {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-card);
    border: 2px solid var(--color-accent);
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-accent);
}

.step-card {
    flex: 1;
    padding: var(--space-6);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
}

.step-card:hover {
    border-color: var(--color-border);
}

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

.step-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
}

.step-duration {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-accent);
    padding: var(--space-1) var(--space-3);
    background: var(--color-accent-dim);
    border-radius: var(--radius-sm);
}

.step-card p {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.65;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
    padding: var(--space-32) 0;
    background: var(--color-bg-elevated);
    position: relative;
}

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

.faq-accordion {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
}

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

.faq-item:first-child {
    border-top: 1px solid var(--color-border-subtle);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: var(--space-6) 0;
    cursor: pointer;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question span:first-child {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
    text-align: left;
}

.faq-toggle {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq-toggle::before,
.faq-toggle::after {
    content: "";
    position: absolute;
    background: var(--color-text-muted);
    transition: all 0.3s var(--ease-out);
}

.faq-toggle::before {
    top: 50%;
    left: 4px;
    right: 4px;
    height: 1.5px;
    transform: translateY(-50%);
}

.faq-toggle::after {
    left: 50%;
    top: 4px;
    bottom: 4px;
    width: 1.5px;
    transform: translateX(-50%);
}

.faq-item[open] .faq-toggle::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding-bottom: var(--space-6);
}

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

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
    padding: var(--space-32) 0;
}

.cta-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-16);
    align-items: start;
}

.cta-content {
    position: sticky;
    top: 100px;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--color-text);
    margin-bottom: var(--space-5);
}

.cta-subtitle {
    font-size: 1.0625rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-8);
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.trust-item svg {
    flex-shrink: 0;
    color: var(--color-accent);
}

/* CTA Form */
.cta-form-wrapper {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-10);
}

.cta-form {
    display: flex;
    flex-direction: column;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.span-2 {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: var(--space-2);
}

.form-group label .optional {
    font-weight: 400;
    color: var(--color-text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--space-4);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text);
    font-size: 0.9375rem;
    font-family: var(--font-body);
    transition: border-color 0.2s ease;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-4) center;
}

.form-group select option {
    background: var(--color-bg);
    color: var(--color-text);
}

.cta-form .btn-primary {
    margin-top: var(--space-2);
}

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

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--color-accent);
    margin-bottom: var(--space-4);
}

.form-success p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2);
}

.form-success a {
    color: var(--color-accent);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: var(--space-16) 0 var(--space-10);
    border-top: 1px solid var(--color-border-subtle);
    background: var(--color-bg);
}

.footer-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-10);
}

.footer-brand .brand-mark {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}


.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text);
}

.brand-tagline {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    align-items: flex-end;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: var(--color-accent);
}

.footer-link svg {
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: var(--space-8);
    border-top: 1px solid var(--color-border-subtle);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--color-text-subtle);
    margin-bottom: var(--space-1);
}

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

.footer-disclaimer {
    margin-top: var(--spacing-md);
    font-size: 0.75rem;
    color: var(--color-text-muted);
    opacity: 0.7;
    font-style: italic;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-stats {
        flex-direction: column;
        gap: var(--space-8);
        padding: var(--space-8);
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .credibility-grid {
        grid-template-columns: 1fr;
    }
    
    .credibility-image {
        position: static;
        max-width: 200px;
        margin: 0 auto var(--space-12);
    }
    
    .offerings-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .offering-card.featured {
        order: -1;
    }
    
    .deliverables-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .who-for-layout {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }
    
    .who-for-sidebar {
        position: static;
    }
    
    .cta-layout {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        position: static;
        text-align: center;
    }
    
    .cta-trust {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-5);
    }
    
    .hero {
        padding: var(--space-24) var(--space-5) var(--space-12);
        min-height: auto;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .problem-card {
        flex-direction: column;
    }
    
    .deliverables-grid {
        grid-template-columns: 1fr;
    }
    
    .credibility-credentials {
        flex-direction: column;
    }
    
    .footer-layout {
        flex-direction: column;
        gap: var(--space-8);
    }
    
    .footer-links {
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-cta-group {
        flex-direction: column;
        gap: var(--space-3);
    }
    
    .hero-cta-group .btn-primary,
    .hero-cta-group .btn-ghost {
        width: 100%;
        justify-content: center;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.span-2 {
        grid-column: span 1;
    }
    
    .cta-form-wrapper {
        padding: var(--space-6);
    }
}

/* Animations */
@media (prefers-reduced-motion: no-preference) {
    [data-animate] {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.6s var(--ease-out) forwards;
    }
    
    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .problem-card:nth-child(1) { animation-delay: 0.1s; }
    .problem-card:nth-child(2) { animation-delay: 0.2s; }
    .problem-card:nth-child(3) { animation-delay: 0.3s; }
    .problem-card:nth-child(4) { animation-delay: 0.4s; }
    
    .offering-card:nth-child(1) { animation-delay: 0.1s; }
    .offering-card:nth-child(2) { animation-delay: 0.2s; }
    .offering-card:nth-child(3) { animation-delay: 0.3s; }
    
    .deliverable:nth-child(1) { animation-delay: 0.1s; }
    .deliverable:nth-child(2) { animation-delay: 0.15s; }
    .deliverable:nth-child(3) { animation-delay: 0.2s; }
    .deliverable:nth-child(4) { animation-delay: 0.25s; }
    .deliverable:nth-child(5) { animation-delay: 0.3s; }
    .deliverable:nth-child(6) { animation-delay: 0.35s; }
}
