/* ============ RESET & VARIABLES ============ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* ClaimLinx Brand Colors */
    --green-900: #0a2e12;
    --green-800: #123d1c;
    --green-700: #1a5c2a;
    --green-600: #1f7a35;
    --green-500: #27924a;
    --green-400: #3aad5c;
    --green-300: #5ec47a;
    --green-200: #94d8a6;
    --green-100: #d1f0d9;
    --green-50:  #edf8f0;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f8faf9;
    --gray-100: #f0f3f1;
    --gray-200: #e2e6e3;
    --gray-300: #c4cac6;
    --gray-400: #8f9a92;
    --gray-500: #6b7a6f;
    --gray-600: #4a5a4e;
    --gray-700: #344038;
    --gray-800: #1e2b22;
    --gray-900: #111a14;

    /* Functional */
    --accent: #f5a623;
    --danger: #e74c3c;
    --success: #27ae60;

    /* Spacing */
    --section-pad: clamp(60px, 8vw, 120px);
    --container-max: 1140px;

    /* Typography */
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
}

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

a:hover {
    color: var(--green-400);
}

img {
    max-width: 100%;
    height: auto;
}

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

.hidden { display: none !important; }

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: var(--green-600);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(31, 122, 53, 0.25), 0 1px 2px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background: var(--green-500);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(31, 122, 53, 0.35), 0 2px 4px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--green-600);
    border: 2px solid var(--green-600);
}

.btn-outline:hover {
    background: var(--green-600);
    color: var(--white);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-500);
    border: 1px solid var(--gray-200);
}

.btn-ghost:hover {
    border-color: var(--gray-400);
    color: var(--gray-700);
}

.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 16px 36px; font-size: 17px; }
.btn-full { width: 100%; }

.btn-arrow {
    transition: transform 0.2s;
}

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

/* ============ SECTION STYLES ============ */
.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green-600);
    margin-bottom: 16px;
}

.section-headline {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 600;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-sub {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 640px;
    line-height: 1.6;
}

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 46, 18, 0.95);
    backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

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

.logo-img {
    height: 40px;
    width: auto;
}

.nav-cta {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.navbar.scrolled .nav-cta {
    opacity: 1;
    pointer-events: auto;
}

/* ============ HERO ============ */
.hero {
    background: linear-gradient(170deg, var(--green-900) 0%, var(--green-800) 40%, var(--green-700) 100%);
    padding: calc(var(--section-pad) + 80px) 0 var(--section-pad);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(90, 196, 122, 0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(39, 146, 74, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero > .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--green-300);
    background: rgba(94, 196, 122, 0.1);
    border: 1px solid rgba(94, 196, 122, 0.2);
    padding: 8px 20px;
    border-radius: 100px;
    margin-bottom: 32px;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.025em;
}

.hero-headline .highlight {
    color: var(--green-300);
}

.hero-sub {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--green-200);
    max-width: 640px;
    margin: 0 auto 40px;
    line-height: 1.65;
}

.hero-micro {
    font-size: 14px;
    color: var(--green-400);
    margin-top: 16px;
}

/* ============ TRUST BAR ============ */
.trust-bar {
    background: var(--green-800);
    padding: 32px 0;
    border-bottom: 1px solid rgba(94, 196, 122, 0.15);
}

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

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

.trust-number {
    display: block;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.trust-label {
    font-size: 13px;
    color: var(--green-300);
    margin-top: 4px;
    display: block;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(94, 196, 122, 0.2);
}

/* ============ PROBLEM SECTION ============ */
.problem {
    padding: var(--section-pad) 0;
    background: var(--white);
}

.problem .section-headline {
    max-width: 700px;
}

.problem-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    margin-top: 40px;
    align-items: start;
}

.problem-text p {
    font-size: 17px;
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.7;
}

.problem-text strong {
    color: var(--gray-800);
}

.problem-text em {
    color: var(--green-600);
    font-style: italic;
}

.problem-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-radius: 12px;
    padding: 28px;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--green-700);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ============ CTA BREAK ============ */
