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

:root {
    --orange: #F97316;
    --orange-dark: #EA580C;
    --orange-light: #FFF7ED;
    --orange-glow: rgba(249, 115, 22, 0.08);
    --dark: #FFFFFF;
    --dark-2: #F9FAFB;
    --dark-3: #F3F4F6;
    --dark-4: #E5E7EB;
    --gray-1: #E5E7EB;
    --gray-2: #9CA3AF;
    --gray-3: #6B7280;
    --gray-4: #4B5563;
    --gray-5: #374151;
    --white: #111827;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --max-w: 1200px;
    --space-sm: 12px;
    --space-md: 20px;
    --space-lg: 32px;
    --space-xl: 60px;
}

html { scroll-behavior: smooth; }

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

/* --- NAV --- */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

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

.nav-logo {
    font-size: 20px;
    font-weight: 800;
    color: #111827;
    text-decoration: none;
    letter-spacing: -0.5px;
    user-select: none;
}

.nav-logo span { color: var(--orange); }

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

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

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

.nav-cta {
    background: var(--orange);
    color: #FFFFFF !important;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
    background: var(--orange-dark);
    transform: translateY(-1px);
}

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

.hamburger span {
    width: 24px;
    height: 2px;
    background: #111827;
    border-radius: 2px;
    transition: all 0.3s;
}

/* --- HERO --- */
.hero {
    padding: 160px 24px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    max-width: 980px;
    margin: 0 auto;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(249, 115, 22, 0.3);
    background: rgba(249, 115, 22, 0.08);
    font-size: 13px;
    font-weight: 500;
    color: var(--orange);
    margin-bottom: 28px;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 {
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--orange), #EA580C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 18px;
    color: var(--gray-3);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

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

.btn-primary {
    background: var(--orange);
    color: #FFFFFF;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--gray-4);
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--gray-1);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover {
    border-color: var(--gray-3);
    color: var(--white);
}

/* --- STATS BAR --- */
.stats {
    padding: 32px 24px;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.stats-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
}

.stat-item h3 span { color: var(--orange); }

.stat-item p {
    font-size: 14px;
    color: var(--gray-3);
    margin-top: 6px;
}

/* --- SECTIONS GENERAL --- */
.section {
    padding: 100px 24px;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.8px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray-3);
    max-width: 500px;
    line-height: 1.7;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-header.center .section-subtitle {
    margin: 0 auto;
}

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

.feature-card {
    background: var(--dark-2);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--gray-3);
    line-height: 1.7;
}

/* --- COMPARISON --- */
.comparison {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
}

.comparison-col {
    padding: 32px 28px;
}

.comparison-divider {
    width: 1px;
    background: rgba(0,0,0,0.06);
}

.comparison-col-header {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-3);
    padding-bottom: 20px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison-col-header.us {
    color: var(--orange);
}

.comparison-col-icon {
    font-size: 20px;
}

.comparison-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    font-size: 14px;
    color: var(--gray-4);
    line-height: 1.5;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

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

.comparison-them .comparison-row {
    color: var(--gray-3);
}

.comparison-us .comparison-row {
    color: var(--gray-5);
    font-weight: 500;
}

.comparison-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    margin-top: 1px;
}

.comparison-icon.them {
    background: rgba(239, 68, 68, 0.08);
    color: #EF4444;
}

.comparison-icon.us {
    background: rgba(249, 115, 22, 0.1);
    color: var(--orange);
}


/* --- PERFORMANCE CHART (Step 4) --- */
.perf-chart {
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.perf-chart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.perf-chart-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.perf-chart-value {
    font-size: 14px;
    font-weight: 800;
    color: var(--orange);
}

.perf-chart-area {
    margin-bottom: 20px;
}

.perf-bars {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 160px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--dark-3);
}

.perf-bar-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    height: 100%;
    justify-content: flex-end;
}

.perf-bar {
    width: 100%;
    border-radius: 6px 6px 0 0;
    background: var(--dark-3);
    height: 0%;
    transition: height 1.2s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s ease;
    position: relative;
    min-height: 0;
}

.perf-bar.grow {
    background: var(--orange);
    opacity: 0.7;
}

.perf-bar.highlight.grow {
    opacity: 1;
    box-shadow: 0 -4px 16px rgba(249, 115, 22, 0.2);
}

