:root {
    --primary-navy: #0D4088;
    --primary-blue: #1E91CD;
    --dark-bg: #040E33;
    --primary-green: #00D7A0;
    --primary-yellow: #F7D232;
    --white: #FFFFFF;
    --black: #000000;
    --bg-gradient: linear-gradient(180deg, #0D4088 0%, #040E33 100%);
    --font-headings: 'Manrope', sans-serif;
    --font-body: 'Source Sans Pro', sans-serif;
    --line-height: 1.5;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: var(--font-body);
    line-height: var(--line-height);
    background: var(--dark-bg);
    color: var(--white);
    font-size: 16px;
    overflow-x: hidden;
}

.container {
    width: min(1120px, 92%);
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(4, 14, 51, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand-logo {
    height: 42px;
    width: auto;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-headings);
    font-size: 16px;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: var(--primary-green);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 6px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.placeholder-section {
    min-height: 35vh;
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: clamp(48px, 7vw, 96px) 0 clamp(52px, 8vw, 110px);
    background: radial-gradient(1200px 500px at 88% 8%, rgba(30, 145, 205, 0.28) 0%, rgba(4, 14, 51, 0) 60%), var(--bg-gradient);
}

.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(6px);
    opacity: 0.48;
}

.hero-bg-shape-1 {
    width: 320px;
    height: 320px;
    top: -140px;
    left: -80px;
    background: rgba(0, 215, 160, 0.3);
}

.hero-bg-shape-2 {
    width: 260px;
    height: 260px;
    bottom: -120px;
    right: -40px;
    background: rgba(247, 210, 50, 0.26);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(24px, 4vw, 52px);
    align-items: center;
}

.hero-eyebrow {
    margin: 0 0 12px;
    color: var(--primary-yellow);
    font-weight: 600;
    letter-spacing: 0.8px;
}

.hero-copy h1 {
    margin: 0;
    font-family: var(--font-headings);
    font-size: clamp(34px, 5.3vw, 60px);
    line-height: 1.2;
    max-width: 16ch;
}

.hero-subtitle {
    margin: 16px 0 0;
    max-width: 58ch;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(18px, 2.3vw, 23px);
}

.countdown-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.07));
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 20px;
    padding: clamp(20px, 3vw, 28px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.countdown-label {
    margin: 0;
    font-weight: 600;
    color: var(--white);
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
}

.countdown-item {
    background: rgba(4, 14, 51, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    text-align: center;
    padding: 10px 6px;
}

.countdown-value {
    display: block;
    font-family: var(--font-headings);
    font-size: clamp(27px, 3.2vw, 36px);
    line-height: 1;
    color: var(--primary-green);
}

.countdown-unit {
    display: block;
    margin-top: 7px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-cta {
    display: block;
    margin-top: 18px;
    text-align: center;
    text-decoration: none;
    font-family: var(--font-headings);
    color: var(--dark-bg);
    background: var(--primary-yellow);
    padding: 12px 18px;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.hero-cta:hover,
.hero-cta:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(247, 210, 50, 0.3);
    background: #ffe068;
}

.countdown-note {
    margin: 12px 0 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
    text-align: center;
}

.reasons-section {
    padding: clamp(54px, 7vw, 92px) 0;
    background: linear-gradient(180deg, #081748 0%, #06123b 100%);
}

.section-head {
    max-width: 720px;
}

.section-eyebrow {
    margin: 0;
    color: var(--primary-green);
    font-weight: 600;
    letter-spacing: 0.8px;
}

.section-head h2 {
    margin: 8px 0 12px;
    font-size: clamp(30px, 4.2vw, 48px);
    font-family: var(--font-headings);
}

.section-subtitle {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(17px, 2.2vw, 20px);
}

.reasons-grid {
    margin-top: clamp(24px, 3vw, 34px);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.reason-card {
    background: linear-gradient(180deg, rgba(13, 64, 136, 0.45), rgba(30, 145, 205, 0.16));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 18px;
    min-height: 220px;
    transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    animation: card-reveal 0.65s ease forwards;
}

.reason-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    background: var(--primary-yellow);
}

.reason-icon svg {
    width: 26px;
    height: 26px;
}

.reason-card:hover,
.reason-card:focus-within {
    transform: translateY(-6px);
    border-color: rgba(0, 215, 160, 0.65);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
}

.reason-card:nth-child(1) { animation-delay: 0.04s; }
.reason-card:nth-child(2) { animation-delay: 0.1s; }
.reason-card:nth-child(3) { animation-delay: 0.16s; }
.reason-card:nth-child(4) { animation-delay: 0.22s; }
.reason-card:nth-child(5) { animation-delay: 0.28s; }
.reason-card:nth-child(6) { animation-delay: 0.34s; }
.reason-card:nth-child(7) { animation-delay: 0.4s; }
.reason-card:nth-child(8) { animation-delay: 0.46s; }

@keyframes card-reveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .reason-card {
        animation: none;
        opacity: 1;
        transform: none;
        transition: none;
    }

    .portfolio-card {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .portfolio-card img {
        transition: none;
    }

    .portfolio-card {
        transition: none;
    }
}

.reason-card h3 {
    margin: 14px 0 8px;
    font-size: 22px;
    font-family: var(--font-headings);
}

.reason-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.portfolio-section {
    padding: clamp(54px, 7vw, 92px) 0;
    background: radial-gradient(900px 420px at 12% 10%, rgba(0, 215, 160, 0.12), rgba(0, 215, 160, 0) 58%), linear-gradient(180deg, #050f36 0%, #040b28 100%);
}

.portfolio-head {
    max-width: 760px;
}

.portfolio-subtitle {
    margin: 10px 0 0;
    color: rgba(232, 241, 255, 0.72);
    font-size: clamp(15px, 1.4vw, 18px);
}

/* ── Results Grid ── */
.results-grid {
    margin-top: clamp(24px, 3vw, 40px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.result-card {
    background: linear-gradient(160deg, rgba(10, 28, 80, 0.9) 0%, rgba(4, 14, 51, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 0;
    transform: translateY(14px);
    opacity: 0;
    animation: portfolio-reveal 0.7s ease forwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
}

.result-card:nth-child(1) { animation-delay: 0.05s; }
.result-card:nth-child(2) { animation-delay: 0.14s; }
.result-card:nth-child(3) { animation-delay: 0.23s; }
.result-card:nth-child(4) { animation-delay: 0.32s; }

.result-card:hover,
.result-card:focus-within {
    transform: translateY(-5px);
    border-color: rgba(0, 215, 160, 0.45);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.36), 0 0 0 1px rgba(0, 215, 160, 0.12);
}

.result-card-header {
    position: relative;
    overflow: hidden;
}

.result-thumb {
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: contain;
    display: block;
    background: rgba(4, 14, 51, 0.9);
    filter: brightness(0.8) saturate(0.95);
    transition: filter 0.35s ease, transform 0.35s ease;
}

.result-card:hover .result-thumb {
    filter: brightness(0.88) saturate(1.08);
    transform: scale(1.03);
}

.result-badge {
    position: absolute;
    top: 12px;
    right: 14px;
    background: rgba(4, 14, 51, 0.82);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: rgba(232, 241, 255, 0.92);
    font-size: 12px;
    padding: 4px 11px;
    font-family: var(--font-headings);
    letter-spacing: 0.2px;
    z-index: 2;
}

.result-stat {
    padding: 18px 22px 10px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.result-stat-value {
    font-family: var(--font-headings);
    font-size: clamp(30px, 3.2vw, 42px);
    line-height: 1;
    color: var(--primary-yellow);
    letter-spacing: -0.5px;
}

.result-stat-label {
    font-size: 14px;
    color: rgba(232, 241, 255, 0.62);
}

.result-metrics {
    padding: 14px 22px 18px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.result-metric {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 10px 11px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    text-align: center;
}

.result-metric-value {
    font-family: var(--font-headings);
    font-size: clamp(14px, 1.3vw, 17px);
    color: var(--white);
    line-height: 1.2;
}

.result-metric-label {
    font-size: 11px;
    color: rgba(232, 241, 255, 0.5);
    line-height: 1.3;
}

.lead-section {
    padding: clamp(56px, 7vw, 98px) 0;
    background: radial-gradient(640px 260px at 18% 22%, rgba(30, 145, 205, 0.14), rgba(30, 145, 205, 0) 62%), linear-gradient(180deg, #07205b 0%, #041a4f 55%, #031543 100%);
}

.lead-grid {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
    gap: clamp(24px, 3.4vw, 44px);
    align-items: center;
}

.lead-copy-block {
    max-width: 640px;
}

.lead-eyebrow {
    margin: 0;
    color: rgba(232, 243, 255, 0.85);
    font-weight: 600;
    font-size: clamp(17px, 1.1vw, 19px);
}

.lead-copy-block h2 {
    margin: 12px 0 12px;
    font-family: var(--font-headings);
    font-size: clamp(38px, 4.8vw, 66px);
    line-height: 1.15;
    max-width: 12ch;
}

.lead-intro {
    margin: 0;
    color: rgba(225, 236, 254, 0.9);
    font-size: clamp(17px, 1.35vw, 24px);
    max-width: 48ch;
}

.lead-steps {
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.lead-steps li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(242, 248, 255, 0.96);
    font-size: clamp(19px, 1.3vw, 24px);
    font-weight: 600;
}

.lead-steps li::before {
    content: "";
    flex: 0 0 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-yellow);
    box-shadow: 0 0 0 5px rgba(247, 210, 50, 0.15);
}

.lead-form-wrap {
    background: linear-gradient(180deg, rgba(24, 58, 122, 0.98), rgba(16, 45, 101, 0.98));
    border: 1px solid rgba(166, 196, 246, 0.32);
    border-radius: 22px;
    padding: clamp(20px, 2.8vw, 30px);
    box-shadow: 0 26px 50px rgba(2, 8, 26, 0.48);
}

.lead-form {
    display: grid;
    gap: 14px;
}

.field-full {
    width: 100%;
}

.field-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.field-group {
    display: grid;
    gap: 8px;
}

.field-group label {
    font-family: var(--font-headings);
    font-size: clamp(18px, 1.2vw, 22px);
    color: var(--white);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid rgba(169, 194, 237, 0.22);
    background: rgba(46, 74, 130, 0.72);
    color: var(--white);
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: clamp(17px, 1.1vw, 20px);
    line-height: 1.3;
    outline: none;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.lead-form textarea {
    resize: vertical;
    min-height: 112px;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
    color: rgba(210, 224, 246, 0.58);
}

.lead-form select {
    color: rgba(210, 224, 246, 0.86);
}

.lead-form select:required:invalid {
    color: rgba(210, 224, 246, 0.58);
}

.lead-form select option {
    color: #0b244e;
    background: #dce9ff;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    border-color: rgba(247, 210, 50, 0.9);
    box-shadow: 0 0 0 3px rgba(247, 210, 50, 0.2);
    background: rgba(52, 82, 144, 0.82);
}

.lead-submit-btn {
    margin-top: 6px;
    width: 100%;
    border: 0;
    border-radius: 999px;
    background: var(--primary-yellow);
    color: #121212;
    font-family: var(--font-headings);
    font-size: clamp(26px, 1.6vw, 32px);
    padding: 14px 22px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.lead-submit-btn:hover,
.lead-submit-btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(247, 210, 50, 0.34);
    filter: brightness(1.03);
}

.site-footer {
    background: radial-gradient(500px 180px at 80% 0%, rgba(0, 215, 160, 0.10), transparent 60%), linear-gradient(180deg, #041543 0%, #031038 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid {
    padding: clamp(22px, 3vw, 38px) 0;
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr 0.9fr;
    gap: clamp(14px, 2.2vw, 26px);
    align-items: stretch;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
}

.footer-logo {
    height: 32px;
    width: auto;
    display: block;
}

.footer-text {
    margin: 9px 0 0;
    color: rgba(232, 241, 255, 0.72);
    font-size: 14px;
    line-height: 1.65;
    max-width: 36ch;
}

.footer-social {
    display: flex;
    gap: 7px;
    margin-top: 13px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    padding: 5px 13px 5px 9px;
    color: rgba(238, 244, 255, 0.85);
    text-decoration: none;
    font-size: 13px;
    line-height: 1;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.social-btn:hover,
.social-btn:focus-visible {
    background: rgba(255, 214, 0, 0.12);
    border-color: var(--primary-yellow);
    color: var(--primary-yellow);
}

.footer-links-block h3,
.footer-contact-block h3 {
    margin: 0;
    font-family: var(--font-headings);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.2px;
}

.footer-links {
    list-style: none;
    margin: 9px 0 0;
    padding: 0;
    display: grid;
    gap: 6px;
}

.footer-links a {
    color: rgba(238, 244, 255, 0.76);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: var(--primary-yellow);
}

.footer-badge-block {
    display: flex;
    align-items: center;
    justify-content: center;
}

.google-badge-link {
    display: inline-block;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 8px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.google-badge-link:hover,
.google-badge-link:focus-visible {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.32);
}

.google-badge {
    width: min(170px, 100%);
    height: auto;
    display: block;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom p {
    margin: 0;
    padding: 11px 0;
    color: rgba(223, 234, 252, 0.52);
    font-size: 13px;
    text-align: center;
}

/* ── Floating Countdown ── */
.floating-countdown {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 900;
    transform: translateY(110%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.floating-countdown.visible {
    transform: translateY(0);
    pointer-events: auto;
}

.floating-countdown-inner {
    max-width: 700px;
    margin: 0 auto 14px;
    background: rgba(3, 16, 56, 0.93);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 18px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(0, 215, 160, 0.08);
}

.floating-countdown-label {
    color: rgba(232, 241, 255, 0.65);
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
}

.floating-timer {
    display: flex;
    align-items: center;
    gap: 5px;
    flex: 1;
    justify-content: center;
}

.floating-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    min-width: 32px;
}

.floating-value {
    font-family: var(--font-headings);
    font-size: 20px;
    line-height: 1;
    color: var(--primary-yellow);
    letter-spacing: 0.5px;
}

.floating-unit-label {
    font-size: 9px;
    color: rgba(232, 241, 255, 0.55);
    text-align: center;
}

.floating-sep {
    font-size: 16px;
    color: var(--primary-yellow);
    opacity: 0.5;
    margin-bottom: 10px;
    flex-shrink: 0;
}

.floating-cta {
    background: var(--primary-yellow);
    color: #040e33;
    padding: 8px 18px;
    border-radius: 999px;
    font-family: var(--font-headings);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.floating-cta:hover,
.floating-cta:focus-visible {
    opacity: 0.88;
    transform: scale(1.03);
}

@keyframes portfolio-reveal {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 860px) {
    .menu-toggle {
        display: inline-block;
    }

    .nav-links {
        position: absolute;
        top: 78px;
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--bg-gradient);
        border-bottom: 1px solid rgba(255, 255, 255, 0.16);
        padding: 10px 0;
    }

    .menu-open .nav-links {
        display: flex;
    }

    .nav-links li {
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 14px 18px;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-copy h1,
    .hero-subtitle {
        max-width: 100%;
    }

    .countdown-grid {
        gap: 8px;
    }

    .reasons-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .results-grid {
        gap: 14px;
    }

    .lead-grid {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .lead-form-wrap {
        order: 2;
    }

    .lead-copy-block {
        max-width: 100%;
    }

    .lead-copy-block h2 {
        max-width: 100%;
    }

    .field-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand-block {
        grid-column: 1 / -1;
    }

    .footer-badge-block {
        grid-column: 1 / -1;
        justify-content: center;
    }
}

@media (max-width: 520px) {
    .countdown-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .reason-card {
        min-height: auto;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .result-thumb {
        aspect-ratio: 16 / 8;
    }

    .result-stat-value {
        font-size: clamp(26px, 7vw, 34px);
    }

    .result-metrics {
        padding: 12px 14px 14px;
        gap: 6px;
    }

    .result-metric {
        padding: 8px 8px;
    }

    .lead-copy-block h2 {
        font-size: clamp(31px, 8.2vw, 42px);
    }

    .lead-form input,
    .lead-form select,
    .lead-form textarea {
        font-size: 17px;
    }

    .field-group label {
        font-size: 18px;
    }

    .lead-submit-btn {
        font-size: 22px;
        padding: 13px 16px;
    }

    .lead-steps li {
        font-size: 18px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-text {
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-badge-block {
        grid-column: auto;
    }

    .floating-countdown-inner {
        margin: 0 10px 10px;
        padding: 8px 14px;
        gap: 10px;
        border-radius: 14px;
    }

    .floating-countdown-label {
        display: none;
    }

    .floating-value {
        font-size: 17px;
    }

    .floating-unit {
        min-width: 26px;
    }

    .floating-cta {
        font-size: 12px;
        padding: 7px 14px;
    }
}
