:root {
    --blue: #053f9e;
    --blue-dark: #06235f;
    --blue-soft: #edf4ff;
    --blue-pale: #f6f9ff;
    --ink: #111827;
    --muted: #5f6f85;
    --line: #dce6f5;
    --gold: #f5a400;
    --white: #ffffff;
    --shadow: 0 18px 48px rgba(6, 35, 95, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Rajdhani", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.45;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
    min-height: 82px;
    padding: 12px clamp(20px, 5vw, 72px);
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(220, 230, 245, 0.9);
    box-shadow: 0 8px 28px rgba(6, 35, 95, 0.05);
    backdrop-filter: blur(12px);
}

.brand img {
    width: 148px;
    height: auto;
}

.nav {
    display: flex;
    justify-content: center;
    gap: clamp(12px, 2.2vw, 30px);
    color: var(--blue-dark);
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
}

.nav a {
    position: relative;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: rgba(6, 35, 95, 0.82);
    transition: color 160ms ease;
}

.nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 8px;
    left: 0;
    height: 2px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
    color: var(--blue);
}

.nav a:hover::after,
.nav a:focus-visible::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
}

.primary-button,
.outline-button,
.icon-button,
.menu-toggle {
    transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.primary-button,
.outline-button {
    justify-content: center;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
}

.primary-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    padding: 13px 24px;
    border: 0;
    color: var(--white);
    background: var(--blue);
    box-shadow: 0 12px 28px rgba(5, 63, 158, 0.22);
    cursor: pointer;
    font: inherit;
}

.primary-button:hover,
.primary-button:focus-visible {
    background: var(--blue-dark);
    transform: translateY(-2px);
}

.outline-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    padding: 12px 22px;
    color: var(--blue);
    border: 2px solid var(--blue);
    background: var(--white);
}

.outline-button:hover,
.outline-button:focus-visible {
    color: var(--white);
    background: var(--blue);
    transform: translateY(-2px);
}

.social-actions {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.header-social {
    justify-self: end;
}

.header-social .icon-button {
    color: var(--white);
    border-color: var(--blue);
    background: var(--blue);
}

.header-social .icon-button:hover,
.header-social .icon-button:focus-visible {
    color: var(--blue);
    border-color: var(--blue);
    background: var(--white);
}

.icon-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--blue);
    background: var(--white);
}

.icon-button:hover,
.icon-button:focus-visible {
    color: var(--white);
    border-color: var(--blue);
    background: var(--blue);
    box-shadow: 0 10px 22px rgba(5, 63, 158, 0.18);
    transform: translateY(-2px);
}

.icon-button svg {
    width: 23px;
    height: 23px;
    fill: currentColor;
}

.hero {
    background: var(--white);
}

.hero img {
    width: 100%;
    min-height: 390px;
    object-fit: cover;
}

section {
    padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.band {
    background: var(--blue-soft);
}

.section-label {
    display: block;
    margin-bottom: 14px;
    color: var(--blue);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2 {
    color: var(--blue-dark);
    font-size: clamp(34px, 5vw, 62px);
    line-height: 0.95;
    letter-spacing: 0;
    text-transform: uppercase;
}

h3 {
    color: var(--blue-dark);
    font-size: 25px;
    line-height: 1.05;
}

.intro-grid,
.support,
.contact,
.site-footer {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(28px, 6vw, 76px);
    align-items: start;
}

.intro-grid p,
.support-list p,
.contact-copy p,
.site-footer p,
.faq p {
    color: var(--muted);
    font-size: 22px;
}

.intro-layout {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: clamp(30px, 4vw, 64px);
    align-items: stretch;
}

.intro-content {
    grid-column: span 8;
}

.intro-content .intro-grid {
    display: block;
}

.intro-content .intro-grid p {
    margin-top: 22px;
}

.intro-avatar {
    grid-column: span 4;
    display: flex;
    align-self: stretch;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.intro-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-stats-panel {
    position: relative;
    isolation: isolate;
    margin-top: clamp(40px, 6vw, 76px);
    padding: clamp(26px, 4vw, 48px);
    overflow: hidden;
    border-radius: 8px;
    background:
        radial-gradient(circle at 92% 8%, rgba(255, 255, 255, 0.16), transparent 27%),
        linear-gradient(135deg, var(--blue-dark), var(--blue));
    box-shadow: 0 24px 54px rgba(6, 35, 95, 0.2);
}

.service-stats-panel::after {
    position: absolute;
    z-index: -1;
    right: -70px;
    bottom: -90px;
    width: 260px;
    height: 260px;
    border: 48px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    content: "";
}

.service-stats-heading {
    display: flex;
    gap: 24px;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 24px;
    color: var(--white);
}

.service-stats-heading span {
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.service-stats-heading p {
    max-width: 430px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    text-align: right;
}

.service-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.service-stat {
    position: relative;
    min-height: 176px;
    padding: clamp(24px, 3vw, 34px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(237, 244, 255, 0.96));
    box-shadow: 0 14px 32px rgba(2, 20, 55, 0.16);
    opacity: 1;
    transform: translateY(0);
    transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1), opacity 460ms ease, box-shadow 220ms ease;
}

.service-stats-panel.has-motion .service-stat {
    opacity: 0;
    transform: translateY(34px) scale(0.96);
}

.service-stat::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--blue));
    content: "";
}