.perf-bar span {
    position: absolute;
    top: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 700;
    color: var(--orange);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.4s ease 0.8s;
}

.perf-bar.grow span {
    opacity: 1;
}

.perf-bar-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-2);
}

.perf-chart-footer {
    display: flex;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--dark-3);
}

.perf-stat {
    flex: 1;
    text-align: center;
}

.perf-stat-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.3px;
}

.perf-stat-label {
    font-size: 11px;
    color: var(--gray-2);
    margin-top: 2px;
}

/* --- DELIVERY SCENE (Step 3) --- */
.delivery-scene {
    position: relative;
    min-height: 310px; /* tall enough for both states — no layout shift */
}

/* Slack notification — always absolutely placed */
.delivery-slack {
    position: absolute;
    top: 0; left: 0; right: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.delivery-slack.hide {
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
}

.slack-notif {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: relative;
}

.slack-notif::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #4A154B;
    border-radius: 12px 0 0 12px;
}

.slack-notif-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.slack-notif-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2px;
}

.slack-notif-msg {
    font-size: 14px;
    color: var(--gray-3);
    line-height: 1.5;
}

.slack-notif-time {
    font-size: 11px;
    color: var(--gray-2);
    white-space: nowrap;
    margin-left: auto;
    flex-shrink: 0;
}

/* Fake cursor */
.fake-cursor {
    position: absolute;
    z-index: 10;
    opacity: 0;
    pointer-events: none;
    transition: none;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.fake-cursor.moving {
    opacity: 1;
    transition: top 1s cubic-bezier(0.4, 0, 0.2, 1), left 1s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.fake-cursor.clicking {
    transform: scale(0.85);
    transition: transform 0.1s ease;
}

.fake-cursor.clicked {
    transform: scale(1);
    transition: transform 0.15s ease;
}

.fake-cursor.fade-out {
    opacity: 0;
    transition: opacity 0.6s ease;
}

/* Click ripple on notification */
.slack-notif.click-ripple {
    background: var(--dark-2);
    transition: background 0.15s ease;
}

.slack-notif.click-release {
    background: #FFFFFF;
    transition: background 0.3s ease;
}

/* Delivery portal — always absolutely placed, hidden initially */
.delivery-portal-wrap {
    position: absolute;
    top: 0; left: 0; right: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1), transform 1.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.delivery-portal-wrap.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* --- FLAT TIMELINE V3 --- */
.flat-tl {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
    padding-left: 48px;
}

.flat-tl-line {
    position: absolute;
    left: 19px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--dark-4);
}

.flat-tl-step {
    position: relative;
    padding-bottom: 40px;
}

.flat-tl-step:last-child {
    padding-bottom: 0;
}

/* Indicator */
.flat-tl-indicator {
    position: absolute;
    left: -48px;
    top: 0;
    width: 40px;
    display: flex;
    justify-content: center;
}

.flat-tl-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

/* States */
.flat-tl-step.completed .flat-tl-circle {
    background: var(--orange);
    color: #fff;
}

.flat-tl-step.active .flat-tl-circle {
    background: var(--orange);
    color: #fff;
    outline: 3px solid rgba(249, 115, 22, 0.2);
    outline-offset: 3px;
}

.flat-tl-step.upcoming .flat-tl-circle {
    background: transparent;
    color: var(--gray-2);
    border: 2px solid var(--dark-4);
}

/* Card */
.flat-tl-card {
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    padding: 24px 28px;
    transition: border-color 0.2s ease;
}

.flat-tl-step.active .flat-tl-card {
    border-color: var(--orange);
}

.flat-tl-step.upcoming .flat-tl-card {
    opacity: 0.55;
}

.flat-tl-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.flat-tl-step-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--orange);
}

.flat-tl-time {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-2);
    font-family: 'SF Mono', 'Fira Code', monospace;
}

.flat-tl-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.flat-tl-card p {
    font-size: 14px;
    color: var(--gray-3);
    line-height: 1.65;
}

.flat-tl-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
}

.flat-tl-tags span {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    border: 1px solid rgba(0,0,0,0.08);
    color: var(--gray-4);
    background: var(--dark-2);
}