.cta-break {
    background: var(--green-50);
    padding: 48px 0;
    text-align: center;
    border-top: 1px solid var(--green-100);
    border-bottom: 1px solid var(--green-100);
}

.cta-break-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 20px;
}

.mini-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.mini-trust span {
    font-size: 13px;
    color: var(--green-700);
    font-weight: 500;
}

/* ============ VIDEO SECTION ============ */
.video-section {
    padding: var(--section-pad) 0;
    background: var(--gray-50);
    text-align: center;
}

.video-section .section-sub {
    margin: 0 auto 40px;
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.08);
    border: 3px solid var(--green-700);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-footnote {
    margin-top: 24px;
    font-size: 15px;
    color: var(--gray-400);
}

.video-footnote a {
    color: var(--green-600);
    font-weight: 600;
}

/* ============ HOW IT WORKS ============ */
.how-it-works {
    padding: var(--section-pad) 0;
    background: var(--white);
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
    text-align: left;
}

.step-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 36px 28px;
    position: relative;
    transition: all 0.3s;
}

.step-card:hover {
    border-color: var(--green-300);
    box-shadow: 0 8px 32px rgba(31, 122, 53, 0.08);
    transform: translateY(-4px);
}

.step-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--green-100);
    line-height: 1;
    margin-bottom: 16px;
}

.step-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.step-desc {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.65;
    margin-bottom: 20px;
}

.step-deliverable {
    font-size: 14px;
    color: var(--green-700);
    background: var(--green-50);
    padding: 10px 16px;
    border-radius: 8px;
    border-left: 3px solid var(--green-500);
}

.step-deliverable .deliverable-label {
    font-weight: 700;
}

.steps-cta {
    margin-top: 48px;
}

/* ============ BENEFITS ============ */
.benefits {
    padding: var(--section-pad) 0;
    background: var(--green-900);
    text-align: center;
}

.benefits .section-label { color: var(--green-400); }
.benefits .section-headline { color: var(--white); }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
    text-align: left;
}

.benefit-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(94, 196, 122, 0.12);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
}

.benefit-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(94, 196, 122, 0.25);
}

.benefit-icon {
    color: var(--green-400);
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 15px;
    color: var(--green-200);
    line-height: 1.65;
}

/* ============ SAVINGS PROOF ============ */
.savings-proof {
    padding: var(--section-pad) 0;
    background: var(--white);
    text-align: center;
}

.savings-proof .section-sub {
    margin: 0 auto 48px;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.proof-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s;
}

.proof-card:hover {
    border-color: var(--green-400);
    box-shadow: 0 8px 32px rgba(31, 122, 53, 0.1);
    transform: translateY(-4px);
}

.proof-industry {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green-700);
    margin-bottom: 4px;
}

.proof-members {
    font-size: 13px;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.proof-savings {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--green-600);
    line-height: 1;
}

.proof-label {
    font-size: 12px;
    color: var(--gray-400);
    margin: 8px 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.proof-percent {
    font-size: 14px;
    font-weight: 600;
    color: var(--green-700);
    background: var(--green-50);
    padding: 6px 12px;
    border-radius: 100px;
    display: inline-block;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
    padding: var(--section-pad) 0;
    background: var(--gray-50);
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    text-align: left;
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.testimonial-stars {
    color: var(--accent);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green-600);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    font-size: 15px;
    color: var(--gray-800);
}

.author-info span {
    font-size: 13px;
    color: var(--gray-400);
}

/* ============ LEAD FORM ============ */
.lead-form-section {
    padding: var(--section-pad) 0;
    background: linear-gradient(170deg, var(--green-900) 0%, var(--green-800) 100%);
}

.form-wrapper {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}

.form-wrapper .section-label { color: var(--green-400); }
.form-wrapper .section-headline { color: var(--white); }
.form-wrapper .section-sub { color: var(--green-200); margin: 0 auto 40px; }

.form-header {
    margin-bottom: 40px;
}

/* Form Steps */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: stepFadeIn 0.35s ease-out;
}

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

