/* ========================================
   TaskMeridian — Design System
   Font: Inter
   ======================================== */

:root {
    /* New Color Palette */
    --primary: #0F172A;
    --secondary: #1E293B;
    --accent: #3B82F6;
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
    --border: #E2E8F0;
    --bg-light: #F8FAFC;
    --bg-dark: #0F172A;
    --success: #10B981;
    --error: #EF4444;
    --white: #FFFFFF;
    
    /* Legacy compatibility - mapped to new colors */
    --color-bg: var(--white);
    --color-bg-alt: var(--bg-light);
    --color-bg-warm: var(--bg-light);
    --color-text: var(--text-primary);
    --color-text-secondary: var(--text-secondary);
    --color-text-muted: var(--text-muted);
    --color-primary: var(--primary);
    --color-primary-dark: var(--secondary);
    --color-primary-light: var(--text-secondary);
    --color-accent: var(--accent);
    --color-success: var(--success);
    --color-border: var(--border);
    --color-card: var(--white);
    
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    
    --max-width: 1120px;
    --section-padding: 120px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    padding-top: 72px;
    overflow-x: hidden;
    max-width: 100vw;
}

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

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--primary);
}

/* Eyebrow text - uppercase with letter spacing */
.section-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-badge-alt {
    color: var(--text-muted);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-radius: 8px;
    padding: 14px 32px;
}

.btn-primary:hover {
    background: var(--secondary);
    transform: scale(1.02);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px 32px;
}

.btn-secondary:hover {
    border-color: var(--primary);
    background: var(--bg-light);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-full {
    width: 100%;
}

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

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    padding: 16px 0;
}

.navbar.scrolled {
    border-bottom-color: #E2E8F0;
    padding: 12px 0;
}

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

.nav-logo {
    font-size: 18px;
    font-weight: 700;
    color: #0F172A;
    text-decoration: none;
    letter-spacing: -0.025em;
}

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

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #0F172A;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0F172A;
    transition: width 0.2s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: #0F172A;
    color: white;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-cta:hover {
    background: #1E293B;
    transform: scale(1.02);
    color: white;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-trigger::after {
    display: none;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: -16px;
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    color: #475569;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background: #F8FAFC;
    color: #0F172A;
}

.dropdown-menu a::after {
    display: none;
}

/* Hamburger for mobile */
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav-hamburger span {
    width: 24px;
    height: 2px;
    background: #0F172A;
    border-radius: 2px;
    transition: all 0.2s ease;
}

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0B1120;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(99, 102, 241, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Subtle grid pattern overlay */
.hero-bg-pattern::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

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

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 600;
    color: #94A3B8;
    margin-bottom: 24px;
}

.hero-headline {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    color: #F8FAFC;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0 0 24px 0;
}

.hero-subheadline {
    font-size: 18px;
    line-height: 1.7;
    color: #94A3B8;
    max-width: 640px;
    margin: 0 auto 40px;
}

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

.hero-cta-primary {
    background: #FFFFFF;
    color: #0F172A;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
}
.hero-cta-primary:hover {
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.hero-cta-secondary {
    background: transparent;
    color: #CBD5E1;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: 1px solid #334155;
    transition: all 0.2s ease;
}
.hero-cta-secondary:hover {
    border-color: #F8FAFC;
    color: #F8FAFC;
}

.hero-trust-bar {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.hero-trust-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    color: #475569;
}

.hero-trust-logos {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-logo-item {
    font-size: 14px;
    font-weight: 500;
    color: #475569;
    opacity: 0.6;
    transition: opacity 0.2s ease;
    padding: 8px 16px;
    border: 1px solid #1E293B;
    border-radius: 6px;
}
.trust-logo-item:hover {
    opacity: 1;
    color: #94A3B8;
    border-color: #334155;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 100px 20px 60px;
    }
    .hero-headline {
        font-size: 32px;
    }
    .hero-subheadline {
        font-size: 16px;
    }
    .hero-cta-row {
        flex-direction: column;
        width: 100%;
    }
    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        text-align: center;
    }
    .hero-trust-bar {
        margin-top: 40px;
    }
    .hero-trust-logos {
        gap: 12px;
    }
    .trust-logo-item {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* ========================================
   PROBLEM SECTION
   ======================================== */
.problem {
    background: #FFFFFF;
    padding: 120px 24px;
}

.problem-container {
    max-width: 1120px;
    margin: 0 auto;
}

.problem .section-eyebrow {
    display: block;
    text-align: center;
}

.problem-headline {
    font-size: 40px;
    font-weight: 700;
    color: #0F172A;
    margin: 16px 0;
    letter-spacing: -0.025em;
    text-align: center;
}

.problem-subtext {
    font-size: 17px;
    color: #64748B;
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px;
    line-height: 1.7;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.problem-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.2s ease;
}

.problem-card:hover {
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    transform: translateY(-2px);
    border-color: #CBD5E1;
}

.problem-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.problem-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #0F172A;
    margin: 0 0 10px 0;
}

.problem-card-desc {
    font-size: 15px;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}

/* Problem section mobile */
@media (max-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .problem-headline {
        font-size: 32px;
    }
    .problem-subtext {
        font-size: 16px;
    }
}

/* ========================================
   SOLUTION SECTION
   ======================================== */
.solution {
    background: #F8FAFC;
    padding: 120px 24px;
}

.solution-container {
    max-width: 1120px;
    margin: 0 auto;
}

.solution .section-eyebrow {
    display: block;
    text-align: center;
}

.solution-headline {
    font-size: 40px;
    font-weight: 700;
    color: #0F172A;
    margin: 16px 0;
    letter-spacing: -0.025em;
    text-align: center;
}

.solution-subtext {
    font-size: 17px;
    color: #64748B;
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
    line-height: 1.7;
}

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

.solution-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 40px;
    transition: all 0.2s ease;
}

.solution-card:hover {
    border-color: #CBD5E1;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.solution-card-number {
    font-size: 48px;
    font-weight: 800;
    color: #E2E8F0;
    line-height: 1;
    display: block;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.solution-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #0F172A;
    margin: 0 0 12px 0;
}

.solution-card-desc {
    font-size: 15px;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}

/* Solution section mobile */
@media (max-width: 768px) {
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .solution-headline {
        font-size: 32px;
    }
    .solution-card {
        padding: 32px;
    }
    .solution-card-number {
        font-size: 40px;
    }
}

/* ========================================
   CAPABILITIES SECTION
   ======================================== */
.capabilities {
    background: #F8FAFC;
    padding: 120px 24px;
}

.capabilities-container {
    max-width: 1120px;
    margin: 0 auto;
}

.capabilities .section-eyebrow {
    display: block;
    text-align: center;
}

.capabilities-headline {
    font-size: 40px;
    font-weight: 700;
    color: #0F172A;
    margin: 16px 0;
    letter-spacing: -0.025em;
    text-align: center;
}

.capabilities-subtext {
    font-size: 17px;
    color: #64748B;
    text-align: center;
    max-width: 620px;
    margin: 0 auto 56px;
    line-height: 1.7;
}

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

.capability-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
}