@media (max-width: 600px) {
    .flat-tl {
        padding-left: 36px;
    }
    .flat-tl-indicator {
        left: -36px;
        width: 32px;
    }
    .flat-tl-circle {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    .flat-tl-line {
        left: 15px;
    }
    .flat-tl-card {
        padding: 18px 20px;
    }
}

/* --- TIMELINE PROCESS --- */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 60px;
}

.timeline-line {
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--dark-4);
}

.timeline-line-fill {
    position: absolute;
    left: 24px;
    top: 0;
    width: 2px;
    height: 0;
    background: var(--orange);
    transition: height 0.1s linear;
    pointer-events: none;
}

/* Each step */
.tl-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    position: relative;
    padding-bottom: 100px;
}

.tl-step:last-child {
    padding-bottom: 0;
}

.tl-step-alt .tl-content { order: 2; }
.tl-step-alt .tl-visual { order: 1; }

/* Dot on the timeline */
.tl-dot {
    position: absolute;
    left: -60px;
    top: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.tl-dot-inner {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.25);
}

/* Content side */
.tl-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.tl-time {
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-2);
    font-family: 'SF Mono', 'Fira Code', monospace;
    letter-spacing: 0.5px;
    order: 2;
}

.tl-badge {
    order: 1;
}

.tl-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    background: rgba(249, 115, 22, 0.08);
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tl-badge-research { background: rgba(59, 130, 246, 0.08); color: #3B82F6; }
.tl-badge-done { background: rgba(34, 197, 94, 0.08); color: #16A34A; }

.tl-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.tl-desc {
    font-size: 15px;
    color: var(--gray-3);
    line-height: 1.7;
}

.tl-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 16px;
}

.tl-tags span {
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.06);
    color: var(--gray-4);
}

/* Visual side — notification */
.tl-notif {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    margin-bottom: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.tl-notif-icon {
    flex-shrink: 0;
}

.tl-notif-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.tl-notif-sub {
    font-size: 12px;
    color: var(--gray-3);
    margin-top: 1px;
}

.tl-progress-bar {
    height: 8px;
    background: var(--dark-3);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.tl-progress-fill {
    height: 100%;
    background: var(--orange);
    border-radius: 8px;
    animation: tl-pulse 2s ease-in-out infinite;
}

.tl-progress-label {
    position: absolute;
    top: 14px;
    left: 0;
    font-size: 11px;
    color: var(--gray-2);
    font-weight: 600;
}

@keyframes tl-pulse {
    0%, 100% { width: 15%; opacity: 1; }
    50% { width: 35%; opacity: 0.8; }
}

/* Step 1 — Confirm card */
.confirm-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 18px;
    padding: 28px 24px 22px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.confirm-check {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #22C55E;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    box-shadow: 0 0 0 8px rgba(34,197,94,0.12);
    animation: confirm-ring 2.4s ease-in-out infinite;
}

@keyframes confirm-ring {
    0%, 100% { box-shadow: 0 0 0 8px rgba(34,197,94,0.12); }
    50% { box-shadow: 0 0 0 14px rgba(34,197,94,0.06); }
}

.confirm-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.confirm-sub {
    font-size: 13px;
    color: var(--gray-2);
    margin-bottom: 20px;
}

.confirm-rows {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.confirm-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: var(--dark-2);
    border-radius: 10px;
    font-size: 13px;
}

.confirm-row-label {
    color: var(--gray-2);
    font-weight: 500;
}

.confirm-row-val {
    color: var(--white);
    font-weight: 600;
}

.confirm-row-now {
    color: #22C55E;
}

.confirm-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--gray-2);
    font-weight: 500;
}

.confirm-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
    animation: blink 1.2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Visual side — doc mock */
