/* ============================================================
   Longarm Quilting Business Plan — Landing Page Styles
   Visual guide: LivePlan.com (green, clean, modern sans-serif)
   ============================================================ */

/* --- Design Tokens --- */
:root {
    /* Brand greens */
    --green-600: #16a34a;
    --green-700: #15803d;
    --green-50:  #f0fdf4;
    --green-100: #dcfce7;

    /* Neutrals */
    --gray-50:  #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Accent */
    --white:    #ffffff;
    --warm-bg:  #fffbeb;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing scale */
    --space-xs:  0.5rem;
    --space-sm:  1rem;
    --space-md:  1.5rem;
    --space-lg:  2.5rem;
    --space-xl:  4rem;
    --space-2xl: 6rem;

    /* Sizing */
    --container: 1140px;
    --radius:    8px;
    --radius-lg: 12px;
}

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

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

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
}

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

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

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

/* --- Utility --- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-2xl) 0;
}

.section--gray {
    background: var(--gray-50);
}

.section--green-light {
    background: var(--green-50);
}

.section--warm {
    background: var(--warm-bg);
}

.section--dark {
    background: var(--gray-900);
    color: var(--gray-100);
}

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

.text-muted {
    color: var(--gray-500);
}

.text-green {
    color: var(--green-600);
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    letter-spacing: -0.01em;
    margin-bottom: var(--space-sm);
}

h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
}

p {
    margin-bottom: var(--space-sm);
}

.subheadline {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--gray-600);
    line-height: 1.5;
    max-width: 640px;
}

.section-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green-600);
    margin-bottom: var(--space-xs);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    text-decoration: none;
    gap: 0.5rem;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

.btn--primary {
    background: var(--green-600);
    color: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.btn--primary:hover {
    background: var(--green-700);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

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

.btn--outline:hover {
    background: var(--green-50);
    color: var(--green-700);
}

.btn--large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: var(--radius-lg);
}

/* --- Header / Nav --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--gray-200);
    padding: var(--space-xs) 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-900);
}

.logo span {
    color: var(--green-600);
}

/* --- Hero --- */
.hero {
    padding: calc(var(--space-2xl) + 60px) 0 var(--space-2xl);
    background: linear-gradient(170deg, var(--white) 60%, var(--green-50) 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.hero__ctas {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.hero__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.hero__image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero__stats {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-sm);
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-600);
}

.hero__stat-label {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* --- Problem / Agitation --- */
.problem .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.problem__questions {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.problem__questions li {
    padding: var(--space-sm) var(--space-md);
    background: var(--gray-50);
    border-radius: var(--radius);
    border-left: 3px solid var(--green-600);
    font-size: 1.05rem;
    color: var(--gray-700);
}

.problem__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.problem__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Authority / Credibility --- */
/* --- Locked Interactive Plan Preview --- */
.preview__header {
    margin-bottom: var(--space-lg);
}

.preview__widget {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

/* Two-column layout */
.preview__body {
    display: grid;
    grid-template-columns: 280px 1fr;
}

/* Controls panel (left) */
.preview__controls {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    background: var(--gray-50);
    border-right: 1px solid var(--gray-200);
    overflow-y: auto;
    max-height: 900px;
}

.preview__controls-header {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    padding-bottom: var(--space-xs);
    border-bottom: 1px solid var(--gray-200);
}

.preview__control-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.preview__label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.preview__value {
    font-weight: 700;
    color: var(--green-600);
}

.preview__select {
    width: 100%;
    padding: 0.5rem 0.6rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--gray-800);
    background: var(--white);
    cursor: pointer;
}

.preview__select:focus {
    outline: none;
    border-color: var(--green-600);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}

/* Radio card machine selector */
.preview__radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.preview__radio-card {
    cursor: pointer;
    display: block;
}

.preview__radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.preview__radio-inner {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    padding: 0.5rem 0.65rem;
    border-radius: var(--radius);
    border: 2px solid var(--gray-200);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.preview__radio-card:hover .preview__radio-inner {
    border-color: var(--green-600);
    background: var(--green-50);
}

.preview__radio-card input:checked + .preview__radio-inner {
    border-color: var(--green-600);
    background: var(--green-50);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
}

.preview__radio-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-900);
}

.preview__radio-price {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--green-600);
}

.preview__radio-type {
    font-size: 0.7rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Unlock CTA inline with controls */
.preview__unlock-btn {
    margin-top: 0.35rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
    width: 100%;
    text-align: center;
}

/* Glow animation on unlocked interactive controls */
.preview__control-group--interactive {
    animation: preview-glow 3s ease-in-out infinite;
    border-radius: var(--radius);
    padding: 0.35rem;
    margin: -0.35rem;
}

@keyframes preview-glow {
    0%, 100% {
        box-shadow: none;
    }
    50% {
        box-shadow: 0 0 12px rgba(22, 163, 74, 0.3), 0 0 4px rgba(22, 163, 74, 0.15);
    }
}

/* Slider thumb pulse on interactive controls */
.preview__control-group--interactive .preview__slider::-webkit-slider-thumb {
    animation: thumb-pulse 2s ease-in-out infinite;
}

@keyframes thumb-pulse {
    0%, 100% {
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(22, 163, 74, 0.2), 0 1px 4px rgba(0, 0, 0, 0.2);
    }
}

.preview__slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--gray-200);
    outline: none;
    cursor: pointer;
}