.capability-card:hover {
    border-color: #CBD5E1;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.capability-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.capability-name {
    font-size: 18px;
    font-weight: 600;
    color: #0F172A;
    margin: 0 0 8px 0;
}

.capability-desc {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.capability-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #F1F5F9;
}

.capability-tool {
    font-size: 11px;
    font-weight: 500;
    color: #475569;
    background: #F1F5F9;
    padding: 3px 10px;
    border-radius: 6px;
}

.capability-metric {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #94A3B8;
    margin-top: 12px;
}

.capabilities-cta {
    text-align: center;
    margin-top: 48px;
}

.capabilities-link {
    font-size: 15px;
    font-weight: 500;
    color: #0F172A;
    text-decoration: none;
    transition: color 0.2s ease;
}

.capabilities-link:hover {
    color: #3B82F6;
}

/* Capabilities tablet */
@media (max-width: 1024px) {
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Capabilities mobile */
@media (max-width: 640px) {
    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .capabilities-headline {
        font-size: 32px;
    }
    .capability-card {
        padding: 24px;
    }
}

/* ========================================
   PROCESS VISUAL
   ======================================== */
.process-visual {
    background: #F8FAFC;
    padding: 100px 24px;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}

.process-visual-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.process-visual-headline {
    font-size: 36px;
    font-weight: 700;
    color: #0F172A;
    margin: 16px 0 56px;
    letter-spacing: -0.025em;
}

.process-flow {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.process-flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 120px;
}

.process-flow-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.process-flow-step:hover .process-flow-icon {
    border-color: #0F172A;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
    transform: translateY(-2px);
}

.process-flow-label {
    font-size: 16px;
    font-weight: 600;
    color: #0F172A;
}

.process-flow-desc {
    font-size: 13px;
    color: #94A3B8;
    line-height: 1.4;
}

.process-flow-connector {
    display: flex;
    align-items: center;
    padding-top: 20px;
    margin: 0 8px;
}

/* Process visual mobile */
@media (max-width: 640px) {
    .process-flow {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .process-flow-connector {
        transform: rotate(90deg);
        padding-top: 0;
        margin: 4px 0;
    }
    .process-visual-headline {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

/* ========================================
   BLOG CTA CARD
   ======================================== */
.blog-cta-card {
    background: var(--bg-light);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    margin-top: 48px;
}

.blog-cta-content {
    max-width: 600px;
}

.blog-cta-label {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.blog-cta-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.blog-cta-card p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.link-arrow {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.link-arrow:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* ========================================
   PROCESS TIMELINE
   ======================================== */
.process-timeline {
    background: #FFFFFF;
    padding: 120px 24px;
}

.process-timeline-container {
    max-width: 800px;
    margin: 0 auto;
}

.process-timeline-headline {
    font-size: 40px;
    font-weight: 700;
    color: #0F172A;
    margin: 16px 0;
    letter-spacing: -0.025em;
    text-align: center;
}

.process-timeline-subtext {
    font-size: 17px;
    color: #64748B;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
    line-height: 1.7;
}

/* Timeline structure */
.timeline {
    position: relative;
    padding-left: 48px;
}

.timeline-line {
    position: absolute;
    left: 5px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: #E2E8F0;
}

.timeline-item {
    position: relative;
    padding-bottom: 48px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -48px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #0F172A;
    border: 3px solid #FFFFFF;
    box-shadow: 0 0 0 2px #0F172A;
    z-index: 1;
}

/* Timeline content */
.timeline-content {
    padding: 0 0 0 8px;
}

.timeline-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.timeline-phase {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: #94A3B8;
}

.timeline-duration {
    font-size: 12px;
    font-weight: 500;
    color: #475569;
    background: #F1F5F9;
    padding: 4px 12px;
    border-radius: 20px;
}

.timeline-title {
    font-size: 22px;
    font-weight: 600;
    color: #0F172A;
    margin: 0 0 10px 0;
}

.timeline-description {
    font-size: 15px;
    color: #64748B;
    line-height: 1.7;
    margin: 0 0 16px 0;
    max-width: 520px;
}

.timeline-deliverables {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.timeline-deliverable-label {
    font-size: 12px;
    font-weight: 600;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-deliverable {
    font-size: 13px;
    font-weight: 500;
    color: #475569;
}

.timeline-deliverable-separator {
    color: #CBD5E1;
    font-size: 14px;
}

/* CTA below timeline */
.process-timeline-cta {
    text-align: center;
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid #E2E8F0;
}

.process-timeline-cta-note {
    font-size: 14px;
    color: #94A3B8;
    margin-top: 12px;
}

/* Timeline mobile */
@media (max-width: 768px) {
    .process-timeline-headline {
        font-size: 32px;
    }
    .timeline {
        padding-left: 36px;
    }
    .timeline-dot {
        left: -36px;
    }
    .timeline-line {
        left: 5px;
    }
    .timeline-title {
        font-size: 19px;
    }
    .timeline-item {
        padding-bottom: 36px;
    }
}

/* ========================================
   USE CASES SECTION
   ======================================== */
.use-cases {
    background: #FFFFFF;
    padding: 120px 24px;
}

.use-cases-container {
    max-width: 1120px;
    margin: 0 auto;
}

.use-cases .section-eyebrow {
    display: block;
    text-align: center;
}

.use-cases-headline {
    font-size: 40px;
    font-weight: 700;
    color: #0F172A;
    margin: 16px 0;
    letter-spacing: -0.025em;
    text-align: center;
}

.use-cases-subtext {
    font-size: 17px;
    color: #64748B;
    text-align: center;
    max-width: 580px;
    margin: 0 auto 56px;
    line-height: 1.7;
}

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

.use-case-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
}

.use-case-card:hover {
    border-color: #CBD5E1;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    transform: translateY(-2px);
}

.use-case-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.use-case-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: #94A3B8;
    margin-bottom: 8px;
}

.use-case-title {
    font-size: 20px;
    font-weight: 600;
    color: #0F172A;
    margin: 0 0 10px 0;
}

.use-case-desc {
    font-size: 15px;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.use-case-impact {
    margin-top: 20px;
    padding-top: 16px;
    border-left: 3px solid #0F172A;
    padding-left: 12px;
}

.use-case-impact-text {
    font-size: 13px;
    font-weight: 500;
    color: #475569;
    line-height: 1.4;
}

/* Bottom row with 2 cards centered */
.use-cases-grid-bottom {
    grid-template-columns: repeat(2, 1fr);
    max-width: 740px;
    margin: 24px auto 0;
}

/* Use cases tablet */
@media (max-width: 1024px) {
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .use-cases-grid-bottom {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }
}

/* Use cases mobile */
@media (max-width: 640px) {
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .use-cases-grid-bottom {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    .use-cases-headline {
        font-size: 32px;
    }
    .use-case-card {
        padding: 24px;
    }
}

/* ========================================
   WORKFLOWS SECTION
   ======================================== */
.workflows {
    background: #0F172A;
    padding: 120px 24px;
}

.workflows-container {
    max-width: 1120px;
    margin: 0 auto;
}

.workflows-eyebrow {
    color: #94A3B8;
    display: block;
    text-align: center;
}

.workflows-headline {
    font-size: 40px;
    font-weight: 700;
    color: #F8FAFC;
    margin: 16px 0;
    letter-spacing: -0.025em;
    text-align: center;
}

.workflows-subtext {
    font-size: 17px;
    color: #94A3B8;
    text-align: center;
    max-width: 540px;
    margin: 0 auto 56px;
    line-height: 1.7;
}

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

/* Workflow card */
.workflow-card {
    background: #1E293B;
    border: 1px solid #334155;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.2s ease;
}

.workflow-card:hover {
    border-color: #475569;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.workflow-name {
    font-size: 20px;
    font-weight: 600;
    color: #F8FAFC;
    margin: 0 0 24px 0;
}

/* Before / After comparison */
.workflow-comparison {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.workflow-before,
.workflow-after {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.workflow-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: #64748B;
}

.workflow-value {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}

.workflow-value-before {
    color: #F87171;
}

.workflow-value-after {
    color: #4ADE80;
}

/* Tool tags */
.workflow-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.workflow-tool {
    font-size: 11px;
    font-weight: 500;
    color: #94A3B8;
    background: #334155;
    padding: 4px 10px;
    border-radius: 6px;
}

/* Expandable details */
.workflow-details {
    margin-top: auto;
    border-top: 1px solid #334155;
    padding-top: 16px;
}

.workflow-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #94A3B8;
    list-style: none;
    transition: color 0.2s ease;
}

.workflow-toggle::-webkit-details-marker {
    display: none;
}

.workflow-toggle::marker {
    display: none;
    content: '';
}

.workflow-toggle:hover {
    color: #F8FAFC;
}

.workflow-toggle-icon {
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

details[open] .workflow-toggle-icon {
    transform: rotate(180deg);
}

.workflow-steps {
    padding-top: 16px;
}

.workflow-steps ol {
    margin: 0;
    padding: 0 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.workflow-steps li {
    font-size: 13px;
    color: #94A3B8;
    line-height: 1.6;
}

.workflow-steps li::marker {
    color: #475569;
}

.workflow-result {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid #334155;
    font-size: 14px;
    color: #F8FAFC;
    font-weight: 500;
}

.workflow-result-label {
    color: #4ADE80;
    font-weight: 600;
}

/* Workflows tablet */
@media (max-width: 1024px) {
    .workflows-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Workflows mobile */
@media (max-width: 640px) {
    .workflows-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .workflows-headline {
        font-size: 32px;
    }
    .workflow-card {
        padding: 24px;
    }
}

/* ========================================
   ROI CALCULATOR
   ======================================== */
.calculator {
    background: #FFFFFF;
    padding: 120px 24px;
}

.calculator-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.calculator .section-eyebrow {
    display: block;
    text-align: center;
}

.calculator-headline {
    font-size: 40px;
    font-weight: 700;
    color: #0F172A;
    margin: 16px 0;
    letter-spacing: -0.025em;
}

.calculator-subtext {
    font-size: 17px;
    color: #64748B;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.calculator-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 48px;
    text-align: left;
}

/* Inputs */
.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.calculator-input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.calculator-label {
    font-size: 14px;
    font-weight: 500;
    color: #475569;
}

.calculator-slider-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.calculator-range {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    background: #E2E8F0;
    border-radius: 3px;
    outline: none;
    cursor: pointer;
}

.calculator-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0F172A;
    cursor: pointer;
    border: 3px solid #FFFFFF;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    transition: transform 0.15s ease;
}

.calculator-range::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.calculator-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0F172A;
    cursor: pointer;
    border: 3px solid #FFFFFF;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.calculator-value {
    font-size: 16px;
    font-weight: 600;
    color: #0F172A;
    min-width: 80px;
    text-align: right;
    white-space: nowrap;
}

/* Rate input */
.calculator-rate-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.calculator-rate-prefix {
    font-size: 16px;
    font-weight: 600;
    color: #0F172A;
}

.calculator-rate-input {
    width: 120px;
    padding: 8px 12px;
    border: none;
    border-bottom: 2px solid #CBD5E1;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    color: #0F172A;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease;
}

.calculator-rate-input:focus {
    border-bottom-color: #0F172A;
}

.calculator-rate-hint {
    font-size: 12px;
    color: #94A3B8;
    margin-left: 4px;
}

/* Divider */
.calculator-divider {
    height: 1px;
    background: #E2E8F0;
    margin: 36px 0;
}

/* Results */
.calculator-results {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 0;
    align-items: start;
}

.calculator-results::before {
    content: '';
    grid-column: 2;
    grid-row: 1;
    background: #E2E8F0;
    width: 1px;
    height: 100%;
    justify-self: center;
}

.calculator-result-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    padding: 0 24px;
}

.calculator-result-heading {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: #94A3B8;
    margin-bottom: 8px;
}

.calculator-result-hours {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
}

.calculator-result-current .calculator-result-hours {
    color: #EF4444;
}

.calculator-result-saved .calculator-result-hours {
    color: #10B981;
}

.calculator-result-unit {
    font-size: 13px;
    color: #64748B;
    margin-bottom: 8px;
}

.calculator-result-cost {
    font-size: 18px;
    font-weight: 600;
    color: #0F172A;
}

/* CTA */
.calculator-cta-row {
    text-align: center;
    margin-top: 36px;
}

/* Calculator mobile */
@media (max-width: 640px) {
    .calculator-card {
        padding: 32px 24px;
    }
    .calculator-headline {
        font-size: 32px;
    }
    .calculator-results {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .calculator-results::before {
        display: none;
    }
    .calculator-result-col {
        padding: 0;
    }
    .calculator-result-saved {
        padding-top: 24px;
        border-top: 1px solid #E2E8F0;
    }
    .calculator-rate-row {
        flex-wrap: wrap;
    }
    .calculator-rate-hint {
        width: 100%;
        margin-left: 0;
        margin-top: 4px;
    }
}

/* ========================================
   COMPARISON SECTION
   ======================================== */
.comparison {
    background: #F8FAFC;
    padding: 120px 24px;
}
.comparison-container {
    max-width: 960px;
    margin: 0 auto;
}
.comparison .section-eyebrow {
    display: block;
    text-align: center;
}
.comparison-headline {
    font-size: 40px;
    font-weight: 700;
    color: #0F172A;
    margin: 16px 0;
    letter-spacing: -0.025em;
    text-align: center;
}
.comparison-subtext {
    font-size: 17px;
    color: #64748B;
    text-align: center;
    max-width: 520px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

/* Table wrapper for horizontal scroll on mobile */
.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    background: #FFFFFF;
    width: 100%;
    position: relative;
}

/* Scroll hint for mobile */
.comparison-scroll-hint {
    display: none;
    text-align: center;
    color: #94A3B8;
    font-size: 0.85rem;
    margin-bottom: 12px;
    font-style: italic;
}

@media (max-width: 768px) {
    .comparison-scroll-hint {
        display: block;
    }
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

/* Header */
.comparison-th {
    padding: 20px 24px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748B;
    text-align: left;
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
    white-space: nowrap;
}
.comparison-th-feature {
    width: 22%;
}
.comparison-th-highlight {
    color: #0F172A;
}

/* Body cells */
.comparison-feature {
    padding: 18px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #0F172A;
    border-bottom: 1px solid #F1F5F9;
    white-space: nowrap;
}
.comparison-cell {
    padding: 18px 24px;
    font-size: 14px;
    color: #475569;
    border-bottom: 1px solid #F1F5F9;
    line-height: 1.5;
}
.comparison-cell-highlight {
    font-weight: 600;
    color: #0F172A;
}

/* Last row — no bottom border */
.comparison-table tbody tr:last-child .comparison-feature,
.comparison-table tbody tr:last-child .comparison-cell {
    border-bottom: none;
}

/* Row hover */
.comparison-table tbody tr {
    transition: background 0.15s ease;
}
.comparison-table tbody tr:hover {
    background: #FAFBFC;
}

/* Bottom link */
.comparison-bottom {
    text-align: center;
    margin-top: 32px;
}
.comparison-link {
    font-size: 15px;
    font-weight: 500;
    color: #64748B;
    text-decoration: none;
    transition: color 0.2s ease;
}
.comparison-link:hover {
    color: #0F172A;
}

/* Mobile */
@media (max-width: 768px) {
    .comparison-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .comparison-table th:first-child,
    .comparison-table td:first-child {
        position: sticky;
        left: 0;
        background: #FFFFFF;
        z-index: 1;
        min-width: 100px;
        box-shadow: 2px 0 4px rgba(0, 0, 0, 0.05);
    }
    .comparison-table th:first-child {
        background: #F8FAFC;
    }
}

@media (max-width: 640px) {
    .comparison-headline {
        font-size: 32px;
    }
    .comparison-table-wrapper {
        margin: 0 -8px;
        border-radius: 12px;
    }
    .comparison-th,
    .comparison-feature,
    .comparison-cell {
        padding: 14px 16px;
        font-size: 13px;
    }
}

/* ========================================
   TECH STACK SECTION
   ======================================== */
.tech-stack {
    background: #0F172A;
    padding: 120px 24px;
}
.tech-stack-container {
    max-width: 1120px;
    margin: 0 auto;
}
.tech-stack-eyebrow {
    color: #94A3B8;
    display: block;
    text-align: center;
}
.tech-stack-headline {
    font-size: 36px;
    font-weight: 700;
    color: #F8FAFC;
    margin: 16px 0;
    letter-spacing: -0.025em;
    text-align: center;
}
.tech-stack-subtext {
    font-size: 16px;
    color: #94A3B8;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
    line-height: 1.7;
}

/* Category groups */
.tech-stack-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.tech-stack-category-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: #64748B;
    margin: 0 0 20px 0;
}
.tech-stack-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* Individual tool card */
.tech-stack-item {
    background: #1E293B;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    transition: all 0.2s ease;
}
.tech-stack-item:hover {
    border-color: #475569;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.06);
    transform: translateY(-1px);
}
.tech-stack-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #0F172A;
    border: 1px solid #334155;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}
.tech-stack-item-name {
    font-size: 15px;
    font-weight: 600;
    color: #F8FAFC;
}
.tech-stack-item-desc {
    font-size: 13px;
    color: #64748B;
    line-height: 1.4;
}

/* Tablet */
@media (max-width: 900px) {
    .tech-stack-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 640px) {
    .tech-stack-items {
        grid-template-columns: 1fr;
    }
    .tech-stack-headline {
        font-size: 28px;
    }
    .tech-stack-item {
        padding: 20px;
    }
}

/* ========================================
   METRICS BAR
   ======================================== */
.metrics-bar {
    background: #FFFFFF;
    padding: 80px 24px;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}

.metrics-container {
    max-width: 1000px;
    margin: 0 auto;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.metric-number {
    font-size: 48px;
    font-weight: 700;
    color: #0F172A;
    letter-spacing: -0.03em;
    line-height: 1;
}

.metric-label {
    font-size: 14px;
    font-weight: 500;
    color: #64748B;
    line-height: 1.4;
}

.metrics-testimonial-placeholder {
    margin-top: 48px;
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #E2E8F0;
}

.metrics-testimonial-placeholder p {
    font-size: 15px;
    font-style: italic;
    color: #94A3B8;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Metrics bar mobile */
@media (max-width: 768px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }
    .metric-number {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ========================================
   PRICING SECTION
   ======================================== */
.section-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: 600;
    color: #94A3B8;
}

.pricing {
    background: #FFFFFF;
    padding: 120px 24px;
}

.pricing-container {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}

.pricing-headline {
    font-size: 40px;
    font-weight: 700;
    color: #0F172A;
    margin: 16px 0;
    letter-spacing: -0.025em;
}

.pricing-subtext {
    font-size: 17px;
    color: #64748B;
    max-width: 540px;
    margin: 0 auto 56px;
    line-height: 1.7;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: left;
    max-width: 1040px;
    margin: 0 auto;
}

.pricing-card {
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.2s ease;
}

.pricing-card:hover {
    border-color: #CBD5E1;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.pricing-card-featured {
    border: 2px solid #0F172A;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
}

.pricing-card-featured:hover {
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
}

.pricing-popular-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: #0F172A;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 5px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.pricing-card-header {
    margin-bottom: 20px;
}

.pricing-tier {
    font-size: 14px;
    font-weight: 600;
    color: #475569;
    display: block;
    margin-bottom: 12px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 4px;
}

.pricing-currency {
    font-size: 24px;
    font-weight: 600;
    color: #0F172A;
    line-height: 1;
}

.pricing-number {
    font-size: 48px;
    font-weight: 700;
    color: #0F172A;
    letter-spacing: -0.03em;
    line-height: 1;
}

.pricing-custom {
    font-size: 40px;
}

.pricing-period {
    font-size: 14px;
    color: #94A3B8;
    display: block;
}

.pricing-ideal {
    font-size: 14px;
    color: #64748B;
    margin: 0 0 24px 0;
    line-height: 1.5;
    padding-bottom: 24px;
    border-bottom: 1px solid #E2E8F0;
}

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

.pricing-features li {
    font-size: 14px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}

.pricing-check {
    flex-shrink: 0;
}

.pricing-cta {
    display: block;
    text-align: center;
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.pricing-guarantee {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid #E2E8F0;
}

.pricing-guarantee p {
    font-size: 15px;
    color: #475569;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
    text-align: center;
}

/* Pricing mobile */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
    }
    .pricing-card-featured {
        order: -1;
    }
    .pricing-headline {
        font-size: 32px;
    }
}

/* ========================================
   TRUST BAR
   ======================================== */
.trust-bar {
    background: #F8FAFC;
    padding: 80px 24px;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}
.trust-bar-container {
    max-width: 1120px;
    margin: 0 auto;
}
.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.trust-bar-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.trust-bar-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.trust-bar-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.trust-bar-title {
    font-size: 14px;
    font-weight: 600;
    color: #0F172A;
}
.trust-bar-desc {
    font-size: 13px;
    color: #94A3B8;
    line-height: 1.4;
}

/* Tablet */
@media (max-width: 900px) {
    .trust-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

/* Mobile */
@media (max-width: 540px) {
    .trust-bar-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .trust-bar {
        padding: 56px 24px;
    }
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
    background: #FFFFFF;
    padding: 120px 24px;
}
.faq-container {
    max-width: 720px;
    margin: 0 auto;
}
.faq-headline {
    font-size: 36px;
    font-weight: 700;
    color: #0F172A;
    text-align: center;
    margin: 0 0 56px 0;
    letter-spacing: -0.025em;
}

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

/* Individual FAQ item */
.faq-item {
    border-bottom: 1px solid #E2E8F0;
}
.faq-item:first-child {
    border-top: 1px solid #E2E8F0;
}

/* Question / summary */
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 0;
    cursor: pointer;
    list-style: none;
    font-size: 16px;
    font-weight: 500;
    color: #0F172A;
    transition: color 0.2s ease;
}
.faq-question::-webkit-details-marker {
    display: none;
}
.faq-question::marker {
    display: none;
    content: '';
}
.faq-question:hover {
    color: #3B82F6;
}

/* Plus/minus icon */
.faq-icon {
    flex-shrink: 0;
    color: #94A3B8;
    transition: transform 0.2s ease;
}
.faq-icon .faq-icon-h {
    transition: opacity 0.2s ease, transform 0.2s ease;
}
details[open] .faq-icon {
    transform: rotate(0deg);
}
details[open] .faq-icon .faq-icon-h {
    opacity: 0;
    transform: scaleX(0);
}

/* Answer */
.faq-answer {
    padding: 0 0 22px 0;
    overflow: hidden;
}
.faq-answer p {
    font-size: 15px;
    color: #64748B;
    line-height: 1.7;
    margin: 0;
    max-width: 640px;
}

/* Contact line */
.faq-contact {
    text-align: center;
    margin-top: 48px;
    padding-top: 32px;
}
.faq-contact p {
    font-size: 15px;
    color: #64748B;
    margin: 0;
}
.faq-contact-link {
    color: #0F172A;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}
.faq-contact-link:hover {
    color: #3B82F6;
}

/* Mobile */
@media (max-width: 640px) {
    .faq-headline {
        font-size: 28px;
        margin-bottom: 40px;
    }
    .faq-question {
        font-size: 15px;
        padding: 18px 0;
    }
    .faq-answer p {
        font-size: 14px;
    }
}

/* ========================================
   ABOUT / LEADERSHIP SECTION
   ======================================== */
.about {
    background: #FFFFFF;
    padding: 120px 24px;
}
.about-container {
    max-width: 1040px;
    margin: 0 auto;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: center;
}

/* Image column */
.about-image-col {
    display: flex;
    justify-content: center;
}
.about-image-wrapper {
    width: 100%;
    max-width: 360px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
    border: 1px solid #E2E8F0;
}
.about-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 5;
}

/* Content column */
.about-content-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.about-headline {
    font-size: 36px;
    font-weight: 700;
    color: #0F172A;
    margin: 16px 0 24px;
    letter-spacing: -0.025em;
    line-height: 1.2;
}
.about-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}
.about-body p {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}
.about-body p:first-child {
    font-size: 17px;
    color: #0F172A;
    font-weight: 500;
}
.about-meta {
    margin-bottom: 24px;
}
.about-location {
    font-size: 14px;
    font-weight: 500;
    color: #64748B;
}

/* LinkedIn link */
.about-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 500;
    color: #0F172A;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid #E2E8F0;
    transition: all 0.2s ease;
}
.about-linkedin:hover {
    color: #3B82F6;
    border-bottom-color: #3B82F6;
}
.about-linkedin svg {
    transition: transform 0.2s ease;
}
.about-linkedin:hover svg {
    transform: translate(2px, -2px);
}

/* Mobile */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .about-content-col {
        align-items: center;
    }
    .about-image-wrapper {
        max-width: 280px;
    }
    .about-headline {
        font-size: 28px;
    }
    .about-headline br {
        display: none;
    }
    .about-body p {
        text-align: left;
    }
}

/* ========================================
   FINAL CTA / BOOKING SECTION
   ======================================== */
.final-cta {
    background: #0F172A;
    padding: 120px 24px;
    border-bottom: 1px solid #1E293B;
}
.final-cta-container {
    max-width: 1040px;
    margin: 0 auto;
}
.final-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

/* Left content column */
.final-cta-content {
    padding-top: 16px;
}
.final-cta-headline {
    font-size: 36px;
    font-weight: 700;
    color: #F8FAFC;
    margin: 0 0 20px 0;
    letter-spacing: -0.025em;
    line-height: 1.2;
}
.final-cta-subtext {
    font-size: 17px;
    color: #94A3B8;
    line-height: 1.7;
    margin: 0 0 32px 0;
}
.final-cta-trust-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.final-cta-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}
.final-cta-trust-item svg {
    flex-shrink: 0;
}
.final-cta-trust-item span {
    font-size: 15px;
    color: #CBD5E1;
}

/* Right form column */
.final-cta-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.final-cta-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.final-cta-label {
    font-size: 13px;
    font-weight: 500;
    color: #94A3B8;
}
.final-cta-optional {
    color: #64748B;
    font-weight: 400;
}
.final-cta-input,
.final-cta-textarea {
    background: #1E293B;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 15px;
    font-family: inherit;
    color: #F8FAFC;
    outline: none;
    transition: border-color 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}
.final-cta-input::placeholder,
.final-cta-textarea::placeholder {
    color: #475569;
}
.final-cta-input:focus,
.final-cta-textarea:focus {
    border-color: #94A3B8;
}
.final-cta-textarea {
    resize: vertical;
    min-height: 80px;
}
.final-cta-submit {
    background: #FFFFFF;
    color: #0F172A;
    border: none;
    border-radius: 8px;
    padding: 16px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    margin-top: 4px;
}
.final-cta-submit:hover {
    background: #F1F5F9;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
}
.final-cta-privacy {
    font-size: 12px;
    color: #64748B;
    text-align: center;
    margin: 0;
}
.final-cta-privacy a {
    color: #94A3B8;
    text-decoration: underline;
    text-decoration-color: #475569;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}
.final-cta-privacy a:hover {
    color: #F8FAFC;
}

/* Bottom trust bar */
.final-cta-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid #1E293B;
}
.final-cta-bottom-item {
    font-size: 12px;
    font-weight: 500;
    color: #64748B;
}
.final-cta-bottom-sep {
    color: #334155;
    font-size: 12px;
}

/* Mobile */
@media (max-width: 768px) {
    .final-cta-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .final-cta-headline {
        font-size: 28px;
    }
    .final-cta-content {
        text-align: center;
        padding-top: 0;
    }
    .final-cta-trust-points {
        align-items: center;
    }
    .final-cta-bottom-bar {
        flex-wrap: wrap;
        gap: 8px 16px;
    }
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    background: #0F172A;
    padding: 64px 24px 32px;
}

.footer-container {
    max-width: 1120px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    font-size: 18px;
    font-weight: 700;
    color: #F8FAFC;
    text-decoration: none;
    letter-spacing: -0.025em;
    display: inline-block;
    margin-bottom: 16px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    color: #64748B;
    max-width: 260px;
    margin: 0 0 16px 0;
}

.footer-email {
    font-size: 14px;
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-email:hover {
    color: #F8FAFC;
}

.footer-heading {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: #64748B;
    margin: 0 0 20px 0;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    font-size: 14px;
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #F8FAFC;
}

.footer-bottom {
    border-top: 1px solid #1E293B;
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright {
    font-size: 13px;
    color: #64748B;
}

.footer-social {
    color: #64748B;
    transition: color 0.2s ease;
}

.footer-social:hover {
    color: #F8FAFC;
}

/* Footer mobile */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

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

/* ========================================
   BOOKING FORM
   ======================================== */
.booking-form {
    max-width: 450px;
    margin: 0 auto 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 16px;
    color: var(--text-primary);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.1);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.booking-form .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

/* Form success message */
.form-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    padding: 16px;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 16px;
}

/* ========================================
   FORM CONSENT CHECKBOX
   ======================================== */
.form-consent {
    margin: 8px 0;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1.5;
}

.consent-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary);
    cursor: pointer;
}

.consent-label a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.consent-label a:hover {
    text-decoration: underline;
}

/* ========================================
   ICONS & UTILITIES
   ======================================== */
.icon {
    color: var(--accent);
    font-weight: bold;
    margin-right: 4px;
}

.icon-star {
    color: #fbbf24;
    margin-right: 6px;
}

.icon-bolt {
    color: var(--accent);
    margin-right: 6px;
}

/* Loading spinner for button */
.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spinner 0.8s linear infinite;
}

@keyframes spinner {
    to { transform: rotate(360deg); }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .services-grid,
    .pricing-grid,
    .workflows-grid,
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .usp-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .lead-magnet-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 64px;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        border-bottom: 1px solid #E2E8F0;
        gap: 16px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .nav-hamburger {
        display: flex;
    }
    
    /* Center-align dropdown menu with main nav items */
    .nav-dropdown {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        text-align: center;
    }

    .dropdown-trigger {
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: 0;
        text-align: center;
        width: 100%;
    }

    .dropdown-menu a {
        text-align: center;
        display: block;
        padding-left: 0;
    }

    /* Uniform section spacing on mobile */
    .problem,
    .solution,
    .process-visual,
    .process-timeline,
    .use-cases,
    .capabilities,
    .workflows,
    .calculator,
    .comparison,
    .tech-stack,
    .pricing,
    .faq,
    .about,
    .final-cta {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    /* Slightly smaller padding for accent/utility sections */
    .metrics-bar {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .trust-bar {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .services-grid,
    .pricing-grid,
    .results-grid,
    .tech-grid,
    .workflows-grid,
    .trust-grid,
    .use-cases-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-guarantee {
        flex-direction: column;
        text-align: center;
    }
    
    .tech-category {
        padding: 24px;
    }
    
    .journey-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-visual-wrapper {
        flex-direction: row;
        width: 100%;
        justify-content: center;
    }
    
    .step-connector {
        display: none;
    }
    
    .step-content-wrapper {
        width: 100%;
    }
    
    .step-details li {
        justify-content: center;
    }
    
    .workflow-comparison {
        flex-direction: column;
        text-align: center;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
    
    .calculator-results {
        flex-direction: column;
    }
    
    .result-arrow {
        transform: rotate(90deg);
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .referral-link-box {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .metric-number {
        font-size: 2rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 16px;
        font-size: 14px;
    }
    
    .security-badges {
        justify-content: center;
    }
}