.tl-doc {
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.tl-doc:hover {
    transform: translateY(-4px);
}

.tl-doc-bar {
    background: var(--dark-3);
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.tl-doc-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.tl-doc-dot.r { background: #EF4444; }
.tl-doc-dot.y { background: #F59E0B; }
.tl-doc-dot.g { background: #22C55E; }

.tl-doc-filename {
    font-size: 11px;
    color: var(--gray-3);
    margin-left: 8px;
}

.tl-doc-body {
    padding: 20px 18px;
}

.tl-doc-h {
    font-size: 14px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2px;
}

.tl-doc-sub {
    font-size: 11px;
    color: var(--gray-2);
}

.tl-doc-divider {
    height: 1px;
    background: rgba(0,0,0,0.06);
    margin: 12px 0;
}

.tl-doc-section {
    font-size: 10px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin: 10px 0 6px;
}

.tl-doc-line {
    height: 6px;
    border-radius: 3px;
    background: var(--dark-3);
    margin-bottom: 5px;
}

.tl-doc-avatars {
    display: flex;
    gap: 6px;
}

.tl-doc-avatars span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--dark-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.tl-doc-chips {
    display: flex;
    gap: 5px;
}

.tl-doc-chips span {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    background: rgba(249, 115, 22, 0.08);
    color: var(--orange);
}

/* Delivery doc visual */
.tl-delivery-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
}

.tl-delivery-status {
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    background: rgba(34, 197, 94, 0.1);
    color: #16A34A;
    text-transform: uppercase;
}

.tl-file-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    background: var(--dark-2);
    margin-bottom: 5px;
}

.tl-file-thumb {
    width: 28px;
    height: 36px;
    border-radius: 4px;
    flex-shrink: 0;
}

.tl-file-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
}

.tl-file-meta {
    font-size: 10px;
    color: var(--gray-2);
}

.process-guarantee {
    max-width: 900px;
    margin: 60px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(249, 115, 22, 0.06);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 14px;
    padding: 20px 32px;
}

.process-guarantee-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.process-guarantee p {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.tl-download-btn {
    margin-top: 10px;
    background: var(--orange);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 600;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

@media (max-width: 768px) {
    .timeline {
        padding-left: 40px;
    }
    .timeline-line {
        left: 14px;
    }
    .tl-dot {
        left: -40px;
    }
    .tl-dot-inner {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    .tl-step {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .tl-step-alt .tl-content { order: 1; }
    .tl-step-alt .tl-visual { order: 2; }
    .tl-title { font-size: 18px; }
}


/* --- BOOKING SECTION --- */
.loom-section {
    padding: 80px 0 120px;
    background: var(--dark-2);
}

.loom-embed-wrap {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 40px auto 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    box-shadow: 0 24px 80px rgba(0,0,0,0.12), 0 0 0 1px var(--dark-4);
}

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

.loom-cta {
    text-align: center;
    margin-top: 36px;
}

@media (max-width: 768px) {
    .loom-embed-wrap { border-radius: var(--radius-lg); }
}

/* OLD STYLES BELOW — DEPRECATED */
/* --- BENTO GRID PROCESS --- */
.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.bento-card {
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-xl);
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.08);
    border-color: rgba(249, 115, 22, 0.15);
}

.bento-visual {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--dark-2);
    min-height: 200px;
}

.bento-text {
    padding: 16px 24px 20px;
    border-top: 1px solid rgba(0,0,0,0.04);
}

.bento-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.bento-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}

.bento-time {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-2);
    margin-bottom: 6px;
}

/* Step 1 - Confirm visual */
.bento-confirm-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    padding: 18px 22px;
    width: 100%;
    max-width: 300px;
}

.bento-confirm-check {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.1);
    color: #22C55E;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bento-confirm-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.bento-confirm-sub {
    font-size: 12px;
    color: var(--gray-3);
    margin-top: 2px;
}

.bento-confirm-arrow {
    margin: 8px 0 2px;
    opacity: 0.6;
}
.bento-confirm-arrow svg {
    width: 28px;
    height: 28px;
}