.preview__slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--green-600);
    border: 2px solid var(--white);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    cursor: grab;
    transition: transform 0.15s, box-shadow 0.15s;
}

.preview__slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 2px 8px rgba(22, 163, 74, 0.35);
}

.preview__slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--green-600);
    border: 2px solid var(--white);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    cursor: grab;
}

.preview__range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* Locked divider */
.preview__locked-divider {
    padding: 0.4rem 0;
    margin: 0.25rem 0;
    border-top: 1px dashed var(--gray-300);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray-400);
    text-align: center;
}

/* Lock icon in controls */
.preview__lock-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: var(--gray-400);
}

/* Locked control group */
.preview__control-group--locked {
    opacity: 0.5;
    pointer-events: none;
    position: relative;
}

.preview__control-group--locked .preview__value {
    color: var(--gray-500);
}

.preview__control-group--locked .preview__slider::-webkit-slider-thumb {
    background: var(--gray-400);
    cursor: not-allowed;
}

.preview__control-group--locked .preview__slider::-moz-range-thumb {
    background: var(--gray-400);
    cursor: not-allowed;
}

.preview__control-group--locked .preview__select {
    cursor: not-allowed;
    color: var(--gray-500);
}

/* Revenue mix locked items */
.preview__mix-items {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-top: 0.25rem;
}

.preview__mix-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--gray-500);
    padding: 0.15rem 0;
}

/* Results panel (right) */
.preview__results {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

/* Stat cards grid */
.preview__stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.preview__stat-card {
    padding: 0.75rem;
    border-radius: var(--radius);
    background: var(--gray-50);
    text-align: center;
    border: 1px solid var(--gray-200);
    position: relative;
}

.preview__stat-card--primary {
    background: var(--green-50);
    border-color: var(--green-100);
}

.preview__stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 0.2rem;
}

.preview__stat-value {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gray-900);
    transition: color 0.3s;
}

.preview__stat-card--primary .preview__stat-value {
    color: var(--green-600);
}

.preview__stat-value.updated {
    color: var(--green-600);
}

/* Locked stat cards */
.preview__stat-card--locked {
    overflow: hidden;
}

.preview__stat-value--blurred {
    filter: blur(5px);
    user-select: none;
}

.preview__lock-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    color: var(--gray-400);
    z-index: 2;
}

/* Chart cards */
.preview__chart-card {
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    background: var(--white);
    overflow: hidden;
    position: relative;
}

.preview__chart-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    padding: 0.75rem 1rem 0;
    margin-bottom: 0;
}

.preview__chart-wrap {
    height: 220px;
    padding: 0.5rem 1rem 0.75rem;
}

/* Blurred chart cards */
.preview__chart-card--blurred {
    position: relative;
    min-height: 120px;
}

.preview__blur-content {
    filter: blur(6px);
    opacity: 0.5;
    padding: 1rem;
    pointer-events: none;
}

.preview__fake-chart {
    height: 90px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--green-50), var(--gray-100), var(--green-50));
}

.preview__fake-chart--bars {
    background: repeating-linear-gradient(
        90deg,
        var(--green-100) 0px,
        var(--green-100) 30px,
        transparent 30px,
        transparent 40px
    );
}

.preview__fake-chart--line {
    background: linear-gradient(170deg, var(--gray-100) 30%, var(--green-100) 70%, var(--gray-100));
}

.preview__fake-chart--pie {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto;
    background: conic-gradient(
        var(--green-100) 0deg 230deg,
        var(--gray-200) 230deg 300deg,
        var(--green-50) 300deg 360deg
    );
}

.preview__blur-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.3);
    z-index: 2;
}

.preview__blur-lock {
    width: 24px;
    height: 24px;
    color: var(--gray-500);
}

.preview__blur-overlay span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}

.preview__blur-cta {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--green-600);
    padding: 0.3rem 0.75rem;
    border: 1px solid var(--green-600);
    border-radius: 20px;
    transition: background 0.2s;
}

.preview__blur-cta:hover {
    background: var(--green-50);
    color: var(--green-700);
}

/* Tables teaser card */
.preview__tables-teaser {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    background: var(--gray-50);
    border: 1px dashed var(--gray-300);
    color: var(--gray-500);
}

