/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Animation easing - natural deceleration */
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);

    /* Animation durations */
    --duration-fast: 150ms;
    --duration-normal: 250ms;
    --duration-slow: 400ms;
    --duration-entrance: 600ms;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.text-primary {
    color: #3b82f6;
}

.text-white {
    color: white;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: transform var(--duration-fast) var(--ease-out-quart),
                background-color var(--duration-normal) var(--ease-out-quart),
                border-color var(--duration-normal) var(--ease-out-quart),
                box-shadow var(--duration-normal) var(--ease-out-quart);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.btn:active {
    transform: scale(0.97);
}

.btn-primary {
    background-color: #1d4ed8;
    color: white;
    border-color: #1d4ed8;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #1e40af;
    border-color: #1e40af;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(29, 78, 216, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: #3b82f6;
    border-color: #3b82f6;
}

.btn-outline:hover {
    background-color: #3b82f6;
    color: white;
}

.btn-white {
    background-color: white;
    color: #3b82f6;
    border-color: white;
}

.btn-white:hover {
    background-color: #f8fafc;
    transform: translateY(-1px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.nav-logo {
    flex-shrink: 0;
}

.nav-brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* ================================================
   HERO SECTION - 2 Column Layout
   ================================================ */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    text-align: left;
}

/* Hero entrance animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.hero-title {
    animation: fadeInUp var(--duration-entrance) var(--ease-out-expo) both;
}

.hero-subtitle {
    animation: fadeInUp var(--duration-entrance) var(--ease-out-expo) 100ms both;
}

.hero-actions {
    animation: fadeInUp var(--duration-entrance) var(--ease-out-expo) 200ms both;
}

.hero-trust {
    animation: fadeInUp var(--duration-entrance) var(--ease-out-expo) 300ms both;
}

.hero-image {
    animation: fadeIn 800ms var(--ease-out-quart) 400ms both;
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: #475569;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-actions {
    margin-bottom: 1.75rem;
}

.hero-actions .btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    min-height: 56px;
    font-weight: 600;
}

.hero-trust {
    font-size: 0.9rem;
    color: #6b7280;
}

.hero-image {
    text-align: center;
}

.hero-screenshot-frame {
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 20px 40px -8px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    background: #fff;
    max-width: 900px;
}

.screenshot-chrome {
    background: #f8fafc;
    padding: 10px 14px;
    display: flex;
    gap: 6px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.chrome-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e2e8f0;
}

.hero-screenshot {
    display: block;
    width: 100%;
    height: auto;
}

/* Hero Product Preview */
.hero-product-preview {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    max-width: 420px;
    margin: 0 auto;
}

.preview-header {
    background: #f1f5f9;
    padding: 12px 16px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid #e2e8f0;
}

.preview-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
}

.preview-dot:first-child { background: #fca5a5; }
.preview-dot:nth-child(2) { background: #fcd34d; }
.preview-dot:nth-child(3) { background: #86efac; }

.preview-content {
    padding: 24px;
}

.preview-score {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.score-value {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    letter-spacing: -0.03em;
}

.score-label {
    display: block;
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.gap-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #334155;
    border-left: 3px solid #e2e8f0;
}

.gap-item.gap-critical {
    border-left-color: #ef4444;
    background: #fef2f2;
}

.gap-item.gap-high {
    border-left-color: #f59e0b;
    background: #fffbeb;
}

.gap-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    border-radius: 4px;
    flex-shrink: 0;
    background: #e2e8f0;
    color: #64748b;
}

.gap-critical .gap-icon {
    background: #ef4444;
    color: white;
}

.gap-high .gap-icon {
    background: #f59e0b;
    color: white;
}

/* Button arrow */
.btn-arrow {
    margin-left: 8px;
    transition: transform 0.2s ease;
}

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

/* ================================================
   SECTIONS - General
   ================================================ */
.section {
    padding: 5rem 0;
}

.bg-gray {
    background-color: #f9fafb;
}

.bg-primary {
    background-color: #3b82f6;
}

.section-title {
    font-size: 2.5rem;
    text-align: left;
    margin-bottom: 3rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
}

/* ================================================
   SYSTEM CHANGED SECTION
   ================================================ */
.system-changed {
    background-color: #f6faff;
    padding: 2.5rem 0 3rem;
}

.system-changed-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    max-width: 920px;
    margin: 0 auto;
}

.system-changed-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Timeline component */
.system-changed-timeline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.timeline-step {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.25rem 0;
}

.timeline-number {
    width: 26px;
    height: 26px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #6b7280;
}

.timeline-rail {
    width: 3px;
    height: 28px;
    background: rgba(59, 130, 246, 0.4);
    margin-left: 11.5px;
}

/* Step 2 emphasis */
.timeline-step-emphasis {
    flex-wrap: wrap;
}

.timeline-step-emphasis .timeline-number {
    background: #dc2626;
}

.timeline-step-emphasis .timeline-label {
    font-weight: 700;
    color: #1f2937;
}

.timeline-microcopy {
    width: 100%;
    font-size: 0.8rem;
    font-weight: 500;
    color: #6b7280;
    font-style: normal;
    margin-left: calc(26px + 0.75rem);
    margin-top: 0.25rem;
    line-height: 1.4;
}

.timeline-microcopy .stall-icon {
    color: #dc2626;
    font-size: 0.65rem;
    vertical-align: middle;
    margin-right: 0.25rem;
    animation: pulse-icon 1.5s ease-in-out infinite;
}

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

/* Content side */
.system-changed-content {
    text-align: left;
    max-width: 580px;
}

.system-changed-headline {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.875rem;
    line-height: 1.25;
}

.system-changed-subhead {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 1.25rem;
    line-height: 1.65;
}

.system-changed-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
}

.system-changed-bullets li {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
    padding-left: 1.25rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.system-changed-bullets li:last-child {
    margin-bottom: 0;
}

.system-changed-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background: #3b82f6;
    border-radius: 50%;
}

.system-changed-punchline {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e40af;
    margin: 1rem 0 0 0;
    padding: 0.75rem 0 0.75rem 1rem;
    border-left: 3px solid transparent;
    background: linear-gradient(#3b82f6, #3b82f6) no-repeat left top;
    background-size: 3px 0%;
    transition: background-size 0.4s ease-out;
}

.system-changed-punchline.animate-border {
    background-size: 3px 100%;
}

.system-changed-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.system-changed-cta:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.system-changed-cta:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.system-changed-cta .cta-arrow {
    transition: transform 0.2s ease;
}

.system-changed-cta:hover .cta-arrow {
    transform: translateX(3px);
}

/* Typewriter animation */
.typewriter-text {
    display: inline;
}

.typewriter-cursor {
    animation: blink-cursor 0.7s infinite;
}

@keyframes blink-cursor {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.headline-rest {
    transition: opacity 0.3s ease;
}

/* ================================================
   PRODUCT PROOF SECTIONS
   ================================================ */
.product-proof {
    padding: 5rem 0;
}

.proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.proof-grid-reverse {
    direction: rtl;
}

.proof-grid-reverse > * {
    direction: ltr;
}

.proof-content {
    padding-right: 2rem;
}

.proof-grid-reverse .proof-content {
    padding-right: 0;
    padding-left: 2rem;
}

.proof-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
    text-align: left;
    letter-spacing: -0.02em;
}

.proof-support {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.7;
}

/* Highlight styles for Product Proof sections */
.highlight-rcs,
.highlight-jd {
    display: inline-block;
    background: #eff6ff;
    color: #1e40af;
    padding: 0.125em 0.5em;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.95em;
}

.highlight-positive {
    color: #047857;
    font-weight: 500;
}

.highlight-negative {
    color: #92400e;
    font-weight: 500;
}

.proof-image img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.12);
}

/* Proof Preview Placeholders */
.proof-preview {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.12);
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.proof-preview-header {
    background: #f8fafc;
    padding: 12px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid #e5e7eb;
}

/* RCS Score display in proof card */
.proof-rcs-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.rcs-value {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    letter-spacing: -0.03em;
}

.rcs-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

.proof-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.proof-strong .proof-icon {
    color: #15803d;
}

.proof-weak .proof-icon,
.proof-medium .proof-icon {
    color: #3b82f6;
}

.proof-preview-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid #f1f5f9;
}

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