.bento-confirm-status {
    font-size: 12px;
    font-weight: 600;
    color: var(--orange);
    background: rgba(249, 115, 22, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
}

/* Step 2 - Research doc mini */
.bento-doc-mini {
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.bento-doc-bar {
    background: var(--dark-3);
    padding: 8px 12px;
    display: flex;
    gap: 5px;
}

.bd-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: block;
}

.bento-doc-body {
    padding: 14px 16px;
}

.bento-doc-heading {
    font-size: 12px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.bento-doc-line {
    height: 6px;
    border-radius: 3px;
    background: var(--dark-3);
    margin-bottom: 6px;
}

.bento-doc-line.w80 { width: 80%; }
.bento-doc-line.w60 { width: 60%; }

.bento-doc-section-title {
    font-size: 10px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin: 8px 0 6px;
}

.bento-doc-personas {
    display: flex;
    gap: 8px;
}

.bento-doc-persona {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--dark-2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.bento-doc-hooks {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.bento-hook-tag {
    background: rgba(249, 115, 22, 0.08);
    color: var(--orange);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
}

.bento-tov-tag {
    background: var(--dark-3);
    color: var(--gray-4);
    font-size: 10px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 50px;
}

/* Step 3 - Delivery grid */
.bento-delivery-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr 1.3fr 1fr 1.3fr;
    gap: 8px;
    width: 100%;
}

.bento-ad {
    aspect-ratio: 9/16;
    border-radius: 8px;
}

.bento-ad.bento-ad-wide {
    aspect-ratio: 4/5;
}

/* Step 4 - Guarantee */
.bento-visual-guarantee {
    text-align: center;
    background: linear-gradient(135deg, rgba(249,115,22,0.04), rgba(249,115,22,0.01));
}

.bento-guarantee-icon {
    font-size: 56px;
    margin-bottom: 16px;
}

.bento-guarantee-text {
    font-size: 15px;
    color: var(--gray-3);
    margin-bottom: 4px;
}

.bento-guarantee-bold {
    font-size: 24px;
    font-weight: 800;
    color: var(--orange);
    letter-spacing: -0.3px;
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-delivery-grid {
        grid-template-columns: 1fr 1.3fr 1fr;
    }
}

/* --- PROCESS STEPS --- */
.process-steps {
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.process-step-badge {
    display: inline-block;
    background: rgba(249, 115, 22, 0.1);
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.process-step-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray-3);
    font-weight: 600;
    margin-bottom: 16px;
    margin-left: 12px;
}

.process-time-icon {
    font-size: 16px;
}

.process-step-left h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.process-step-left p {
    font-size: 15px;
    color: var(--gray-3);
    line-height: 1.7;
    max-width: 420px;
}

.research-pillars-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.rp-tag {
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.06);
    color: var(--gray-4);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
}

.process-delivery-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #16A34A;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 10px;
}

/* Process connectors */
.process-connector {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 40px 0;
    max-width: 400px;
    margin: 0 auto;
}

.process-connector-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.process-connector-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
    white-space: nowrap;
    padding: 6px 16px;
    background: rgba(249, 115, 22, 0.08);
    border-radius: 50px;
}

/* Process visuals - Step 1 */
.process-visual {
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-xl);
    padding: 32px;
}

.pv-card {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.pv-check {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.1);
    color: #22C55E;
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pv-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.pv-sub {
    font-size: 13px;
    color: var(--gray-3);
    margin-top: 2px;
}

.pv-status-row {
    display: flex;
    gap: 12px;
}

.pv-status {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    background: var(--dark-3);
    color: var(--gray-3);
}

.pv-status.active {
    background: rgba(249, 115, 22, 0.1);
    color: var(--orange);
}

/* Process visuals - Step 3 delivery */
.process-visual-delivery {
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-xl);
    padding: 32px;
}

.pv-delivery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.pv-ad-card {
    aspect-ratio: 4/5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    font-weight: 700;
}

.pv-ad-card:nth-child(1),
.pv-ad-card:nth-child(3) {
    aspect-ratio: 9/16;
}

/* Delivery portal (step 3) */
.delivery-portal .research-doc-inner {
    transform: perspective(800px) rotateY(2deg) rotateX(1deg);
}
.delivery-portal .research-doc-inner:hover {
    transform: perspective(800px) rotateY(0deg) rotateX(0deg);
}

.dp-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.dp-status-badge {
    margin-left: auto;
    background: rgba(34, 197, 94, 0.1);
    color: #16A34A;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.dp-section-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-2);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.dp-ad-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr 1.3fr;
    gap: 8px;
    margin-bottom: 16px;
}