.preview__tables-teaser strong {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.preview__tables-teaser span {
    font-size: 0.8rem;
}

/* Personalization callout */
.preview__personalization {
    padding: var(--space-sm) var(--space-md);
    background: var(--green-50);
    border-top: 1px solid var(--green-100);
    font-size: 0.85rem;
    color: var(--gray-600);
    text-align: center;
    font-style: italic;
}

/* CTA below preview */
.preview__cta {
    padding: var(--space-md) var(--space-lg) var(--space-lg);
    text-align: center;
    border-top: 1px solid var(--gray-200);
    background: var(--white);
}

.preview__cta-text {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin-bottom: var(--space-sm);
}

/* Responsive: mobile stacking */
@media (max-width: 767px) {
    .preview__body {
        grid-template-columns: 1fr;
    }

    .preview__controls {
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
        max-height: none;
    }

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

    .preview__chart-wrap {
        height: 180px;
    }

    .preview__results {
        padding: var(--space-sm);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .preview__body {
        grid-template-columns: 240px 1fr;
    }

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

/* --- Testimonials Grid --- */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.testimonial-card__stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-card__quote {
    font-style: italic;
    color: var(--gray-600);
    line-height: 1.6;
    flex: 1;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.testimonial-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--green-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--green-700);
}

.testimonial-card__name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-800);
}

.testimonial-card__role {
    font-size: 0.8rem;
    color: var(--gray-500);
}

/* --- Social Proof Carousel --- */
.carousel {
    overflow: hidden;
    position: relative;
}

.carousel__track {
    display: flex;
    gap: var(--space-md);
    animation: scroll-left 30s linear infinite;
}

.carousel__item {
    flex: 0 0 320px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    border: 1px solid var(--gray-200);
}

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

/* --- Personal Note --- */
.personal-note .container {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-xl);
    align-items: center;
    max-width: 900px;
}

.personal-note__photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--green-100);
}

.personal-note__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.personal-note__text {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.personal-note__signature {
    font-weight: 700;
    color: var(--gray-800);
    margin-top: var(--space-sm);
}

/* --- Pricing --- */
.pricing__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    max-width: 820px;
    margin: var(--space-lg) auto 0;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    border: 2px solid var(--gray-200);
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
    position: relative;
}

.pricing-card:hover {
    border-color: var(--green-600);
    box-shadow: 0 4px 24px rgba(22, 163, 74, 0.12);
}

.pricing-card--featured {
    border-color: var(--green-600);
    box-shadow: 0 4px 24px rgba(22, 163, 74, 0.12);
}

.pricing-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green-600);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card__title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: var(--space-xs);
}

.pricing-card__price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-xs);
}

.pricing-card__price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-500);
}

.pricing-card__desc {
    color: var(--gray-500);
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
}

.pricing-card__features {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: var(--space-md);
}

.pricing-card__features li {
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.pricing-card__features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green-600);
    font-weight: 700;
}

/* --- FAQ --- */
.faq__list {
    max-width: 740px;
    margin: var(--space-lg) auto 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.faq__item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq__question {
    width: 100%;
    background: var(--white);
    border: none;
    padding: var(--space-sm) var(--space-md);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq__question:hover {
    background: var(--gray-50);
}

.faq__question::after {
    content: "+";
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--gray-400);
    transition: transform 0.2s;
}

.faq__item.active .faq__question::after {
    content: "−";
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq__answer-inner {
    padding: 0 var(--space-md) var(--space-sm);
    color: var(--gray-600);
    line-height: 1.6;
}

.faq__item.active .faq__answer {
    max-height: 300px;
}

/* --- Final CTA --- */
.final-cta {
    text-align: center;
}

.final-cta h2 {
    margin-bottom: var(--space-sm);
}

.final-cta p {
    max-width: 600px;
    margin: 0 auto var(--space-md);
    color: var(--gray-400);
    font-size: 1.1rem;
}

.final-cta .btn {
    margin: 0 var(--space-xs);
}

/* --- Footer --- */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: var(--space-lg) 0;
    font-size: 0.85rem;
    text-align: center;
}

.footer a {
    color: var(--gray-300);
}

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

/* --- Responsive --- */
@media (max-width: 767px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__image {
        order: -1;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__content {
        align-items: center;
    }

    .hero__ctas {
        justify-content: center;
    }

    .subheadline {
        margin: 0 auto;
    }

    .problem .container {
        grid-template-columns: 1fr;
    }

    .problem__image {
        order: -1;
    }

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

    .pricing__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .personal-note .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .personal-note__photo {
        margin: 0 auto;
    }

    .carousel__item {
        flex: 0 0 280px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Modal ────────────────────────────────────────────── */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.modal-overlay.active {
    display: flex;
}
.modal {
    background: var(--white);
    border-radius: 16px;
    max-width: 640px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}
.modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: var(--gray-400);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
}
.modal__close:hover {
    background: var(--gray-100);
    color: var(--gray-700);
}
.modal__title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    padding-right: 2rem;
}
.modal__subtitle {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

@media (max-width: 767px) {
    .modal {
        padding: 1.5rem;
        border-radius: 12px;
    }
    .modal__title {
        font-size: 1.25rem;
    }
}
