/* Back Pain — DLP styles */

/* ══════════════════════════════════════════════════════
   OOm DLP — FORM STYLES
   Paste at the bottom of your site's CSS file
   Uses --brand-primary for button/focus colour.
   Override this variable to match the site's brand.
══════════════════════════════════════════════════════ */

/* If site has no --brand-primary, set a default */



#cta-form-wrap .oom-field {
    text-align: left !important;
}

p.oom-recaptcha-notice {
    font-size: 10px !important;
}

:root {
    --oom-primary: var(--brand-primary, #119447);
}

/* ── Form card wrapper ───────────────────────────────────────────────────── */
.oom-form-card {
    background: #fff;
    border-radius: 14px;
    padding: 36px 32px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.1);
}

#hero-form-wrap .oom-field {
    text-align: left;
}

#hero-form-wrap .oom-field label {
    display: block;
    width: 100%;
    text-align: left !important;
    margin-bottom: 8px;
}

.oom-form-heading {
    font-size: 22px;
    font-weight: 800;
    color: var(--oom-primary);
    margin-bottom: 6px;
    line-height: 1.2;
}

.oom-form-sub {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.5;
}

/* ── Field ───────────────────────────────────────────────────────────────── */
.oom-field {
    margin-bottom: 14px;
}

.oom-field label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #374151;
    margin-bottom: 5px;
    letter-spacing: 0.3px;
}

.oom-field input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    color: #374151;
    background: #f9fafb;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    box-sizing: border-box;
}

.oom-field input:focus {
    border-color: var(--oom-primary);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--oom-primary) 15%, transparent);
    background: #fff;
}

.oom-field input::placeholder {
    color: #9ca3af;
}
.urgency-inner h2 span {
    color: #2f9447 !important;
}

.final-cta-heading span {
    color: #119447 !important;
}

@media (max-width: 767px) {
    .final-cta-heading {
        font-size: 20px !important;
        line-height: 1.3;
    }
	
}

.stat-item .stat-num,
.stat-item .stat-label {
    color: #2f9447;
}
/* ── Validation error ────────────────────────────────────────────────────── */
.oom-field input.oom-input-error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
    animation: oom-shake 0.3s ease;
}

.oom-error-msg {
    color: #ef4444;
    font-size: 12px;
    font-weight: 600;
    margin-top: 5px;
    line-height: 1.4;
}

@keyframes oom-shake {
    0%, 100% { transform: translateX(0); }
    20%       { transform: translateX(-4px); }
    40%       { transform: translateX(4px); }
    60%       { transform: translateX(-3px); }
    80%       { transform: translateX(3px); }
}

/* ── reCAPTCHA notice ────────────────────────────────────────────────────── */
.oom-recaptcha-notice {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 8px;
    margin-bottom: 12px;
    text-align: center;
}

.oom-recaptcha-notice a {
    color: inherit;
    text-decoration: underline;
}

/* ── Submit button ───────────────────────────────────────────────────────── */
.oom-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 28px;
    background: var(--oom-primary);
    color: #fff;
    font-family: inherit;
    font-weight: 700;
    font-size: 15px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 52px;
    box-sizing: border-box;
}

.oom-btn:hover {
    filter: brightness(0.88);
    transform: translateY(-1px);
}

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

.oom-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* ── Privacy line ────────────────────────────────────────────────────────── */
.oom-privacy {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 12px;
    color: #9ca3af;
    justify-content: center;
}

/* ── Success state ───────────────────────────────────────────────────────── */
.oom-success {
    text-align: center;
    padding: 32px 16px;
}

