:root {
    --bg-page: #efefef;
    --bg-dark: #303030;
    --bg-dark-2: #3a3a3a;
    --bg-light: #f1f1f1;
    --bg-card: #ffffff;
    --text-main: #3f4b5a;
    --text-body: #4d5663;
    --text-muted: #6c7787;
    --text-white: #ffffff;
    --line: #d9d9d9;
    --line-soft: rgba(255, 255, 255, 0.1);
    --accent: #f4ae3d;
    --accent-hover: #e79b21;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-dark: 0 18px 40px rgba(0, 0, 0, 0.25);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --container: 1240px;
    --header-height: 78px;
    --transition: 0.25s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg-page);
    color: var(--text-main);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(100% - 32px, var(--container));
    margin: 0 auto;
}

.section {
    padding: 84px 0;
}

.section--light {
    background: #ececec;
}

.section--white {
    background: #f6f6f6;
}

.section--dark {
    background: var(--bg-dark);
    color: var(--text-white);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 120;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    color: #142132;
}

.site-logo__mark {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(244, 174, 61, 0.18);
    flex: 0 0 12px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-nav a {
    font-size: 15px;
    font-weight: 700;
    color: #495567;
    transition: color var(--transition);
}

.site-nav a:hover {
    color: #111;
}

.burger {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1px solid #ddd;
    background: #fff;
    padding: 0;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: #222;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 14px 30px;
    border: 0;
    border-radius: 18px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 800;
    transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 12px 26px rgba(244, 174, 61, 0.26);
}

.btn-accent:hover {
    background: var(--accent-hover);
}

.btn-full {
    width: 100%;
}

/* Hero */
.section-title {
    margin: 0 0 18px;
    font-size: clamp(34px, 4.5vw, 64px);
    line-height: 1.06;
    letter-spacing: -0.03em;
    font-weight: 800;
}

.section-title--dark {
    color: #434f5d;
}

.section-subtitle {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    color: inherit;
    opacity: 0.95;
}

.hero {
    position: relative;
    background:
        linear-gradient(rgba(44, 44, 44, 0.94), rgba(44, 44, 44, 0.94)),
        url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?q=80&w=1800&auto=format&fit=crop") center center / cover no-repeat;
    overflow: hidden;
    color: #fff;
    padding: 90px 0 110px;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(244, 174, 61, 0.08), transparent 38%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    margin: 0 auto 20px;
    max-width: 1160px;
    font-size: clamp(38px, 5vw, 72px);
    line-height: 1.08;
    letter-spacing: -0.035em;
    font-weight: 800;
    color: #fff;
}

.hero-subtitle {
    margin: 0 auto 34px;
    max-width: 920px;
    font-size: clamp(20px, 2.2vw, 28px);
    line-height: 1.45;
    color: #f4ae3d;
}

.hero-subtitle .hero-link {
    text-decoration: underline;
    font-weight: 800;
}

.hero-feature-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 900px;
    margin: 0 auto 38px;
}

.hero-feature-card {
    background: #f7f7f7;
    border-radius: 16px;
    padding: 18px 16px 16px;
    box-shadow: var(--shadow-dark);
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #444;
    text-align: center;
    position: relative;
}

.hero-feature-card::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    background: #efe5d2;
    border: 1px solid #ddd3c0;
}

.hero-feature-card__icon {
    width: 54px;
    height: 54px;
    object-fit: contain;
    margin-bottom: 12px;
}

.hero-feature-card__title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    color: #555;
}

.hero-cta-wrap {
    display: flex;
    justify-content: center;
}

.hero-cta {
    min-width: 320px;
    font-size: 18px;
    border-radius: 18px;
}

/* Testimonial */
.testimonial-band {
    position: relative;
    background-color: #343434;
    background-image: url('../images/landing-11.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    min-height: 700px;
    width: 100%;
}

.testimonial-media {
    position: relative;
    min-height: 700px;
    overflow: hidden;
}

.testimonial-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 700px;
}

