/* Neck and Shoulder 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;
}

footer#site-footer {
    display: none;
}

p[data-delay="5"] {
    margin-top: 0 !important;
    margin-bottom: 0 !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);
}

.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;
}

/* ── 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;
    }
}
:root {
            --brand-primary: #119447;
            --brand-secondary: #16AD53;
            --brand-accent: #030303;
            --brand-text: #3a3a3a;
            --brand-bg: #f7f8f9;
            --brand-primary-10: color-mix(in srgb, #119447 10%, transparent);
            --brand-primary-15: color-mix(in srgb, #119447 15%, transparent);
            --brand-primary-20: color-mix(in srgb, #119447 20%, white);
            --brand-dark: color-mix(in srgb, #119447 60%, #0f172a);
            --radius-sm: 8px;
            --radius-md: 14px;
            --radius-lg: 20px;
            --radius-xl: 32px;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
            --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.10);
            --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.14);
            --shadow-glow: 0 8px 40px color-mix(in srgb, #119447 35%, transparent);
            --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
        }

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

        body {
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--brand-text);
            background: var(--brand-bg);
            font-size: 17px;
            line-height: 1.75;
            overflow-x: hidden;
        }

        /* ═══ SCROLL ANIMATIONS ═══ */
        [data-animate] {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
        }

        [data-animate="left"] {
            transform: translateX(-32px);
        }

        [data-animate="right"] {
            transform: translateX(32px);
        }

        [data-animate="scale"] {
            transform: scale(0.92);
        }

        [data-animate].is-visible {
            opacity: 1;
            transform: none;
        }

        [data-animate][data-delay="1"] {
            transition-delay: 0.1s;
        }

        [data-animate][data-delay="2"] {
            transition-delay: 0.2s;
        }

        [data-animate][data-delay="3"] {
            transition-delay: 0.3s;
        }

        [data-animate][data-delay="4"] {
            transition-delay: 0.4s;
        }

        [data-animate][data-delay="5"] {
            transition-delay: 0.5s;
        }

        .card-hover {
            transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
        }

        .card-hover:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }

        .btn-primary-glow {
            position: relative;
            overflow: hidden;
        }

        .btn-primary-glow::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.15);
            transform: translateX(-100%);
            transition: transform 0.4s ease;
        }

        .btn-primary-glow:hover::after {
            transform: translateX(100%);
        }

        .count-up {
            display: inline-block;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(-8px)
            }
        }

        .float-anim {
            animation: float 3s ease-in-out infinite;
        }

        input:focus,
        textarea:focus,
        select:focus {
            outline: none;
            border-color: var(--brand-primary) !important;
            box-shadow: 0 0 0 3px var(--brand-primary-10);
        }

        @keyframes pulse-ring {
            0% {
                box-shadow: 0 0 0 0 color-mix(in srgb, var(--brand-primary) 40%, transparent);
            }

            100% {
                box-shadow: 0 0 0 16px color-mix(in srgb, var(--brand-primary) 0%, transparent);
            }
        }

        /* ═══ WAVE DIVIDERS ═══ */
        .wave-divider {
            display: block;
            width: 100%;
            height: 70px;
            margin-bottom: -2px;
        }

        /* ═══ NAV ═══ */
        nav {
            position: sticky;
            top: 0;
            z-index: 1000;
            height: 64px;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(17, 148, 71, 0.1);
            transition: box-shadow 0.3s ease;
        }

        nav.nav-scrolled {
            box-shadow: var(--shadow-md);
        }

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

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

        .nav-logo {
    height: 50px;
    width: auto;
    display: block;
    flex-shrink: 0;
    max-width: 60%;
    text-decoration: none;
}