.dp-ad {
    aspect-ratio: 9/16;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.dp-ad.dp-ad-wide {
    aspect-ratio: 4/5;
}

.dp-ad-badge {
    position: absolute;
    bottom: 6px;
    left: 6px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
}

.dp-file-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.dp-file {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: var(--dark-2);
    border-radius: 8px;
}

.dp-file-icon {
    font-size: 16px;
    flex-shrink: 0;
}

.dp-file-info {
    flex: 1;
    min-width: 0;
}

.dp-file-name {
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dp-file-meta {
    font-size: 10px;
    color: var(--gray-2);
    margin-top: 1px;
}

.dp-file-dl {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(249, 115, 22, 0.08);
    color: var(--orange);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dp-download-all {
    background: var(--orange);
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 600;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
}

/* Research doc inline (for step 2) */
.research-doc-inline {
    /* no sticky, no perspective offset */
}

.research-doc-inline .research-doc-inner {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
    transform: perspective(800px) rotateY(-2deg) rotateX(1deg);
    transition: transform 0.4s ease;
}

.research-doc-inner:hover {
    transform: perspective(800px) rotateY(0deg) rotateX(0deg);
}

.doc-topbar {
    background: var(--dark-3);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.doc-dots {
    display: flex;
    gap: 6px;
}

.doc-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.doc-dots span:nth-child(1) { background: #EF4444; }
.doc-dots span:nth-child(2) { background: #F59E0B; }
.doc-dots span:nth-child(3) { background: #22C55E; }

.doc-filename {
    font-size: 11px;
    color: var(--gray-3);
    font-weight: 500;
}

.doc-content {
    padding: 28px 24px;
}

.doc-logo-area {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.doc-logo-placeholder {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
}

.doc-brand-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.3px;
}

.doc-brand-sub {
    font-size: 11px;
    color: var(--gray-2);
    font-weight: 500;
}

.doc-divider {
    height: 1px;
    background: rgba(0,0,0,0.06);
    margin: 16px 0;
}

.doc-section {
    margin-bottom: 20px;
}

.doc-section-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.doc-line {
    height: 8px;
    border-radius: 4px;
    background: var(--dark-3);
    margin-bottom: 8px;
}

.doc-line.w40 { width: 40%; }
.doc-line.w45 { width: 45%; }
.doc-line.w50 { width: 50%; }
.doc-line.w55 { width: 55%; }
.doc-line.w60 { width: 60%; }
.doc-line.w65 { width: 65%; }
.doc-line.w70 { width: 70%; }
.doc-line.w75 { width: 75%; }
.doc-line.w80 { width: 80%; }
.doc-line.w85 { width: 85%; }
.doc-line.w90 { width: 90%; }

.doc-persona-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.doc-persona {
    background: var(--dark-2);
    border-radius: 10px;
    padding: 14px;
    text-align: center;
}

.doc-persona-avatar {
    font-size: 28px;
    margin-bottom: 10px;
}

.doc-persona .doc-line {
    margin: 6px auto;
}

.doc-hook-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.doc-hook {
    display: flex;
    align-items: center;
    gap: 10px;
}

.doc-hook-tag {
    background: rgba(249, 115, 22, 0.1);
    color: var(--orange);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.doc-hook .doc-line {
    margin-bottom: 0;
    flex: 1;
}

.doc-tov-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.doc-tov-tag {
    background: var(--dark-3);
    color: var(--gray-4);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
}

@media (max-width: 900px) {
    .process-step {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .research-doc-inline .research-doc-inner {
        transform: none;
    }
}

/* --- TIMELINE --- */
.timeline {
    position: relative;
    padding-top: 40px;
}

.timeline-track {
    position: absolute;
    top: 68px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--dark-4);
    border-radius: 3px;
    z-index: 0;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--orange);
    border-radius: 3px;
    transition: width 0.15s linear;
}

.timeline-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.timeline-step {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-node {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--dark-3);
    color: var(--gray-3);
    font-size: 20px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
    border: 4px solid var(--dark-2);
}

.timeline-node.active {
    background: var(--orange);
    color: #FFFFFF;
    transform: scale(1.15);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
}

.timeline-card {
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: all 0.3s ease;
    width: 100%;
}

.timeline-card:hover {
    border-color: rgba(249, 115, 22, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.timeline-icon {
    font-size: 28px;
    margin-bottom: 16px;
}

.timeline-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.timeline-card p {
    font-size: 14px;
    color: var(--gray-3);
    line-height: 1.7;
}

/* Slide-in animations */
.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* --- PRICING --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-xl);
    padding: 28px 24px;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.08);
}

.pricing-card.popular {
    border-color: var(--orange);
    background: linear-gradient(180deg, rgba(249,115,22,0.04) 0%, #FFFFFF 40%);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.pricing-card .price {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    margin: 10px 0 4px;
}

.pricing-card .price span {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-3);
}

.pricing-card .price-note {
    font-size: 13px;
    color: var(--gray-3);
    margin-bottom: 16px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 20px;
}

.pricing-features li {
    padding: 5px 0;
    font-size: 14px;
    color: var(--gray-4);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: '\2713';
    color: var(--orange);
    font-weight: 700;
    font-size: 14px;
}

.pricing-features li.feature-excluded {
    color: var(--gray-2);
    opacity: 0.4;
}

.pricing-features li.feature-excluded::before {
    content: '\2715';
    color: var(--gray-2);
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
}

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

/* --- PRICING CALCULATOR --- */
.calc-container {
    max-width: 700px;
    margin: 0 auto;
}
.calc-slider-area {
    background: #FFFFFF;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-xl);
    padding: 40px 36px 28px;
    margin-bottom: 24px;
}
.calc-budget-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
}
.calc-budget-label {
    font-size: 16px;
    color: var(--gray-3);
    font-weight: 500;
}
.calc-budget-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    min-width: 200px;
    text-align: center;
}
/* Range slider styling */
.calc-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: var(--dark-3);
    border-radius: 8px;
    outline: none;
    cursor: pointer;
    position: relative;
}
.calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--orange);
    cursor: pointer;
    border: 4px solid #FFFFFF;
    box-shadow: 0 2px 8px rgba(249,115,22,0.3), 0 0 0 1px rgba(249,115,22,0.2);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.calc-range::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 16px rgba(249,115,22,0.4), 0 0 0 2px rgba(249,115,22,0.3);
}
.calc-range::-moz-range-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--orange);
    cursor: pointer;
    border: 4px solid #FFFFFF;
    box-shadow: 0 2px 8px rgba(249,115,22,0.3);
}
.calc-ticks {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    padding: 0 2px;
}
.calc-ticks span {
    font-size: 11px;
    color: var(--gray-2);
    font-weight: 500;
}
/* Result card */
.calc-result {
    background: #FFFFFF;
    border: 2px solid var(--orange);
    border-radius: var(--radius-xl);
    padding: 36px;
    transition: all 0.4s ease;
}
.calc-result-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 28px;
    gap: 20px;
}
.calc-result-tag {
    display: inline-block;
    background: rgba(249,115,22,0.1);
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.calc-result-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}
.calc-result-desc {
    font-size: 14px;
    color: var(--gray-3);
    margin-top: 4px;
}
.calc-result-price-area {
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-shrink: 0;
}
.calc-result-price {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    transition: all 0.3s ease;
}
.calc-result-period {
    font-size: 16px;
    color: var(--gray-3);
    font-weight: 500;
}
.calc-result-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
    margin-bottom: 28px;
}
.calc-feature-item {
    font-size: 14px;
    color: var(--gray-4);
    font-weight: 500;
}
.calc-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
}
@media (max-width: 600px) {
    .calc-slider-area { padding: 28px 20px 20px; }
    .calc-result { padding: 28px 20px; }
    .calc-result-header { flex-direction: column; }
    .calc-result-features { grid-template-columns: 1fr; }
    .calc-budget-value { font-size: 22px; min-width: auto; }
    .calc-ticks span { font-size: 9px; }
}