.face-frame {
    position: absolute;
    top: 130px;
    left: 180px;
    width: 330px;
    height: 330px;
    border: 10px solid transparent;
}

.face-frame::before,
.face-frame::after,
.face-frame span::before,
.face-frame span::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    border-color: var(--accent);
    border-style: solid;
}

.face-frame::before {
    top: -10px;
    left: -10px;
    border-width: 10px 0 0 10px;
}

.face-frame::after {
    top: -10px;
    right: -10px;
    border-width: 10px 10px 0 0;
}

.face-frame span::before {
    bottom: -10px;
    left: -10px;
    border-width: 0 0 10px 10px;
}

.face-frame span::after {
    bottom: -10px;
    right: -10px;
    border-width: 0 10px 10px 0;
}

.feedback-pill {
    position: absolute;
    left: 36px;
    top: 208px;
    background: #2f2f2f;
    border: 4px solid var(--accent);
    color: #fff;
    border-radius: 999px;
    padding: 16px 28px;
    font-size: 18px;
    font-weight: 700;
    box-shadow: var(--shadow-dark);
}

.testimonial-copy {
    padding: 60px 70px;
    color: #fff;
}

.testimonial-quote-mark {
    display: block;
    font-size: 110px;
    line-height: 0.8;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.testimonial-text {
    margin: 0;
    font-size: clamp(34px, 3.8vw, 70px);
    line-height: 1.04;
    letter-spacing: -0.03em;
    max-width: 560px;
}

/* Content */
.content-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 56px;
    align-items: center;
}

.content-grid--reverse {
    grid-template-columns: 1.05fr 0.95fr;
}

.section-copy h2 {
    margin: 0 0 22px;
    font-size: clamp(34px, 4vw, 64px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    font-weight: 800;
    color: #434f5d;
}

.section-copy p {
    margin: 0 0 18px;
    font-size: 18px;
    line-height: 1.45;
    color: #2f3b4a;
}

.bullet-list {
    margin: 0 0 28px;
    padding-left: 24px;
}

.bullet-list li {
    margin-bottom: 10px;
    font-size: 18px;
    color: #2f3b4a;
}

.bullet-list strong {
    font-weight: 800;
}

/* Trustpilot */
.trust-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.trustpilot-word {
    font-size: 26px;
    font-weight: 800;
    color: #1d1d1d;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.trustpilot-star {
    color: #00b67a;
    font-size: 34px;
    line-height: 1;
}

.trustpilot-boxes {
    display: inline-flex;
    gap: 4px;
}

.trustpilot-boxes span {
    width: 24px;
    height: 24px;
    background: #00b67a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    border-radius: 3px;
    font-weight: 800;
}

/* Media */
.media-box {
    position: relative;
}

.media-box img {
    width: 100%;
    height: auto;
    display: block;
}

/* Video */
.video-card {
    margin-top: 26px;
    background: #1f1f1f;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    max-width: 560px;
}

.video-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    color: #fff;
    font-weight: 700;
    background: #1f1f1f;
}

.video-card__body {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #111;
    overflow: hidden;
}

.video-card__media {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: #000;
}

.video-card__media::-webkit-media-controls-panel {
    font-size: 14px;
}