.nav-logo img {
    height: 50px;
    width: auto;
    display: block;
}

        .nav-cta:hover {
            background: var(--brand-primary);
            color: #fff;
            transform: translateY(-2px);
        }

        .nav-badge {
            display: inline-block;
            background: color-mix(in srgb, var(--brand-primary) 10%, #fff);
            color: var(--brand-primary);
            font-size: 10px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 20px;
            margin-left: 10px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* Base (your existing styles are fine, just keep them) */

        /* Mobile adjustments */

        @media (max-width: 768px),
        (min-width: 961px) {
            .solution-side-by-side {
                display: none !important;
            }


        }
        @media (max-width: 768px) {
    nav {
        height: 64px;
    }

    .nav-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 0 24px;
        gap: 10px;
                height: 100%;

    }

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

    .nav-badge {
        display: none;
    }

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

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

@media (max-width: 380px) {
    .nav-logo img {
        height: 28px;
    }

    .nav-cta {
        padding: 7px 10px;
        font-size: 11px;
    }
}

        @media (max-width: 768px) {

            .solution-side-by-side {
                grid-template-columns: 1fr !important;
            }

            .services-value-panel {
                padding: 24px 16px !important;
                overflow: hidden !important;
            }

            .services-value-panel>div {
                grid-template-columns: 1fr !important;
            }

            .services-section {
                padding: 40px 16px !important;
            }

      
        }

        #backToTop {
            position: fixed;
            bottom: 100px;
            right: 28px;
            z-index: 9999;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--brand-primary);
            color: white;
            border: none;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

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



        /* ═══ SECTION LABELS ═══ */
        .section-label {
            display: inline-block;
            background: var(--brand-primary-10);
            color: var(--brand-primary);
            font-size: 11px;
            font-weight: 700;
            padding: 5px 14px;
            border-radius: 20px;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        /* ═══ TYPOGRAPHY ═══ */
        h1 {
            font-size: clamp(36px, 5vw, 54px);
            font-weight: 800;
            line-height: 1.08;
            letter-spacing: -0.03em;
            color: var(--brand-text);
        }

        h2 {
            font-size: clamp(30px, 4vw, 44px);
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.02em;
            color: var(--brand-text);
        }

        h3 {
            font-size: clamp(18px, 2.5vw, 22px);
            font-weight: 700;
            line-height: 1.3;
            color: var(--brand-text);
        }

        em.highlight {
            color: var(--brand-primary);
            font-style: normal;
        }

        p {
            color: #374151;
        }

        /* ═══ BUTTONS ═══ */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--brand-primary);
            color: #fff;
            padding: 15px 32px;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            border: none;
            box-shadow: var(--shadow-glow);
            transition: all 0.25s var(--ease-out);
            min-height: 52px;
            text-decoration: none;
        }

        .btn-primary:hover {
            background: var(--brand-secondary);
            transform: translateY(-2px);
        }

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            border: 2px solid var(--brand-primary);
            color: var(--brand-primary);
            padding: 13px 30px;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            min-height: 52px;
            text-decoration: none;
            transition: all 0.25s var(--ease-out);
        }

        .btn-ghost:hover {
            background: var(--brand-primary);
            color: #fff;
        }

        .solution-point ul li {
            font-size: 15px;
            color: #6b7280 !important;
            line-height: 1.65 !important;
        }

        /* ═══ FORM STYLES ═══ */
        .form-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: var(--radius-lg);
            padding: 40px 36px;
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(17, 148, 71, 0.08);
        }

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

        .form-group label {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: var(--brand-text);
            margin-bottom: 6px;
        }

        .form-group input {
            width: 100%;
            padding: 13px 16px;
            border: 1.5px solid #e5e7eb;
            border-radius: var(--radius-sm);
            font-size: 15px;
            font-family: 'Poppins', sans-serif;
            color: var(--brand-text);
            transition: border-color 0.2s, box-shadow 0.2s;
            background: #fff;
        }

        .form-group input::placeholder {
            color: #9ca3af;
        }

        .form-submit {
            width: 100%;
            background: var(--brand-primary);
            color: #fff;
            padding: 16px 24px;
            border-radius: var(--radius-sm);
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            border: none;
            box-shadow: var(--shadow-glow);
            transition: all 0.25s var(--ease-out);
            min-height: 54px;
            position: relative;
            overflow: hidden;
        }

        .form-submit:hover {
            background: var(--brand-secondary);
            transform: translateY(-2px);
        }

        .form-submit::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(255, 255, 255, 0.15);
            transform: translateX(-100%);
            transition: transform 0.4s ease;
        }

        .form-submit:hover::after {
            transform: translateX(100%);
        }

        .success-msg {
            display: none;
            background: linear-gradient(135deg, color-mix(in srgb, var(--brand-primary) 8%, #fff), color-mix(in srgb, var(--brand-secondary) 6%, #fff));
            border: 2px solid var(--brand-primary);
            border-radius: var(--radius-md);
            padding: 28px 24px;
            text-align: center;
        }

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

        .success-icon {
            font-size: 36px;
            margin-bottom: 12px;
            display: block;
        }

        .success-msg h4 {
            color: var(--brand-primary);
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .success-msg p {
            font-size: 14px;
            color: var(--brand-text);
            line-height: 1.6;
        }

        .success-meta {
            margin-top: 16px;
            padding: 14px;
            background: rgba(17, 148, 71, 0.06);
            border-radius: var(--radius-sm);
            text-align: left;
            font-size: 13px;
            color: var(--brand-text);
            line-height: 1.8;
        }

        /* ═══ IMAGE PLACEHOLDERS ═══ */
        .img-placeholder {
            background: linear-gradient(135deg, var(--brand-primary-10), var(--brand-primary-15));
            border: 2px dashed color-mix(in srgb, var(--brand-primary) 35%, #d1d5db);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--radius-lg);
            overflow: hidden;
        }

        .placeholder-inner {
            max-width: 420px;
            text-align: center;
            padding: 32px;
        }

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

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

        /* ═══ LAYOUT ═══ */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section {
            padding: 88px 0;
        }

        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 56px;
            align-items: center;
        }

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

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

        /* ═══ HERO ═══ */
        .hero {
            background: radial-gradient(ellipse at 30% 50%, color-mix(in srgb, var(--brand-primary) 8%, #fff) 0%, #fff 65%);
            padding: 72px 0 0;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(circle, color-mix(in srgb, var(--brand-primary) 12%, transparent) 1px, transparent 1px);
            background-size: 32px 32px;
            opacity: 0.4;
            pointer-events: none;
        }

        .hero-dashed-ring {
            position: absolute;
            top: -60px;
            right: -60px;
            width: 340px;
            height: 340px;
            opacity: 0.1;
            pointer-events: none;
        }

        .hero-img-col {
            height: 100%;
            min-height: 520px;
            border-radius: var(--radius-lg);
            overflow: hidden;
            position: relative;
        }

        .hero-right {
            padding-left: 8px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .trust-line {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: #6b7280;
            margin-top: 4px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .stars {
            color: #f59e0b;
            letter-spacing: 1px;
            font-size: 15px;
        }

        .trust-dot {
            color: #d1d5db;
        }

        .trust-badge-row {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .trust-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--brand-primary-10);
            border: 1px solid color-mix(in srgb, var(--brand-primary) 20%, transparent);
            border-radius: 20px;
            padding: 6px 14px;
            font-size: 12px;
            font-weight: 600;
            color: var(--brand-primary);
        }

        .hero-form-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: var(--radius-lg);
            padding: 36px 32px;
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(17, 148, 71, 0.08);
        }

        /* ═══ PROBLEM ═══ */
        .problem-section {
            background: linear-gradient(160deg, #faf8f5 0%, color-mix(in srgb, var(--brand-primary) 5%, #fff) 100%);
            position: relative;
            overflow: hidden;
        }

        .problem-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: repeating-linear-gradient(-45deg,
                    transparent,
                    transparent 20px,
                    rgba(17, 148, 71, 0.018) 20px,
                    rgba(17, 148, 71, 0.018) 21px);
            pointer-events: none;
        }

        .pain-point {
            display: flex;
            gap: 18px;
            align-items: flex-start;
            padding: 20px 0;
            border-bottom: 1px solid rgba(17, 148, 71, 0.08);
        }

        .pain-point:last-child {
            border-bottom: none;
        }

        .pain-icon-circle {
            width: 44px;
            height: 44px;
            flex-shrink: 0;
            border-radius: 50%;
            background: color-mix(in srgb, #e53e3e 12%, #fff);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pain-point-quote {
            font-weight: 700;
            font-style: italic;
            color: var(--brand-text);
            font-size: 15px;
            line-height: 1.4;
            margin-bottom: 4px;
        }

        .pain-point-body {
            font-size: 14px;
            color: #6b7280;
            line-height: 1.6;
        }

        /* ═══ SOLUTION ═══ */


        .solution-image-col {
            height: 100% !important;
            object-fit: cover !important;
        }



        .solution-section {
            background: #fff;
            background-image: linear-gradient(rgba(0, 0, 0, 0.022) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 0, 0, 0.022) 1px, transparent 1px);
            background-size: 32px 32px;
            position: relative;
        }

        section.section.problem-section,
        section.section.solution-section,
        section.section.steps-section,
        section.section.benefits-section,
        section.section.social-section,
        section.section.faq-section {
            padding-bottom: 0px;
        }

        .solution-section::before {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, color-mix(in srgb, var(--brand-primary) 6%, transparent) 0%, transparent 70%);
            pointer-events: none;
        }

        .solution-point {
            display: flex;
            gap: 18px;
            align-items: flex-start;
            padding: 22px 0;
            border-bottom: 1px solid rgba(17, 148, 71, 0.08);



        }


        .solution-point:last-child {
            border-bottom: none;
        }

        .sol-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--brand-primary);
            flex-shrink: 0;
            margin-top: 8px;
            box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand-primary) 15%, transparent);
        }

        .sol-title {
            font-weight: 700;
            font-size: 17px;
            color: var(--brand-text);
            margin-bottom: 6px;
        }

        .sol-body {
            font-size: 15px;
            color: #6b7280;
            line-height: 1.65;
        }

        .sol-quote {
            margin-top: 10px;
            padding: 10px 16px;
            background: var(--brand-primary-10);
            border-left: 3px solid var(--brand-primary);
            border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
            font-size: 13px;
            font-style: italic;
            color: var(--brand-primary);
            font-weight: 600;
        }

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

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr) !important;
            align-items: start;
            gap: 0;
            position: relative;
        }

        .step-connector {
            display: flex;
            align-items: flex-start;
            padding-top: 28px;
            justify-content: center;
        }

        .step-connector-line {
            width: 100%;
            border-top: 2px dashed color-mix(in srgb, var(--brand-primary) 30%, #e5e7eb);
            margin-top: 0;
        }

        .step-item {
            text-align: center;
            padding: 0 4px;
        }

        .step-num {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: radial-gradient(circle at 35% 35%, var(--brand-secondary), var(--brand-primary));
            color: #fff;
            font-weight: 800;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
            box-shadow: var(--shadow-glow);
        }

        .step-title {
            font-weight: 700;
            font-size: 15px;
            color: var(--brand-text);
            margin-bottom: 8px;
        }

        .step-desc {
            font-size: 13px;
            color: #6b7280;
            line-height: 1.6;
        }

        /* ═══ BENEFITS ═══ */
        .benefits-section {
            background: linear-gradient(to bottom right, #fff 0%, color-mix(in srgb, var(--brand-secondary) 8%, #f9f9f9) 100%);
            position: relative;
            overflow: hidden;
        }

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

        .benefit-card {
            background: #fff;
            border-radius: var(--radius-md);
            border-top: 3px solid var(--brand-primary);
            padding: 28px;
            box-shadow: var(--shadow-sm);
            position: relative;
            overflow: hidden;
        }

        .benefit-num {
            position: absolute;
            top: -10px;
            right: 12px;
            font-size: 100px;
            font-weight: 900;
            line-height: 1;
            color: var(--brand-primary);
            opacity: 0.04;
            pointer-events: none;
            user-select: none;
            font-family: 'Poppins', sans-serif;
        }

        .benefit-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: var(--brand-primary-10);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
        }
.benefit-title {
    font-weight: 700;
    font-size: clamp(14px, 1.4vw, 16px);
    color: var(--brand-text);
    margin-bottom: 8px;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    line-height: 1.4;
}

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

        /* ═══ SOCIAL PROOF ═══ */
        .social-section {
            background: linear-gradient(135deg, var(--brand-dark) 0%, #0f172a 100%);
            position: relative;
            overflow: hidden;
        }

        .social-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
            opacity: 0.04;
            pointer-events: none;
        }

        .social-section h2 {
            color: #fff;
        }

        .social-section p {
            color: #cbd5e1;
        }

        .testimonial-featured {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 36px;
            box-shadow: var(--shadow-md);
            position: relative;
            overflow: hidden;
            margin-bottom: 24px;
        }

        .quotemark {
            position: absolute;
            top: 12px;
            left: 20px;
            font-size: 80px;
            line-height: 1;
            font-weight: 900;
            color: var(--brand-primary);
            opacity: 0.09;
            font-family: Georgia, serif;
            pointer-events: none;
        }

        .testimonial-small {
            background: #fff;
            border-left: 3px solid var(--brand-primary);
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
            padding: 20px 24px;
        }

        .reviewer-name {
            font-weight: 700;
            font-size: 14px;
            color: var(--brand-text);
        }

        .reviewer-role {
            font-size: 12px;
            color: #9ca3af;
        }

        .review-text {
            font-size: 15px;
            color: #374151;
            line-height: 1.7;
            font-style: italic;
            margin-bottom: 14px;
        }

        .stars-row {
            color: #f59e0b;
            font-size: 14px;
            margin-bottom: 10px;
        }

        .stats-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr) !important;
            gap: 24px;
            margin-top: 48px;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

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

        .stat-num {
            font-size: 40px;
            font-weight: 800;
            color: #fff;
            line-height: 1;
            display: block;
            margin-bottom: 6px;
        }

        .stat-label {
            font-size: 13px;
            color: #94a3b8;
            font-weight: 500;
        }

        .social-proof-img-wrap {
            position: relative;
        }

        .floating-badge {
            position: absolute;
            bottom: 24px;
            right: -16px;
            background: #fff;
            border-radius: 12px;
            padding: 14px 20px;
            box-shadow: var(--shadow-md);
            z-index: 2;
            min-width: 160px;
        }

        .floating-badge-label {
            font-size: 11px;
            color: #9ca3af;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .floating-badge-value {
            font-size: 18px;
            font-weight: 800;
            color: var(--brand-primary);
        }

        /* ═══ FAQ ═══ */
        .faq-question {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        /* 🔥 THIS is the key fix */
        .faq-q-text {
            flex: 1;
            min-width: 0;
            white-space: normal;
            overflow-wrap: break-word;
            word-break: break-word;
            color: black;
        }

        .faq-question:hover {
            background: #2f9447;
            border-radius: var(--radius-sm);
            padding-left: 8px;
            padding-right: 8px;
            margin: 0 -8px;
        }

        .faq-question:hover .faq-q-text {
            color: #fff;
        }

        .faq-question:hover .faq-accent {
            background: #fff;
        }

        .faq-question:hover .faq-chevron {
            border-color: rgba(255, 255, 255, 0.4);
        }

        .faq-question:hover .faq-chevron svg {
            stroke: #fff;
        }

        .faq-section {
            background: linear-gradient(to top, color-mix(in srgb, var(--brand-primary) 4%, #f9f9f9) 0%, #fff 100%);
        }

        .faq-wrap {
            max-width: 740px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid rgba(17, 148, 71, 0.1);
            border-radius: 10px !important;
        }

        .faq-question {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 24px 0;
            cursor: pointer;
            user-select: none;
            transition: background 0.3s ease, color 0.3s ease;

        }

        .faq-accent {
            width: 4px;
            height: 22px;
            background: var(--brand-primary);
            border-radius: 2px;
            flex-shrink: 0;
            transition: height 0.3s ease;
        }

        .faq-q-text {
            flex: 1;
            font-weight: 700;
            font-size: 16px;
            color: var(--brand-text);
            line-height: 1.4;
        }

        .faq-chevron {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
            border: 2px solid color-mix(in srgb, var(--brand-primary) 30%, #e5e7eb);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition:
                transform 0.3s ease,
                background 0.3s ease;
        }

        .faq-chevron svg {
            transition: transform 0.3s ease;
        }

        .faq-item.open .faq-chevron {
            background: #2f9447;
            border-color: var(--brand-primary);
        }


        .faq-item.open .faq-question .faq-q-text {
            color: #fff;
        }

        .faq-item.open .faq-chevron {
            background: #2f9447;
            border-color: rgba(255, 255, 255, 0.4);
        }

        .faq-item.open .faq-chevron svg {
            stroke: #2f9447;
        }

        .faq-answer p {
            padding-top: 25px;
        }

        .faq-item.open .faq-question {
            background: #2f9447;
            border-radius: 10px;
            padding-left: 8px;
            padding-right: 8px;
            margin: 0 -8px;
        }

        .faq-item.open .faq-chevron svg {
            transform: rotate(180deg);
            stroke: #fff;
            background-color: #2f9447;
        }

        .faq-item.open .faq-accent {
            height: 40px;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.45s var(--ease-out), padding 0.3s ease;
            padding: 0 0 0 20px;
        }

        .faq-item.open .faq-answer {
            max-height: 100%;
            padding: 0 0 24px 20px;
        }

        .faq-answer p {
            font-size: 15px;
            color: #6b7280;
            line-height: 1.75;
        }

        .faq-answer strong {
            color: var(--brand-primary);
        }

        /* ═══ FINAL CTA ═══ */
        .final-cta-section {
            background: white;
            padding: 80px 24px;
        }

		 .cta-floating-card {
			padding: 48px 40px;
			max-width: 1152px;
			margin: 0 auto;
			background: #fff;
			border: 1px solid rgba(17, 148, 71, 0.08);
			border-radius: var(--radius-xl);
			box-shadow: var(--shadow-lg);
			text-align: center;
			display: flex;
			flex-direction: column;
			align-items: center;		}

        .cta-floating-card h2 {
            color: #fff;
        }

        .cta-floating-card p {
            color: #cbd5e1;
            font-size: 17px;
            margin-bottom: 16px;
        }

        .cta-risk {
            display: inline-flex;
            align-items: flex-start;
            gap: 10px;
            text-align: left;
            background: rgba(255, 255, 255, 0.07);
            border-radius: var(--radius-md);
            padding: 18px 22px;
            margin: 20px 0;
            font-size: 14px;
            color: #94a3b8;
            line-height: 1.6;
        }

        .btn-inverted {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            color: var(--brand-primary);
            padding: 16px 36px;
            border-radius: var(--radius-sm);
            font-weight: 800;
            font-size: 16px;
            cursor: pointer;
            border: none;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
            transition: all 0.25s var(--ease-out);
            min-height: 56px;
            position: relative;
            overflow: hidden;
        }

        .btn-inverted:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
        }

        .btn-inverted::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(17, 148, 71, 0.08);
            transform: translateX(-100%);
            transition: transform 0.4s ease;
        }

        .btn-inverted:hover::after {
            transform: translateX(100%);
        }

        .urgency-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: color-mix(in srgb, var(--brand-secondary) 20%, transparent);
            border: 1px solid color-mix(in srgb, var(--brand-secondary) 40%, transparent);
            border-radius: 20px;
            padding: 6px 18px;
            font-size: 13px;
            font-weight: 700;
            color: #498561;
            margin-bottom: 24px;
            letter-spacing: 0.5px;
           
        }

        .urgency-dot {
            width: 8px;
            height: 8px;
            background: #4ade80;
            border-radius: 50%;
            animation: pulse-ring 1.5s ease infinite;
            flex-shrink: 0;
        }

        /* ═══ 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;
        }


        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-links {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #64748b;
            font-size: 13px;
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--brand-secondary);
        }

        .footer-copy {
            color: #475569;
            font-size: 13px;
        }

        /* ═══ WHATSAPP FLOAT ═══ */
        .wa-float {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 999;
            width: 58px;
            height: 58px;
            border-radius: 50%;
            background: #25D366;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
            text-decoration: none;
            transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease;
            animation: float 3s ease-in-out infinite;
        }

        .wa-float:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
        }