.proof-score {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    background: #f1f5f9;
    color: #64748b;
}

.proof-strong .proof-score {
    background: #dcfce7;
    color: #15803d;
}

.proof-weak .proof-score {
    background: #fee2e2;
    color: #dc2626;
}

.proof-medium .proof-score {
    background: #fef3c7;
    color: #b45309;
}

.proof-text {
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.5;
}

/* JD Comparison Preview */
.proof-preview-jd {
    padding-bottom: 16px;
}

.jd-match-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    flex-wrap: wrap;
}

.jd-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    min-width: 70px;
}

.jd-tag {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
}

.jd-found {
    background: #dcfce7;
    color: #15803d;
}

.jd-missing {
    background: #fee2e2;
    color: #dc2626;
}

.jd-summary {
    padding: 12px 20px;
    font-size: 0.85rem;
    color: #64748b;
    border-top: 1px solid #f1f5f9;
    margin-top: 8px;
}

/* ================================================
   HOW IT WORKS
   ================================================ */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

/* Connecting line through all steps */
.steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: #dbeafe;
    z-index: 0;
}

.step {
    text-align: center;
    padding: 1.5rem 1rem;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 0 0 4px white;
}

.step h3 {
    font-size: 1rem;
    margin-bottom: 0;
    color: #1f2937;
    font-weight: 600;
}