.video-card__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.10));
    border: 0;
    cursor: pointer;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.video-card__play span {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    border: 4px solid rgba(255, 255, 255, 0.9);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    padding-left: 6px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.video-card__play:hover span {
    transform: scale(1.06);
    background: rgba(255, 255, 255, 0.22);
}

.video-card__play.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Results */
.results-section {
    text-align: center;
}

.results-section h2 {
    margin: 0 0 42px;
    font-size: clamp(38px, 4vw, 60px);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #434f5d;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 44px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto 32px;
}

.result-card {
    text-align: center;
    padding: 0 20px;
}

.result-card__icon-wrap {
    width: 220px;
    height: 220px;
    margin: 0 auto 24px;
    border: 4px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.result-card__icon {
    width: 96px;
    height: 96px;
    object-fit: contain;
}

.result-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 800;
    color: #465261;
}

.result-card p {
    margin: 0;
    font-size: 18px;
    line-height: 1.45;
    color: #5d6877;
}

.results-cta {
    margin-top: 18px;
}

.laptop-section .media-box img,
.app-section .media-box img {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
}

.site-footer {
    background: #111824;
    color: #d3deeb;
    margin-top: 0;
}

.footer-main {
    padding: 42px 0 28px;
}

.footer-brand-block {
    margin-bottom: 26px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 14px;
}

.footer-logo__mark {
    width: 38px;
    height: 38px;
    object-fit: contain;
    display: block;
    flex: 0 0 38px;
}

.footer-company-line {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #b8c6d6;
}

.footer-company-line strong {
    color: #ffffff;
    font-weight: 700;
}

.footer-company-line a {
    color: #f4ae3d;
    text-decoration: none;
}

.footer-disclosure {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-disclosure:first-of-type {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-disclosure h4 {
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff;
}

.footer-disclosure p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #b8c6d6;
    max-width: 1100px;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-legal-links a {
    position: relative;
    color: #f4ae3d;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-legal-links a:hover {
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom__wrap {
    padding: 18px 0;
    color: #97a8bb;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-main {
        padding: 32px 0 22px;
    }

    .footer-logo {
        font-size: 19px;
    }

    .footer-logo__mark {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
    }

    .footer-company-line,
    .footer-disclosure p,
    .footer-legal-links a,
    .footer-bottom__wrap {
        font-size: 13px;
    }

    .footer-disclosure {
        padding: 16px 0;
    }

    .footer-legal-links {
        gap: 10px 16px;
        flex-direction: column;
        align-items: flex-start;
    }
}
/* Quiz modal */
.quiz-modal {
    position: fixed;
    inset: 0;
    z-index: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.quiz-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.quiz-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 18, 28, 0.58);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.quiz-modal__dialog.quiz-flow {
    position: relative;
    width: min(100%, 760px);
    min-height: auto;
    max-height: min(92vh, 860px);
    background: #efefef;
    border-radius: 12px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
    overflow: hidden;
    z-index: 1;
    transform: translateY(16px) scale(0.98);
    transition: transform 0.25s ease;
}

.quiz-modal.is-open .quiz-modal__dialog {
    transform: translateY(0) scale(1);
}

.quiz-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid #dddddd;
    background: #ffffff;
    color: #111;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 5;
}

.quiz-flow__inner {
    position: relative;
    max-height: min(92vh, 860px);
    overflow-y: auto;
}

.quiz-screen {
    display: none;
    padding: 34px 28px 24px;
}

.quiz-screen.is-active {
    display: block;
}

.quiz-step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 17px;
    height: 18px;
    padding: 0 5px;
    border-radius: 4px;
    background: #333;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 12px;
}

.quiz-screen__title {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.28;
    font-weight: 500;
    color: #444;
    max-width: 640px;
}

.quiz-screen__subtitle {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.45;
    color: #6d6d6d;
    max-width: 560px;
}

.quiz-screen__subtitle--wide {
    max-width: 620px;
}

.quiz-card-grid {
    display: grid;
    gap: 10px;
}

.quiz-card-grid--vehicles {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 100%;
}

.quiz-select-card {
    min-height: 160px;
    padding: 12px;
    border: 1px solid #dddddd;
    border-radius: 10px;
    background: #ececec;
    cursor: pointer;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.quiz-select-card--small {
    grid-column: auto;
    min-height: 120px;
}

.quiz-select-card:hover,
.quiz-select-card.is-selected {
    border-color: #f4ae3d;
    background: #ffffff;
    box-shadow: 0 10px 22px rgba(244, 174, 61, 0.12);
    transform: translateY(-1px);
}

.quiz-select-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    font-size: 40px;
    color: #444;
}

.quiz-select-card__footer {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: #444;
    line-height: 1.25;
}

.quiz-select-card__key {
    min-width: 24px;
    height: 24px;
    border: 1px solid #bfbfbf;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #444;
    background: #f1f1f1;
}

.quiz-option-list {
    display: grid;
    gap: 8px;
    max-width: 300px;
}

.quiz-option-row {
    min-height: 42px;
    padding: 8px 12px;
    border: 1px solid #d8d8d8;
    border-radius: 10px;
    background: #ececec;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    font-size: 16px;
    color: #555;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.quiz-option-row:hover,
.quiz-option-row.is-selected {
    border-color: #f4ae3d;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(244, 174, 61, 0.12);
}

.quiz-option-row__key {
    min-width: 24px;
    height: 24px;
    border: 1px solid #bfbfbf;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #444;
    background: #f1f1f1;
}

.quiz-input-wrap,
.quiz-phone-wrap {
    max-width: 100%;
    margin-top: 18px;
    border-bottom: 1px solid #bfbfbf;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quiz-text-input {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: #444;
    font-size: 20px;
    line-height: 1.35;
    padding: 10px 0 8px;
}

.quiz-text-input::placeholder {
    color: #a8a8a8;
}

.quiz-phone-wrap__flag {
    font-size: 28px;
    line-height: 1;
    flex: 0 0 auto;
}

.quiz-phone-wrap__code {
    color: #999;
    font-size: 16px;
    flex: 0 0 auto;
}

.quiz-text-input--phone {
    font-size: 20px;
}

.quiz-consent-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
    max-width: 560px;
}

.quiz-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.45;
    color: #555;
}