.service-stats-panel.has-motion .service-stat.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.service-stats-panel .service-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 38px rgba(2, 20, 55, 0.22);
}

.service-stat-number,
.service-stat span {
    display: block;
}

.service-stat-number {
    color: var(--blue-dark);
    font-size: clamp(48px, 5.4vw, 72px);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.02em;
}

.service-stat.is-visible .service-stat-number {
    animation: stat-number-pop 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes stat-number-pop {
    0% {
        opacity: 0;
        transform: scale(0.78);
    }

    65% {
        opacity: 1;
        transform: scale(1.06);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.service-stat span {
    margin-top: 16px;
    color: var(--muted);
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
}

.section-heading {
    max-width: 830px;
    margin-bottom: 34px;
}

.section-note {
    max-width: 620px;
    color: var(--muted);
    font-size: 20px;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.benefit-card,
.optional article,
.faq details,
.contact-form,
.review-card,
.instagram-post {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.benefit-card:hover,
.optional article:hover,
.faq details:hover,
.review-card:hover,
.instagram-post:hover {
    border-color: rgba(5, 63, 158, 0.25);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.benefit-card {
    position: relative;
    min-height: 158px;
    overflow: hidden;
    padding: 24px;
}

.benefit-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: var(--blue);
}

.benefit-marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    color: var(--blue);
}

.benefit-marker svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-card p {
    margin-bottom: 0;
    color: var(--blue-dark);
    font-size: 21px;
    font-weight: 600;
}

.support-list {
    display: grid;
    gap: 16px;
}

.support-list p {
    margin: 0;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.optional-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.optional article {
    padding: 28px;
}

.optional-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin: 0 auto 18px;
    color: var(--blue);
}

.optional-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.optional p {
    color: var(--muted);
    font-size: 21px;
}

.app-promo {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: clamp(36px, 7vw, 96px);
    align-items: center;
    min-height: 720px;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 36%, rgba(64, 139, 255, 0.28), transparent 28%),
        linear-gradient(135deg, #041b4d 0%, var(--blue-dark) 48%, var(--blue) 130%);
}

.app-promo::before {
    position: absolute;
    top: -180px;
    left: -120px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    content: "";
}

.app-promo-copy {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.app-promo-label {
    display: block;
    margin-bottom: 16px;
    color: #8fc0ff;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.app-promo h2 {
    max-width: 680px;
    margin-bottom: 24px;
    color: var(--white);
}

.app-promo-intro {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(20px, 2.1vw, 25px);
}

.app-feature-list {
    display: grid;
    gap: 14px;
    margin: 30px 0 34px;
    padding: 0;
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    list-style: none;
}

.app-feature-list li {
    position: relative;
    padding-left: 36px;
}

.app-feature-list li::before {
    position: absolute;
    top: 0.14em;
    left: 0;
    display: grid;
    width: 23px;
    height: 23px;
    place-items: center;
    border-radius: 50%;
    color: var(--blue-dark);
    background: var(--white);
    content: "✓";
    font-size: 15px;
    font-weight: 700;
}

.app-store-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.store-button {
    display: inline-flex;
    gap: 13px;
    align-items: center;
    min-width: 205px;
    min-height: 70px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 8px;
    color: var(--blue-dark);
    background: var(--white);
    box-shadow: 0 12px 28px rgba(1, 13, 39, 0.24);
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.store-button:hover,
.store-button:focus-visible {
    background: var(--blue-soft);
    box-shadow: 0 18px 34px rgba(1, 13, 39, 0.32);
    outline: 0;
    transform: translateY(-3px);
}

.store-button-symbol {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--blue);
    font-size: 17px;
}

.store-button-symbol-apple {
    font-size: 11px;
    letter-spacing: -0.02em;
}

.store-button small,
.store-button strong {
    display: block;
}

.store-button small {
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
}

.store-button strong {
    margin-top: 4px;
    font-size: 21px;
    line-height: 1;
}

.app-qr-heading {
    margin: 28px 0 12px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    font-weight: 600;
}

.app-qr-codes {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.app-qr-code {
    display: flex;
    gap: 12px;
    align-items: center;
    min-width: 205px;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.app-qr-code:hover,
.app-qr-code:focus-visible {
    border-color: rgba(255, 255, 255, 0.46);
    background: rgba(255, 255, 255, 0.13);
    outline: 0;
    transform: translateY(-2px);
}

.app-qr-code img {
    width: 82px;
    height: 82px;
    flex: 0 0 82px;
    border: 6px solid var(--white);
    border-radius: 6px;
    background: var(--white);
}

.app-qr-code strong,
.app-qr-code small {
    display: block;
}

.app-qr-code strong {
    font-size: 18px;
    line-height: 1.05;
}

.app-qr-code small {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
}

.app-promo-visual {
    position: relative;
    align-self: end;
    height: 650px;
}

.app-phone-glow {
    position: absolute;
    right: 2%;
    bottom: 7%;
    width: 84%;
    height: 62%;
    border-radius: 50%;
    background: rgba(56, 131, 255, 0.42);
    filter: blur(70px);
}

.app-promo-visual img {
    position: absolute;
    z-index: 1;
    right: clamp(0px, 3vw, 50px);
    bottom: -155px;
    width: min(100%, 500px);
    max-height: 790px;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 30px 34px rgba(0, 0, 0, 0.34));
}

.reviews {
    display: block;
}

.google-reviews-widget-shell {
    min-height: 280px;
    overflow: hidden;
    padding: clamp(12px, 2vw, 22px);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.google-reviews-widget-shell .grwidget-embed {
    width: 100%;
}

.google-reviews-actions {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.review-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 22px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.7);
}

.review-summary strong {
    color: var(--blue-dark);
    font-size: 58px;
    line-height: 1;
}

.review-summary-copy {
    display: grid;
    gap: 2px;
}

.review-summary-copy span:last-child {
    color: var(--muted);
    font-size: 22px;
    font-weight: 600;
}

.review-summary .outline-button {
    margin-left: auto;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.review-card {
    position: relative;
    min-height: 270px;
    padding: 28px;
}

.review-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 50%;
    color: var(--white);
    background: var(--blue);
    font-size: 18px;
    font-weight: 700;
}

.review-rating {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
    padding: 6px 10px;
    border-radius: 6px;
    color: var(--blue);
    background: var(--blue-soft);
    font-size: 18px;
    font-weight: 700;
}

.stars {
    display: inline-flex;
    color: var(--gold);
    font-family: Arial, sans-serif;
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1;
}

.stars::before {
    content: "\2605\2605\2605\2605\2605";
}

.stars.is-dynamic::before {
    content: "";
}

.review-summary .stars {
    font-size: 22px;
}

.review-card p {
    color: var(--blue-dark);
    font-size: 22px;
    font-weight: 600;
}

.review-author {
    display: grid;
    gap: 2px;
    margin-top: 24px;
}

.review-author strong {
    color: var(--ink);
    font-size: 21px;
}

.review-author span {
    color: var(--muted);
    font-size: 18px;
}

.instagram-feed {
    background: var(--white);
}

.legacy-static-integration {
    display: none;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.instagram-widget-shell {
    min-height: 280px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.instagram-widget-shell iframe {
    display: block;
    width: 100%;
    min-height: 280px;
}

.instagram-post {
    overflow: hidden;
}

.post-media {
    position: relative;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: flex-end;
    min-height: 260px;
    padding: 24px;
    color: var(--white);
    background: var(--blue);
}

.post-media > span:last-child {
    max-width: 240px;
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 700;
    line-height: 0.95;
    text-transform: uppercase;
}

.post-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    padding: 6px 10px;
    border-radius: 6px;
    color: var(--blue-dark);
    background: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.post-media-blue {
    background:
        linear-gradient(145deg, rgba(5, 63, 158, 0.88), rgba(6, 35, 95, 0.94)),
        url("../images/hero-destak.png") center / cover;
}

.post-media-light {
    color: var(--blue-dark);
    background:
        linear-gradient(145deg, rgba(237, 244, 255, 0.94), rgba(255, 255, 255, 0.9)),
        url("../images/logo-destak.png") center / 52% no-repeat;
}

.post-media-outline {
    color: var(--blue);
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(237, 244, 255, 0.92)),
        repeating-linear-gradient(135deg, #ffffff 0 12px, #edf4ff 12px 24px);
}

.post-media-photo {
    padding: 0;
    background: var(--blue-pale);
}

.post-media-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    padding: 22px;
}

.post-content strong {
    display: block;
    margin-bottom: 8px;
    color: var(--blue-dark);
    font-size: 24px;
    line-height: 1.05;
}

.post-content p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 20px;
}

.instagram-button {
    margin-top: 24px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq details {
    padding: 20px 24px;
}

.faq summary {
    cursor: pointer;
    color: var(--blue-dark);
    font-size: 24px;
    font-weight: 700;
}

.faq p {
    margin: 14px 0 0;
}

.contact {
    align-items: center;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 26px;
}

.contact-form {
    display: grid;
    gap: 16px;
    padding: clamp(24px, 4vw, 36px);
    box-shadow: var(--shadow);
}

.form-heading {
    display: grid;
    gap: 4px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.form-heading strong {
    color: var(--blue-dark);
    font-size: 28px;
    line-height: 1;
}

.form-heading span {
    color: var(--muted);
    font-size: 19px;
}

.contact-form label {
    display: grid;
    gap: 6px;
    color: var(--blue-dark);
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 13px 14px;
    color: var(--ink);
    background: var(--blue-pale);
    font: inherit;
    transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--blue);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(5, 63, 158, 0.1);
    outline: 0;
}

.contact-form textarea {
    resize: vertical;
}

.trap {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.notice {
    border-radius: 6px;
    padding: 13px 14px;
    font-weight: 700;
}

.notice.success {
    color: #126033;
    background: #e8f8ef;
}

.notice.error {
    color: #8f1d1d;
    background: #fff0f0;
}

.turnstile-field {
    min-height: 65px;
}

.captcha-preview {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: center;
    padding: 14px;
    border: 1px dashed rgba(5, 63, 158, 0.38);
    border-radius: 8px;
    background: var(--blue-pale);
}

.captcha-preview > span {
    display: block;
    width: 24px;
    height: 24px;
    border: 2px solid var(--blue);
    border-radius: 5px;
    background: var(--white);
}

.captcha-preview strong {
    color: var(--blue-dark);
    font-size: 20px;
}

.captcha-preview p {
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}

.site-footer {
    padding: 46px clamp(20px, 5vw, 72px);
    color: var(--white);
    background: var(--blue-dark);
    grid-template-columns: 1.2fr 1fr 1.3fr 0.8fr;
}

.site-footer img {
    width: 116px;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
}

.site-footer h2 {
    margin-bottom: 16px;
    color: var(--white);
    font-size: 24px;
}

.site-footer p,
.site-footer a:not(.icon-button) {
    display: block;
    margin-bottom: 8px;
    color: #dbe8ff;
    font-size: 18px;
}

.footer-highlight {
    color: var(--white) !important;
    font-weight: 700;
}

.footer-social .icon-button {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
}

.footer-social .icon-button:hover,
.footer-social .icon-button:focus-visible {
    color: var(--blue-dark);
    border-color: var(--white);
    background: var(--white);
}

@media (max-width: 1120px) {
    .site-header {
        grid-template-columns: auto auto;
    }

    .nav {
        grid-column: 1 / -1;
        order: 3;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .header-social {
        justify-self: end;
    }

    .benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .review-grid,
    .instagram-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 980px) {
    .intro-grid,
    .support,
    .contact,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .app-promo {
        grid-template-columns: 1fr minmax(260px, 0.7fr);
        gap: 28px;
    }

    .app-promo-visual {
        height: 590px;
    }

    .optional-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .intro-content,
    .intro-avatar {
        grid-column: 1 / -1;
    }

    .intro-avatar {
        max-width: 520px;
        justify-self: center;
    }

    .review-summary .outline-button {
        margin-left: 0;
    }
}

@media (max-width: 760px) {
    .site-header {
        grid-template-columns: auto 1fr auto;
        gap: 12px;
    }

    .brand {
        order: 1;
    }

    .header-social {
        order: 2;
        justify-self: end;
    }

    .menu-toggle {
        order: 3;
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        min-width: 44px;
        border: 1px solid var(--line);
        border-radius: 6px;
        background: var(--white);
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        width: 20px;
        height: 2px;
        margin: 3px 0;
        border-radius: 99px;
        background: var(--blue);
        transition: transform 160ms ease, opacity 160ms ease;
    }

    .menu-toggle:hover,
    .menu-toggle:focus-visible,
    .menu-toggle.is-open {
        border-color: var(--blue);
        box-shadow: 0 10px 22px rgba(5, 63, 158, 0.14);
        outline: 0;
    }

    .menu-toggle.is-open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav {
        order: 4;
        grid-column: 1 / -1;
        display: none;
        gap: 0;
        overflow: hidden;
        padding: 8px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .nav.is-open {
        display: grid;
    }

    .nav a {
        min-height: 46px;
        padding: 10px 12px;
        border-radius: 6px;
    }

    .nav a::after {
        display: none;
    }

    .nav a:hover,
    .nav a:focus-visible {
        color: var(--blue);
        background: var(--blue-soft);
    }

    .hero img {
        min-height: 0;
        height: auto;
        object-fit: contain;
        object-position: center;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 17px;
    }

    .site-header {
        gap: 14px;
        min-height: auto;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .brand img {
        width: 122px;
    }

    .header-social {
        gap: 8px;
    }

    .header-social .icon-button {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }

    .contact-actions .primary-button {
        width: 100%;
    }

    .benefit-grid,
    .optional-grid,
    .service-stats {
        grid-template-columns: 1fr;
    }

    .app-promo {
        grid-template-columns: 1fr;
        gap: 14px;
        min-height: 0;
        padding-bottom: 0;
    }

    .app-promo-copy {
        max-width: none;
    }

    .app-store-actions {
        display: grid;
    }

    .store-button {
        width: 100%;
    }

    .app-qr-codes {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .app-qr-code {
        display: grid;
        min-width: 0;
        justify-items: center;
        text-align: center;
    }

    .app-qr-code img {
        width: 96px;
        height: 96px;
    }

    .app-promo-visual {
        width: 100%;
        height: 500px;
    }

    .app-promo-visual img {
        right: 50%;
        bottom: -125px;
        width: min(94%, 410px);
        transform: translateX(50%);
    }

    .service-stats-heading {
        display: block;
    }

    .service-stats-heading p {
        margin-top: 10px;
        text-align: left;
    }

    .service-stat {
        min-height: 150px;
    }

    .review-summary {
        align-items: flex-start;
    }

    .post-media {
        min-height: 220px;
    }

    .intro-grid p,
    .support-list p,
    .contact-copy p,
    .faq p {
        font-size: 20px;
    }
}

@media (max-width: 380px) {
    .brand img {
        width: 104px;
    }

    .header-social .icon-button:not(:first-child) {
        display: none;
    }
}