.step-desc {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 0.5rem;
    line-height: 1.4;
}

/* Closing statement - Trust message */
.how-it-works-cta {
    text-align: center;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1e293b;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.5;
}

.how-it-works-trust {
    text-align: center;
    font-size: 0.95rem;
    color: #64748b;
    max-width: 720px;
    margin: 0.5rem auto 0;
    line-height: 1.6;
}

/* ================================================
   WHY RESUMES COACH (Objections)
   ================================================ */
.objections-hero {
    text-align: left;
    margin-bottom: 2.5rem;
}

.objections-headline {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.75rem;
}

.objections-answer {
    font-size: 1.15rem;
    color: #4b5563;
    max-width: 600px;
    line-height: 1.6;
}

.objections-answer strong {
    white-space: nowrap;
}

.objections-subhead {
    font-size: 1.15rem;
    font-weight: 500;
    color: #374151;
    margin: 0;
}

/* Value Props List */
.value-props {
    max-width: 720px;
    list-style: none;
    padding: 0;
}

.value-prop {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1.25rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid #e5e7eb;
}

.value-prop::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1.55rem;
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
}

.value-prop:last-child {
    border-bottom: none;
}

.value-prop strong {
    font-size: 1.05rem;
    font-weight: 600;
    color: #111827;
}

.value-prop span {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
}

/* Value prop entrance animation */
.value-prop {
    opacity: 0;
    transform: translateY(12px);
}

.value-prop.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.value-prop::before {
    transform: scale(0);
}

.value-prop.animate-in::before {
    transform: scale(1);
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .value-prop {
        opacity: 1;
        transform: none;
        transition: none !important;
    }
    .value-prop::before {
        transform: scale(1);
        transition: none !important;
    }
}

/* OPTION A: Two-Column Table Layout */
.objections-table {
    max-width: 720px;
    margin: 0 auto;
}

.objection-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
    align-items: baseline;
}

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

.objection-q {
    font-weight: 600;
    color: #374151;
    font-size: 0.95rem;
}