.oom-success-icon {
    width: 56px;
    height: 56px;
    background: color-mix(in srgb, var(--oom-primary) 12%, #fff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--oom-primary);
}

.oom-success-title {
    font-weight: 800;
    font-size: 18px;
    color: #111827;
    margin-bottom: 8px;
}

.oom-success-msg {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
    .oom-form-card {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .oom-form-heading {
        font-size: 19px;
    }

    .oom-btn {
        font-size: 16px;
        padding: 16px;
    }
}
/* ══════════════════════════════════
   CSS VARIABLES & RESET
══════════════════════════════════ */
:root {
    --brand-primary: #119447;

    /* Green scale */
    --green-900: #0b5d2c;
    --green-700: #0f7a3a;
    --green-500: #119447;
    --green-300: #5fd08a;
    --green-100: #e6f6ed;

    --brand-secondary: #0f7a3a;
    --brand-accent: #5fd08a;

    --brand-text: #0f172a;
    --brand-bg: #ffffff;
    --body-font: 'Nunito', sans-serif;
    --heading-font: 'Plus Jakarta Sans', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 17px;
    line-height: 1.7;
    color: #374151;
    background: var(--brand-bg);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--heading-font);
    color: var(--brand-text);
    line-height: 1.4;
    margin-bottom: 30px;
}

/* ══════════════════════════════════
   BACK TO TOP BUTTON
══════════════════════════════════ */
#backToTop {
    position: fixed !important;
    bottom: 100px !important;
    z-index: 10 !important;
    right: 24px !important;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--brand-primary);
    color: white;
    border: none;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

h1.is-visible {
    line-height: 1.1;
    font-weight: 900;
}

#backToTop:hover {
    transform: translateY(-3px);
    background: var(--green-700);
}

/* ── Show ONLY on iPad range (767px–1025px) ── */
.hide-on-rest {
    display: none;
}

@media (max-width: 1025px) and (min-width: 767px) {
    .hide-on-rest {
        display: block;
        order: -1;
    }
}

/* ── Hide ONLY on iPad range (767px–1025px) ── */
.hide-1024-768 {
    display: block;
}

@media (max-width: 1025px) and (min-width: 767px) {
    .hide-1024-768 {
        display: none;
    }
}

/* ══════════════════════════════════
   NAV LOGO
══════════════════════════════════ */
.nav-logo img {
    height: 50px;
    width: auto;
    display: block;
}

/* ══════════════════════════════════
   IMAGE PLACEHOLDERS
══════════════════════════════════ */
.img-placeholder {
    background: linear-gradient(135deg, color-mix(in srgb, var(--brand-primary) 4%, #fafafa), color-mix(in srgb, var(--brand-primary) 8%, #f5f5f5));
    border: 2px dashed color-mix(in srgb, var(--brand-primary) 30%, #d1d5db);
    border-radius: 12px;
    padding: 40px 24px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.img-placeholder.hero-size {
    min-height: 340px;
}

.placeholder-inner {
    max-width: 420px;
}

.placeholder-label {
    display: inline-block;
    background: var(--brand-primary);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.placeholder-prompt {
    color: color-mix(in srgb, var(--brand-primary) 70%, #666);
    font-size: 13px;
    line-height: 1.5;
    font-style: italic;
    margin: 0;
}

/* ══════════════════════════════════
   FADE IN ANIMATION
══════════════════════════════════ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* ══════════════════════════════════
   SECTION LABEL PILL
══════════════════════════════════ */
.section-label {
    display: inline-block;
    background: color-mix(in srgb, var(--brand-primary) 10%, transparent);
    color: var(--brand-primary);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-family: var(--heading-font);
}

.accent-line {
    width: 40px;
    height: 3px;
    background: var(--brand-primary);
    border-radius: 2px;
    margin-bottom: 12px;
}

/* ══════════════════════════════════
   NAV
══════════════════════════════════ */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 64px;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    transition: box-shadow 0.2s ease;
    backdrop-filter: blur(8px);
}

#main-nav.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.09);
}

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

.nav-logo {
    font-family: var(--heading-font);
    font-weight: 800;
    font-size: 18px;
    color: var(--brand-text);
    text-decoration: none;
    letter-spacing: -0.3px;
}

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

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border: 2px solid var(--brand-primary);
    border-radius: 8px;
    color: var(--brand-primary);
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    background: transparent;
}

.nav-cta:hover {
    background: var(--brand-primary);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px color-mix(in srgb, var(--brand-primary) 30%, transparent);
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
#hero {
    padding-top: 64px;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at top left, color-mix(in srgb, var(--brand-primary) 7%, #fff) 0%, #fff 60%);
    position: relative;
    overflow: hidden;
}

.hero-deco-ring {
    position: absolute;
    top: 80px;
    right: -60px;
    width: 320px;
    height: 320px;
    pointer-events: none;
    opacity: 0.12;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 60px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.hero-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #6b7280;
    font-family: var(--heading-font);
    font-weight: 600;
}

.hero-stars {
    color: #f59e0b;
    letter-spacing: 1px;
}

.hero-left h1 {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 800;
    line-height: 1.08;
    color: var(--brand-text);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-left h1 span {
    color: var(--brand-primary);
}

.hero-sub {
    font-size: 17px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 0px;
    max-width: 560px;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 24px;
}

.hero-proof-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6b7280;
    font-weight: 600;
    font-family: var(--heading-font);
}

.hero-proof-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #d1d5db;
    flex-shrink: 0;
}

/* Hero form card */
.hero-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
}

.form-card-heading {
    font-family: var(--heading-font);
    font-weight: 800;
    font-size: 22px;
    color: var(--brand-text);
    margin-bottom: 6px;
    line-height: 1.2;
}

.form-card-sub {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
    font-weight: 500;
}

.form-field {
    margin-bottom: 14px;
}

.form-field label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-text);
    margin-bottom: 5px;
    font-family: var(--heading-font);
    letter-spacing: 0.3px;
}

