:root {
            --bg: #f6fbf8;
            --surface: #ffffff;
            --surface-alt: #f4fbf7;
            --text: #0d1f17;
            --text-soft: #4a5e54;
            --line: #d3e8dc;
            --primary: #1a7a4a;
            --primary-soft: #16653e;
            --blue: #22a05a;
            --accent: #22a05a;
            --cta: #22a05a;
            --cta-hover: #189048;
            --danger: #c0392b;
            --ok: #1f9d63;
            --shadow: 0 10px 32px rgba(17, 59, 37, 0.08);
            --shadow-lg: 0 18px 48px rgba(17, 59, 37, 0.14);
            --radius: 18px;
            --mobile-cta-offset: 0px;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Inter', -apple-system, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.55;
            overflow-x: hidden;
        }
        h1, h2, h3, h4 {
            font-family: 'Space Grotesk', 'Inter', -apple-system, sans-serif;
            letter-spacing: -0.02em;
        }

        .hero {
            background: linear-gradient(145deg, #0b2d57 0%, #124881 55%, #1759a0 100%);
            color: #fff;
            padding: 44px 18px 34px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero:before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 16% 30%, rgba(255,255,255,0.16), transparent 40%);
            pointer-events: none;
        }
        .hero-inner {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 14px;
        }
        .hero-layout { display: grid; gap: 16px; align-items: stretch; }
        .hero-main {
            min-width: 0;
            display: flex;
            flex-direction: column;
        }
        .hero-compare {
            min-width: 0;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.22);
            border-radius: 16px;
            padding: 14px;
            backdrop-filter: blur(3px);
            text-align: left;
            display: flex;
            flex-direction: column;
        }
        .hero-compare .comp-stack { grid-template-columns: 1fr; gap: 8px; }
        .hero-compare .comp-card.bad {
            background: rgba(255,255,255,0.88);
            border-color: rgba(255,255,255,0.9);
            color: #12345d;
        }
        .hero-compare .comp-card.good {
            background: linear-gradient(145deg, #0a315f, #185293);
            border-color: rgba(146, 194, 255, 0.35);
            color: #e7f3ff;
        }
        .hero-compare .comp-ok { color: #9ed0ff; }
        .hero-compare .scarcity {
            margin-top: 8px;
            background: rgba(228, 242, 255, 0.92);
            border-color: rgba(182, 214, 247, 0.95);
        }
        .hero-compare .scarcity-title,
        .hero-compare .scarcity-text { color: #0f3e76; }
        .trust-chip {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            width: fit-content;
            background: rgba(255,255,255,0.13);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 999px;
            padding: 7px 16px 7px 13px;
            font-size: 12px;
            margin-bottom: 18px;
        }
        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #7fd3ff;
            box-shadow: 0 0 0 5px rgba(127, 211, 255, 0.18);
            animation: dotPulse 3.2s ease-in-out infinite;
        }
        @keyframes dotPulse {
            0%, 100% { transform: scale(1); box-shadow: 0 0 0 5px rgba(127, 211, 255, 0.16); }
            50% { transform: scale(1.06); box-shadow: 0 0 0 6.5px rgba(127, 211, 255, 0.1); }
        }
        .hero h1 {
            font-size: clamp(32px, 4.5vw, 52px);
            line-height: 1.08;
            font-weight: 800;
            letter-spacing: -0.4px;
        }
        .hero h1 span {
            display: block;
            font-size: clamp(18px, 2.5vw, 24px);
            font-weight: 500;
            color: #dcecff;
            margin-top: 8px;
        }
        .hero-desc {
            max-width: 640px;
            margin: 16px auto 20px;
            color: rgba(236, 244, 255, 0.9);
            font-size: 16px;
            font-weight: 300;
        }
        .hero-pills {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
        }
        .hero-pill {
            min-width: 110px;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 14px;
            padding: 10px 14px;
        }
        .hero-pill-num { font-size: 26px; font-weight: 700; line-height: 1; }
        .hero-pill-label { font-size: 11px; opacity: 0.8; text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; }
        .hero-meta {
            margin-top: 16px;
            display: flex;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
            font-size: 12px;
            opacity: 0.92;
        }
        .hero-quick-cta {
            margin-top: 18px;
            display: inline-flex;
            border: none;
            border-radius: 12px;
            padding: 12px 20px;
            font-size: 14px;
            font-weight: 700;
            background: #fff;
            color: #0f3e76;
            cursor: pointer;
        }
        .hero-cta-wrap {
            margin-top: 12px;
            padding-top: 0;
            max-width: 460px;
            display: grid;
            gap: 10px;
        }
        .hero-cta-wrap .scarcity {
            margin-top: 0;
            background: rgba(228, 242, 255, 0.95);
            border-color: rgba(182, 214, 247, 0.95);
            text-align: left;
        }
        .hero-cta-wrap .scarcity-title,
        .hero-cta-wrap .scarcity-text { color: #0f3e76; }
        .hero-quick-cta.primary {
            margin-top: 0;
            justify-content: center;
            width: 100%;
            background: linear-gradient(145deg, #2f7ef1, #1d5ea8);
            color: #fff;
            border: 1px solid rgba(166, 208, 255, 0.85);
            box-shadow: 0 14px 30px rgba(15,62,118,0.42), 0 0 0 1px rgba(255,255,255,0.12) inset;
            letter-spacing: 0.2px;
            position: relative;
            overflow: hidden;
        }
        .hero-quick-cta.primary:before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.18) 45%, transparent 70%);
            transform: translateX(-120%);
            transition: transform .65s ease;
        }
        .hero-quick-cta.primary:hover:before,
        .hero-quick-cta.primary:focus-visible:before {
            transform: translateX(120%);
        }
        .hero-quick-cta.primary:hover,
        .hero-quick-cta.primary:focus-visible {
            box-shadow: 0 16px 36px rgba(15,62,118,0.5), 0 0 0 1px rgba(214,234,255,0.45) inset;
            transform: translateY(-1px);
        }
        .hero-quick-cta.primary:focus-visible {
            outline: 2px solid #9ac3ff;
            outline-offset: 2px;
        }
        .hero-quick-cta.primary .cta-icon {
            font-size: 15px;
            line-height: 1;
        }
        .hero-compare .hero-cta-wrap {
            max-width: none;
        }
        body.post-submit-focus::before {
            content: '';
            position: fixed;
            inset: 0;
            z-index: 180;
            background: rgba(8, 24, 44, 0.28);
            backdrop-filter: blur(3px);
            pointer-events: none;
        }
        body.post-submit-focus .form-column {
            position: relative;
            z-index: 220;
        }
        body.post-submit-focus .form-card {
            position: relative;
            z-index: 221;
            box-shadow: 0 20px 56px rgba(8, 34, 71, 0.26);
        }

        .main {
            max-width: 1200px;
            margin: 36px auto 0;
            padding: 0 14px 110px;
        }
        .layout {
            display: grid;
            gap: 18px;
        }
        .content { min-width: 0; }
        .form-column { min-width: 0; }
        .form-mobile-intro {
            display: none;
        }

        .card {
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 22px 18px;
            margin-bottom: 14px;
        }
        .card-label {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.8px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 8px;
        }
        .card-title { font-size: clamp(22px, 2.7vw, 30px); margin-bottom: 8px; line-height: 1.15; }
        .card-desc { color: var(--text-soft); font-size: 15px; margin-bottom: 14px; }

        .features-list { display: grid; gap: 10px; }
        .feat-row {
            display: grid;
            grid-template-columns: 38px 1fr;
            grid-template-rows: auto auto;
            column-gap: 10px;
            row-gap: 0;
            align-items: start;
            padding: 9px 11px;
            border-radius: 14px;
            background: var(--surface-alt);
            border: 1px solid #e8eff8;
            box-shadow: 0 6px 18px rgba(14, 44, 80, 0.06);
        }
        .feat-icon {
            width: 38px; height: 38px; min-width: 38px;
            border-radius: 10px;
            display: grid; place-items: center;
            background: #0f3e76;
            color: #fff;
            font-size: 18px;
            grid-column: 1;
            grid-row: 1;
            margin-top: 1px;
        }
        .feat-icon svg {
            width: 20px;
            height: 20px;
            stroke: #fff;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .feat-text {
            font-size: 16px;
            font-weight: 700;
            margin: 0;
            line-height: 1.2;
            grid-column: 2;
            grid-row: 1 / span 2;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }
        .feat-text small {
            display: block;
            color: var(--text-soft);
            font-size: 13px;
            font-weight: 400;
            line-height: 1.4;
            margin-top: 3px;
        }

        .comp-stack { display: grid; gap: 10px; }
        .comp-card { border-radius: 14px; padding: 14px; border: 1px solid var(--line); }
        .comp-card.bad { background: #f8fafd; }
        .comp-card.good {
            background: linear-gradient(145deg, #0f3e76, #1d5ea8);
            color: #fff;
            border-color: #2f6db3;
            box-shadow: var(--shadow);
        }
        .comp-card-title { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 9px; }
        .comp-item { font-size: 13px; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
        .comp-item:last-child { margin-bottom: 0; }
        .comp-x { color: #8ea0b8; }
        .comp-ok { color: #9ed0ff; }
        .scarcity {
            margin-top: 12px;
            border: 1px solid #c2d7f1;
            background: #eef5ff;
            border-radius: 12px;
            padding: 12px;
        }
        .scarcity-title { font-size: 14px; font-weight: 600; margin-bottom: 8px; }
        .scarcity-bar { height: 7px; border-radius: 999px; overflow: hidden; background: #d2e3f8; }
        .scarcity-fill { height: 100%; background: linear-gradient(90deg, #1d5ea8, #2d7cf3); }
        .scarcity-text { font-size: 11px; color: var(--text-soft); margin-top: 6px; }

        .process-flow {
            display: grid;
            gap: 10px;
        }
        .process-step {
            border: 1px solid var(--line);
            background: var(--surface-alt);
            border-radius: 14px;
            padding: 9px 11px;
            position: relative;
            box-shadow: 0 6px 18px rgba(14, 44, 80, 0.06);
            min-height: 76px;
            display: grid;
            grid-template-columns: 38px 1fr;
            grid-template-rows: auto auto;
            column-gap: 10px;
            row-gap: 0;
            align-items: center;
        }
        .process-icon {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            display: grid;
            place-items: center;
            background: #0f3e76;
            box-shadow: 0 8px 20px rgba(20, 78, 142, 0.22);
            margin: 0;
            color: #fff;
            font-size: 22px;
            font-weight: 800;
            line-height: 1;
            grid-column: 1;
            grid-row: 1 / span 2;
        }
        .step-badge {
            display: none;
        }
        .step-card-title {
            font-size: 16px;
            font-weight: 700;
            margin: 0;
            line-height: 1.2;
            grid-column: 2;
            grid-row: 1;
        }
        .step-card-desc {
            font-size: 13px;
            color: var(--text-soft);
            margin: 0;
            line-height: 1.4;
            min-width: 0;
            grid-column: 2;
            grid-row: 2;
        }
        .info-banner {
            margin-top: 12px;
            border-radius: 12px;
            padding: 12px;
            background: linear-gradient(145deg, #0f3e76, #1d5ea8);
            color: #dfeeff;
            font-size: 13px;
        }
        .info-banner strong { color: #fff; }

        .warn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
        .warn-item {
            border: 1px solid #f0d7d3;
            background: #fff7f6;
            color: #7e4b46;
            border-radius: 10px;
            padding: 10px;
            font-size: 12px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 6px;
            line-height: 1.4;
        }
        .warn-item span {
            color: var(--danger);
            font-weight: 700;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            background: rgba(192, 57, 43, 0.12);
        }
        .safe-banner {
            margin-top: 10px;
            border-radius: 12px;
            border: 1px solid #cfe8d7;
            background: #eefaf2;
            padding: 12px;
            text-align: center;
            font-size: 14px;
        }
        .safe-banner strong { color: var(--primary); }

        .reviews-fade {
            position: relative;
            border-radius: 14px;
            overflow: hidden;
        }
        .reviews-fade::before,
        .reviews-fade::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            height: 44px;
            z-index: 2;
            pointer-events: none;
        }
        .reviews-fade::before {
            top: 0;
            background: linear-gradient(180deg, var(--surface) 0%, rgba(255,255,255,0) 100%);
        }
        .reviews-fade::after {
            bottom: 0;
            background: linear-gradient(0deg, var(--surface) 0%, rgba(255,255,255,0) 100%);
        }
        .reviews-slider {
            height: 430px;
            overflow: hidden;
            contain: layout paint;
        }
        .reviews-track {
            display: flex;
            flex-direction: column;
            gap: 10px;
            animation: reviewsDown 34s linear infinite;
            will-change: transform;
            transform: translate3d(0,0,0);
            backface-visibility: hidden;
        }
        .reviews-slider:hover .reviews-track {
            animation-play-state: paused;
        }
        .reviews-track.is-paused {
            animation-play-state: paused;
        }
        @keyframes reviewsDown {
            from { transform: translateY(-50%); }
            to { transform: translateY(0); }
        }
        .review-card { background: var(--surface-alt); border: 1px solid var(--line); border-radius: 14px; padding: 14px; }
        .review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
        .review-avatar {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: #dfe9f7;
            border: 1px solid #c9d9ef;
            overflow: hidden;
            display: block;
        }
        .review-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        .review-name { font-weight: 600; font-size: 14px; }
        .review-city { font-size: 11px; color: var(--text-soft); }
        .review-stars {
            margin-left: auto;
            color: #fbbc04;
            letter-spacing: 1px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .review-stars::before {
            content: 'G';
            font-weight: 800;
            font-size: 20px;
            line-height: 1;
            background: conic-gradient(
                from 220deg,
                #ea4335 0deg 90deg,
                #fbbc05 90deg 170deg,
                #34a853 170deg 250deg,
                #4285f4 250deg 360deg
            );
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .review-text { font-size: 14px; font-style: italic; }
        .trust-bar { margin-top: 12px; display: flex; gap: 10px; justify-content: space-between; }
        .trust-item { text-align: center; font-size: 11px; color: var(--text-soft); }
        .trust-item strong { display: block; font-size: 12px; color: var(--text); margin-bottom: 2px; }

        .faq-wrap { display: grid; gap: 8px; }
        .faq-item { border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: var(--surface-alt); }
        .faq-q { padding: 14px; font-weight: 600; cursor: pointer; position: relative; padding-right: 40px; }
        .faq-q:after { content: '+'; position: absolute; right: 14px; top: 8px; font-size: 22px; color: var(--accent); transition: transform .2s; }
        .faq-item.open .faq-q:after { transform: rotate(45deg); }
        .faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease, padding .25s ease; color: var(--text-soft); font-size: 13px; padding: 0 14px; }
        .faq-item.open .faq-a { max-height: 220px; padding: 0 14px 14px; }
        .faq-full { margin-top: 14px; }

        .form-shell { position: relative; }
        .form-card {
            background: var(--surface);
            border: 1px solid var(--line);
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
            padding: 18px 16px 16px;
        }
        .form-card .card-label { text-align: center; }
        .form-progress-bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; position: relative; }
        .prog-line { position: absolute; left: 16%; right: 16%; top: 17px; height: 3px; background: #d8e4f4; border-radius: 999px; }
        .prog-line-fill { height: 100%; width: 0%; background: linear-gradient(90deg, #1d5ea8, #2d7cf3); border-radius: 999px; transition: width .35s ease; }
        .prog-step { display: flex; flex-direction: column; align-items: center; z-index: 1; flex: 1; }
        .prog-circle {
            width: 34px; height: 34px; border-radius: 10px; border: 2px solid #d8e4f4;
            background: #eff4fb; color: #6c7f97; font-size: 13px; font-weight: 700;
            display: grid; place-items: center;
            transition: .25s ease;
        }
        .prog-label { font-size: 10px; color: var(--text-soft); margin-top: 4px; }
        .prog-step.active .prog-circle { background: #2d7cf3; color: #fff; border-color: #2d7cf3; }
        .prog-step.done .prog-circle { background: #0f3e76; color: #d9e9ff; border-color: #0f3e76; }
        .prog-step.active .prog-label { color: #1d5ea8; font-weight: 600; }
        .prog-step.done .prog-label { color: #0f3e76; }
        .prog-percent { text-align: center; color: #1d5ea8; font-size: 12px; font-weight: 600; margin-bottom: 14px; }
        .prog-benefit {
            text-align: center;
            font-size: 11px;
            color: var(--text-soft);
            margin: -10px 0 14px;
        }
        .form-sticky-trust {
            position: sticky;
            top: 10px;
            z-index: 3;
            margin: -4px 0 12px;
            padding: 10px 12px;
            border-radius: 12px;
            border: 1px solid #d7e4f5;
            background: #f3f8ff;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 6px;
            text-align: center;
            font-size: 11px;
            font-weight: 700;
            color: #1b4f8f;
        }
        .form-sticky-trust.is-hidden-step3 { display: none; }
        .trust-mini-item {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            min-width: 0;
        }
        .trust-mini-ico {
            width: 18px;
            height: 18px;
            border-radius: 999px;
            border: 1px solid #b8d0ee;
            background: #fff;
            color: #1b4f8f;
            font-size: 10px;
            line-height: 1;
            font-weight: 800;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 18px;
        }

        .form-step { display: none; }
        .form-step.active { display: block; animation: fadeIn .25s ease; }
        @keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
        .form-step-title { font-size: 23px; text-align: center; margin-bottom: 4px; }
        .form-step-desc { text-align: center; color: var(--text-soft); font-size: 13px; margin-bottom: 16px; }
        .form-group { margin-bottom: 12px; position: relative; }
        .form-group.is-hidden { display: none; }
        .form-label { display: block; font-size: 12px; color: var(--text-soft); margin-bottom: 5px; font-weight: 500; }
        .form-input {
            width: 100%;
            max-width: 100%;
            min-width: 0;
            min-height: 48px;
            padding: 13px 14px;
            padding-right: 40px;
            border: 1.5px solid #cfdced;
            border-radius: 10px;
            font-size: 16px;
            font-family: inherit;
            background: #f8fbff;
            color: var(--text);
            transition: .2s;
        }
        .form-input[type="date"] {
            -webkit-appearance: auto;
            appearance: auto;
            width: 100%;
            max-width: 100%;
            min-width: 0;
            padding-right: 42px;
        }
        .form-input[type="date"]::-webkit-date-and-time-value { text-align: left; }
        .form-input[type="date"]::-webkit-calendar-picker-indicator {
            margin: 0;
            opacity: 1;
            width: 18px;
            height: 18px;
            cursor: pointer;
        }
        .date-input-wrap {
            position: relative;
            width: 100%;
            min-width: 0;
        }
        .date-icon {
            display: none;
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 17px;
            line-height: 1;
            color: #5d7394;
            pointer-events: auto;
            cursor: pointer;
            z-index: 2;
        }
        .date-field .field-check { display: none !important; }
        .form-input:focus { outline: none; border-color: #2d7cf3; box-shadow: 0 0 0 3px rgba(45,124,243,0.14); background: #fff; }
        .form-input.valid { border-color: var(--ok); }
        .form-input.error { border-color: var(--danger); }
        .form-error { display: none; font-size: 11px; color: var(--danger); margin-top: 4px; }
        .form-group.has-error .form-error { display: block; }
        .form-hint { color: var(--text-soft); font-size: 11px; margin-top: 4px; }
        .field-check {
            position: absolute; right: 12px; top: 32px;
            width: 19px; height: 19px; border-radius: 50%;
            display: none; place-items: center;
            background: var(--ok); color: #fff; font-size: 11px;
        }
        .form-group.validated .field-check { display: grid; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
        .form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
        .upload-pair { grid-template-columns: 1fr 1fr; }
        .form-row .form-group, .form-row-3 .form-group { margin-bottom: 0; }

        .cat-list {
            display: grid;
            gap: 10px;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            grid-auto-rows: 1fr;
        }
        .cat-item {
            min-width: 0;
            display: flex;
        }
        .cat-click-hint {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 11px;
            font-weight: 600;
            color: #1d5ea8;
            background: #f3f8ff;
            border: 1px solid #d7e4f5;
            border-radius: 9px;
            padding: 6px 10px;
            margin: -2px 0 10px;
        }
        .cat-item input { display: none; }
        .cat-item label {
            border: 1.5px solid #cfdced;
            background: #f8fbff;
            border-radius: 12px;
            padding: 12px 14px;
            display: grid;
            grid-template-columns: minmax(0, 1fr) 78px;
            grid-template-rows: auto auto;
            grid-template-areas:
                "name price"
                "desc desc";
            align-items: start;
            align-content: start;
            min-height: 96px;
            height: 100%;
            column-gap: 10px;
            row-gap: 8px;
            cursor: pointer;
            transition: .2s;
            width: 100%;
        }
        .cat-item label:hover {
            border-color: #9ebbe0;
            transform: translateY(-1px);
        }
        .cat-item input:checked + label {
            background: linear-gradient(145deg, #0f3e76, #1d5ea8);
            border-color: #0f3e76;
            color: #fff;
        }
        .cat-item.popular label { position: relative; }
        .cat-item.popular label:after {
            content: 'BELIEBT';
            position: absolute;
            right: 10px;
            top: -8px;
            background: #7fc4ff;
            color: #0a315f;
            border-radius: 7px;
            padding: 2px 6px;
            font-size: 8px;
            font-weight: 800;
            letter-spacing: .5px;
        }
        .cat-name {
            font-size: 17px;
            font-weight: 700;
            min-width: 0;
            grid-area: name;
            display: flex;
            align-items: center;
            line-height: 1.15;
            white-space: normal;
            overflow: visible;
            text-overflow: clip;
            min-height: 24px;
        }
        .cat-desc {
            font-size: 13px;
            opacity: 0.76;
            grid-area: desc;
            display: block;
            min-height: 0;
            min-width: 0;
            line-height: 1.32;
            min-height: 2.6em;
            overflow-wrap: normal;
            word-break: normal;
            hyphens: auto;
        }
        .cat-price {
            font-size: 16px;
            font-weight: 700;
            color: #2d7cf3;
            grid-area: price;
            align-self: start;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            min-width: 78px;
            min-height: 30px;
            line-height: 1;
            white-space: nowrap;
        }
        .cat-item input:checked + label .cat-price { color: #a7d3ff; }

        .radio-group { display: flex; gap: 8px; }
        .radio-item { flex: 1; }
        .radio-item input { display: none; }
        .radio-item label {
            display: block; text-align: center; padding: 12px;
            border: 1.5px solid #cfdced; border-radius: 10px;
            background: #f8fbff; cursor: pointer;
        }
        .radio-item input:checked + label {
            background: linear-gradient(145deg, #0f3e76, #1d5ea8);
            color: #fff;
            border-color: #0f3e76;
        }

        .phone-wrapper { position: relative; display: flex; align-items: center; }
        .phone-select {
            position: absolute; left: 4px;
            width: 78px; border: none; background: transparent;
            font-size: 14px; padding: 4px 2px; outline: none; cursor: pointer;
        }
        .phone-wrapper .form-input { padding-left: 88px; }

        .file-upload {
            border: 1.5px solid #cfdced;
            border-radius: 12px;
            padding: 12px;
            display: flex;
            gap: 10px;
            align-items: center;
            background: #f8fbff;
            cursor: pointer;
        }
        .file-upload input { display: none; }
        .file-upload.uploaded { border-color: var(--ok); background: #f1fbf6; }
        .file-upload.error { border-color: var(--danger); background: #fff5f6; }
        .file-upload-icon {
            width: 36px; height: 36px;
            border-radius: 9px;
            display: grid; place-items: center;
            background: #e6effa;
            font-size: 18px;
            color: #4f6f95;
        }
        .file-upload-text { font-size: 14px; }
        .file-upload-desc { font-size: 12px; color: var(--text-soft); }
        .upload-health {
            border: 1px solid #d7e4f5;
            background: #f3f8ff;
            color: #1b4f8f;
            border-radius: 10px;
            font-size: 12px;
            font-weight: 700;
            text-align: center;
            padding: 7px 10px;
            margin: 0 0 8px;
        }
        .upload-missing {
            font-size: 11px;
            color: #9a2230;
            text-align: center;
            min-height: 14px;
            margin: 0 0 8px;
        }
        .s3-topline {
            display: grid;
            grid-template-columns: auto 1fr;
            align-items: center;
            gap: 16px;
            margin: 40px 0;
        }
        .s3-topline-copy { text-align: left; }
        .s3-topline-copy .form-step-title { margin-bottom: 6px; font-size: 20px; line-height: 1.25; text-align: left; }
        .s3-topline-copy .form-step-desc { margin-bottom: 0; font-size: 14px; line-height: 1.55; color: #42546f; text-align: left; }
        .s3-progress-wrap { display: flex; justify-content: center; margin: 0; }
        .s3-progress-ring {
            --p: 0;
            width: 104px;
            height: 104px;
            border-radius: 50%;
            background: conic-gradient(var(--blue) calc(var(--p) * 1%), #dbe7f5 0);
            display: grid;
            place-items: center;
            box-shadow: inset 0 0 0 1px rgba(15,62,118,.08);
        }
        .s3-progress-inner {
            width: 74px;
            height: 74px;
            border-radius: 50%;
            background: #fff;
            display: grid;
            place-items: center;
            font-weight: 800;
            color: var(--blue);
        }
        .s3-progress-ring.is-full {
            animation: s3Pulse 1.2s ease-in-out infinite;
        }
        @keyframes s3Pulse {
            0% { box-shadow: 0 0 0 0 rgba(45,124,243,.38), inset 0 0 0 1px rgba(15,62,118,.08); }
            70% { box-shadow: 0 0 0 10px rgba(45,124,243,0), inset 0 0 0 1px rgba(15,62,118,.08); }
            100% { box-shadow: 0 0 0 0 rgba(45,124,243,0), inset 0 0 0 1px rgba(15,62,118,.08); }
        }
        .s3-security-banner {
            margin: 0 0 12px;
            border: 1px solid #d4e1f3;
            background: #f5f9ff;
            border-radius: 12px;
            padding: 10px 12px;
        }
        .s3-security-head { font-size: 13px; font-weight: 800; color: #0f3e76; display:flex; gap:8px; align-items:center; }
        .s3-security-icon-img { width: 44px; height: 44px; object-fit: contain; display: inline-block; flex: 0 0 auto; }
        .s3-security-desc { margin-top: 6px; font-size: 12px; color: #3b4a60; line-height: 1.45; }
        .s3-disclaimer { font-size: 12px; color: #4f5f77; margin: 6px 0 10px; line-height: 1.45; text-align: center; }
        .s3-inline-rotator { margin: 2px 0 12px; }
        .s3-task-list { display: grid; gap: 10px; margin-top: 8px; }
        .consent-box {
            margin-top: 12px;
            border: 1px solid #d7e4f5;
            background: #f5f9ff;
            border-radius: 12px;
            padding: 12px;
            transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
        }
        .consent-box.has-error {
            border-color: #c0392b;
            background: #fff7f8;
            box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.08);
        }
        .consent-label {
            display: grid;
            grid-template-columns: 22px 1fr;
            column-gap: 10px;
            align-items: flex-start;
            cursor: pointer;
        }
        .consent-label input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }
        .consent-check {
            width: 22px;
            height: 22px;
            margin-top: 1px;
            border-radius: 7px;
            border: 1.5px solid #9dbbe0;
            background: #fff;
            box-shadow: 0 2px 6px rgba(15, 62, 118, 0.08);
            transition: all .2s ease;
            position: relative;
        }
        .consent-label input:checked + .consent-check {
            border-color: #0f3e76;
            background: linear-gradient(145deg, #0f3e76, #1d5ea8);
        }
        .consent-label input:checked + .consent-check::after {
            content: '';
            position: absolute;
            left: 7px;
            top: 3px;
            width: 5px;
            height: 10px;
            border: solid #fff;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }
        .consent-label input:focus-visible + .consent-check {
            outline: 2px solid #9ac3ff;
            outline-offset: 2px;
        }
        .consent-text {
            color: #1f3556;
            font-size: 12px;
            line-height: 1.45;
            font-weight: 500;
        }
        .s3-task {
            border: 1px solid #d8e3f1;
            border-radius: 12px;
            padding: 25px;
            background: #fff;
            display: none;
            text-align: left;
        }
        .s3-task.is-active { display: flex; flex-direction: column; gap: 12px; animation: fadeIn .25s ease; }
        .s3-task.is-completed { display: block; }
        .s3-task-num {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: #eaf1fb;
            color: #0f3e76;
            font-weight: 800;
            font-size: 13px;
            display: grid;
            place-items: center;
            margin-bottom: 0;
        }
        .s3-task-head { display:flex; align-items:center; justify-content:center; gap:8px; margin-bottom: 6px; }
        .s3-task h4 { margin: 0; font-size: 15px; color: #1d1d1f; line-height: 1.2; }
        .s3-task p { margin: 0; font-size: 13px; color: #3f4f67; line-height: 1.5; }
        .s3-task-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 8px; }
        .s3-tile-btn {
            border: none;
            background: linear-gradient(90deg,#1d5ea8,#2d7cf3);
            color: #fff;
            border-radius: 10px;
            padding: 10px 8px;
            font-size: 12px;
            font-weight: 700;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            box-shadow: 0 8px 18px rgba(45,124,243,.25);
            min-width: 190px;
        }
        .s3-tile-btn span {
            text-align: center;
            line-height: 1.2;
        }
        .s3-tile-btn:hover { transform: translateY(-1px); }
        .s3-hidden-input { display: none; }
        .s3-task-done {
            margin-top: 8px;
            display: none;
            justify-content: space-between;
            align-items: center;
            gap: 8px;
            border-radius: 10px;
            background: #f1fbf6;
            border: 1px solid #b9ebcf;
            padding: 8px 10px;
            font-size: 13px;
            font-weight: 700;
            color: #11653f;
        }
        .s3-task.is-completed .s3-task-actions { display: none; }
        .s3-task.is-completed .s3-task-done { display: flex; }
        .s3-task.is-completed h4,
        .s3-task.is-completed p,
        .s3-task.is-completed .s3-task-num { display: none; }
        .s3-task.is-completed {
            border: none;
            background: transparent;
            padding: 0;
        }
        .s3-task.is-completed .s3-task-done {
            border: none;
            background: transparent;
            border-radius: 0;
            padding: 0;
        }
        .s3-edit-btn {
            border: 1px solid #95c8ac;
            background: #fff;
            color: #245b43;
            border-radius: 8px;
            padding: 4px 10px;
            font-size: 12px;
            font-weight: 700;
            cursor: pointer;
        }
        .s3-sign-modal { position: fixed; inset: 0; display: none; z-index: 2500; }
        .s3-sign-modal.show { display: block; }
        .s3-sign-backdrop { position: absolute; inset: 0; background: rgba(6,15,27,.5); }
        .s3-sign-card {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: min(680px, 94vw);
            background: #fff;
            border-radius: 14px;
            padding: 14px;
            box-shadow: 0 26px 60px rgba(0,0,0,.28);
        }
        .s3-sign-card h4 { margin: 0 0 6px; font-size: 17px; }
        .s3-sign-card p { margin: 0 0 10px; font-size: 13px; color: #4c5b72; }
        #s3-sign-canvas { width: 100%; height: 220px; border: 1px solid #d6e1ef; border-radius: 10px; background: #fff; touch-action: none; }
        .s3-sign-actions { display:flex; justify-content:flex-end; gap:8px; margin-top:10px; }
        .s3-mobile-only { display: none; }
        @media (max-width: 899px) {
            .s3-topline { grid-template-columns: 78px 1fr; justify-items: start; text-align: left; gap: 10px; margin: 28px 0; align-items: center; }
            .s3-progress-ring { width: 78px; height: 78px; }
            .s3-progress-inner { width: 42px; height: 42px; font-size: 12px; }
            .s3-topline-copy .form-step-title { font-size: 14px; line-height: 1.2; margin-bottom: 3px; }
            .s3-topline-copy .form-step-desc { font-size: 11px; line-height: 1.35; }
            .s3-mobile-only { display: inline-block; }
            .s3-task-actions { justify-content: center; }
            .s3-task h4 { font-size: 14px; }
            .s3-task { text-align: left; padding: 18px; }
            .s3-tile-btn { min-width: 150px; }
        }

        .photo-options { display: flex; gap: 8px; }
        .photo-btn {
            flex: 1; border: 1.5px solid #cfdced; border-radius: 12px;
            background: #f8fbff; color: var(--text);
            padding: 14px 10px; cursor: pointer;
            display: flex; flex-direction: column; align-items: center; gap: 5px;
            font-size: 13px; font-family: inherit;
        }
        .photo-btn-icon { font-size: 22px; }
        .photo-preview { margin-top: 10px; position: relative; display: inline-block; }
        .photo-preview img { width: 96px; height: 96px; object-fit: cover; border-radius: 10px; border: 2px solid #2d7cf3; }
        .photo-preview.error img { border-color: var(--danger); }
        .photo-remove {
            position: absolute; top: -8px; right: -8px; width: 22px; height: 22px;
            border-radius: 50%; border: none; background: var(--danger); color: #fff; cursor: pointer; font-size: 11px;
        }

        .webcam-overlay {
            display: none;
            position: fixed; inset: 0;
            background: rgba(6, 20, 37, 0.95);
            z-index: 9999;
            pointer-events: none;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 14px;
        }
        .webcam-overlay.show { display: flex; pointer-events: auto; }
        .webcam-overlay video {
            width: 280px; height: 280px;
            object-fit: cover;
            border-radius: 50%;
            border: 3px solid #8cc6ff;
        }
        .webcam-overlay canvas { display: none; }
        .webcam-btns { display: flex; gap: 10px; }
        .webcam-btn {
            border: none;
            border-radius: 11px;
            padding: 11px 22px;
            font-size: 15px;
            font-family: inherit;
            font-weight: 600;
            cursor: pointer;
        }
        .webcam-btn.snap { background: #8cc6ff; color: #0a315f; }
        .webcam-btn.cancel { background: transparent; border: 1px solid rgba(255,255,255,0.24); color: #fff; }

        .btn-row { display: flex; gap: 8px; margin-top: 16px; }
        .btn-back {
            flex: 1;
            border: 1.5px solid #cfdced;
            background: #f8fbff;
            color: var(--text);
            border-radius: 11px;
            padding: 14px;
            font-size: 15px;
            font-family: inherit;
            cursor: pointer;
        }
        .btn-primary {
            flex: 2;
            border: none;
            background: linear-gradient(145deg, #0f3e76, #1d5ea8);
            color: #fff;
            border-radius: 11px;
            padding: 14px;
            font-size: 15px;
            font-weight: 700;
            font-family: inherit;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(15,62,118,0.24);
        }
        .btn-primary:disabled {
            opacity: .5;
            cursor: not-allowed;
            box-shadow: none;
            filter: grayscale(.2);
        }
        .btn-primary.cta-nudge {
            animation: ctaNudge 1.25s ease-in-out infinite;
        }
        @keyframes ctaNudge {
            0% { transform: translateY(0); box-shadow: 0 8px 20px rgba(15,62,118,0.24); }
            35% { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(29,94,168,0.32); }
            70% { transform: translateY(0); box-shadow: 0 8px 20px rgba(15,62,118,0.24); }
            100% { transform: translateY(0); box-shadow: 0 8px 20px rgba(15,62,118,0.24); }
        }
        .submit-recover {
            display: none;
            margin-top: 10px;
            border: 1px solid #f0d7d9;
            background: #fff7f8;
            border-radius: 11px;
            padding: 10px;
            gap: 8px;
            align-items: center;
            justify-content: space-between;
        }
        .submit-recover.show { display: flex; }
        .submit-recover-text { font-size: 12px; color: #8a2d36; line-height: 1.35; }
        .submit-retry-btn { flex: 0 0 auto; padding: 10px 12px; font-size: 13px; box-shadow: none; }
        .post-submit-progress {
            display: none;
            margin: -2px 0 12px;
            padding: 8px 10px;
            border-radius: 12px;
            border: 1px solid #d3e2f4;
            background: #f4f8ff;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .post-submit-progress.show { display: flex; }
        .post-submit-progress-text {
            font-size: 20px;
            font-weight: 700;
            color: #1b4f8f;
        }
        .post-submit-progress-badge {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            border: 2px solid #2d7cf3;
            background: #2d7cf3;
            color: #fff;
            font-size: 15px;
            font-weight: 800;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            letter-spacing: .2px;
        }
        .post-submit-confirmation {
            display: none;
            margin-top: 12px;
            border: 1px solid #d2e2f4;
            border-radius: 14px;
            background: linear-gradient(180deg, #f7fbff 0%, #eef6ff 100%);
            padding: 16px 14px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .post-submit-confirmation.show { display: block; }
        .post-submit-title {
            margin: 6px 0 12px;
            font-size: 14px;
            line-height: 1.2;
            color: #0f3e76;
            border: 1px solid #ff5a5a;
            border-radius: 10px;
            padding: 10px 12px;
            background: rgba(255, 234, 234, 0.7);
            box-shadow: 0 0 0 0 rgba(255, 67, 67, 0.42);
            animation: warningGlowPulse 1.6s ease-in-out infinite;
        }
        .post-submit-note {
            margin: 0 0 12px;
            font-size: 12px;
            line-height: 1.45;
            color: #3f5877;
        }
        @keyframes warningGlowPulse {
            0% {
                border-color: #ff7d7d;
                box-shadow: 0 0 0 0 rgba(255, 67, 67, 0.36), 0 0 10px rgba(255, 67, 67, 0.14);
            }
            50% {
                border-color: #ff2f2f;
                box-shadow: 0 0 0 2px rgba(255, 67, 67, 0.22), 0 0 18px rgba(255, 67, 67, 0.36);
            }
            100% {
                border-color: #ff7d7d;
                box-shadow: 0 0 0 0 rgba(255, 67, 67, 0.36), 0 0 10px rgba(255, 67, 67, 0.14);
            }
        }
        .post-submit-benefits {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 12px;
            align-items: center;
            text-align: left;
            border: 1px solid #d5e4f5;
            border-radius: 12px;
            background: #fff;
            padding: 11px 12px;
            margin: 0 0 14px;
        }
        .post-submit-timer-wrap {
            width: 88px;
            height: 88px;
            display: grid;
            place-items: center;
        }
        .post-submit-timer-ring {
            --p: 100;
            --timer-color: #1f9d63;
            width: 88px;
            height: 88px;
            border-radius: 50%;
            background: conic-gradient(var(--timer-color) calc(var(--p) * 1%), #dbe7f5 0%);
            display: grid;
            place-items: center;
            box-shadow: inset 0 0 0 1px rgba(15, 62, 118, 0.1);
            transition: background .35s ease;
        }
        .post-submit-timer-inner {
            width: 66px;
            height: 66px;
            border-radius: 50%;
            background: #fff;
            display: grid;
            place-items: center;
        }
        .post-submit-timer {
            font-size: 20px;
            line-height: 1;
            font-weight: 800;
            letter-spacing: .8px;
            color: #1b4f8f;
            font-variant-numeric: tabular-nums;
        }
        .post-submit-benefits-copy h4 {
            margin: 0 0 6px;
            font-size: 13px;
            color: #0f3e76;
        }
        .post-submit-benefits-copy ul {
            margin: 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 4px;
        }
        .post-submit-benefits-copy li {
            position: relative;
            padding-left: 20px;
            font-size: 12px;
            color: #385170;
            line-height: 1.35;
        }
        .post-submit-benefits-copy li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 0;
            color: #1f9d63;
            font-weight: 800;
        }
        .post-submit-actions {
            display: grid;
            grid-template-columns: 1fr;
            gap: 10px;
        }
        .post-submit-actions-title {
            margin: 0 0 8px;
            font-size: 14px;
            line-height: 1.3;
            color: #0f3e76;
        }
        .post-submit-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 48px;
            border-radius: 12px;
            padding: 11px 14px;
            color: #fff;
            text-decoration: none;
            font-size: 14px;
            font-weight: 700;
            box-shadow: 0 10px 22px rgba(15, 62, 118, 0.25);
            animation: confirmBtnPulse 1.35s ease-in-out infinite;
        }
        .post-submit-btn .btn-icon {
            width: 18px;
            height: 18px;
            display: inline-flex;
            flex: 0 0 18px;
            margin-right: 8px;
        }
        .post-submit-btn .btn-icon svg {
            width: 18px;
            height: 18px;
            display: block;
        }
        .post-submit-btn.messenger { background: linear-gradient(145deg, #00b2ff, #006aff); }
        .post-submit-btn.telegram {
            background: linear-gradient(145deg, #2ca5e0, #0b7fcc);
            animation-delay: .2s;
        }
        .post-submit-btn:hover,
        .post-submit-btn:focus-visible {
            transform: translateY(-1px);
            box-shadow: 0 14px 28px rgba(15, 62, 118, 0.32);
        }
        .post-submit-btn:focus-visible {
            outline: 2px solid #9ac3ff;
            outline-offset: 2px;
        }
        .post-submit-confetti {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 1;
        }
        .post-submit-title,
        .post-submit-note,
        .post-submit-benefits,
        .post-submit-actions-title,
        .post-submit-actions {
            position: relative;
            z-index: 2;
        }
        @keyframes confirmBtnPulse {
            0% {
                transform: translateY(0) scale(1);
                box-shadow: 0 10px 22px rgba(15, 62, 118, 0.25);
            }
            40% {
                transform: translateY(-2px) scale(1.02);
                box-shadow: 0 14px 28px rgba(15, 62, 118, 0.33);
            }
            100% {
                transform: translateY(0) scale(1);
                box-shadow: 0 10px 22px rgba(15, 62, 118, 0.25);
            }
        }

        .form-trust {
            margin-top: 14px;
            padding-top: 12px;
            border-top: 1px solid #deebfa;
            display: flex;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
        }
        .form-trust-item { display: flex; align-items: center; gap: 4px; font-size: 10px; color: var(--text-soft); }
        .rodo-badge {
            display: inline-flex; align-items: center;
            border: 1px solid #b9dbc8;
            background: #eef8f2;
            color: #1a7a4a;
            font-size: 10px;
            font-weight: 700;
            border-radius: 6px;
            padding: 2px 7px;
        }
        .form-footer { text-align: center; margin-top: 10px; font-size: 11px; color: var(--text-soft); }
        .form-trust-rotator {
            margin-top: 12px;
            border: 1px solid #cfe5da;
            background: #f4fbf7;
            border-radius: 12px;
            padding: 8px 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            min-height: 42px;
        }
        .trust-rotator-icon {
            width: 26px;
            height: 26px;
            border-radius: 8px;
            background: #e3f3ea;
            color: #1a7a4a;
            display: grid;
            place-items: center;
            font-size: 14px;
            flex-shrink: 0;
            transition: opacity .42s ease, transform .42s ease;
        }
        .trust-rotator-text {
            color: #245b43;
            font-size: 12px;
            font-weight: 600;
            line-height: 1.2;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            text-align: center;
            transition: opacity .42s ease, transform .42s ease;
        }
        .form-trust-rotator.is-changing .trust-rotator-icon,
        .form-trust-rotator.is-changing .trust-rotator-text {
            opacity: 0;
            transform: translateY(4px);
        }

        .viewing-now {
            margin-top: 14px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: var(--text-soft);
            line-height: 1.2;
        }

        .mobile-cta {
            position: fixed;
            left: 0; right: 0; bottom: 0;
            z-index: 140;
            display: none;
            padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
            background: rgba(255, 255, 255, 0.98);
            border-top: 1px solid #d9e6f6;
            box-shadow: 0 -8px 24px rgba(8,34,71,.1);
        }
        .mobile-cta.show { display: block; }
        .mobile-cta button {
            width: 100%;
            border: none;
            border-radius: 12px;
            padding: 13px;
            font-size: 14px;
            font-weight: 700;
            font-family: inherit;
            background: linear-gradient(145deg, #0f3e76, #1d5ea8);
            color: #fff;
            cursor: pointer;
        }
        .mobile-cta small {
            display: block;
            text-align: center;
            margin-top: 3px;
            color: var(--text-soft);
            font-size: 10px;
        }
        .mobile-reminder-link {
            display: block;
            color: #1a7a4a;
            width: 100%;
            margin-top: 6px;
            text-align: center;
            text-decoration: underline;
            text-underline-offset: 2px;
            font-size: 13px;
            font-weight: 600;
            padding: 2px 0 0;
            cursor: pointer;
        }
        .live-proof-region {
            position: fixed;
            left: 1rem;
            bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
            z-index: 180;
            pointer-events: none;
            display: grid;
            gap: 0.5rem;
            width: auto;
            max-width: calc(100vw - 2rem);
        }
        .live-proof-card {
            display: grid;
            grid-template-columns: auto minmax(0, 1fr);
            gap: 0.56rem;
            align-items: start;
            border-radius: 0.95rem;
            border: 1px solid rgba(16, 185, 129, 0.28);
            background: linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(238, 251, 245, 0.92));
            box-shadow: 0 18px 44px rgba(7, 10, 8, 0.19);
            padding: 0.66rem 0.78rem;
            width: fit-content;
            max-width: min(29rem, calc(100vw - 2rem));
            animation: liveProofInDesktop 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
        }
        .live-proof-card.is-leaving {
            animation: liveProofOutDesktop 300ms cubic-bezier(0.55, 0, 1, 0.45) both;
        }
        .live-proof-icon {
            width: 1.95rem;
            height: 1.95rem;
            border-radius: 999px;
            border: 1px solid rgba(16, 185, 129, 0.35);
            background: rgba(16, 185, 129, 0.12);
            display: grid;
            place-items: center;
            color: #0f7f5d;
            font-weight: 800;
            font-size: 13px;
        }
        .live-proof-main {
            font-size: 0.84rem;
            line-height: 1.35;
            font-weight: 600;
            color: #1f4d3a;
        }
        .live-proof-meta {
            margin-top: 0.15rem;
            font-size: 0.74rem;
            color: #7a8380;
        }
        @keyframes liveProofInDesktop {
            from { opacity: 0; transform: translate(-16px, 32px) scale(0.96); }
            to { opacity: 1; transform: translate(0, 0) scale(1); }
        }
        @keyframes liveProofOutDesktop {
            from { opacity: 1; transform: translate(0, 0) scale(1); }
            to { opacity: 0; transform: translate(-12px, 26px) scale(0.97); }
        }
        @keyframes liveProofInMobile {
            from { opacity: 0; transform: translateY(-220%) scale(0.98); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }
        @keyframes liveProofOutMobile {
            from { opacity: 1; transform: translateY(0) scale(1); }
            to { opacity: 0; transform: translateY(-18px) scale(0.98); }
        }
        .reminder-open { overflow: hidden; }
        .reminder-modal {
            position: fixed;
            inset: 0;
            z-index: 240;
            display: none;
            pointer-events: none;
        }
        .reminder-modal.show { display: block; pointer-events: auto; }
        .reminder-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(8, 24, 44, 0.72);
            backdrop-filter: blur(3px);
        }
        .reminder-card {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: min(540px, calc(100vw - 24px));
            background: #fff;
            border: 1px solid #d6e1ee;
            border-radius: 18px;
            box-shadow: 0 18px 48px rgba(8, 34, 71, 0.28);
            padding: 20px 18px 18px;
            color: #13233b;
        }
        .reminder-close {
            position: absolute;
            right: 10px;
            top: 10px;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            border: 1px solid #d6e1ee;
            background: #f6f9ff;
            color: #355880;
            font-size: 18px;
            line-height: 1;
            cursor: pointer;
        }
        .reminder-badge {
            display: inline-block;
            font-size: 10px;
            font-weight: 800;
            letter-spacing: .08em;
            text-transform: uppercase;
            border-radius: 999px;
            border: 1px solid #b7e1cc;
            background: linear-gradient(145deg, #ebf8f0, #ddf3e7);
            color: #1a7a4a;
            padding: 4px 8px;
            margin-bottom: 8px;
        }
        .reminder-card h3 {
            font-size: 24px;
            line-height: 1.2;
            margin: 0 26px 8px 0;
        }
        .reminder-text {
            margin: 0;
            color: #4d6482;
            font-size: 14px;
            line-height: 1.5;
        }
        .reminder-help {
            margin-top: 12px;
            padding-top: 12px;
            border-top: 1px solid #e2ebf6;
        }
        .reminder-help-text {
            margin: 0 0 10px;
            color: #4d6482;
            font-size: 13px;
            line-height: 1.45;
            text-align: center;
        }
        .reminder-help-actions {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }
        .reminder-help-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 12px;
            border-radius: 12px;
            text-decoration: none;
            color: #fff;
            font-size: 13px;
            font-weight: 700;
            transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
        }
        .reminder-help-btn .icon {
            display: inline-flex;
            width: 18px;
            height: 18px;
            align-items: center;
            justify-content: center;
        }
        .reminder-help-btn .icon i {
            display: inline-block;
            line-height: 1;
            font-size: 18px;
            color: #fff;
        }
        .reminder-help-btn.messenger { background: linear-gradient(145deg, #00b2ff, #006aff); }
        .reminder-help-btn.telegram { background: linear-gradient(145deg, #2ca5e0, #0b7fcc); }
        .reminder-help-btn:hover,
        .reminder-help-btn:focus-visible {
            transform: translateY(-1px);
            box-shadow: 0 8px 20px rgba(17, 59, 37, 0.28);
            filter: saturate(1.05);
        }
        .reminder-help-btn:active {
            transform: translateY(0) scale(.98);
        }
        .footer {
            margin-top: 16px;
            background: #eaf1fb;
            border-top: 1px solid #d0deef;
            text-align: center;
            padding: 18px 16px 86px;
            font-size: 11px;
            color: var(--text-soft);
        }
        .footer a { color: var(--text-soft); text-decoration: none; margin: 0 10px; }

        .loading-overlay {
            position: fixed;
            inset: 0;
            background: rgba(243,246,251,0.96);
            z-index: 220;
            display: none;
            pointer-events: none;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }
        .loading-overlay.show { display: flex; pointer-events: auto; }
        .loading-spinner {
            width: 40px; height: 40px;
            border: 3px solid #d3e2f7;
            border-top-color: #1d5ea8;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        .loading-text { margin-top: 12px; color: #1d5ea8; font-size: 14px; }
        @keyframes spin { to { transform: rotate(360deg); } }
        .confetti-container { position: fixed; inset: 0; pointer-events: none; z-index: 221; }
        .confetti-piece { position: absolute; width: 8px; height: 8px; opacity: 0; }

        @media (prefers-reduced-motion: reduce) {
            * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
            .reviews-track { animation: none !important; }
            .dot { animation: none !important; }
        }

        @media (min-width: 900px) {
            .hero { text-align: left; padding: 40px 18px 30px; }
            .hero-inner { padding: 0 14px; }
            .hero-layout { grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); gap: 24px; align-items: center; }
            .hero-main, .hero-compare { min-height: 380px; }
            .hero-main { justify-content: center; }
            .trust-chip { margin-left: 0; margin-right: 0; }
            .hero-desc { margin-left: 0; margin-right: 0; }
            .hero-pills { justify-content: flex-start; }
            .hero-meta { justify-content: flex-start; }
            .hero-quick-cta { align-self: flex-start; }
            .hero-cta-wrap { max-width: 420px; }
            .hero-quick-cta.primary { border-radius: 11px; padding: 14px; }
            .main { margin-top: 44px; padding-bottom: 48px; }
            .layout { grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); align-items: start; gap: 22px; }
            .form-column { position: sticky; top: 18px; align-self: start; }
            .warn-grid { grid-template-columns: 1fr 1fr 1fr 1fr; }
            .faq-wrap { grid-template-columns: 1fr 1fr; }
            .features-list { grid-template-columns: 1fr; }
            .process-flow { grid-template-columns: 1fr 1fr; gap: 12px; }
            .process-step {
                min-height: 76px;
                padding: 9px 11px;
            }
            .step-card-title { font-size: 16px; }
            .step-card-desc { font-size: 13px; line-height: 1.4; }
            .reviews-card { margin-bottom: 28px; }
            .faq-full { margin-top: 22px; }
            .comp-stack { grid-template-columns: 1fr 1fr; }
            .cat-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .footer { padding-bottom: 26px; }
        }
        @media (max-width: 899px) {
            .main { margin-top: 26px; padding-bottom: 16px; }
            .upload-pair { grid-template-columns: 1fr; }
            .form-sticky-trust {
                display: none;
            }
            .form-row-3 { grid-template-columns: 1fr; }
            .form-input[type="date"] {
                -webkit-appearance: none;
                appearance: none;
                padding-right: 42px;
                font-size: 16px;
            }
            .form-input[type="date"]::-webkit-calendar-picker-indicator { opacity: 0; }
            .date-icon { display: block; }
            .hero-compare { margin-top: 6px; }
            .hero-main { text-align: center; }
            .hero-cta-wrap { max-width: none; }
            .form-column { position: static; }
            .trust-chip { margin-left: auto; margin-right: auto; }
            .hero-pills {
                display: grid;
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 8px;
                width: 100%;
            }
            .hero-pill {
                min-width: 0;
                padding: 10px 8px;
            }
            .hero-pill-num { font-size: 22px; }
            .hero-pill-label { font-size: 10px; }
            .process-flow { grid-template-columns: 1fr; }
            .process-step {
                min-height: auto;
                display: grid;
                grid-template-columns: 40px 1fr;
                grid-template-rows: auto auto;
                column-gap: 12px;
                row-gap: 2px;
                align-items: start;
                padding: 10px;
                border-radius: 12px;
                border: 1px solid #e8eff8;
                background: var(--surface-alt);
                box-shadow: none;
            }
            .process-icon {
                width: 40px;
                height: 40px;
                min-width: 40px;
                border-radius: 10px;
                font-size: 21px;
                box-shadow: none;
                grid-column: 1;
                grid-row: 1 / span 2;
            }
            .feat-row {
                display: grid;
                grid-template-columns: 40px 1fr;
                column-gap: 12px;
                align-items: start;
                padding: 10px;
            }
            .feat-icon {
                width: 40px;
                height: 40px;
                min-width: 40px;
                border-radius: 10px;
            }
            .feat-text { font-size: 15px; line-height: 1.25; }
            .feat-text small { margin-top: 3px; line-height: 1.35; }
            .step-card-title {
                font-size: 15px;
                margin: 0;
                line-height: 1.25;
                grid-column: 2;
                grid-row: 1;
            }
            .step-card-desc {
                margin: 2px 0 0;
                font-size: 13px;
                line-height: 1.35;
                grid-column: 2;
                grid-row: 2;
            }
            .reviews-slider { height: 360px; }
            .faq-full { margin-top: 18px; }
            .footer { margin-top: 6px; }
            .submit-recover { flex-direction: column; align-items: stretch; }
            .post-submit-benefits {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .post-submit-timer-wrap {
                width: 100%;
            }
            .post-submit-benefits-copy li {
                text-align: left;
            }
            .live-proof-region {
                left: 0;
                right: 0;
                bottom: auto;
                top: calc(66px + env(safe-area-inset-top, 0px));
                width: 100%;
                max-width: none;
                z-index: 88;
            }
            .live-proof-card {
                border-radius: 0;
                border-left: 0;
                border-right: 0;
                border-top: 0;
                padding: 0.34rem 0.5rem;
                width: 100%;
                max-width: none;
                animation: liveProofInMobile 360ms cubic-bezier(0.22, 1, 0.36, 1) both;
            }
            .live-proof-card.is-leaving {
                animation: liveProofOutMobile 280ms cubic-bezier(0.55, 0, 1, 0.45) both;
            }
            .live-proof-main {
                font-size: 0.67rem;
                line-height: 1.2;
            }
            .live-proof-meta {
                font-size: 0.59rem;
                margin-top: 0.05rem;
            }
            .live-proof-icon {
                width: 1.2rem;
                height: 1.2rem;
                font-size: 10px;
            }
            .reminder-card h3 { font-size: 21px; }
            .reminder-help-actions { grid-template-columns: 1fr; }
        }

        /* Lift-inspired refresh */
        .hero {
            padding: 30px 18px 30px;
            background: linear-gradient(160deg, #ffffff 0%, #f0fbf4 100%);
            color: var(--text);
        }
        .hero:before {
            background: radial-gradient(circle at 16% 28%, rgba(26, 122, 74, 0.11), transparent 44%);
        }
        .hero:after {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            background-image:
                linear-gradient(160deg, rgba(255,255,255,0.2) 0%, rgba(240,251,244,0.24) 100%),
                url("../images/map-hero.webp"),
                radial-gradient(circle at 20% 30%, rgba(26,122,74,0.14) 0 2px, transparent 2px),
                radial-gradient(circle at 62% 42%, rgba(26,122,74,0.12) 0 2px, transparent 2px),
                radial-gradient(circle at 78% 68%, rgba(26,122,74,0.12) 0 2px, transparent 2px),
                linear-gradient(115deg, rgba(26,122,74,0.08) 0%, rgba(26,122,74,0.02) 28%, transparent 35%),
                linear-gradient(24deg, rgba(26,122,74,0.07) 0%, rgba(26,122,74,0.02) 24%, transparent 32%);
            background-repeat: no-repeat;
            background-size: cover, cover, cover, cover, cover, cover, cover;
            background-position: center;
            opacity: 0.45;
        }
        .hero-layout {
            gap: 22px;
        }
        .hero-main {
            text-align: left;
        }
        .trust-chip {
            background: rgba(255, 255, 255, 0.78);
            border: 1px solid rgba(255, 255, 255, 0.6);
            box-shadow: 0 8px 24px rgba(17, 59, 37, 0.1);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            color: #1a7a4a;
            margin-bottom: 20px;
            font-weight: 600;
        }
        .dot {
            background: #22a05a;
            box-shadow: 0 0 0 5px rgba(34, 160, 90, 0.2);
        }
        .hero h1 {
            font-size: clamp(32px, 4.8vw, 54px);
            line-height: 1.1;
            color: #0d1f17;
            letter-spacing: -0.03em;
        }
        .hero h1 span {
            color: #1a7a4a;
            margin-top: 10px;
            font-size: clamp(18px, 2.2vw, 24px);
        }
        .hero-desc {
            margin: 18px 0 24px;
            max-width: 620px;
            color: #4a5e54;
            font-size: 17px;
            font-weight: 400;
        }
        .hero-pills {
            justify-content: flex-start;
            gap: 12px;
        }
        .hero-pill {
            background: #ffffff;
            border: 1px solid #c3e8d3;
            box-shadow: 0 2px 8px rgba(17, 59, 37, 0.06);
            border-radius: 12px;
        }
        .hero-pill-num {
            color: #1a7a4a;
        }
        .hero-pill-label {
            color: #6f887d;
            opacity: 1;
        }
        .hero-meta {
            justify-content: flex-start;
            color: #4a5e54;
            font-size: 13px;
        }
        .hero-compare {
            background: rgba(255, 255, 255, 0.78);
            border: 1px solid rgba(255, 255, 255, 0.6);
            border-radius: 18px;
            box-shadow: 0 8px 36px rgba(17, 59, 37, 0.14);
            backdrop-filter: blur(14px);
        }
        .hero-compare .comp-stack {
            grid-template-columns: 1fr 1fr;
            gap: 0;
            border-radius: 12px;
            overflow: hidden;
        }
        .hero-compare .comp-card {
            border-radius: 0;
            border: 0;
            padding: 16px 14px;
        }
        .hero-compare .comp-card.bad {
            background: #fff5f5;
            color: #7a4040;
            border-right: 1px solid #f2d9d9;
        }
        .hero-compare .comp-card.good {
            background: #f0fbf4;
            color: #1a7a4a;
            box-shadow: none;
        }
        .hero-compare .comp-card-title {
            font-size: 13px;
            letter-spacing: 0;
            text-transform: none;
            font-family: 'Space Grotesk', 'Inter', sans-serif;
        }
        .hero-compare .comp-x {
            color: #d93025;
        }
        .hero-compare .comp-ok {
            color: #1a7a4a;
        }
        .hero-compare .scarcity {
            background: #ffffff;
            border-color: #c3e8d3;
            margin-top: 0;
        }
        .hero-compare .scarcity-title,
        .hero-compare .scarcity-text {
            color: #0d1f17;
        }
        .hero-compare .scarcity-fill {
            background: linear-gradient(90deg, #1a7a4a, #22a05a);
        }
        .hero-quick-cta.primary {
            background: linear-gradient(145deg, #22a05a, #189048);
            border: 1px solid rgba(26, 122, 74, 0.4);
            box-shadow: 0 14px 30px rgba(26, 122, 74, 0.36), 0 0 0 1px rgba(255,255,255,0.12) inset;
        }
        .hero-quick-cta.primary:hover,
        .hero-quick-cta.primary:focus-visible {
            box-shadow: 0 16px 36px rgba(26, 122, 74, 0.42), 0 0 0 1px rgba(207, 240, 220, 0.5) inset;
        }
        .hero-quick-cta.primary:focus-visible {
            outline-color: #9fd7b7;
        }

        .btn-primary,
        .mobile-cta button {
            background: linear-gradient(145deg, #1a7a4a, #22a05a);
            box-shadow: 0 8px 20px rgba(26,122,74,0.24);
        }
        .prog-line-fill,
        .scarcity-fill {
            background: linear-gradient(90deg, #1a7a4a, #22a05a);
        }
        .feat-icon,
        .process-icon,
        .cat-item input:checked + label,
        .radio-item input:checked + label,
        .info-banner,
        .post-submit-btn.messenger,
        .post-submit-btn.telegram {
            background: linear-gradient(145deg, #1a7a4a, #22a05a);
        }
        .card-label,
        .prog-percent,
        .form-sticky-trust,
        .trust-mini-ico,
        .viewing-now strong,
        .review-stars::before {
            color: #1a7a4a;
        }
        .safe-banner strong,
        .hero-compare .scarcity-title span {
            color: #1a7a4a;
        }

        @media (min-width: 900px) {
            .hero {
                text-align: left;
                padding: 36px 18px 44px;
            }
            .hero-layout {
                grid-template-columns: 1fr 1fr;
                gap: 34px;
                align-items: center;
            }
            .hero-main, .hero-compare {
                min-height: auto;
            }
        }

        @media (max-width: 899px) {
            .hero {
                padding: 24px 16px 28px;
                text-align: left;
            }
            .hero-main {
                text-align: left;
            }
            .trust-chip {
                margin-left: 0;
                margin-right: 0;
            }
            .hero-pills {
                grid-template-columns: 1fr;
            }
            .hero-compare .comp-stack {
                grid-template-columns: 1fr;
                border-radius: 12px;
                overflow: hidden;
            }
            .hero-compare .comp-card.bad {
                border-right: 0;
                border-bottom: 1px solid #f2d9d9;
            }
        }

        /* Dynamic header + global button system (Lift style) */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 260;
            height: 74px;
            transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
        }
        .site-header.scrolled {
            background: rgba(255,255,255,0.84);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            box-shadow: 0 1px 0 rgba(15,48,29,.08), 0 8px 24px rgba(17,59,37,.08);
        }
        .site-header-inner {
            max-width: 1200px;
            margin: 0 auto;
            height: 100%;
            padding: 0 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
        }
        .site-logo {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }
        .site-logo-img {
            height: 56px;
            width: auto;
            display: block;
        }
        .site-logo-mark {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(145deg, #1a7a4a, #22a05a);
            color: #fff;
            font-family: 'Space Grotesk', 'Inter', sans-serif;
            font-size: 18px;
            font-weight: 700;
            letter-spacing: -0.01em;
        }
        .site-logo-text {
            font-family: 'Space Grotesk', 'Inter', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: #0d1f17;
            letter-spacing: -0.03em;
            line-height: 1;
        }
        .site-logo-text span { color: #1a7a4a; }
        .site-header-nav {
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .site-icon-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid #d1e6da;
            background: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #4a5e54;
            transition: all .22s ease;
        }
        .site-icon-link:hover {
            color: #1a7a4a;
            border-color: #b6dcc8;
            background: #f4fbf7;
            transform: translateY(-1px);
        }
        .site-icon-link svg {
            width: 20px;
            height: 20px;
            fill: currentColor;
            display: block;
        }
        .site-header-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 42px;
            padding: 10px 18px;
            border-radius: 12px;
            text-decoration: none;
            font-family: 'Space Grotesk', 'Inter', sans-serif;
            font-weight: 700;
            font-size: 14px;
            letter-spacing: -0.01em;
            color: #fff;
            background: linear-gradient(145deg, #22a05a, #189048);
            box-shadow: 0 8px 20px rgba(26,122,74,.25);
            transition: transform .2s ease, box-shadow .2s ease;
        }
        .site-header-cta:hover,
        .site-header-cta:focus-visible {
            transform: translateY(-1px);
            box-shadow: 0 12px 26px rgba(26,122,74,.34);
        }

        .btn-primary,
        .hero-quick-cta.primary,
        .post-submit-btn,
        .mobile-cta button,
        .site-header-cta,
        .s3-tile-btn,
        .submit-retry-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            letter-spacing: 0;
            border-radius: 12px;
            background: #22a05a;
            color: #fff;
            border: none;
            box-shadow: 0 4px 16px rgba(34,160,90,0.35);
            transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
        }
        .hero-quick-cta.primary:before { display: none; }
        .post-submit-btn,
        .btn-primary,
        .hero-quick-cta.primary,
        .mobile-cta button,
        .site-header-cta,
        .s3-tile-btn,
        .submit-retry-btn {
            animation: none !important;
        }
        .btn-primary:hover,
        .hero-quick-cta.primary:hover,
        .post-submit-btn:hover,
        .mobile-cta button:hover,
        .site-header-cta:hover,
        .s3-tile-btn:hover,
        .submit-retry-btn:hover {
            background: #189048;
            box-shadow: 0 6px 24px rgba(34,160,90,0.45);
        }
        .btn-primary:active,
        .hero-quick-cta.primary:active,
        .post-submit-btn:active,
        .mobile-cta button:active,
        .site-header-cta:active,
        .s3-tile-btn:active,
        .submit-retry-btn:active {
            transform: scale(.98);
        }
        .btn-primary:focus-visible,
        .hero-quick-cta.primary:focus-visible,
        .post-submit-btn:focus-visible,
        .mobile-cta button:focus-visible,
        .site-header-cta:focus-visible,
        .s3-tile-btn:focus-visible,
        .submit-retry-btn:focus-visible {
            outline: 2px solid #1a7a4a;
            outline-offset: 2px;
        }
        .btn-back,
        .ghost-btn {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            border-radius: 12px;
            border: 1px solid #c3e8d3;
            background: #fff;
            color: #1a7a4a;
            transition: background .25s ease, transform .25s ease, border-color .25s ease;
        }
        .btn-back:hover,
        .ghost-btn:hover {
            background: #f0fbf4;
            border-color: #9fd3b9;
        }

        .hero-pills { display: none; }
        .hero-compare .hero-tiles {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 16px;
        }
        .hero-compare .hero-tile {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            background: #fff;
            border: 1px solid #c3e8d3;
            border-radius: 12px;
            padding: 16px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        }
        .hero-compare .hero-tile-icon {
            width: 36px;
            height: 36px;
            background: rgba(26,122,74,0.08);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: #1a7a4a;
        }
        .hero-compare .hero-tile-title {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 2px;
            color: #0d1f17;
            line-height: 1.25;
        }
        .hero-compare .hero-tile-desc {
            font-size: 12px;
            color: #7a9088;
            line-height: 1.5;
        }
        .hero-compare .comp-stack {
            margin-top: 0;
        }

        /* Left hero action box: same shell as right hero card */
        .hero-main .hero-cta-wrap {
            max-width: 460px;
            display: grid;
            gap: 12px;
            text-align: left;
            padding: 14px;
            background: rgba(255, 255, 255, 0.78);
            border: 1px solid rgba(255, 255, 255, 0.6);
            border-radius: 18px;
            box-shadow: 0 8px 36px rgba(17, 59, 37, 0.14);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
        }
        .hero-main .hero-cta-wrap .scarcity {
            margin-top: 0;
            padding: 0;
            border: 0;
            border-radius: 0;
            background: transparent;
            box-shadow: none;
        }
        .hero-main .hero-cta-wrap .scarcity-title,
        .hero-main .hero-cta-wrap .scarcity-text {
            color: #0d1f17;
        }
        .hero-main .hero-cta-wrap .scarcity-bar {
            background: #d5e7dc;
        }
        .hero-main .hero-cta-wrap .hero-scarcity {
            display: grid;
            gap: 10px;
        }
        .hero-scarcity-label {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;
        }
        .hero-scarcity-title {
            font-size: 14px;
            font-weight: 600;
            color: #0d1f17;
        }
        .hero-scarcity-remaining {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 700;
            color: #1a7a4a;
            white-space: nowrap;
        }
        .hero-scarcity-note {
            font-size: 12px;
            line-height: 1.45;
            color: #6f887d;
            margin: 0;
        }
        .hero-scarcity-note strong {
            color: #1a7a4a;
        }
        .hero-main .hero-cta-wrap .hero-quick-cta.primary {
            width: 100%;
            margin-top: 2px;
        }
        .features-list {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
        }
        .hero-side {
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .hero-meta-right {
            margin: 2px 0 0;
            justify-content: flex-start;
            width: fit-content;
            max-width: 100%;
            padding: 10px 14px;
            border-radius: 14px;
            border: 1px solid rgba(255, 255, 255, 0.6);
            background: rgba(255, 255, 255, 0.78);
            box-shadow: 0 8px 24px rgba(17, 59, 37, 0.1);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }
        .hero-meta-right .hero-meta-item {
            display: grid;
            grid-template-columns: 16px 1fr;
            column-gap: 8px;
            align-items: center;
        }
        .hero-meta-right .hero-meta-icon {
            width: 16px;
            display: inline-flex;
            justify-content: center;
            align-items: center;
        }
        .hero-work-icon {
            display: inline-block;
            color: #22a05a;
            font-size: 14px;
            line-height: 1;
            margin-right: 0;
            vertical-align: 0;
        }
        .hero-side .hero-compare {
            flex: 1;
        }

        @media (max-width: 899px) {
            .form-mobile-intro {
                display: block;
                margin: 0 0 10px;
                text-align: center;
            }
            .form-mobile-intro .card-label {
                margin-bottom: 4px;
            }
            .form-mobile-intro .card-title {
                font-size: clamp(22px, 7.2vw, 28px);
                margin-bottom: 0;
                text-align: center;
            }
            .form-column .form-card > .card-label {
                display: none;
            }
            .site-header {
                height: 66px;
            }
            .site-header-inner {
                padding: 0 12px;
            }
            .site-header-nav {
                gap: 8px;
                flex-wrap: nowrap;
            }
            .site-logo-text {
                font-size: 20px;
            }
            .site-logo-img {
                height: 48px;
            }
            .site-icon-link {
                display: inline-flex;
                width: 34px;
                height: 34px;
                flex: 0 0 34px;
            }
            .site-header-cta {
                min-height: 38px;
                padding: 8px 10px;
                font-size: 12px;
                line-height: 1;
                white-space: nowrap;
                flex: 0 1 auto;
            }
            .hero-compare .hero-tiles {
                grid-template-columns: 1fr;
            }
            .hero-main .hero-cta-wrap {
                max-width: none;
            }
            .hero-side { gap: 8px; }
            .hero-meta-right {
                margin-top: 10px;
                width: 100%;
            }
            .features-list {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .feat-row {
                width: 100%;
            }
            .cat-list {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 8px;
            }
            .cat-item label {
                grid-template-columns: 1fr;
                grid-template-rows: auto auto auto;
                grid-template-areas:
                    "name"
                    "price"
                    "desc";
                min-height: 0;
                padding: 10px 12px;
                row-gap: 3px;
                border-radius: 11px;
            }
            .cat-name {
                font-size: 15px;
                line-height: 1.1;
                min-height: 0;
            }
            .cat-price {
                justify-content: flex-start;
                align-self: start;
                min-width: 0;
                min-height: 0;
                font-size: 14px;
                line-height: 1.15;
            }
            .cat-desc {
                min-height: 0;
                font-size: 12px;
                line-height: 1.25;
            }
            .reviews-full .reviews-slider {
                overflow-x: auto;
                overflow-y: hidden;
                -webkit-overflow-scrolling: touch;
                scroll-snap-type: x mandatory;
                scroll-padding-left: 2px;
                touch-action: pan-x;
            }
            .reviews-full .reviews-slider::-webkit-scrollbar {
                display: none;
            }
            .reviews-full .reviews-track {
                width: auto;
                gap: 12px;
                padding-right: 0;
                transform: none !important;
            }
            .reviews-full .review-card {
                flex: 0 0 min(340px, calc(100vw - 40px));
                width: min(340px, calc(100vw - 40px));
                scroll-snap-align: start;
            }
        }

        @media (min-width: 900px) {
            .hero-layout {
                grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
                align-items: stretch;
            }
            .hero-main,
            .hero-side {
                min-height: 100%;
            }
            .hero-main {
                justify-content: space-between;
            }
            .hero-side .hero-compare {
                justify-content: center;
            }
            .hero-meta-right { margin: 0 0 8px; }
            .features-list {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
            .form-card .cat-list {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 12px;
            }
            .form-card .cat-item label {
                padding: 14px 16px;
                min-height: 92px;
                border-radius: 16px;
                grid-template-columns: minmax(0, 1fr) 72px;
                grid-template-areas:
                    "name price"
                    "desc price";
                align-content: center;
                row-gap: 5px;
                border: 1.5px solid #cfe2d6;
                background: #fbfefc;
                box-shadow: 0 1px 0 rgba(17, 59, 37, 0.03);
            }
            .form-card .cat-name {
                font-size: clamp(18px, 1.05vw, 21px);
                font-weight: 700;
                line-height: 1.08;
                min-height: 0;
                white-space: nowrap;
                letter-spacing: -0.01em;
            }
            .form-card .cat-price {
                min-width: 72px;
                font-size: clamp(16px, 0.95vw, 20px);
                font-weight: 700;
                line-height: 1;
                align-self: center;
                justify-content: flex-end;
                white-space: nowrap;
            }
            .form-card .cat-desc {
                font-size: clamp(13px, 0.8vw, 15px);
                line-height: 1.28;
                min-height: 0;
                color: #4e6259;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
            .form-card .cat-item input:checked + label {
                border-color: #57cf96;
                box-shadow: 0 0 0 2px rgba(87, 207, 150, 0.22);
            }
            .form-card .cat-item.popular label:after {
                top: -12px;
                right: 12px;
                border-radius: 999px;
                padding: 5px 11px;
                font-size: 11px;
                letter-spacing: 0.06em;
            }
        }

        /* Lift-style timeline for "Nur 4 einfache Schritte" */
        .process-flow {
            display: flex;
            flex-direction: column;
            gap: 0;
            position: relative;
        }
        .process-step {
            display: grid;
            grid-template-columns: 44px 1fr;
            grid-template-rows: auto auto;
            column-gap: 14px;
            row-gap: 2px;
            align-items: start;
            position: relative;
            padding: 0 0 28px;
            min-height: 0;
            border: 0;
            background: transparent;
            box-shadow: none;
            border-radius: 0;
        }
        .process-step:last-child {
            padding-bottom: 0;
        }
        .process-step:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 21px;
            top: 44px;
            bottom: 2px;
            width: 2px;
            background: #c3e8d3;
        }
        .process-icon {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            grid-column: 1;
            grid-row: 1 / span 2;
            margin: 0;
            background: #22a05a;
            color: #fff;
            font-size: 17px;
            font-weight: 700;
            box-shadow: 0 4px 12px rgba(34,160,90,0.28);
        }
        .step-card-title {
            grid-column: 2;
            grid-row: 1;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 18px;
            line-height: 1.25;
            margin: 0;
        }
        .step-card-desc {
            grid-column: 2;
            grid-row: 2;
            margin: 2px 0 0;
            font-size: 14px;
            line-height: 1.5;
            color: #4a5e54;
        }

        @media (min-width: 1024px) {
            .process-flow {
                display: grid;
                grid-template-columns: repeat(4, minmax(0, 1fr));
                gap: 0;
                position: relative;
            }
            .process-flow::before {
                content: '';
                position: absolute;
                left: calc(50% / 4);
                right: calc(50% / 4);
                top: 21px;
                height: 2px;
                background: #c3e8d3;
                z-index: 0;
            }
            .process-step {
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 12px;
                padding: 0 14px;
            }
            .process-step::after {
                display: none;
            }
            .process-icon {
                position: relative;
                z-index: 1;
                width: 44px;
                height: 44px;
            }
            .step-card-title {
                font-size: 17px;
            }
            .step-card-desc {
                margin: 0;
                font-size: 13px;
                max-width: 240px;
            }
        }

        .hero-compare-warning {
            margin-top: 12px;
            border: 1px solid #f2d9d9;
            background: #fff8f8;
            color: #7a4040;
            border-radius: 12px;
            padding: 12px 14px;
            font-size: 12px;
            line-height: 1.45;
            width: 100%;
            align-self: stretch;
            display: grid;
            grid-template-columns: 26px minmax(0, 1fr);
            column-gap: 10px;
            box-sizing: border-box;
        }
        .hero-compare-warning-badge {
            display: inline-flex;
            align-items: center;
            white-space: nowrap;
            font-weight: 700;
            color: #a43a3a;
            font-family: 'Space Grotesk', sans-serif;
            font-size: 13px;
            margin-bottom: 2px;
        }
        .hero-warning-icon {
            width: 26px;
            height: 26px;
            border-radius: 8px;
            background: rgba(164,58,58,0.14);
            color: #a43a3a;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 26px;
            margin-top: 0;
        }
        .hero-warning-icon svg {
            width: 16px;
            height: 16px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .hero-warning-copy {
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        /* Lift-like tiles in "Was bekommst du?" */
        .features-list {
            gap: 16px;
        }
        .feat-row {
            display: block;
            background: #fff;
            border: 1px solid #e8f4ee;
            border-radius: 12px;
            padding: 18px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            transition: transform .55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .55s cubic-bezier(0.22, 1, 0.36, 1), border-color .55s cubic-bezier(0.22, 1, 0.36, 1);
            will-change: transform, box-shadow;
            min-height: 100%;
        }
        .feat-row:hover {
            transform: translate3d(0, -3px, 0);
            border-color: #c3e8d3;
            box-shadow: 0 10px 26px rgba(17, 59, 37, 0.12);
        }
        .feat-icon {
            width: 42px;
            height: 42px;
            min-width: 42px;
            border-radius: 8px;
            margin: 0 0 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(26,122,74,0.08);
            color: #1a7a4a;
            box-shadow: none;
        }
        .feat-icon svg {
            width: 24px;
            height: 24px;
            stroke: currentColor;
            fill: none;
            stroke-width: 2;
        }
        .feat-text {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            font-size: 16px;
            line-height: 1.35;
            margin: 0;
            display: block;
        }
        .feat-text small {
            display: block;
            margin-top: 6px;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 400;
            color: #7a9088;
            line-height: 1.6;
        }

        /* Lift-like full-width testimonials slider */
        .reviews-full {
            margin-top: 22px;
            overflow: hidden;
            padding-bottom: 8px;
        }
        .reviews-full .reviews-slider {
            overflow: hidden;
            border-radius: 12px;
            position: relative;
            width: 100%;
            height: auto !important;
            padding: 4px 2px 6px;
        }
        .reviews-full .reviews-track {
            display: flex;
            flex-direction: row;
            gap: 18px;
            width: max-content;
            align-items: stretch;
            will-change: transform;
            transform: translate3d(0,0,0);
            animation: none !important;
            padding-right: 8px;
        }
        .reviews-full .review-card {
            width: clamp(280px, 31vw, 360px);
            border-radius: 12px;
            border: 1px solid #e8f4ee;
            border-left: 4px solid #22a05a;
            background: #fff;
            padding: 18px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            display: flex;
            flex-direction: column;
            gap: 10px;
            transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .4s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .reviews-full .review-card:hover {
            transform: none;
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
        }
        .reviews-full .review-stars {
            margin-left: 0;
            color: #f59e0b;
            font-size: 18px;
            letter-spacing: 1px;
        }
        .reviews-full .review-stars::before {
            display: none;
        }
        .reviews-full .review-text {
            font-size: 15px;
            color: #4a5e54;
            line-height: 1.65;
            font-style: italic;
            min-height: 78px;
            flex: 1;
        }
        .reviews-full .review-header {
            margin-top: auto;
            margin-bottom: 0;
            gap: 12px;
        }
        @media (max-width: 899px) {
            .reviews-full .reviews-slider {
                overflow-x: auto;
                overflow-y: hidden;
                -webkit-overflow-scrolling: touch;
                scroll-snap-type: x mandatory;
                touch-action: pan-x;
            }
            .reviews-full .reviews-slider::-webkit-scrollbar {
                display: none;
            }
        }
        .reviews-full .review-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 0;
            background: linear-gradient(135deg, #1a7a4a, #22a05a);
        }
        .reviews-full .review-name {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 15px;
            font-weight: 600;
        }
        .reviews-full .review-city {
            font-size: 13px;
            color: #7a9088;
        }

        /* Lift-style footer */
        .footer-lift {
            margin-top: 28px;
            background: #0f1a14;
            color: rgba(255,255,255,0.7);
            padding: 56px 0 32px;
            border-top: 0;
        }
        .footer-lift-inner {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 16px;
        }
        .footer-lift-top {
            display: grid;
            gap: 36px;
            margin-bottom: 36px;
        }
        .footer-lift .site-logo-text {
            color: rgba(255,255,255,0.9);
        }
        .footer-lift .site-logo-img {
            height: 60px;
        }
        .footer-lift-brand {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        .footer-lift-brand .site-logo {
            margin: 0;
        }
        .footer-lift-tagline {
            font-size: 14px;
            color: rgba(255,255,255,0.5);
            margin-top: 8px;
            line-height: 1.55;
        }
        .footer-lift-contact {
            display: grid;
            grid-template-rows: auto auto;
            row-gap: 10px;
            justify-items: end;
            justify-self: end;
            width: 100%;
        }
        .footer-lift-social {
            display: inline-flex;
            align-items: center;
            justify-content: flex-end;
            gap: 6px;
            width: 100%;
        }
        .footer-lift-contact a {
            font-size: 14px;
            color: rgba(255,255,255,0.72);
            text-decoration: none;
            transition: color .25s ease;
        }
        .footer-lift-contact a:hover {
            color: #22a05a;
        }
        .footer-lift-links {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 12px;
            flex-wrap: nowrap;
            width: 100%;
        }
        .footer-lift-links a {
            font-size: 14px;
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            transition: color .25s ease;
        }
        .footer-lift-links a:hover {
            color: rgba(255,255,255,0.85);
        }
        .footer-lift-bottom {
            padding-top: 22px;
            border-top: 1px solid rgba(255,255,255,0.08);
            font-size: 13px;
            color: rgba(255,255,255,0.38);
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: space-between;
        }
        @media (min-width: 768px) {
            .footer-lift-top {
                grid-template-columns: 1.4fr 1fr;
                align-items: start;
            }
        }
        @media (max-width: 767px) {
            .footer-lift-top {
                gap: 18px;
            }
            .footer-lift-brand {
                align-items: center;
                text-align: center;
            }
            .footer-lift-brand .site-logo {
                justify-content: center;
            }
            .footer-lift-tagline {
                max-width: 34ch;
                margin-left: auto;
                margin-right: auto;
                text-align: center;
            }
            .footer-lift-contact {
                justify-items: center;
                justify-self: center;
            }
            .footer-lift-social {
                justify-content: center;
            }
            .footer-lift-links {
                gap: 9px;
                justify-content: center;
                flex-wrap: wrap;
            }
            .footer-lift-links a {
                font-size: 12px;
                white-space: nowrap;
            }
            .footer-lift-bottom {
                justify-content: center;
                text-align: center;
                flex-direction: column;
                gap: 6px;
            }
        }

        /* Final messenger/telegram icon and compare-card overrides */
        .hero-compare .comp-card.bad {
            background: #f2dde1;
            border-right: 1px solid #e2bcc4;
        }
        .hero-compare .comp-card.good {
            background: #d7ede2;
        }
        .site-icon-link i,
        .post-submit-btn .btn-icon i {
            display: inline-block;
            line-height: 1;
        }
        .site-icon-link i { font-size: 20px; }
        .post-submit-btn .btn-icon i { font-size: 18px; }
        .site-icon-link.telegram i { color: #229ed9; }
        .site-icon-link.messenger i { color: #0084ff; }
        .footer-lift-social .site-icon-link {
            transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
        }
        .footer-lift-social .site-icon-link:hover,
        .footer-lift-social .site-icon-link:focus-visible {
            transform: translateY(-2px) scale(1.08);
            border-color: rgba(34, 160, 90, 0.48);
            background: #f3fbf6;
            box-shadow: 0 10px 18px rgba(12, 36, 23, 0.35);
        }
        .footer-lift-social .site-icon-link:active {
            transform: translateY(0) scale(0.98);
        }
        .post-submit-btn.messenger {
            background: linear-gradient(145deg, #00b2ff, #006aff) !important;
        }
        .post-submit-btn.telegram {
            background: linear-gradient(145deg, #2ca5e0, #0b7fcc) !important;
        }

        /* Final form polish: smoother sticky + green brand palette */
        .form-card {
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid #d7e9de;
            box-shadow: 0 14px 36px rgba(17, 59, 37, 0.14);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }
        .prog-line {
            background: #d7e8de;
        }
        .prog-line-fill {
            background: linear-gradient(90deg, #1a7a4a, #22a05a);
        }
        .prog-step.active .prog-circle {
            background: #22a05a;
            border-color: #22a05a;
        }
        .prog-step.done .prog-circle {
            background: #1a7a4a;
            border-color: #1a7a4a;
            color: #e8fbf1;
        }
        .prog-step.active .prog-label,
        .prog-step.done .prog-label,
        .prog-percent {
            color: #1a7a4a;
        }
        .form-sticky-trust {
            border-color: #cfe5da;
            background: #f4fbf7;
            color: #1a7a4a;
        }
        .trust-mini-ico {
            border-color: #b9dbc8;
            color: #1a7a4a;
        }
        .form-input {
            border-color: #cfe2d6;
            background: #fbfefc;
        }
        .form-input:focus {
            border-color: #22a05a;
            box-shadow: 0 0 0 3px rgba(34,160,90,0.14);
        }
        .cat-click-hint {
            color: #1a7a4a;
            background: #f4fbf7;
            border-color: #cfe5da;
        }
        .cat-item label,
        .radio-item label,
        .file-upload {
            border-color: #cfe2d6;
            background: #fbfefc;
        }
        .cat-item label:hover,
        .radio-item label:hover,
        .file-upload:hover {
            border-color: #a9d2bc;
        }
        .cat-item input:checked + label,
        .radio-item input:checked + label {
            background: linear-gradient(145deg, #1a7a4a, #22a05a);
            border-color: #1a7a4a;
        }
        .cat-item input:checked + label .cat-price {
            color: #d8f6e7 !important;
        }
        .cat-item input:checked + label .cat-name {
            color: #ffffff;
        }
        .cat-item input:checked + label .cat-desc {
            color: #e9f8f0;
            opacity: 1;
        }
        .cat-price {
            color: #1a7a4a;
        }
        .cat-item.popular label:after {
            background: #c8ecd8 !important;
            color: #125b37 !important;
        }
        .prog-line-fill {
            background: linear-gradient(90deg, #1a7a4a, #22a05a) !important;
        }
        .prog-step.active .prog-circle {
            background: #22a05a !important;
            border-color: #22a05a !important;
        }
        .prog-step.done .prog-circle {
            background: #1a7a4a !important;
            border-color: #1a7a4a !important;
            color: #e8fbf1 !important;
        }
        .upload-health {
            border-color: #cfe5da;
            background: #f4fbf7;
            color: #1a7a4a;
        }
        .prog-circle {
            border-color: #d7e8de;
            background: #eef8f2;
            color: #5d7c6c;
        }
        .date-icon {
            color: #4c705f;
        }
        .file-upload-icon {
            background: #e8f4ec;
            color: #3f6a56;
        }
        .s3-topline-copy .form-step-desc {
            color: #486557;
        }
        .s3-progress-ring {
            background: conic-gradient(#22a05a calc(var(--p) * 1%), #d7e8de 0);
            box-shadow: inset 0 0 0 1px rgba(26, 122, 74, 0.12);
        }
        .s3-progress-inner {
            color: #1a7a4a;
        }
        @keyframes s3Pulse {
            0% { box-shadow: 0 0 0 0 rgba(34,160,90,.3), inset 0 0 0 1px rgba(26,122,74,.12); }
            70% { box-shadow: 0 0 0 10px rgba(34,160,90,0), inset 0 0 0 1px rgba(26,122,74,.12); }
            100% { box-shadow: 0 0 0 0 rgba(34,160,90,0), inset 0 0 0 1px rgba(26,122,74,.12); }
        }
        .s3-security-banner,
        .consent-box {
            border-color: #cfe5da;
            background: #f4fbf7;
        }
        .s3-security-head {
            color: #1a7a4a;
        }
        .s3-disclaimer,
        .s3-security-desc {
            color: #466557;
        }
        .consent-check {
            border-color: #9ecab3;
            box-shadow: 0 2px 6px rgba(26, 122, 74, 0.12);
        }
        .consent-label input:checked + .consent-check {
            border-color: #1a7a4a;
            background: linear-gradient(145deg, #1a7a4a, #22a05a);
        }
        .consent-label input:focus-visible + .consent-check {
            outline: 2px solid #8fd0ae;
        }
        .consent-text {
            color: #2e5140;
        }
        .s3-task {
            border-color: #d7e8de;
        }
        .s3-task-num {
            background: #eaf6ef;
            color: #1a7a4a;
        }
        .s3-task p {
            color: #3f5f51;
        }
        .s3-tile-btn {
            background: linear-gradient(90deg, #1a7a4a, #22a05a);
            box-shadow: 0 8px 18px rgba(34,160,90,.25);
        }
        .s3-tile-btn:hover {
            background: linear-gradient(90deg, #1a7a4a, #22a05a);
            box-shadow: 0 10px 22px rgba(34,160,90,.32);
            transform: none;
            filter: brightness(0.96);
        }
        .photo-btn {
            border-color: #cfe2d6;
            background: #fbfefc;
        }
        .photo-preview img {
            border-color: #22a05a;
        }
        .webcam-overlay video {
            border-color: #7fd5ac;
        }
        .webcam-btn.snap {
            background: #7fd5ac;
            color: #12492e;
        }
        .post-submit-progress {
            border-color: #cfe5da;
            background: #f4fbf7;
        }
        .post-submit-progress-text {
            color: #1a7a4a;
        }
        .post-submit-progress-badge {
            border-color: #22a05a;
            background: #22a05a;
        }
        .post-submit-confirmation {
            border-color: #cfe5da;
            background: linear-gradient(180deg, #f8fcfa 0%, #edf8f2 100%);
        }
        .post-submit-title {
            color: #2f4d40;
        }
        .post-submit-note {
            color: #3f5d4f;
        }
        .post-submit-benefits {
            border-color: #d7e8de;
        }
        .post-submit-timer-ring {
            background: conic-gradient(var(--timer-color) calc(var(--p) * 1%), #d7e8de 0%);
            box-shadow: inset 0 0 0 1px rgba(26, 122, 74, 0.12);
        }
        .post-submit-timer {
            color: #1a7a4a;
        }
        .post-submit-benefits-copy h4 {
            color: #1a7a4a;
        }
        .post-submit-benefits-copy li {
            color: #3f5f51;
        }
        .phone-select {
            color: #33584a;
        }
        @media (min-width: 900px) {
            .form-column {
                top: 94px;
            }
            .form-shell {
                position: sticky;
                top: 94px;
            }
        }