.step-indicator {
    font-size: 13px;
    font-weight: 600;
    color: var(--green-400);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.form-question {
    display: block;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 28px;
    line-height: 1.3;
}

/* Radio Options */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-option {
    display: block;
    cursor: pointer;
}

.radio-option input {
    display: none;
}

.radio-label {
    display: block;
    padding: 16px 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(94, 196, 122, 0.15);
    border-radius: 10px;
    color: var(--green-100);
    font-size: 16px;
    font-weight: 500;
    transition: all 0.2s;
    text-align: left;
}

.radio-option:hover .radio-label {
    background: rgba(255,255,255,0.1);
    border-color: rgba(94, 196, 122, 0.3);
}

.radio-option input:checked + .radio-label {
    background: rgba(94, 196, 122, 0.15);
    border-color: var(--green-400);
    color: var(--white);
    box-shadow: 0 0 0 1px var(--green-400);
}

/* Text Inputs */
.input-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.form-input {
    padding: 16px 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(94, 196, 122, 0.15);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    transition: all 0.2s;
    width: 100%;
}

.form-input::placeholder {
    color: var(--green-300);
    opacity: 0.5;
}

.form-input:focus {
    outline: none;
    border-color: var(--green-400);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 0 3px rgba(94, 196, 122, 0.15);
}

.form-disclaimer {
    font-size: 13px;
    color: var(--green-300);
    opacity: 0.7;
    margin-top: 16px;
    line-height: 1.5;
}

/* Form Navigation */
.form-nav {
    display: flex;
    gap: 12px;
    margin-top: 28px;
    justify-content: center;
}

/* Progress Bar */
.progress-bar-wrapper {
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 100px;
    margin-top: 32px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--green-400);
    border-radius: 100px;
    width: 20%;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Disqualified */
.disqualified-content {
    padding: 40px 20px;
    text-align: center;
}

.disqualified-icon {
    font-size: 48px;
    color: var(--green-300);
    margin-bottom: 16px;
}

.disqualified-content h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--white);
    margin-bottom: 12px;
}

.disqualified-content p {
    color: var(--green-200);
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* ============ FAQ ============ */
.faq {
    padding: var(--section-pad) 0;
    background: var(--white);
    text-align: center;
}

.faq-list {
    max-width: 720px;
    margin: 48px auto 0;
    text-align: left;
}

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

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

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

.faq-toggle {
    font-size: 24px;
    font-weight: 300;
    color: var(--green-600);
    transition: transform 0.3s;
    flex-shrink: 0;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s;
}

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

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

/* ============ FINAL CTA ============ */
.final-cta {
    padding: var(--section-pad) 0;
    background: var(--green-50);
    text-align: center;
}

.final-headline {
    font-family: var(--font-display);
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 600;
    color: var(--gray-900);
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.final-sub {
    font-size: 18px;
    color: var(--gray-500);
    margin-bottom: 32px;
}

.final-micro {
    font-size: 14px;
    color: var(--gray-400);
    margin-top: 16px;
}

/* ============ FOOTER ============ */
.footer {
    background: var(--green-900);
    padding: 48px 0;
}

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

.logo-img-sm {
    height: 32px;
    width: auto;
    margin-bottom: 20px;
    opacity: 0.6;
}

.footer-text {
    font-size: 14px;
    color: var(--green-300);
    opacity: 0.6;
    margin-bottom: 16px;
}

.footer-disclaimer {
    font-size: 12px;
    color: var(--green-300);
    opacity: 0.35;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
    .problem-content {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

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

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

    .trust-divider {
        display: none;
    }

    .trust-items {
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .hero-headline {
        font-size: 28px;
    }

    .hero-headline br {
        display: none;
    }

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

    .section-headline {
        font-size: 26px;
    }

    .trust-items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .trust-divider { display: none; }

    .mini-trust {
        flex-direction: column;
        gap: 8px;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 15px;
    }

    .form-question {
        font-size: 19px;
    }
}