.form-field input {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--body-font);
    color: var(--brand-text);
    background: #fafbfc;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-field input:focus {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand-primary) 12%, transparent);
    background: #fff;
}

.form-field input::placeholder {
    color: #aab4be;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 28px;
    background: var(--brand-primary);
    color: white;
    font-family: var(--heading-font);
    font-weight: 800;
    font-size: 15px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 52px;
    letter-spacing: 0.2px;
    text-decoration: none;
}

.btn-primary:hover {
    background: color-mix(in srgb, var(--brand-primary) 85%, #000);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--brand-primary) 35%, transparent);
}

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

.form-privacy {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
}

.form-success {
    display: none;
    text-align: center;
    padding: 32px 24px;
}

.form-success.show {
    display: block;
}

.success-icon {
    width: 56px;
    height: 56px;
    background: color-mix(in srgb, var(--brand-primary) 10%, #fff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.success-title {
    font-family: var(--heading-font);
    font-weight: 800;
    font-size: 18px;
    color: var(--brand-text);
    margin-bottom: 8px;
}

.success-msg {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

/* ══════════════════════════════════
   WAVE DIVIDER
══════════════════════════════════ */
.wave-divider {
    display: block;
    width: 100%;
    line-height: 0;
}

/* ══════════════════════════════════
   PROBLEM SECTION
══════════════════════════════════ */
#problem {
    background: linear-gradient(to bottom, #faf8f5 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

#problem::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(0, 0, 0, 0.018) 12px, rgba(0, 0, 0, 0.018) 13px);
    pointer-events: none;
}

.problem-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 24px;
    display: grid;
    grid-template-columns: 55% 42%;
    gap: 60px;
    align-items: center;
    position: relative;
}

.problem-left h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    margin-bottom: 60px;
    padding-bottom: 50px;
    letter-spacing: 0px;
}

.problem-left h2 span {
    color: var(--brand-primary);
}

.pain-point {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 32px;
}

.pain-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--brand-primary) 10%, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.pain-text-bold {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 15px;
    color: var(--brand-text);
    margin-bottom: 8px;
    line-height: 1.4;
}

.pain-text-detail {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.7;
}

.problem-transition {
    margin-top: 32px;
    padding: 20px 24px;
    background: color-mix(in srgb, var(--brand-primary) 6%, #fff);
    border-left: 4px solid var(--brand-primary);
    border-radius: 0 10px 10px 0;
    font-size: 16px;
    color: #1e3a29;
    font-weight: 600;
    font-family: var(--heading-font);
    line-height: 1.5;
}

/* ══════════════════════════════════
   SOLUTION SECTION
══════════════════════════════════ */
.solution-image {
    height: 100% !important;
    object-fit: cover !important;
}

#solution {
    background: #fff;
    position: relative;
    overflow: hidden;
    border-radius: 40px 40px 0 0;
}

#solution::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.022) 1px, transparent 1px), linear-gradient(to right, rgba(0, 0, 0, 0.022) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