/* --- FAQ --- */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: color 0.2s;
}

.faq-question:hover { color: var(--orange); }

.faq-icon {
    font-size: 20px;
    color: var(--gray-3);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

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

.faq-item.open .faq-answer {
    max-height: 200px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--gray-3);
    line-height: 1.7;
}

/* --- CTA SECTION --- */
.cta-section {
    padding: 100px 24px;
    text-align: center;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(249,115,22,0.06), rgba(249,115,22,0.02));
    border: 1px solid rgba(249,115,22,0.2);
    border-radius: var(--radius-xl);
    padding: 64px 40px;
}

.cta-box h2 {
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 16px;
    color: var(--gray-3);
    margin-bottom: 32px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

/* --- MASONRY CAROUSEL --- */
.showcase { overflow: hidden; padding-top: 60px; padding-bottom: 60px; }
.masonry-wrapper {
    position: relative;
    overflow: hidden;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.masonry-row {
    overflow: hidden;
    position: relative;
}
.masonry-row-track {
    display: flex;
    align-items: center;
    gap: 16px;
    width: max-content;
    will-change: transform;
}
.masonry-item {
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    font-size: 13px;
    flex-shrink: 0;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.masonry-item:hover { transform: scale(1.03); }
.masonry-item img { height: 100%; width: auto; display: block; pointer-events: none; }
.masonry-item.tall { height: 290px; width: auto; }
.masonry-item.wide { height: 290px; width: auto; }
.masonry-fade-left,
.masonry-fade-right {
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    pointer-events: none;
    z-index: 2;
}
.masonry-fade-left  { left: 0;  background: linear-gradient(to right, var(--dark), transparent); }
.masonry-fade-right { right: 0; background: linear-gradient(to left,  var(--dark), transparent); }
@media (max-width: 768px) {
    .masonry-item.tall, .masonry-item.tall.lg { height: 290px; width: auto; }
    .masonry-item.wide, .masonry-item.wide.lg { height: 290px; width: auto; }
    .masonry-row-track { gap: 10px; }
    .masonry-wrapper   { gap: 10px; }
    .masonry-fade-left, .masonry-fade-right { width: 60px; }
}

/* --- FOOTER --- */
.footer {
    padding: 48px 24px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    font-size: 14px;
    color: var(--gray-2);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-brand {
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.footer-brand span { color: var(--accent); }

.footer-company {
    font-size: 13px;
    color: var(--gray-3);
    line-height: 1.5;
}

.footer-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.footer-links a {
    font-size: 14px;
    color: var(--gray-3);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* --- MOBILE --- */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.98);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

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

.mobile-menu a {
    color: #111827;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: #111827;
    font-size: 32px;
    cursor: pointer;
}

@media (max-width: 900px) {
    .features-grid,
    .pricing-grid,
    .pricing-grid-2 {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    /* Comparison stacked */
    .comparison {
        grid-template-columns: 1fr;
    }
    .comparison-divider {
        width: 100%;
        height: 1px;
    }

    /* Timeline vertical */
    .timeline-track {
        display: none;
    }
    .timeline-steps {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
        gap: 20px;
    }
    .timeline-step {
        flex-direction: row;
        text-align: left;
        gap: 20px;
    }
    .timeline-node {
        margin-bottom: 0;
        flex-shrink: 0;
        background: var(--orange);
        color: #FFFFFF;
    }
    .timeline-card {
        text-align: left;
    }
}

/* Mobile nav CTA — hidden on desktop, shown on mobile */
.mobile-nav-cta { display: none; text-decoration: none; }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: none; }
    .mobile-nav-cta { display: inline-block; }

    /* Nav links text white (for mobile menu) */
    .mobile-menu a { color: #fff; }

    .hero { padding: 140px 24px 80px; }

    /* Hero buttons always side by side */
    .hero-buttons {
        flex-wrap: nowrap;
        gap: 10px;
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        flex: 1;
        text-align: center;
        justify-content: center;
        padding: 12px 16px;
        font-size: 14px;
        display: flex;
        align-items: center;
    }

    /* Stats: all 3 on one row, smaller */
    .stats-inner {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px;
    }
    .stat-item h3 {
        font-size: 22px;
        letter-spacing: -0.5px;
    }
    .stat-item p {
        font-size: 11px;
    }

    /* Pricing title on one line */
    .pricing-section-title {
        white-space: nowrap;
        font-size: clamp(16px, 4.5vw, 28px);
    }

    .footer-inner {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* --- ANIMATIONS --- */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* --- FOUNDER SECTION --- */
.founder-section {
    background: var(--dark-1);
}

.founder-wrap {
    display: flex;
    align-items: center;
    gap: 72px;
}

.founder-img-col {
    flex: 0 0 380px;
}

.founder-img {
    width: 100%;
    border-radius: 20px;
    display: block;
    box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.founder-text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.founder-heading {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--light);
    line-height: 1.15;
    margin: 4px 0 0;
}

.founder-body {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.75;
}

@media (max-width: 860px) {
    .founder-wrap {
        flex-direction: column;
        gap: 40px;
    }

    .founder-img-col {
        flex: none;
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }
}