#hero-form-wrap,
        #cta-form-wrap,
        .oom-form-card,
        .oom-field label,
        .oom-field input,
        .oom-btn,
        .oom-form-heading,
        .oom-form-sub {
            font-family: 'Nunito', sans-serif;
        }

        .oom-form-heading,
        .oom-field label,
        .oom-btn {
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        /* ═══ RESPONSIVE ═══ */
        .form-header{
            max-width: 950px !important;
            width: 100% !important;
			font-weight: 800 !important;
        }
        .cta-button{
background: #2f9447;
color: white;        }

        #cta-form-wrap{
            padding-top: 0 !important;
            padding-bottom: 0 !important;
        }


        #cta-form-wrap .form-group input {
    width: 100%;
    background: #fff;
    border: 1.5px solid #e5e7eb;
}

        .small-form {
    background: rgba(17, 148, 71, 0.04) !important;
    border: 1px solid rgba(17, 148, 71, 0.12) !important;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

        .form-shadow {
    background: #fff !important;
    border: 1px solid rgba(17, 148, 71, 0.08) !important;
    border-radius: var(--radius-lg);
    padding: 28px 28px 24px;
    box-shadow: var(--shadow-lg);
}
        @media (max-width: 1024px) and (min-width: 767px) {
    .hero .grid-2 {
        grid-template-columns: 1fr;
    }

    .hero .problem-img-crop {
        max-height: 500px;
        overflow: hidden;
        border-radius: 12px;
    }

    .hero .problem-img-crop img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        object-position: 50% 50%;
    }

    .hero-right {
        padding-left: 0;
    }

    .problem-section .grid-2 {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }

    .problem-section .hero-img-crop2 {
        order: -1;
        max-height: 500px;
        overflow: hidden;
        border-radius: 12px;
    }

    .hero-img-crop2{
        width: 100%;
    }

    .problem-section .hero-img-crop2 img {
        width: 100%;
        height: 500px;
        object-fit: cover;
        object-position: 50% 40%;
    }

    .problem-section div[style*="padding-left:8px"] {
        padding-left: 0 !important;
    }
}

        .solution-image-col {
            /* display: flex;
            align-items: center; */
            padding-top: 22px;
        }

        @media (min-width: 769px) and (max-width: 960px) {
            .desktop-only {
                display: none !important;
            }
        }

        @media (max-width: 768px) {

            .problem-img-crop,
            .hero-img-crop {
                max-height: 280px;
                overflow: hidden;
                border-radius: 12px;
                object-position: 50% 70%;
            }

            .problem-img-crop img,
            .hero-img-crop img {
                height: 280px;
                object-fit: cover;
                object-position: 50% 30%;
            }
        }



        @media (max-width: 768px) {

            .problem-img-crop,
            .hero-img-crop2 {
                max-height: 280px;
                overflow: hidden;
                border-radius: 12px;
                object-position: 50% 50%;
            }

            .problem-img-crop img,
            .hero-img-crop2 img {
                height: 280px;
                object-fit: cover;
                object-position: 50% 40%;
            }
        }

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

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

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

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

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

            .steps-responsive {
                grid-template-columns: 1fr 1fr !important;
                gap: 32px !important;
            }

            .hero {
                padding: 40px 0 0;
            }

            .hero-right {
                padding-left: 0;
            }

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

            .nav-badge {
                display: none;
            }

            .section {
                padding: 60px 0;
            }

            .floating-badge {
                right: 0;
                bottom: 12px;
            }

            h1 {
                font-size: 32px;
            }

            h2 {
                font-size: 26px;
            }

            .hero-form-card {
                padding: 28px 20px;
            }
        }

        @media (max-width: 768px) {
            .stats-row {
                grid-template-columns: 1fr 1fr !important;
                gap: 16px !important;
            }
        }

        @media (max-width: 480px) {
            .stats-row {
                grid-template-columns: 1fr 1fr !important;
                gap: 12px !important;
            }

            .stat-num {
                font-size: 28px !important;
            }

            .stat-label {
                font-size: 12px !important;
            }
        }

        @media (max-width: 640px) {
            .steps-timeline {
                grid-template-columns: repeat(3, 1fr) !important;
                gap: 32px !important;
            }

            .steps-timeline-line {
                display: none !important;
            }
        }

        @media (max-width: 480px) {
            .steps-timeline {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 28px !important;
            }
        }

        .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;
        }

        @media (max-width: 768px) {
            .social-section div[style*="grid-template-columns:1fr 1fr 1fr"] {
                grid-template-columns: 1fr !important;
            }

            .stats-row {
                grid-template-columns: 1fr 1fr !important;
                gap: 16px !important;
            }
        }