#solution::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(ellipse, color-mix(in srgb, var(--brand-primary) 8%, transparent) 0%, transparent 70%);
    pointer-events: none;
}

.solution-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 24px;
    display: grid;
    grid-template-columns: 55% 42%;
    gap: 60px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.solution-right h2 {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.solution-right h2 span {
    color: var(--brand-primary);
}

.solution-right .sol-intro {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 36px;
    font-style: italic;
}

p.sol-intro {
    margin-bottom: 40px;
}

.sol-point {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 32px;
}

.sol-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--brand-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--heading-font);
    font-weight: 800;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

.sol-point-title {
    font-family: var(--heading-font);
    font-weight: 800;
    font-size: 16px;
    color: var(--brand-text);
    margin-bottom: 6px;
}

.sol-point-desc {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.65;
}

/* ══════════════════════════════════
   STEPS SECTION
══════════════════════════════════ */
#steps {
    background: linear-gradient(135deg, color-mix(in srgb, var(--brand-primary) 4%, #fff) 0%, #fff 60%);
    position: relative;
    overflow: hidden;
}

#steps::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.055) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    opacity: 0.6;
}

.steps-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 90px 24px;
    position: relative;
    z-index: 1;
}

.steps-inner .section-label {
    display: inline-block;
    margin-bottom: 12px;
}

.steps-header {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    margin-bottom: 60px;
    max-width: 100%;
    letter-spacing: -0.3px;
}