.objection-a {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* OPTION B: Q&A Bullet Stack */
.objections-qa {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.qa-item {
    padding: 0.75rem 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
    border-bottom: 1px solid #e5e7eb;
}

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

.qa-item strong {
    color: #1f2937;
}

/* Expanded Objections Format */
.objections-expanded {
    max-width: 680px;
    margin: 0 auto;
}

.objection-block {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.objection-block:last-of-type {
    border-bottom: none;
}

.objection-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.objection-acknowledge {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.objection-limitation {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.objection-difference {
    margin-top: 2.5rem;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.difference-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.difference-main {
    color: #374151;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.difference-value {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* ================================================
   TESTIMONIALS
   ================================================ */
/* Testimonials title - left aligned for editorial feel */
.testimonials-title {
    text-align: left;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
}

.testimonial-featured {
    max-width: 960px;
    margin: 0 auto 4rem;
    text-align: left;
    padding-left: 2.5rem;
    border-left: 5px solid #3b82f6;
    position: relative;
}

.testimonial-featured::before {
    content: """;
    position: absolute;
    top: -1.5rem;
    left: 2.5rem;
    font-size: 6rem;
    color: rgba(59, 130, 246, 0.12);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.testimonial-featured blockquote {
    font-size: 1.65rem;
    font-style: italic;
    color: #0f172a;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    font-weight: 400;
    position: relative;
}

.testimonial-featured .testimonial-author {
    text-align: left;
}

.testimonial-featured .testimonial-author strong {
    color: #1f2937;
    font-weight: 700;
    display: block;
    font-size: 1.1rem;
}

.testimonial-featured .testimonial-author span {
    color: #3b82f6;
    font-size: 0.95rem;
    font-weight: 500;
}

.testimonials-secondary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    max-width: 960px;
    margin: 0 auto;
}

.testimonial-small {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
    text-align: left;
    padding: 1.25rem 0 0 0;
    border-top: 2px solid #e2e8f0;
    transition: border-color 0.3s var(--ease-out-quart);
}

.testimonial-small:hover {
    border-top-color: #3b82f6;
}

.testimonial-small p {
    flex: 1;
    font-size: 1rem;
    color: #374151;
    font-style: italic;
    margin: 0 0 0.75rem 0;
    line-height: 1.6;
}

.testimonial-small > span {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 600;
}

/* ================================================
   PRICING
   ================================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
}

.pricing-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
}

.pricing-card-featured {
    border-color: #3b82f6;
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.2);
    position: relative;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #6b7280;
}

.pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #4b5563;
    font-size: 0.95rem;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 600;
}

.pricing-note {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.pricing-card .btn {
    width: 100%;
}

/* ================================================
   LOGO BAR - Scrolling Social Proof
   ================================================ */
.logo-bar {
    padding: 3.5rem 0;
    background: #f8fafc;
    overflow: hidden;
}

.logo-bar-text {
    text-align: center;
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.logo-scroll-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.logo-scroll-wrapper::before,
.logo-scroll-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.logo-scroll-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, #f8fafc 0%, transparent 100%);
}

.logo-scroll-wrapper::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, #f8fafc 100%);
}

.logo-scroll {
    display: flex;
    align-items: center;
    gap: 5rem;
    animation: scroll-logos 35s linear infinite;
    width: max-content;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 0.55;
    transition: opacity 0.3s ease;
}

.logo-img:hover {
    opacity: 1;
}

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

/* Pause on hover */
.logo-scroll-wrapper:hover .logo-scroll {
    animation-play-state: paused;
}

/* ================================================
   FAQ SECTION
   ================================================ */
.faq-section {
    background: #ffffff;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: #eff6ff;
    color: #3b82f6;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 1rem;
}

.faq-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
}

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

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

.faq-item:first-child {
    border-top: 1px solid #e5e7eb;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    list-style: none;
}

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

.faq-icon {
    width: 24px;
    height: 24px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: #6b7280;
    transition: background 0.2s ease;
}

.faq-icon::before {
    width: 10px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-item[open] .faq-icon {
    border-color: #3b82f6;
}

.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after {
    background: #3b82f6;
}

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

.faq-answer {
    padding: 0 0 1.5rem 0;
    color: #4b5563;
    line-height: 1.8;
}

.faq-answer p {
    margin: 0 0 1rem 0;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 1rem 0 1.25rem 0;
    padding-left: 1.5rem;
    list-style-position: outside;
}

.faq-answer ul + p {
    margin-top: 1.25rem !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    text-indent: 0 !important;
    display: block;
}

.faq-answer li {
    margin-bottom: 0.75rem;
}

.faq-answer li:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: #374151;
}

/* ================================================
   FINAL CTA SECTION
   ================================================ */
.cta-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 6rem 0;
}

.cta-section h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-actions {
    margin-bottom: 1.5rem;
}

.cta-trust {
    font-size: 0.9rem;
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
}

/* Top accent gradient line */
.footer-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        #3b82f6 20%,
        #60a5fa 50%,
        #3b82f6 80%,
        transparent 100%
    );
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.footer-brand-header svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.footer-brand h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
}

.footer-tagline {
    color: #9ca3af;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    color: #60a5fa;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-cta:hover {
    color: #93c5fd;
    transform: translateX(3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.footer-column h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column a {
    color: #9ca3af;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    transition: color 0.2s ease, transform 0.2s ease;
    position: relative;
}

.footer-column a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #60a5fa;
    transition: width 0.2s ease;
}

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

.footer-column a:hover::after {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: #60a5fa;
}

.footer-arkalogy {
    color: #9ca3af;
    border-bottom: 1px dotted #6b7280;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-arkalogy:hover {
    color: #60a5fa;
    border-color: #60a5fa;
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-content {
        text-align: center;
        order: 1;
    }

    .hero-image {
        order: 2;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-product-preview {
        max-width: 360px;
    }

    .score-value {
        font-size: 3.5rem;
    }

    .system-changed-card {
        padding: 1.5rem;
    }

    .system-changed-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .system-changed-timeline {
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
    }

    .timeline-rail {
        width: 28px;
        height: 3px;
        margin: 0;
        align-self: center;
        border-radius: 2px;
    }

    .timeline-step {
        flex-direction: column;
        text-align: center;
        padding: 0.25rem 0;
    }

    .timeline-microcopy {
        margin-left: 0;
        text-align: center;
    }

    .timeline-label {
        font-size: 0.8rem;
    }

    .system-changed-content {
        text-align: center;
    }

    .system-changed-headline {
        font-size: 1.5rem;
    }

    .system-changed-bullets {
        text-align: left;
        display: inline-block;
    }

    .proof-grid,
    .proof-grid-reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
    }

    .proof-content,
    .proof-grid-reverse .proof-content {
        padding: 0;
        text-align: left;
    }

    .proof-title {
        text-align: left;
    }

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

    .steps::before {
        display: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-actions .btn-large {
        min-height: 48px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-product-preview {
        max-width: 320px;
    }

    .score-value {
        font-size: 3rem;
    }

    .preview-content {
        padding: 20px;
    }

    .gap-item {
        font-size: 0.85rem;
        padding: 10px;
    }

    .proof-preview-item {
        padding: 12px 16px;
    }

    .proof-text {
        font-size: 0.85rem;
    }

    .proof-title {
        font-size: 1.75rem;
    }

    .how-it-works-cta {
        font-size: 1.05rem;
    }

    .how-it-works-trust {
        font-size: 0.9rem;
    }

    .nav-actions {
        gap: 0.5rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 0.625rem 1.25rem;
    }

    .timeline-step {
        padding: 0.25rem 0;
    }

    .timeline-number {
        width: 22px;
        height: 22px;
        font-size: 0.75rem;
    }

    .timeline-label {
        font-size: 0.75rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .objection-row {
        grid-template-columns: 160px 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav {
        padding: 0.75rem 1rem;
    }

    /* Hide brand text on mobile - logo only */
    .nav-brand-text {
        display: none;
    }

    /* Hide Sign In on mobile */
    .nav-actions .btn-outline {
        display: none;
    }

    /* Compact CTA button */
    .nav-actions .btn-primary {
        padding: 0.5rem 0.875rem;
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .hero {
        padding: 7.5rem 0 2rem;
        min-height: auto;
    }

    .hero-title {
        font-size: 1.875rem;
    }

    .hero-actions .btn-large {
        min-height: 48px;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        width: 100%;
    }

    .hero-product-preview {
        max-width: 100%;
    }

    .score-value {
        font-size: 2.5rem;
    }

    .preview-content {
        padding: 16px;
    }

    .preview-score {
        margin-bottom: 16px;
        padding-bottom: 16px;
    }

    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
        width: 100%;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .steps::before {
        display: none;
    }

    .step {
        display: grid;
        grid-template-columns: 50px 1fr;
        grid-template-rows: auto auto;
        text-align: left;
        gap: 0 1rem;
        padding: 1rem;
    }

    .step-number {
        margin: 0;
        grid-row: 1 / 3;
        align-self: center;
    }

    .step h3 {
        margin: 0;
        align-self: end;
    }

    .step-desc {
        grid-column: 2;
        margin-top: 0.25rem;
    }

    .how-it-works-cta {
        font-size: 1rem;
        text-align: left;
    }

    .how-it-works-trust {
        font-size: 0.85rem;
        text-align: left;
    }

    .section {
        padding: 3.5rem 0;
    }

    .system-changed {
        padding: 2rem 0 2rem;
    }

    .system-changed-card {
        padding: 1.25rem;
        border-radius: 12px;
    }

    /* Hide timeline on mobile - content is what matters */
    .system-changed-timeline {
        display: none;
    }

    .system-changed-content {
        text-align: left;
    }

    .system-changed-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.5rem;
    }

    .system-changed-headline {
        font-size: 1.25rem;
    }

    .system-changed-subhead {
        font-size: 0.9rem;
    }

    .system-changed-bullets li {
        font-size: 0.9rem;
        margin-bottom: 0.625rem;
    }

    .system-changed-punchline {
        font-size: 1rem;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .objection-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .objections-headline {
        font-size: 1.5rem;
    }

    .objections-answer {
        font-size: 1rem;
    }

    .objections-subhead {
        font-size: 1rem;
    }

    .value-prop {
        padding: 1rem 0;
        padding-left: 1.25rem;
    }

    .value-prop::before {
        top: 1.3rem;
    }

    .value-prop strong {
        font-size: 1rem;
    }

    .value-prop span {
        font-size: 0.95rem;
    }

    .testimonials-title {
        text-align: center;
        font-size: 1.75rem;
    }

    .testimonial-featured {
        padding-left: 1.5rem;
        border-left-width: 4px;
        margin-bottom: 3rem;
    }

    .testimonial-featured::before {
        font-size: 4rem;
        top: -1rem;
        left: 1.5rem;
    }

    .testimonial-featured blockquote {
        font-size: 1.25rem;
    }

    .testimonials-secondary {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .testimonial-small {
        text-align: left;
        padding: 1.25rem 0;
        border-top: 1px solid #e2e8f0;
    }

    .testimonial-small:first-child {
        border-top: none;
        padding-top: 0;
    }

    /* Logo bar mobile */
    .logo-bar {
        padding: 2.5rem 0;
    }

    .logo-bar-text {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .logo-img {
        height: 32px;
    }

    .logo-scroll {
        gap: 3rem;
    }

    /* FAQ mobile */
    .faq-title {
        font-size: 1.75rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.25rem 0;
    }

    .faq-answer {
        font-size: 0.95rem;
    }
}

/* ================================================
   REDUCED MOTION (Accessibility)
   ================================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
