            :root {
                --accent: #4bffba;
                --accent-dark: #67a041;
                --ink: #111;
                --muted: #4f574d;
                --surface: #f5f7f2;
                --card: #fff;
                --radius-lg: 28px;
                --shadow-soft: 0 22px 60px rgba(17, 17, 17, 0.08);
                --section-y: 120px;
            }

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

            html,
            body {
                max-width: 100%;
                overflow-x: hidden;
            }

            body {
                font-family: "SiteSans", Arial, sans-serif;
                color: #000;
                font-size: 16px;
                line-height: 1.6;
                scroll-behavior: smooth;
                background: #fff;
            }

            /* ── NAVBAR ── */
            .nav {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                z-index: 990;
                background: rgba(0, 0, 0, 0.55);
                backdrop-filter: blur(12px) saturate(140%);
                -webkit-backdrop-filter: blur(12px) saturate(140%);
                height: 50px;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            .nav ul {
                list-style: none;
                display: flex;
                gap: 0;
            }
            .nav ul li a {
                display: block;
                padding: 0 15px;
                font-size: 13px;
                font-weight: 700;
                text-transform: uppercase;
                color: #fff;
                text-decoration: none;
                letter-spacing: 0.05em;
                line-height: 50px;
                transition: opacity 0.2s;
            }
            .nav ul li:first-child a {
                padding-left: 0;
            }
            .nav ul li:last-child a {
                padding-right: 0;
            }
            .nav ul li a {
                position: relative;
            }
            .nav ul li a::after {
                content: "";
                position: absolute;
                bottom: 10px;
                left: 15px;
                right: 15px;
                height: 2px;
                background: #fff;
                transform: scaleX(0);
                transform-origin: left;
                transition: transform 0.25s ease;
            }
            .nav ul li a:hover::after {
                transform: scaleX(1);
            }
            .nav ul li a:hover {
                opacity: 1;
            }

            .nav-burger {
                display: none;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                width: 48px;
                height: 48px;
                cursor: pointer;
                position: absolute;
                right: 12px;
            }
            .nav-burger span {
                display: block;
                width: 28px;
                height: 3px;
                background: #fff;
                border-radius: 2px;
                transition: 0.25s;
            }
            .nav-burger span + span {
                margin-top: 5px;
            }

            @media (max-width: 980px) {
                .nav ul {
                    display: none;
                    flex-direction: column;
                    background: rgba(0, 0, 0, 0.95);
                    position: absolute;
                    top: 50px;
                    left: 0;
                    right: 0;
                    padding: 10px 0;
                }
                .nav ul.open {
                    display: flex;
                }
                .nav ul li a {
                    line-height: 2.5;
                    padding: 0 20px;
                }
                .nav-burger {
                    display: flex;
                }
            }

            /* ── HERO ── */
            #hero {
                min-height: 100vh;
                min-height: 100svh;
                position: relative;
                overflow: hidden;
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;
            }
            #hero .hero-bg {
                position: absolute;
                inset: 0;
                background-image: url("/static/images/tild3964-3938-4661-b535-396436336632__focused-photo-suspic.webp");
                background-size: cover;
                background-position: center;
                will-change: background-position;
                animation: kenburns 20s ease-in-out infinite alternate;
            }
            @keyframes kenburns {
                0% {
                    transform: scale(1) translateX(0) translateY(0);
                }
                50% {
                    transform: scale(1.06) translateX(-1%) translateY(-1%);
                }
                100% {
                    transform: scale(1.1) translateX(1%) translateY(1%);
                }
            }
            #hero .overlay {
                position: absolute;
                inset: 0;
                background: rgba(0, 0, 0, 0.7);
            }
            #hero .hero-content {
                position: relative;
                z-index: 1;
                width: 100%;
                max-width: 1080px;
                padding: 0 20px;
            }
            .hero-breadcrumbs {
                display: inline-flex;
                gap: 10px;
                align-items: center;
                margin-bottom: 18px;
                color: rgba(255, 255, 255, 0.72);
                font-size: 14px;
                letter-spacing: 0.08em;
                text-transform: uppercase;
            }
            .hero-breadcrumbs a {
                color: #fff;
                text-decoration: none;
            }
            #hero h1 {
                font-size: clamp(32px, 6vw, 72px);
                font-weight: 700;
                color: #fff;
                text-transform: uppercase;
                line-height: 1.15;
                margin-bottom: 16px;
                animation: hero-fadein 1s ease 0.2s both;
            }
            #hero .hero-subtitle {
                font-size: clamp(20px, 3.5vw, 48px);
                display: block;
                color: #fff;
                margin-bottom: 24px;
                animation: hero-fadein 1s ease 0.3s both;
            }
            #hero .hero-price {
                font-size: clamp(20px, 3vw, 34px);
                color: #fff;
                animation: hero-fadein 1s ease 0.6s both;
            }
            #hero .hero-trust {
                font-size: clamp(14px, 1.6vw, 18px);
                color: rgba(255, 255, 255, 0.82);
                margin-top: 10px;
                animation: hero-fadein 1s ease 0.75s both;
                letter-spacing: 0.02em;
            }
            @keyframes hero-fadein {
                from {
                    opacity: 0;
                    transform: translateY(30px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
            .hero-cta {
                display: flex;
                gap: 16px;
                justify-content: center;
                flex-wrap: wrap;
                margin-top: 38px;
                animation: hero-fadein 1s ease 0.9s both;
            }
            .hero-btn {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                height: 56px;
                padding: 0 34px;
                border-radius: 8px;
                font-family: inherit;
                font-size: 16px;
                font-weight: 800;
                text-decoration: none;
                text-transform: uppercase;
                letter-spacing: 0.04em;
                transition:
                    transform 0.2s ease,
                    box-shadow 0.2s ease,
                    background 0.2s ease;
            }
            .hero-btn-primary {
                background: var(--accent);
                color: #06251a;
                box-shadow: 0 14px 34px rgba(75, 255, 186, 0.32);
            }
            .hero-btn-primary:hover {
                transform: translateY(-2px);
                box-shadow: 0 18px 44px rgba(75, 255, 186, 0.45);
            }
            .hero-btn-secondary {
                background: rgba(255, 255, 255, 0.1);
                color: #fff;
                border: 1px solid rgba(255, 255, 255, 0.55);
            }
            .hero-btn-secondary:hover {
                background: rgba(255, 255, 255, 0.2);
                transform: translateY(-2px);
            }
            .hero-btn-outline {
                background: transparent;
                color: #fff;
                border: 1px solid rgba(255, 255, 255, 0.35);
            }
            .hero-btn-outline:hover {
                background: rgba(255, 255, 255, 0.12);
                transform: translateY(-2px);
            }
            .hero-btn svg {
                width: 18px;
                height: 18px;
            }
            @media (max-width: 480px) {
                .hero-btn {
                    width: 100%;
                }
            }

            /* ── TRUST BAR ── */
            .trust-bar {
                background: #111;
                padding: 18px 0;
                border-bottom: 1px solid #292929;
            }
            .trust-bar-items {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 14px 32px;
            }
            .trust-bar-item {
                display: flex;
                align-items: center;
                gap: 8px;
                color: rgba(255, 255, 255, 0.78);
                font-size: 14px;
                font-weight: 600;
                white-space: nowrap;
            }
            .trust-icon {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 22px;
                height: 22px;
                border-radius: 50%;
                background: rgba(75, 255, 186, 0.18);
                color: var(--accent);
                font-size: 12px;
                flex-shrink: 0;
            }
            @media (max-width: 760px) {
                .trust-bar-items {
                    gap: 10px 18px;
                }
                .trust-bar-item {
                    font-size: 12px;
                }
            }

            /* ── SECTION BASE ── */
            section {
                width: 100%;
                scroll-margin-top: 70px;
            }
            .container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 20px;
            }
            .section-label {
                font-size: clamp(13px, 1.2vw, 16px);
                line-height: 1.35;
                font-weight: 900;
                text-transform: uppercase;
                letter-spacing: 0.14em;
                text-align: center;
                margin-bottom: 16px;
                color: var(--accent-dark);
            }
            .section-title {
                font-size: clamp(34px, 4.2vw, 54px);
                line-height: 1.12;
                font-weight: 900;
                text-align: center;
                margin-bottom: 64px;
                color: var(--ink);
            }
            .section-lead {
                max-width: 760px;
                margin: -38px auto 58px;
                text-align: center;
                font-size: clamp(16px, 1.7vw, 20px);
                line-height: 1.7;
                color: var(--muted);
            }
            @media (max-width: 960px) {
                .section-title {
                    margin-bottom: 45px;
                }
                .section-lead {
                    margin: -24px auto 40px;
                }
            }

            /* ── SERVICES ── */
            #services {
                background:
                    radial-gradient(
                        circle at 12% 18%,
                        rgba(75, 255, 186, 0.16),
                        transparent 34%
                    ),
                    linear-gradient(180deg, #fff 0%, #f7faf5 100%);
                padding: var(--section-y) 0 calc(var(--section-y) + 20px);
            }
            .cards {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
            }
            @media (max-width: 960px) {
                .cards {
                    grid-template-columns: 1fr;
                }
            }
            .card {
                position: relative;
                overflow: hidden;
                min-height: 430px;
                background:
                    linear-gradient(
                        145deg,
                        rgba(255, 255, 255, 0.94),
                        rgba(245, 247, 242, 0.92)
                    ),
                    #fff;
                border: 1px solid rgba(17, 17, 17, 0.08);
                border-radius: var(--radius-lg);
                padding: 32px;
                box-shadow: var(--shadow-soft);
                transition:
                    box-shadow 0.35s ease,
                    border-color 0.35s ease,
                    transform 0.35s ease;
                transform: translateY(0);
            }
            .card::before {
                content: "";
                position: absolute;
                inset: 0;
                background: linear-gradient(
                    120deg,
                    transparent 0%,
                    rgba(75, 255, 186, 0.2) 45%,
                    transparent 70%
                );
                opacity: 0;
                transform: translateX(-70%);
                transition:
                    opacity 0.35s ease,
                    transform 0.7s ease;
            }
            .card:hover {
                border-color: rgba(103, 160, 65, 0.32);
                box-shadow: 0 28px 70px rgba(17, 17, 17, 0.14);
                transform: translateY(-10px);
            }
            .card:hover::before {
                opacity: 1;
                transform: translateX(70%);
            }
            .card > * {
                position: relative;
                z-index: 1;
            }
            .card img {
                transition: transform 0.4s ease;
            }
            .card:hover img {
                transform: scale(1.08) rotate(-3deg);
            }
            .card img {
                width: 70px;
                height: 70px;
                object-fit: contain;
                margin-bottom: 28px;
            }
            .card-kicker {
                display: inline-flex;
                margin-bottom: 14px;
                padding: 6px 10px;
                border-radius: 999px;
                background: rgba(103, 160, 65, 0.12);
                color: #355522;
                font-size: 12px;
                font-weight: 900;
                letter-spacing: 0.08em;
                text-transform: uppercase;
            }
            .card-title {
                font-size: clamp(22px, 2vw, 28px);
                line-height: 1.18;
                font-weight: 900;
                margin-bottom: 14px;
            }
            .card-descr {
                min-height: 88px;
                margin-bottom: 20px;
                font-size: 16px;
                line-height: 1.65;
                color: var(--muted);
            }
            .card-list {
                list-style: none;
                display: grid;
                gap: 10px;
                font-size: 15px;
                line-height: 1.55;
                color: #222;
            }
            .card-list li::before {
                content: "";
                display: inline-block;
                width: 7px;
                height: 7px;
                margin-right: 10px;
                border-radius: 50%;
                background: var(--accent);
                vertical-align: 2px;
            }
            .card-note {
                margin-top: 24px;
                padding-top: 18px;
                border-top: 1px solid rgba(17, 17, 17, 0.08);
                font-size: 14px;
                line-height: 1.55;
                color: #596155;
            }
            .card-link {
                display: inline-block;
                margin-top: 14px;
                font-size: 14px;
                font-weight: 700;
                color: #67a041;
                text-decoration: none;
                transition: color 0.2s;
            }
            .card-link:hover {
                color: #4b8a2e;
            }

            /* ── PRO MENE ── */
            #pro-nas {
                background: linear-gradient(180deg, #fff 0%, #fbfcf8 100%);
                padding: var(--section-y) 0;
            }
            @media (max-width: 960px) {
                #pro-nas {
                    padding: 80px 0;
                }
            }
            .specialist-card {
                max-width: 960px;
                margin: 0 auto;
                text-align: center;
            }
            #pro-nas .section-label {
                color: #111;
            }
            .specialist-name {
                font-size: clamp(40px, 5vw, 66px);
                font-weight: 900;
                line-height: 1.02;
                margin-bottom: 14px;
            }
            .specialist-title {
                max-width: 760px;
                margin: 0 auto 24px;
                font-size: clamp(18px, 1.8vw, 22px);
                line-height: 1.55;
                color: #333;
                text-transform: uppercase;
                letter-spacing: 0.08em;
            }
            .specialist-summary {
                max-width: 780px;
                margin: 0 auto 52px;
                font-size: 18px;
                line-height: 1.75;
                color: var(--muted);
            }
            .credentials-list {
                list-style: none;
                display: grid;
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 18px;
                text-align: left;
            }
            .credential-item {
                display: flex;
                gap: 18px;
                align-items: flex-start;
                padding: 24px;
                border: 1px solid rgba(17, 17, 17, 0.08);
                border-radius: 22px;
                background: #fff;
                box-shadow: 0 14px 36px rgba(17, 17, 17, 0.06);
            }
            .credential-year {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                min-width: 58px;
                height: 34px;
                border-radius: 999px;
                background: rgba(75, 255, 186, 0.24);
                font-size: 14px;
                font-weight: 900;
                color: #183b28;
            }
            .credential-name {
                font-size: 20px;
                line-height: 1.3;
                font-weight: 900;
                margin-bottom: 8px;
            }
            .credential-school {
                font-size: 16px;
                line-height: 1.55;
                color: var(--muted);
            }
            @media (max-width: 780px) {
                .credentials-list {
                    grid-template-columns: 1fr;
                }
                .credential-item {
                    padding: 20px;
                }
            }

            /* ── EDU DIPLOMA ── */
            .diploma-gallery {
                display: flex;
                justify-content: center;
                margin-top: 44px;
            }
            .diploma-doc {
                margin: 0;
                max-width: 520px;
                width: 100%;
                background: #fff;
                border: 1px solid rgba(17, 17, 17, 0.08);
                border-radius: 16px;
                overflow: hidden;
                box-shadow: 0 18px 48px rgba(17, 17, 17, 0.1);
            }
            .diploma-doc img {
                display: block;
                width: 100%;
                height: auto;
                background: #fff;
                transition: transform 0.3s ease;
            }
            .diploma-doc:hover img {
                transform: scale(1.03);
            }
            .diploma-doc figcaption {
                padding: 14px 16px;
                font-size: 14px;
                font-weight: 700;
                color: #111;
                text-align: center;
                border-top: 1px solid rgba(17, 17, 17, 0.06);
            }

            /* ── WHY US ── */
            #about {
                background:
                    radial-gradient(
                        circle at 20% 0%,
                        rgba(255, 255, 255, 0.48),
                        transparent 34%
                    ),
                    var(--accent);
                padding: var(--section-y) 0;
            }
            #about .section-label,
            #about .section-title {
                color: #000;
            }
            #about .section-title {
                font-size: clamp(18px, 2vw, 24px);
                line-height: 1.7;
                font-weight: 500;
                max-width: 760px;
                margin: 0 auto 72px;
            }
            @media (max-width: 960px) {
                #about .section-title {
                    margin-bottom: 45px;
                }
            }
            .why-list {
                list-style: none;
                max-width: 900px;
                margin: 0 auto;
                display: flex;
                flex-direction: column;
                gap: 24px;
            }
            .why-item {
                display: flex;
                align-items: flex-start;
                gap: 28px;
                padding: 28px;
                border-radius: 28px;
                background: rgba(255, 255, 255, 0.22);
                box-shadow: 0 18px 48px rgba(17, 17, 17, 0.07);
            }
            .why-item img {
                width: 66px;
                height: 66px;
                object-fit: contain;
                flex-shrink: 0;
            }
            .why-item-title {
                font-size: 22px;
                line-height: 1.3;
                font-weight: 900;
                margin-bottom: 12px;
            }
            .why-item-descr {
                font-size: 16px;
                line-height: 1.7;
            }
            .why-item-descr ul {
                padding-left: 20px;
            }
            .why-item-descr li {
                margin-bottom: 6px;
            }
            @media (max-width: 680px) {
                .why-item {
                    flex-direction: column;
                }
            }

            /* ── TICKER ── */
            .ticker {
                background: #333;
                height: 70px;
                overflow: hidden;
                display: flex;
                align-items: center;
            }
            .ticker-track {
                display: flex;
                white-space: nowrap;
                animation: ticker-scroll 30s linear infinite;
                gap: 0;
            }
            .ticker-half {
                display: flex;
                flex-shrink: 0;
            }
            .ticker-item {
                flex-shrink: 0;
            }
            .ticker-item {
                display: inline-flex;
                align-items: center;
                gap: 16px;
                padding: 0 24px;
                color: #fff;
                font-size: 16px;
                font-weight: 500;
            }
            .ticker-dot {
                width: 6px;
                height: 6px;
                background: #fff;
                border-radius: 50%;
                flex-shrink: 0;
            }
            @keyframes ticker-scroll {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(-50%);
                }
            }

            /* ── STEPS ── */
            #steps {
                padding: var(--section-y) 0;
                background: #fff;
            }
            .steps-list {
                max-width: 820px;
                margin: 0 auto;
                position: relative;
            }
            .step {
                display: flex;
                align-items: flex-start;
                gap: 32px;
                margin-bottom: 56px;
                position: relative;
            }
            .step:last-child {
                margin-bottom: 0;
            }
            .step-line-col {
                display: flex;
                flex-direction: column;
                align-items: center;
                flex-shrink: 0;
                width: 24px;
            }
            .step-circle {
                width: 24px;
                height: 24px;
                border: 2px solid #000;
                border-radius: 50%;
                background: #fff;
                z-index: 1;
                flex-shrink: 0;
                transition:
                    background 0.3s ease,
                    border-color 0.3s ease,
                    transform 0.3s ease;
            }
            .step.visible .step-circle {
                background: #4bffba;
                border-color: #4bffba;
                transform: scale(1.3);
            }
            /* Continuous vertical line via pseudo-element on container */
            .steps-list {
                position: relative;
            }
            .steps-list::before {
                content: "";
                position: absolute;
                left: 11px; /* center of 24px circle */
                top: 12px;
                bottom: 12px;
                width: 2px;
                background: #000;
            }
            .step-body {
                padding-top: 2px;
            }
            .step-title {
                font-size: 22px;
                line-height: 1.3;
                font-weight: 900;
                margin-bottom: 10px;
            }
            .step-descr {
                font-size: 16px;
                line-height: 1.7;
                color: #333;
            }

            /* ── COVER 2 ── */
            .cover2 {
                min-height: 100vh;
                min-height: 100svh;
                overflow: hidden;
                position: relative;
                display: flex;
                align-items: center;
            }
            .cover2-inner {
                position: absolute;
                inset: -16%;
                background-image: url("/static/images/tild3761-3165-4337-b064-356265323461__d3e9e1c77dfe889e1e93.webp");
                background-size: cover;
                background-position: right center;
                will-change: background-position;
                animation: cover2-drift 20s ease-in-out infinite alternate;
            }
            .cover2::after {
                content: "";
                position: absolute;
                inset: 0;
                background: linear-gradient(
                    90deg,
                    rgba(0, 0, 0, 0.62),
                    rgba(0, 0, 0, 0.18) 58%,
                    rgba(0, 0, 0, 0.42)
                );
            }
            .cover2-content {
                position: relative;
                z-index: 1;
                width: 100%;
            }
            .cover2-text {
                max-width: 660px;
                color: #fff;
            }
            .cover2-kicker {
                margin-bottom: 18px;
                font-size: 14px;
                line-height: 1.4;
                font-weight: 800;
                letter-spacing: 0.14em;
                text-transform: uppercase;
                color: #4bffba;
            }
            .cover2-title {
                font-size: 56px;
                line-height: 1.12;
                font-weight: 900;
                margin-bottom: 20px;
            }
            .cover2-subtitle {
                max-width: 520px;
                font-size: 20px;
                line-height: 1.65;
                color: rgba(255, 255, 255, 0.86);
            }
            @media (max-width: 760px) {
                .cover2-title {
                    font-size: 34px;
                }
                .cover2-subtitle {
                    font-size: 17px;
                }
            }
            @keyframes cover2-drift {
                0% {
                    transform: scale(1) translateX(0) translateY(0);
                }
                50% {
                    transform: scale(1.05) translateX(-2%) translateY(-1%);
                }
                100% {
                    transform: scale(1.1) translateX(2%) translateY(1%);
                }
            }

            /* ── RUBICON STANDARD ── */
            #rubicon-standard {
                padding: var(--section-y) 0;
                background: #f2f7f4;
                color: #111;
            }
            #rubicon-standard .section-label {
                letter-spacing: 0.08em;
            }
            #rubicon-standard .section-title {
                max-width: 820px;
                margin-left: auto;
                margin-right: auto;
                margin-bottom: 28px;
            }
            .rubicon-lead {
                max-width: 760px;
                margin: 0 auto 70px;
                text-align: center;
                font-size: 18px;
                line-height: 1.7;
                color: #333;
            }
            .rubicon-standard-grid {
                display: grid;
                grid-template-columns: 0.95fr 1.05fr;
                gap: 58px;
                align-items: center;
                margin-bottom: 80px;
            }
            .rubicon-device {
                margin: 0;
            }
            .rubicon-device img {
                display: block;
                width: 100%;
                height: auto;
                border-radius: 8px;
                border: 1px solid rgba(0, 0, 0, 0.08);
                background: #fff;
            }
            .rubicon-device figcaption {
                margin-top: 12px;
                font-size: 13px;
                color: #555;
                text-align: center;
            }
            .rubicon-points {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 28px 34px;
            }
            .rubicon-point {
                padding: 22px;
                border-left: 4px solid var(--accent);
                border-radius: 18px;
                background: rgba(255, 255, 255, 0.72);
            }
            .rubicon-point strong {
                display: block;
                margin-bottom: 8px;
                font-size: 20px;
                line-height: 1.35;
            }
            .rubicon-point span {
                display: block;
                font-size: 16px;
                line-height: 1.7;
                color: #333;
            }
            .rubicon-docs {
                display: grid;
                grid-template-columns: repeat(4, minmax(0, 180px));
                justify-content: center;
                align-items: start;
                gap: 20px;
                margin-bottom: 42px;
            }
            .rubicon-doc {
                align-self: start;
                margin: 0;
                background: #fff;
                border: 1px solid rgba(0, 0, 0, 0.08);
                border-radius: 8px;
                overflow: hidden;
                box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
            }
            .cert-lightbox-trigger {
                display: block;
                width: 100%;
                padding: 0;
                border: none;
                background: transparent;
                cursor: zoom-in;
                font: inherit;
                line-height: 0;
            }
            .rubicon-doc img {
                display: block;
                width: 100%;
                height: auto;
                max-height: 260px;
                aspect-ratio: 740 / 1040;
                object-fit: contain;
                object-position: center;
                background: #fff;
                transition: transform 0.25s ease;
            }
            .rubicon-doc:hover img {
                transform: scale(1.03);
            }
            .rubicon-doc figcaption {
                min-height: 56px;
                padding: 10px 12px;
                font-size: 12px;
                line-height: 1.35;
                font-weight: 700;
                color: #111;
                text-align: center;
            }
            .rubicon-bottom {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 36px;
                align-items: center;
            }
            .rubicon-checklist {
                list-style: none;
                display: grid;
                gap: 14px;
                font-size: 17px;
                line-height: 1.65;
                color: #222;
            }
            .rubicon-checklist li {
                position: relative;
                padding: 24px 26px;
                border-radius: 20px;
                background: #fff;
                box-shadow: 0 14px 36px rgba(17, 17, 17, 0.06);
                text-align: center;
            }
            .rubicon-checklist li::before {
                content: "";
                display: block;
                width: 12px;
                height: 12px;
                margin: 0 auto 12px;
                background: var(--accent);
                border-radius: 50%;
            }
            .rubicon-note {
                padding: 32px;
                background: #111;
                color: #fff;
                border-radius: 24px;
                font-size: 18px;
                line-height: 1.85;
                box-shadow: 0 24px 70px rgba(17, 17, 17, 0.16);
            }
            .rubicon-note strong {
                display: block;
                margin-bottom: 10px;
                font-size: 22px;
            }
            .rubicon-proof {
                margin-top: 20px;
            }
            .rubicon-proof img {
                display: block;
                width: 100%;
                height: auto;
                border-radius: 8px;
                background: #fff;
            }
            .rubicon-proof figcaption {
                margin-top: 10px;
                color: rgba(255, 255, 255, 0.72);
                font-size: 14px;
                line-height: 1.45;
            }
            .cert-lightbox {
                position: fixed;
                inset: 0;
                z-index: 10000;
                display: none;
                align-items: center;
                justify-content: center;
                padding: 28px;
                background: rgba(0, 0, 0, 0.86);
            }
            .cert-lightbox.open {
                display: flex;
            }
            .cert-lightbox-content {
                position: relative;
                width: min(96vw, 980px);
                max-height: 92vh;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 12px;
            }
            .cert-lightbox img {
                /* width/height attrs exist only to satisfy auditors;
                   auto here keeps the original max-width/max-height sizing */
                width: auto;
                height: auto;
                max-width: 100%;
                max-height: calc(92vh - 64px);
                object-fit: contain;
                border-radius: 8px;
                background: #fff;
                box-shadow: 0 20px 70px rgba(0, 0, 0, 0.45);
            }
            .cert-lightbox-caption {
                color: #fff;
                font-size: 15px;
                font-weight: 700;
                text-align: center;
            }
            .cert-lightbox-close {
                position: absolute;
                top: -18px;
                right: -18px;
                width: 42px;
                height: 42px;
                border: none;
                border-radius: 8px;
                background: #fff;
                color: #111;
                font-size: 28px;
                line-height: 1;
                cursor: pointer;
            }
            @media (max-width: 960px) {
                #rubicon-standard {
                    padding: 90px 0;
                }
                .rubicon-standard-grid,
                .rubicon-bottom {
                    grid-template-columns: 1fr;
                }
                .rubicon-points {
                    grid-template-columns: repeat(2, 1fr);
                }
                .rubicon-standard-grid {
                    margin-bottom: 54px;
                }
            }
            @media (max-width: 560px) {
                .rubicon-points {
                    grid-template-columns: 1fr;
                }
                .rubicon-docs {
                    grid-template-columns: repeat(2, minmax(0, 150px));
                }
                .rubicon-lead {
                    font-size: 16px;
                    margin-bottom: 42px;
                }
            }

            /* ── CONTACT FORM ── */
            #contact {
                background: #59d975;
                padding: 100px 0;
            }
            #contact .section-label {
                margin-bottom: 60px;
                font-size: clamp(30px, 4vw, 44px);
                line-height: 1.15;
                font-weight: 900;
                text-transform: none;
                letter-spacing: 0;
                text-align: center;
                color: #111;
            }
            @media (max-width: 960px) {
                #contact .section-label {
                    margin-bottom: 40px;
                    font-size: 32px;
                }
            }
            .form-wrap {
                max-width: 560px;
                margin: 0 auto;
            }
            .form-row {
                display: flex;
                gap: 16px;
                flex-wrap: wrap;
            }
            .form-group {
                flex: 1 1 220px;
                display: flex;
                flex-direction: column;
                gap: 8px;
            }
            .form-group label {
                font-size: 15px;
                font-weight: 500;
                color: rgba(0, 0, 0, 0.75);
            }
            .form-group input {
                height: 56px;
                padding: 0 16px;
                border: none;
                border-radius: 10px;
                background: #fff;
                font-size: 15px;
                font-family: inherit;
                color: #000;
                outline: none;
                box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
                transition:
                    box-shadow 0.2s,
                    transform 0.2s;
            }
            .form-group input::placeholder {
                color: rgba(0, 0, 0, 0.35);
            }
            .form-group input:focus {
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
                transform: translateY(-1px);
            }

            /* ── PHONE FIELD ── */
            .phone-field {
                display: flex;
                align-items: center;
                height: 56px;
                background: #fff;
                border-radius: 10px;
                box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
                overflow: visible;
                position: relative;
                transition: box-shadow 0.2s;
            }
            .phone-field:focus-within {
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
            }
            .country-btn {
                display: flex;
                align-items: center;
                gap: 5px;
                padding: 0 12px;
                min-height: 48px;
                height: 100%;
                border: none;
                background: transparent;
                cursor: pointer;
                font-size: 15px;
                font-family: inherit;
                border-right: 1px solid rgba(0, 0, 0, 0.1);
                white-space: nowrap;
                flex-shrink: 0;
            }
            .country-btn .flag {
                font-size: 20px;
                line-height: 1;
            }
            .country-btn .dial {
                font-weight: 600;
                color: #000;
            }
            .country-btn .arrow {
                font-size: 10px;
                color: rgba(0, 0, 0, 0.4);
                margin-left: 2px;
            }
            .phone-number-input {
                flex: 1;
                height: 100%;
                border: none;
                background: transparent;
                padding: 0 14px;
                font-size: 15px;
                font-family: inherit;
                color: #000;
                outline: none;
                min-width: 0;
            }
            .phone-number-input::placeholder {
                color: rgba(0, 0, 0, 0.35);
            }

            /* ── COUNTRY DROPDOWN ── */
            .country-dropdown {
                display: none;
                position: absolute;
                top: calc(100% + 6px);
                left: 0;
                width: 300px;
                max-height: 260px;
                overflow-y: auto;
                background: #fff;
                border-radius: 10px;
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
                z-index: 999;
            }
            .country-dropdown.open {
                display: block;
            }
            .country-search {
                padding: 10px 12px;
                border-bottom: 1px solid rgba(0, 0, 0, 0.08);
                position: sticky;
                top: 0;
                background: #fff;
            }
            .country-search input {
                width: 100%;
                border: 1px solid rgba(0, 0, 0, 0.15);
                border-radius: 6px;
                padding: 6px 10px;
                font-size: 14px;
                font-family: inherit;
                outline: none;
                box-shadow: none !important;
                transform: none !important;
                height: auto !important;
            }
            .country-option {
                display: flex;
                align-items: center;
                gap: 10px;
                padding: 10px 14px;
                cursor: pointer;
                font-size: 14px;
                transition: background 0.15s;
            }
            .country-option:hover {
                background: #f3f3f3;
            }
            .country-option .opt-flag {
                font-size: 20px;
                flex-shrink: 0;
            }
            .country-option .opt-name {
                flex: 1;
                color: #222;
            }
            .country-option .opt-dial {
                color: rgba(0, 0, 0, 0.45);
                font-size: 13px;
            }

            .form-submit {
                margin-top: 24px;
                text-align: center;
            }
            .btn-submit {
                display: inline-block;
                height: 52px;
                padding: 0 48px;
                background: #000;
                color: #fff;
                font-family: inherit;
                font-size: 15px;
                font-weight: 600;
                border: none;
                border-radius: 4px;
                cursor: pointer;
                position: relative;
                overflow: hidden;
                isolation: isolate;
                transition:
                    opacity 0.2s,
                    transform 0.2s;
            }
            .btn-submit::after {
                content: "";
                position: absolute;
                top: 0;
                left: -80%;
                width: 55px;
                height: 100%;
                background: linear-gradient(
                    90deg,
                    transparent,
                    rgba(255, 210, 0, 0.65),
                    transparent
                );
                transform: skewX(-22deg);
                animation: gold-flash 3s linear infinite;
            }
            @keyframes gold-flash {
                0% {
                    left: -80%;
                    opacity: 0;
                }
                5% {
                    opacity: 1;
                }
                30% {
                    left: 120%;
                    opacity: 0;
                }
                100% {
                    left: 120%;
                    opacity: 0;
                }
            }
            .btn-submit:hover {
                opacity: 0.85;
                transform: translateY(-2px);
            }
            .form-success {
                text-align: center;
                font-size: 18px;
                font-weight: 600;
                padding: 20px;
                background: rgba(0, 0, 0, 0.1);
                border-radius: 8px;
            }

            /* ── ASSISTANT ── */
            #assistant {
                padding: 100px 0;
                background: #fff;
            }
            .assistant-inner {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 60px;
                align-items: center;
            }
            @media (max-width: 768px) {
                .assistant-inner {
                    grid-template-columns: 1fr;
                }
            }
            .assistant-title {
                font-size: clamp(28px, 3.4vw, 42px);
                line-height: 1.15;
                font-weight: 900;
                margin-bottom: 20px;
            }
            .assistant-text {
                font-size: 16px;
                line-height: 1.75;
                color: #333;
            }
            .assistant-text em {
                font-style: italic;
            }
            .video-wrap {
                position: relative;
                padding-bottom: 56.25%;
                height: 0;
                overflow: hidden;
                cursor: pointer;
            }
            .video-wrap iframe {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                border: none;
            }
            .video-facade {
                position: absolute;
                inset: 0;
                background: #000;
            }
            .video-facade img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                opacity: 0.85;
            }
            .video-facade .play-btn {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 68px;
                height: 68px;
                background: rgba(255, 0, 0, 0.9);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                transition:
                    background 0.2s,
                    transform 0.2s;
            }
            .video-facade:hover .play-btn {
                background: #ff0000;
                transform: translate(-50%, -50%) scale(1.1);
            }
            .video-facade .play-btn svg {
                width: 28px;
                height: 28px;
                fill: #fff;
                margin-left: 4px;
            }
            .video-caption {
                margin-top: 10px;
                font-size: 13px;
                color: #555;
                text-align: center;
            }
            .btn-download {
                display: inline-flex;
                align-items: center;
                gap: 10px;
                margin-top: 28px;
                height: 50px;
                padding: 0 32px;
                background: #67a041;
                color: #fff;
                font-family: inherit;
                font-size: 14px;
                font-weight: 700;
                text-transform: uppercase;
                text-decoration: none;
                border-radius: 30px;
                box-shadow: 0px 10px 20px rgba(0, 11, 48, 0.25);
                transition:
                    background 0.3s,
                    box-shadow 0.3s,
                    transform 0.3s;
                animation: pulse-btn 2.5s ease-in-out 2s infinite;
            }
            .btn-download:hover {
                background: #2f15e6;
                box-shadow: 0px 10px 40px -2px rgba(0, 11, 48, 0.3);
                transform: translateY(-3px) scale(1.03);
                animation: none;
            }
            @keyframes pulse-btn {
                0%,
                100% {
                    box-shadow: 0px 10px 20px rgba(0, 11, 48, 0.25);
                }
                50% {
                    box-shadow: 0px 10px 30px 6px rgba(103, 160, 65, 0.45);
                }
            }
            .btn-download svg {
                width: 18px;
                height: 18px;
            }
            @media (max-width: 480px) {
                .btn-download {
                    width: 100%;
                    justify-content: center;
                    padding: 0 18px;
                    font-size: 13px;
                    text-align: center;
                }
            }

            #local-seo {
                padding: var(--section-y) 0;
                background: #f5f7f2;
            }
            .local-seo-grid {
                display: grid;
                grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
                gap: 42px;
                align-items: start;
                max-width: 1100px;
                margin: 0 auto;
            }
            .local-seo-copy {
                display: grid;
                gap: 18px;
                font-size: 18px;
                line-height: 1.75;
                color: #26311f;
            }
            .local-facts {
                display: grid;
                gap: 14px;
            }
            .local-fact {
                padding: 22px;
                border: 1px solid rgba(103, 160, 65, 0.22);
                border-radius: 18px;
                background: #fff;
                box-shadow: 0 18px 40px rgba(38, 49, 31, 0.08);
            }
            .local-fact strong {
                display: block;
                margin-bottom: 8px;
                font-size: 17px;
                color: #111;
            }
            .local-fact span {
                display: block;
                font-size: 14px;
                line-height: 1.65;
                color: #4c5548;
            }
            .topic-links {
                max-width: 1100px;
                margin: 44px auto 0;
            }
            .topic-links-title {
                margin-bottom: 16px;
                font-size: 14px;
                font-weight: 700;
                letter-spacing: 0.08em;
                text-transform: uppercase;
                color: #587340;
            }
            .topic-links-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
                gap: 14px;
            }
            .topic-link {
                display: block;
                padding: 18px 20px;
                border: 1px solid rgba(17, 17, 17, 0.08);
                border-radius: 16px;
                background: #fff;
                color: #111;
                text-decoration: none;
                transition:
                    transform 0.2s ease,
                    border-color 0.2s ease,
                    box-shadow 0.2s ease;
            }
            .topic-link:hover {
                transform: translateY(-2px);
                border-color: #67a041;
                box-shadow: 0 14px 28px rgba(38, 49, 31, 0.1);
            }
            .topic-link strong {
                display: block;
                margin-bottom: 5px;
                font-size: 17px;
            }
            .topic-link span {
                display: block;
                font-size: 13px;
                line-height: 1.45;
                color: #66705f;
            }

            #cities .section-label,
            #cities .section-title {
                color: #fff;
            }
            .city-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
                gap: 16px;
                max-width: 1080px;
                margin: 0 auto;
            }
            .city-card {
                display: block;
                text-decoration: none;
                background: #1a1a1a;
                border: 1px solid #2a2a2a;
                border-radius: 16px;
                padding: 20px 22px;
                text-align: left;
                transition:
                    transform 0.2s ease,
                    border-color 0.2s ease,
                    background 0.2s ease;
            }
            .city-card:hover {
                transform: translateY(-3px);
                border-color: #67a041;
                background: #202020;
            }
            .city-card.active {
                border-color: #67a041;
                background: #1f2719;
            }
            .city-card-name {
                font-size: 22px;
                font-weight: 700;
                color: #fff;
                margin-bottom: 6px;
            }
            .city-card-subtitle {
                font-size: 14px;
                color: #aaa;
                margin-bottom: 8px;
            }
            .city-card-note {
                display: inline-flex;
                padding: 5px 10px;
                border-radius: 999px;
                font-size: 12px;
                letter-spacing: 0.04em;
                text-transform: uppercase;
                color: #d7ebc8;
                background: rgba(103, 160, 65, 0.16);
            }
            @media (max-width: 820px) {
                #local-seo {
                    padding: 64px 0;
                }
                .local-seo-grid {
                    grid-template-columns: 1fr;
                    gap: 28px;
                }
                .local-seo-copy {
                    font-size: 16px;
                }
            }
            /* ── CONTACTS ── */
            #contacts {
                background: #111;
                padding: var(--section-y) 0;
            }
            .socials {
                display: flex;
                justify-content: center;
                align-items: center;
                flex-wrap: wrap;
                gap: 16px;
            }
            .socials a {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 48px;
                height: 48px;
                text-decoration: none;
                transition:
                    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
                    opacity 0.2s;
            }
            .socials a:hover {
                transform: scale(1.25) translateY(-4px);
                opacity: 1;
            }
            .socials svg {
                width: 48px;
                height: 48px;
            }

            /* ── FAQ ── */
            #faq {
                background: #f7f7f7;
                padding: var(--section-y) 0;
            }
            @media (max-width: 960px) {
                #faq {
                    padding: 80px 0;
                }
            }
            .faq-list {
                max-width: 780px;
                margin: 0 auto;
                display: flex;
                flex-direction: column;
                gap: 0;
            }
            .faq-item {
                border-bottom: 1px solid #ddd;
            }
            .faq-item:first-child {
                border-top: 1px solid #ddd;
            }
            .faq-question {
                width: 100%;
                background: none;
                border: none;
                text-align: left;
                padding: 22px 8px;
                font-family: inherit;
                font-size: 18px;
                font-weight: 700;
                cursor: pointer;
                display: flex;
                justify-content: space-between;
                align-items: center;
                gap: 16px;
                color: #000;
            }
            .faq-question:hover {
                color: #111;
            }
            .faq-icon {
                font-size: 22px;
                font-weight: 300;
                line-height: 1;
                flex-shrink: 0;
                transition: transform 0.25s ease;
                color: #555;
                width: 24px;
                height: 24px;
                display: inline-flex;
                align-items: center;
                justify-content: center;
            }
            .faq-item.open .faq-icon {
                transform: rotate(45deg);
            }
            .faq-answer {
                max-height: 0;
                overflow: hidden;
                transition:
                    max-height 0.3s ease,
                    padding 0.3s ease;
                font-size: 16px;
                line-height: 1.7;
                color: #333;
                padding: 0 8px;
            }
            .faq-item.open .faq-answer {
                max-height: 400px;
                padding: 0 8px 22px;
            }

            /* ── FOOTER ── */
            footer {
                background: #111;
                border-top: 1px solid #292929;
            }
            .footer-inner {
                height: 120px;
                display: flex;
                align-items: center;
                justify-content: center;
            }
            .footer-text {
                font-size: 12px;
                color: #aaa;
                font-weight: 600;
            }

            /* ── DIVIDER ── */
            .divider {
                height: 1px;
                background: rgba(0, 0, 0, 0.2);
            }

            /* ── CIVIL CASES ── */
            #civil-cases {
                padding: var(--section-y) 0;
                background:
                    radial-gradient(
                        circle at 85% 12%,
                        rgba(75, 255, 186, 0.35),
                        transparent 42%
                    ),
                    linear-gradient(165deg, #e9faf1 0%, #d9f2e6 100%);
            }
            .civil-intro {
                max-width: 760px;
                margin: 0 auto 44px;
                display: grid;
                gap: 16px;
                text-align: center;
                font-size: 18px;
                line-height: 1.75;
                color: var(--muted);
            }
            .civil-intro strong {
                color: var(--ink);
            }
            .civil-cases-list {
                list-style: none;
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 14px;
                max-width: 1000px;
                margin: 0 auto;
            }
            .civil-case {
                display: flex;
                align-items: flex-start;
                gap: 16px;
                padding: 20px 22px;
                border: 1px solid rgba(17, 17, 17, 0.08);
                border-left: 4px solid var(--accent);
                border-radius: 18px;
                background: #fff;
                box-shadow: 0 14px 36px rgba(17, 17, 17, 0.06);
            }
            .civil-cases-list .civil-case:hover {
                transform: translateY(-4px);
                border-color: rgba(103, 160, 65, 0.4);
                box-shadow: 0 20px 44px rgba(17, 17, 17, 0.12);
            }
            .civil-case-dot {
                flex-shrink: 0;
                width: 12px;
                height: 12px;
                margin-top: 7px;
                border-radius: 50%;
                background: var(--accent);
            }
            .civil-case strong {
                display: block;
                margin-bottom: 5px;
                font-size: 18px;
                line-height: 1.3;
                color: var(--ink);
            }
            .civil-case span {
                display: block;
                font-size: 15px;
                line-height: 1.6;
                color: var(--muted);
            }
            .civil-note {
                max-width: 1080px;
                margin: 44px auto 0;
                padding: 32px;
                background: #111;
                color: #fff;
                border-radius: 24px;
                box-shadow: 0 24px 70px rgba(17, 17, 17, 0.16);
            }
            .civil-note strong {
                display: block;
                margin-bottom: 12px;
                font-size: 22px;
                line-height: 1.3;
            }
            .civil-note p {
                font-size: 16px;
                line-height: 1.8;
                color: rgba(255, 255, 255, 0.82);
            }
            .civil-note p + p {
                margin-top: 14px;
            }
            @media (max-width: 880px) {
                #civil-cases {
                    padding: 80px 0;
                }
                .civil-intro {
                    font-size: 16px;
                }
            }

            /* ── SCROLL REVEAL ── */
            .reveal {
                opacity: 0;
                transform: translateY(40px);
                transition:
                    opacity 0.7s ease,
                    transform 0.7s ease;
            }
            .reveal.visible {
                opacity: 1;
                transform: translateY(0);
            }
            .reveal-left {
                opacity: 0;
                transform: translateX(-50px);
                transition:
                    opacity 0.7s ease,
                    transform 0.7s ease;
            }
            .reveal-left.visible {
                opacity: 1;
                transform: translateX(0);
            }
            .reveal-right {
                opacity: 0;
                transform: translateX(50px);
                transition:
                    opacity 0.7s ease,
                    transform 0.7s ease;
            }
            .reveal-right.visible {
                opacity: 1;
                transform: translateX(0);
            }
            @media (max-width: 768px) {
                .reveal-left,
                .reveal-right {
                    transform: translateY(40px);
                }
                .reveal-left.visible,
                .reveal-right.visible {
                    transform: translateY(0);
                }
            }
            /* stagger delays for child elements */
            .stagger > *:nth-child(1) {
                transition-delay: 0s;
            }
            .stagger > *:nth-child(2) {
                transition-delay: 0.15s;
            }
            .stagger > *:nth-child(3) {
                transition-delay: 0.3s;
            }
            .stagger > *:nth-child(4) {
                transition-delay: 0.45s;
            }
            .stagger > *:nth-child(5) {
                transition-delay: 0.6s;
            }
            .stagger > *:nth-child(6) {
                transition-delay: 0.75s;
            }
            .stagger > *:nth-child(7) {
                transition-delay: 0.9s;
            }
            .stagger > *:nth-child(8) {
                transition-delay: 1.05s;
            }

            /* ── FLOATING CALLBACK ── */
            .callback-fab {
                position: fixed;
                right: 24px;
                bottom: 24px;
                z-index: 9100;
                width: 64px;
                height: 64px;
                border: none;
                border-radius: 50%;
                background: #59d975;
                color: #fff;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
                transition:
                    transform 0.25s ease,
                    background 0.25s ease;
                animation: cb-pulse 2.4s ease-in-out infinite;
            }
            .callback-fab:hover {
                transform: scale(1.08);
                background: #4bc466;
            }
            .callback-fab svg {
                width: 30px;
                height: 30px;
                fill: none;
                stroke: #fff;
                stroke-width: 2;
            }
            .callback-fab .cb-icon-close {
                display: none;
            }
            .callback-fab.open {
                animation: none;
                background: #fff;
                box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
            }
            .callback-fab.open .cb-icon-phone {
                display: none;
            }
            .callback-fab.open .cb-icon-close {
                display: block;
                stroke: #111;
            }
            @keyframes cb-pulse {
                0%,
                100% {
                    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
                }
                50% {
                    box-shadow:
                        0 10px 28px rgba(0, 0, 0, 0.28),
                        0 0 0 14px rgba(89, 217, 117, 0.18);
                }
            }

            .callback-overlay {
                position: fixed;
                inset: 0;
                z-index: 9000;
                background: rgba(0, 0, 0, 0.45);
                opacity: 0;
                visibility: hidden;
                transition:
                    opacity 0.25s ease,
                    visibility 0.25s ease;
            }
            .callback-overlay.open {
                opacity: 1;
                visibility: visible;
            }
            .callback-modal {
                position: fixed;
                z-index: 9050;
                left: 50%;
                top: 50%;
                width: min(92vw, 440px);
                transform: translate(-50%, -46%) scale(0.96);
                background: #fff;
                border-radius: 20px;
                padding: 40px 34px 34px;
                box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
                opacity: 0;
                visibility: hidden;
                transition:
                    opacity 0.25s ease,
                    transform 0.25s ease,
                    visibility 0.25s ease;
            }
            .callback-modal.open {
                opacity: 1;
                visibility: visible;
                transform: translate(-50%, -50%) scale(1);
            }
            .cb-title {
                margin-bottom: 24px;
                font-size: clamp(22px, 3vw, 28px);
                line-height: 1.25;
                font-weight: 900;
                text-align: center;
                color: var(--ink);
            }
            .cb-form {
                display: grid;
                gap: 14px;
            }
            .cb-phone {
                height: 56px;
                padding: 0 18px;
                border: 1px solid rgba(17, 17, 17, 0.18);
                border-radius: 10px;
                font-size: 16px;
                font-family: inherit;
                color: #000;
                outline: none;
                transition: border-color 0.2s;
            }
            .cb-phone:focus {
                border-color: #59d975;
            }
            .cb-submit {
                height: 56px;
                border: none;
                border-radius: 10px;
                background: #2f9e5e;
                color: #fff;
                font-family: inherit;
                font-size: 15px;
                font-weight: 800;
                letter-spacing: 0.04em;
                text-transform: uppercase;
                cursor: pointer;
                transition:
                    background 0.2s,
                    transform 0.2s;
            }
            .cb-submit:hover {
                background: #25864e;
                transform: translateY(-2px);
            }
            .cb-submit:disabled {
                opacity: 0.6;
                cursor: default;
                transform: none;
            }
            .cb-or {
                margin-top: 26px;
                text-align: center;
                font-size: 15px;
                color: var(--muted);
            }
            .cb-call {
                display: block;
                margin-top: 6px;
                text-align: center;
                font-size: 22px;
                font-weight: 700;
                color: var(--ink);
                text-decoration: none;
            }
            .cb-call:hover {
                color: #2f9e5e;
            }
            /* On success, hide the whole prompt and show only the card */
            .callback-modal.cb-done .cb-title,
            .callback-modal.cb-done .cb-form,
            .callback-modal.cb-done .cb-or,
            .callback-modal.cb-done .cb-call {
                display: none;
            }
            .cb-success {
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
                padding: 12px 6px 6px;
            }
            .cb-success-icon {
                width: 76px;
                height: 76px;
                margin-bottom: 22px;
                border-radius: 50%;
                background: #e7f7ee;
                display: flex;
                align-items: center;
                justify-content: center;
                animation: cb-pop 0.4s cubic-bezier(0.17, 0.89, 0.32, 1.49) both;
            }
            .cb-success-icon svg {
                width: 40px;
                height: 40px;
                fill: none;
                stroke: #2f9e5e;
                stroke-width: 3;
                stroke-linecap: round;
                stroke-linejoin: round;
                stroke-dasharray: 30;
                stroke-dashoffset: 30;
                animation: cb-check 0.5s ease 0.2s forwards;
            }
            @keyframes cb-pop {
                from {
                    transform: scale(0);
                    opacity: 0;
                }
                to {
                    transform: scale(1);
                    opacity: 1;
                }
            }
            @keyframes cb-check {
                to {
                    stroke-dashoffset: 0;
                }
            }
            .cb-success-title {
                font-size: clamp(22px, 3vw, 26px);
                font-weight: 900;
                line-height: 1.2;
                color: var(--ink);
                margin-bottom: 12px;
            }
            .cb-success-text {
                font-size: 16px;
                line-height: 1.6;
                color: var(--muted);
                max-width: 320px;
            }
            @media (max-width: 600px) {
                .callback-modal {
                    padding: 34px 22px 26px;
                }
            }
            .skip-link {
                position: absolute;
                top: -100px;
                left: 16px;
                background: var(--ink);
                color: #fff;
                padding: 12px 24px;
                z-index: 10000;
                border-radius: 0 0 6px 6px;
                font-weight: 700;
                font-size: 16px;
                text-decoration: none;
                transition: top 0.2s;
            }
            .skip-link:focus {
                top: 0;
            }
            .sr-only {
                position: absolute;
                width: 1px;
                height: 1px;
                padding: 0;
                margin: -1px;
                overflow: hidden;
                clip: rect(0, 0, 0, 0);
                white-space: nowrap;
                border: 0;