.steps-header span {
    color: var(--brand-primary);
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    position: relative;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(10% + 0px);
    right: calc(10% + 0px);
    height: 2px;
    background: linear-gradient(to right, var(--brand-primary), color-mix(in srgb, var(--brand-primary) 40%, #e5e7eb));
    z-index: 0;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 8px;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, color-mix(in srgb, var(--brand-primary) 90%, #fff), var(--brand-primary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--heading-font);
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 16px;
    box-shadow: 0 4px 14px color-mix(in srgb, var(--brand-primary) 30%, transparent);
    flex-shrink: 0;
}

.step-title {
    font-family: var(--heading-font);
    font-weight: 800;
    font-size: 13px;
    color: var(--brand-text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.step-desc {
    font-size: 12px;
    color: #4b5563;
    line-height: 1.55;
}

/* ══════════════════════════════════
   BENEFITS SECTION
══════════════════════════════════ */
#benefits {
    background: linear-gradient(to right, color-mix(in srgb, var(--brand-primary) 4%, #fafafa) 0%, #fff 50%, color-mix(in srgb, var(--brand-secondary) 4%, #fafafa) 100%);
    position: relative;
}

.benefits-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 24px;
}

.benefits-header-row {
    display: block;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.benefits-header-row h2 {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    max-width: 100%;
    letter-spacing: -0.3px;
    line-height: 1.4;
    margin: 0px;
}

.benefits-header-row h2 span {
    color: var(--brand-primary);
}

.benefits-header-sub {
    font-size: 15px;
    color: #6b7280;
    max-width: 100%;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.benefit-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    border-top: 3px solid var(--brand-primary);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: default;
}

.benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.benefit-card.featured {
    grid-row: 1 / 3;
    border-radius: 16px;
    padding: 36px 28px;
}

.benefit-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: color-mix(in srgb, var(--brand-primary) 10%, white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.benefit-card.featured .benefit-icon-wrap {
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
}

.benefit-title {
    font-family: var(--heading-font);
    font-weight: 800;
    font-size: 16px;
    color: var(--brand-text);
    margin-bottom: 8px;
}

.benefit-card.featured .benefit-title {
    font-size: 20px;
    margin-bottom: 12px;
}

.benefit-desc {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.65;
}

.benefit-card.featured .benefit-desc {
    font-size: 15px;
}

/* ══════════════════════════════════
   SOCIAL PROOF
══════════════════════════════════ */
.card-description {
    text-align: left;
}

#social-proof {
    background: #f6fffa;
    position: relative;
    overflow: hidden;
}

#social-proof .noise-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.04;
}

.proof-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 90px 24px;
    position: relative;
    z-index: 1;
}

.proof-inner .section-label {
    background: color-mix(in srgb, var(--brand-primary) 20%, transparent);
    color: color-mix(in srgb, var(--brand-primary) 80%, #fff);
}

.proof-inner h2 {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    color: var(--brand-text);
    margin-bottom: 48px;
    letter-spacing: -0.3px;
}

.proof-inner h2 span {
    color: color-mix(in srgb, var(--brand-primary) 70%, #fff);
}

.featured-testimonial {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 40px 40px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    transform: rotate(-0.5deg);
}

.quote-deco {
    position: absolute;
    top: 16px;
    left: 24px;
    font-size: 120px;
    color: var(--brand-primary);
    opacity: 0.12;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.featured-quote-text {
    font-size: 20px;
    color: #374151;
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.featured-quote-author {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 14px;
    color: var(--brand-primary);
}

.featured-quote-condition {
    font-size: 12px;
    color: rgba(27, 27, 27, 0.45);
    margin-top: 3px;
}

.proof-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 48px;
}

.proof-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-left: 3px solid var(--brand-primary);
    border-radius: 12px;
    padding: 24px 24px;
}

.proof-stars {
    color: #f59e0b;
    font-size: 13px;
    margin-bottom: 12px;
}

.proof-card-text {
    font-size: 14px;
    color: #0e0e0e;
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 14px;
}

.proof-card-author {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 13px;
    color: color-mix(in srgb, var(--brand-primary) 70%, #131010);
}

.proof-card-cond {
    font-size: 11px;
    color: rgba(3, 3, 3, 0.4);
    margin-top: 2px;
}

/* Stats row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    padding: 32px 24px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.stat-num {
    font-family: var(--heading-font);
    font-weight: 800;
    font-size: 26px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 8px;
    word-break: break-word;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
    font-weight: 500;
    max-width: 160px;
    margin: 0 auto;
}

/* Stars */
.stars {
    color: orange;
}

/* ══════════════════════════════════
   FAQ SECTION
══════════════════════════════════ */
#faq {
    background: linear-gradient(to top, color-mix(in srgb, var(--brand-primary) 5%, #f9f9f9) 0%, #ffffff 100%);
}

.faq-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 80px 24px;
}

.faq-inner .accent-line {
    margin-bottom: 12px;
}

.faq-inner h2 {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    margin-bottom: 48px;
    letter-spacing: -0.3px;
}

.faq-inner h2 span {
    color: var(--brand-primary);
}

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

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

.faq-question {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 10px;
    cursor: pointer;
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 16px;
    color: var(--brand-text);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    transition: color 0.2s, background 0.2s;
    border-radius: 10px;
    white-space: normal;
}

.faq-question:hover,
.faq-item.open .faq-question {
    background: var(--brand-primary);
    color: #fff;
}

.faq-question:hover .faq-q-accent,
.faq-item.open .faq-question .faq-q-accent {
    background: #fff;
}

.faq-question:hover .faq-chevron,
.faq-item.open .faq-question .faq-chevron {
    color: #fff;
}

.faq-q-accent {
    width: 4px;
    height: 20px;
    background: var(--brand-primary);
    border-radius: 2px;
    flex-shrink: 0;
}

.faq-q-text {
    flex: 1;
    min-width: 0;
    overflow-wrap: break-word;
    word-break: break-word;
}

.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #9ca3af;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: transparent;
    box-sizing: border-box;
    padding-left: 30px;
}

.faq-answer-inner {
    padding-top: 20px;
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ══════════════════════════════════
   URGENCY SECTION
══════════════════════════════════ */
#urgency {
    background: linear-gradient(135deg, var(--green-100) 0%, #fff 60%);
    border-top: 1px solid #119447;
    position: relative;
}

.urgency-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 24px;
    position: relative;
    z-index: 1;
}

.urgency-inner .section-label {
    background: color-mix(in srgb, var(--brand-primary) 12%, transparent);
    color: var(--brand-primary);
}

.urgency-inner h2 {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.urgency-inner h2 span {
    color: var(--brand-accent);
}

.urgency-intro {
    font-size: 17px;
    color: #374151;
    margin-bottom: 36px;
    max-width: 700px;
    line-height: 1.7;
}

.urgency-points {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 36px;
}

.urgency-point {
    padding: 24px;
    background: #fff;
    border-radius: 12px;
    border-left: 4px solid var(--brand-primary);
    border: 1px solid color-mix(in srgb, var(--brand-primary) 20%, #fff);
}

.urgency-point-title {
    font-family: var(--heading-font);
    font-weight: 800;
    font-size: 14px;
    color: var(--brand-primary);
    margin-bottom: 6px;
}

.urgency-point-text {
    font-size: 13px;
    color: #4b5563;
    line-height: 1.6;
}

.urgency-quote {
    background: color-mix(in srgb, var(--brand-primary) 6%, #fff);
    border-left: 4px solid var(--brand-primary);
    border-radius: 0 10px 10px 0;
    padding: 18px 22px;
    font-size: 16px;
    color: var(--green-900);
    font-weight: 600;
    font-family: var(--heading-font);
    font-style: italic;
    line-height: 1.5;
}

/* ══════════════════════════════════
   FINAL CTA
══════════════════════════════════ */
#final-cta {
    background: #ffffff;
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}

#final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.06) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.4;
    pointer-events: none;
}

.final-cta-card {
    max-width: 680px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 48px 40px;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.final-cta-badge {
    display: inline-block;
    background: color-mix(in srgb, var(--brand-primary) 20%, transparent);
    color: color-mix(in srgb, var(--brand-primary) 80%, #fff);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: var(--heading-font);
}

.final-cta-heading {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    color: var(--brand-text);
    margin-bottom: 14px;
    letter-spacing: -0.3px;
    line-height: 1.15;
}

.final-cta-heading span {
    color: color-mix(in srgb, var(--brand-primary) 70%, #fff);
}

.final-cta-sub {
    font-size: 15px;
    color: #4b5563;
    margin-bottom: 32px;
    line-height: 1.7;
}

.final-form .form-field label {
    color: var(--brand-text);
}

.final-form .form-field input {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    color: var(--brand-text) !important;
}

.final-form .form-field input:focus {
    border-color: var(--brand-primary);
    background: rgba(255, 255, 255, 0.1);
}

.final-form .form-field input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.risk-reversal {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
    padding: 16px;
    background: #f9fafb;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    text-align: left;
}

.risk-reversal-text {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.55;
}

.risk-reversal svg {
    color: var(--brand-primary);
}

.final-cta-details {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.final-detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #6b7280;
    font-weight: 600;
    font-family: var(--heading-font);
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer {
    border-top: 1px solid #e5e7eb;
    padding: 28px 24px;
    text-align: center;
    background: #fff;
}

footer p {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.6;
}

footer a {
    color: var(--brand-primary);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* ══════════════════════════════════
   SERVICE CARDS
══════════════════════════════════ */
.service-card:hover .service-card-hover,
.service-card.active .service-card-hover {
    opacity: 1 !important;
}

.service-card:hover .service-card-base,
.service-card.active .service-card-base {
    opacity: 0;
}

.service-card:hover img,
.service-card.active img {
    transform: scale(1.05);
}

.service-card:hover .service-card-hover-content,
.service-card.active .service-card-hover-content {
    transform: translateY(0) !important;
    opacity: 1 !important;
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
.hero-img-crop3 {
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) and (min-width: 767px) {
    .problem-inner {
        display: flex;
        flex-direction: column;
    }

    .problem-inner .hide-on-rest {
        order: -1;
    }
}

@media (min-width: 1440px) {
    .hero-inner,
    .problem-inner,
    .solution-inner,
    .steps-inner,
    .benefits-inner,
    .proof-inner,
    .urgency-inner,
    .faq-inner,
    .final-cta-card {
        max-width: 1200px;
        width: 100%;
        padding-left: 48px;
        padding-right: 48px;
    }
}

@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .hero-deco-ring {
        display: none;
    }

    .problem-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .solution-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .steps-timeline::before {
        display: none;
    }

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

    .benefit-card.featured {
        grid-row: auto;
    }

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

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

    .urgency-points {
        grid-template-columns: 1fr;
    }

    #benefits .benefits-inner > div[style*="grid-template-columns: repeat(3"] {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    section {
        padding-left: 20px;
        padding-right: 20px;
    }

    h1,
    h2 {
        font-size: 26px;
        line-height: 1.25;
        letter-spacing: -0.2px;
        margin: 0 auto 16px;
        text-align: center;
    }

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

    .section-label {
        display: inline-block;
        text-align: center;
    }

    .accent-line {
        margin-left: auto;
        margin-right: auto;
    }

    .problem-inner,
    .solution-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-trust-badge {
        flex-direction: column;
        align-items: center;
        gap: 6px;
        text-align: center;
    }

    .hero-stars {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .hero-proof {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 16px;
    }

    .hero-proof-item {
        justify-content: center;
        font-size: 13px;
    }

    .hero-proof-dot {
        display: none;
    }

    .hero-img-crop2 {
        order: -1;
        margin-bottom: 20px;
    }

    .hero-img-crop {
        width: 100%;
        max-height: 280px;
        height: 100%;
        overflow: hidden;
        border-radius: 12px;
    }

    .hero-img-crop img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 50% 35%;
        display: block;
    }

    .hero-img-crop2 {
        width: 100%;
        max-height: 280px;
        height: 280px;
        overflow: hidden;
        border-radius: 12px;
    }

    .hero-img-crop2 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 50% 45%;
        display: block;
    }

    .hero-img-crop3 {
        width: 100%;
        max-height: 280px;
        height: 100%;
        overflow: hidden;
        border-radius: 12px;
    }

    .hero-img-crop3 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 50% 45%;
        border-radius: 12px;
        display: block;
    }

    .hero-inner {
        max-width: 100%;
        margin: 0;
        padding: 40px 0px 60px;
    }

    .hero-form-card {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .form-card-heading {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 8px;
        text-align: center;
    }

    .form-card-sub {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 20px;
        text-align: center;
    }

    .form-field {
        margin-bottom: 16px;
    }

    .form-field label {
        font-size: 12px;
        margin-bottom: 6px;
        text-align: left;
    }

    .form-field input {
        padding: 14px 14px;
        font-size: 15px;
        border-radius: 10px;
    }

    .form-privacy {
        margin-top: 14px;
        justify-content: center;
        text-align: center;
    }

    .btn-primary {
        padding: 18px;
        font-size: 16px;
        border-radius: 12px;
    }

    .problem-inner {
        padding: 60px 20px;
    }

    .solution-inner {
        padding: 60px 20px;
    }

    .steps-timeline {
        grid-template-columns: 1fr;
        padding-left: 4px;
    }

    .step-item {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 16px;
        padding: 0px;
    }

    .step-circle {
        margin-top: 4px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

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

    .benefit-card.featured {
        padding: 28px 24px;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 24px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

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

    .stat-item::after {
        display: none;
    }

    .stat-num {
        font-size: 20px;
    }

    .featured-testimonial {
        padding: 28px 24px;
        transform: none;
    }

    .proof-card {
        transform: none !important;
    }

    .final-cta-card {
        padding: 36px 24px;
    }

    .final-cta-details {
        gap: 12px;
    }

    .urgency-inner {
        padding: 60px 20px;
    }

    .faq-inner {
        padding: 60px 20px;
    }

    .nav-inner {
        padding: 0 20px;
    }

    .nav-logo {
        font-size: 15px;
    }

    .nav-logo img {
        height: 36px;
        width: 140px;
    }

    .nav-cta {
        padding: 8px 12px;
        font-size: 12px;
        gap: 5px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .nav-cta svg {
        width: 13px;
        height: 13px;
    }

    .benefits-header-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefits-header-sub {
        margin-top: 0;
        max-width: 100%;
        text-align: center;
    }
}

@media (max-width: 640px) {
    #benefits .benefits-inner > div[style*="grid-template-columns: repeat(3"] {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 26px;
    }

    .benefits-header-row {
        flex-direction: column;
    }

    .stats-row {
        grid-template-columns: 1fr 1fr;
    }

    .solution-right h2 {
        font-size: 24px;
    }

    .steps-header {
        font-size: 24px;
    }
}