.quiz-checkbox input {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: #f4ae3d;
}

.quiz-screen__actions {
    margin-top: 22px;
}

.quiz-screen__actions .btn {
    min-width: 68px;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 15px;
}

.quiz-screen--loader {
    min-height: 420px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.quiz-screen--loader.is-active {
    display: flex;
}

.quiz-loader {
    max-width: 420px;
    margin: 0 auto;
}

.quiz-loader__spinner {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    border-radius: 50%;
    border: 5px solid rgba(244, 174, 61, 0.22);
    border-top-color: #f4ae3d;
    animation: quizSpin 1s linear infinite;
}

.quiz-loader h3 {
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.2;
    color: #333;
}

.quiz-loader p {
    margin: 0;
    font-size: 16px;
    color: #666;
}

@keyframes quizSpin {
    to {
        transform: rotate(360deg);
    }
}

body.modal-open {
    overflow: hidden;
}

/* Responsive */
@media (max-width: 1180px) {
    .hero-feature-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid,
    .content-grid,
    .content-grid--reverse,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-band {
        min-height: auto;
    }

    .testimonial-media,
    .testimonial-media img {
        min-height: 520px;
    }

    .testimonial-copy {
        padding: 42px 24px 56px;
    }

    .testimonial-text {
        max-width: none;
    }

    .face-frame {
        top: 90px;
        left: 120px;
        width: 260px;
        height: 260px;
    }

    .feedback-pill {
        left: 24px;
        top: 170px;
    }
}

@media (max-width: 860px) {
    :root {
        --header-height: 72px;
    }

    .burger {
        display: inline-block;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 16px;
        right: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #fff;
        border: 1px solid #e6e6e6;
        border-radius: 18px;
        box-shadow: var(--shadow-soft);
        overflow: hidden;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 15px 18px;
        border-bottom: 1px solid #efefef;
    }

    .site-nav a:last-child {
        border-bottom: 0;
    }

    .hero {
        padding: 64px 0 82px;
    }

    .hero-feature-cards {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .hero-cta {
        min-width: 0;
        width: 100%;
        max-width: 360px;
    }

    .testimonial-media,
    .testimonial-media img {
        min-height: 380px;
    }

    .face-frame {
        top: 90px;
        left: 80px;
        width: 200px;
        height: 200px;
    }

    .face-frame::before,
    .face-frame::after,
    .face-frame span::before,
    .face-frame span::after {
        width: 58px;
        height: 58px;
        border-width: 8px;
    }

    .feedback-pill {
        top: 34px;
        left: 18px;
        font-size: 14px;
        padding: 12px 18px;
        border-width: 3px;
    }

    .section {
        padding: 60px 0;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .result-card__icon-wrap {
        width: 180px;
        height: 180px;
    }

    .quiz-modal {
        padding: 8px;
        align-items: flex-start;
    }

    .quiz-modal__dialog.quiz-flow {
        width: 100%;
        max-height: 96vh;
        border-radius: 10px;
    }

    .quiz-flow__inner {
        max-height: 96vh;
        overflow-y: auto;
    }

    .quiz-screen {
        padding: 46px 16px 18px;
    }

    .quiz-screen__title {
        font-size: 18px;
        line-height: 1.3;
        max-width: none;
    }

    .quiz-screen__subtitle {
        font-size: 13px;
        margin-bottom: 16px;
        max-width: none;
    }

    .quiz-card-grid--vehicles {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .quiz-select-card,
    .quiz-select-card--small {
        min-height: 118px;
        padding: 10px;
    }

    .quiz-select-card__icon {
        min-height: 48px;
        font-size: 28px;
    }

    .quiz-select-card__footer {
        font-size: 13px;
        gap: 6px;
    }

    .quiz-select-card__key,
    .quiz-option-row__key {
        min-width: 22px;
        height: 22px;
        font-size: 12px;
    }

    .quiz-option-list {
        max-width: none;
    }

    .quiz-option-row {
        min-height: 40px;
        padding: 8px 10px;
        font-size: 15px;
    }

    .quiz-input-wrap,
    .quiz-phone-wrap {
        margin-top: 14px;
        gap: 8px;
        max-width: none;
    }

    .quiz-text-input,
    .quiz-text-input--phone {
        font-size: 18px;
        padding: 8px 0;
    }

    .quiz-phone-wrap__flag {
        font-size: 22px;
    }

    .quiz-phone-wrap__code {
        font-size: 13px;
    }

    .quiz-consent-list {
        max-width: none;
        gap: 10px;
        margin-top: 18px;
    }

    .quiz-checkbox {
        font-size: 13px;
        gap: 10px;
    }

    .quiz-screen__actions {
        margin-top: 18px;
    }

    .quiz-screen__actions .btn {
        width: 100%;
        min-height: 42px;
        font-size: 15px;
    }

    .quiz-modal__close {
        top: 8px;
        right: 8px;
        width: 38px;
        height: 38px;
        font-size: 22px;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-feature-cards {
        grid-template-columns: 1fr;
    }

    .hero-feature-card {
        min-height: 126px;
    }

    .testimonial-copy {
        padding: 30px 18px 44px;
    }

    .testimonial-text {
        font-size: 42px;
    }

    .face-frame {
        top: 76px;
        left: 50%;
        transform: translateX(-50%);
        width: 180px;
        height: 180px;
    }

    .feedback-pill {
        left: 12px;
        right: 12px;
        width: max-content;
        max-width: calc(100% - 24px);
        font-size: 13px;
    }

    .trustpilot-word {
        font-size: 22px;
    }

    .trustpilot-boxes span {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .quiz-card-grid--vehicles {
        grid-template-columns: 1fr;
    }

    .quiz-select-card,
    .quiz-select-card--small {
        min-height: 104px;
    }

    .quiz-screen {
        padding: 44px 14px 16px;
    }

    .quiz-screen__title {
        font-size: 17px;
    }

    .quiz-text-input,
    .quiz-text-input--phone {
        font-size: 17px;
    }
}
.site-logo__mark,
.footer-logo__mark {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
    flex: 0 0 42px;
}