:root {
    --primary: #0F2747;
    --accent: #C7A86B;
    --bg: #F6F8FB;
    --white: #FFFFFF;
    --text: #1C2430;
    --muted: #667085;
    --border: #E5EAF1;
    --shadow: 0 12px 30px rgba(15, 39, 71, 0.08);
    --radius: 24px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 150px;
}

body {
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
    min-width: 0;
}

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(229, 234, 241, 0.8);
}

.header__inner {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.logo img {
    display: block;
    width: auto;
    height: 44px;
}

.logo--footer {
    margin-bottom: 16px;
}

.logo--footer img {
    height: 44px;
    filter: brightness(0) invert(1) opacity(0.95);
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header__nav a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
    color: var(--primary);
    font-weight: 700;
    font-size: 16px;
    transition: background 0.2s ease, color 0.2s ease;
    text-decoration: none;
}

.header__nav a:hover {
    background: rgba(15, 39, 71, 0.08);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.header__burger {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(15, 39, 71, 0.12);
    border-radius: 16px;
    background: var(--white);
    color: var(--primary);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.header__burger:hover {
    border-color: var(--primary);
    background: rgba(15, 39, 71, 0.04);
}

.header__burger span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.header__mobile-menu {
    display: none;
}

/* Disclaimer */
.disclaimer {
    background: linear-gradient(135deg, rgba(15, 39, 71, 0.08) 0%, rgba(199, 168, 107, 0.12) 100%);
    border-bottom: 1px solid var(--border);
    border-top: 1px solid var(--border);
    padding: 1.2rem 0;
    position: sticky;
    top: 88px;
    z-index: 99;
    backdrop-filter: blur(8px);
}

.disclaimer-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.disclaimer-content p {
    font-size: 0.95rem;
    color: var(--primary);
    margin: 0;
    font-weight: 500;
    max-width: 100%;
    line-height: 1.5;
}

.disclaimer-content strong {
    color: var(--primary);
    font-weight: 700;
}

/* Container */
.container {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
}

.section-container {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
}

/* Screens */
.screen {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.screen.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Welcome Screen */
#screen-welcome {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.welcome-content {
    text-align: center;
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at top right, rgba(199,168,107,0.16), transparent 28%),
        radial-gradient(circle at left center, rgba(15,39,71,0.06), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.welcome-content__inner {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
}

.welcome-content h1 {
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.05;
    font-weight: 800;
    max-width: none;
    margin: 0 auto 20px;
    color: var(--primary);
    text-wrap: balance;
    overflow-wrap: anywhere;
}

.welcome-content .subtitle {
    font-size: 18px;
    color: var(--muted);
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    max-width: 42ch;
    text-wrap: pretty;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 26px;
    border-radius: 999px;
    font-weight: 700;
    transition: 0.25s ease;
    border: 1px solid transparent;
    cursor: pointer;
    text-transform: none;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #0a1a2e;
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: rgba(15, 39, 71, 0.08);
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    width: 100%;
    display: block;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    width: 100%;
    margin-top: 1rem;
}

.btn-full {
    width: 100%;
}

/* Quiz Container */
.quiz-modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
    overflow-y: auto;
}

.quiz-modal.active {
    display: flex;
}

.quiz-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 31, 57, 0.56);
    backdrop-filter: blur(12px);
}

.quiz-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(700px, 100%);
    max-height: 100%;
}

.quiz-modal__pane {
    display: none;
}

.quiz-modal__pane--active {
    display: block;
}

.quiz-modal__close {
    position: absolute;
    top: 24px;
    right: 16px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(15, 39, 71, 0.08);
    color: var(--primary);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.quiz-modal__close:hover {
    background: rgba(15, 39, 71, 0.14);
    transform: rotate(90deg);
}

.quiz-container {
    background: var(--white);
    border-radius: var(--radius);
    padding: 4.5rem 2.5rem 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(229, 234, 241, 0.8);
    max-width: 700px;
    margin: 0 auto;
    min-height: auto;
    max-height: min(86vh, 920px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background-color: var(--border);
    border-radius: 2px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    width: 0%;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.quiz-content h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--primary);
    overflow-wrap: anywhere;
}

/* Questions */
.question {
    animation: slideIn 0.3s ease-in;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.option-label {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    min-height: 56px;
}

.option-label:hover {
    border-color: var(--primary);
    background-color: rgba(15, 39, 71, 0.04);
}

.option-label input[type="radio"] {
    margin-right: 0.75rem;
    cursor: pointer;
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.option-label input[type="radio"]:checked + span {
    font-weight: 700;
    color: var(--primary);
}

.option-label span {
    font-size: 1rem;
    color: var(--text);
}

/* Text Input */
.text-input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    font-size: 1rem;
    transition: border-color 0.2s ease, background 0.2s ease;
    background: var(--white);
    color: var(--text);
}

.text-input:focus {
    outline: none;
    border-color: var(--primary);
    background-color: rgba(15, 39, 71, 0.04);
}

/* Date Inputs */
.date-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.date-field {
    display: flex;
    flex-direction: column;
}

.date-field label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.date-input {
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    font-size: 1rem;
    transition: border-color 0.2s ease, background 0.2s ease;
    background: var(--white);
    color: var(--text);
}

.date-input:focus {
    outline: none;
    border-color: var(--primary);
    background-color: rgba(15, 39, 71, 0.04);
}

/* Quiz Buttons */
.quiz-buttons {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 2rem;
}

#btn-prev {
    flex: 0 0 auto;
    padding: 0.75rem 1.5rem;
}

#btn-next {
    flex: 1;
}

/* Form Container */
.form-container {
    background: var(--white);
    border-radius: 12px;
    padding: 3.5rem 2.5rem 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(229, 234, 241, 0.8);
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    max-height: min(86vh, 920px);
    overflow-y: auto;
}

.form-container h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-align: center;
    color: var(--primary);
    overflow-wrap: anywhere;
}

.form-subtitle {
    text-align: center;
    color: var(--muted);
    margin-bottom: 2rem;
    font-size: 18px;
}

/* Form Groups */
#lead-form {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text);
}

.form-group input {
    width: 100%;
    min-height: 56px;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    font-size: 1rem;
    transition: border-color 0.2s ease, background 0.2s ease;
    background: var(--white);
    color: var(--text);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    background-color: rgba(15, 39, 71, 0.04);
}

.optional {
    color: var(--muted);
    font-weight: 400;
}

/* Bonus Box */
.bonus-box {
    background: linear-gradient(135deg, rgba(199,168,107,0.12) 0%, rgba(199,168,107,0.06) 100%);
    border-left: 4px solid var(--accent);
    padding: 18px;
    border-radius: 14px;
    margin-bottom: 2rem;
}

.bonus-box p {
    margin: 0;
    color: var(--primary);
    font-weight: 600;
}

/* Results Container */
.results-container {
    background: var(--white);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    max-height: min(86vh, 920px);
    overflow-y: auto;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, #1a3a5e 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow);
}

.results-container h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary);
    overflow-wrap: anywhere;
}

.results-container p {
    color: var(--muted);
    margin-bottom: 0.5rem;
}

.info-text {
    font-size: 18px;
    margin-bottom: 2rem;
}

/* Services Section */
.section {
    padding: 100px 0;
}

.section-head {
    max-width: 700px;
    margin-bottom: 48px;
}

.section-label {
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
    margin-bottom: 14px;
    display: block;
}

.section h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--primary);
}

.section > .section-container > .section-head > p:last-child {
    color: var(--muted);
    font-size: 18px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 28px;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 39, 71, 0.12);
}

.card h3 {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}

.card p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 28px;
    text-align: center;
}

.step-number {
    width: 52px;
    height: 52px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
}

.step h3 {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}

.step p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    background: var(--bg);
    padding: 100px 0;
}

.pricing .section-head {
    max-width: 700px;
    margin-bottom: 48px;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 24px;
    max-width: 980px;
    margin: 0 auto;
}

.price-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 28px;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 39, 71, 0.15);
}

.price-card h3 {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--primary);
}

.price-card .price {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 14px;
    line-height: 1;
}

.price-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
    flex-grow: 1;
}

.price-note {
    text-align: center;
    color: var(--muted);
    font-size: 14px;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

/* Contacts Section */
.contacts {
    background: var(--white);
    padding: 100px 0;
}

.contacts .section-head {
    max-width: 700px;
    margin-bottom: 48px;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 4rem;
}

.contact-card {
    background: linear-gradient(135deg, rgba(199,168,107,0.04) 0%, transparent 100%);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(199,168,107,0.12) 0%, rgba(199,168,107,0.04) 100%);
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(199,168,107,0.18) 0%, rgba(199,168,107,0.08) 100%);
    color: var(--accent);
    box-shadow: inset 0 0 0 1px rgba(199,168,107,0.18);
    text-decoration: none;
    transition: background 0.2s ease;
}

.contact-icon:hover {
    background: linear-gradient(135deg, rgba(199,168,107,0.3) 0%, rgba(199,168,107,0.16) 100%);
}

.contact-icon i {
    font-size: 30px;
    line-height: 1;
}

.contact-icon svg {
    width: 30px;
    height: 30px;
    display: block;
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.contact-card p {
    color: var(--muted);
    font-size: 16px;
    margin: 0;
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s ease;
}

.contact-card a.contact-icon,
.contact-card a.contact-icon:hover {
    color: var(--accent);
}

.contact-card a:hover {
    color: var(--accent);
}

.contact-schedule {
    font-size: 13px !important;
    color: var(--muted) !important;
    margin-top: 8px !important;
}

.contact-details {
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 36px;
}

.contact-details h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 24px;
    text-align: center;
}

.details-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.detail-card {
    padding: 24px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: var(--white);
}

.detail-row + .detail-row {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(229, 234, 241, 0.9);
}

.detail-label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.detail-row p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Final CTA */
.final-cta {
    padding: 90px 0;
    background: linear-gradient(135deg, #0F2747 0%, #173C6A 100%);
    color: var(--white);
}

.final-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.final-cta h2,
.final-cta p {
    color: var(--white);
}

.final-cta h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 14px;
}

/* Footer */
.footer {
    padding: 50px 0 100px;
    background: #0c1f39;
    color: var(--white);
}

.footer__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 36px;
}

.footer__inner > div:last-child {
    justify-self: end;
}

.footer__inner > div p {
    color: rgba(255,255,255,0.85);
}

.footer__inner > div p:first-child {
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 12px;
}

.footer__text {
    color: rgba(255,255,255,0.72);
    max-width: 360px;
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.6;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 12px;
}

.footer__links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 600;
}

.footer__links a:hover {
    color: var(--accent);
}

.footer__bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.footer__bottom p {
    color: rgba(255,255,255,0.72);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.footer__bottom p + p {
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 900px) {
    .header__nav {
        display: none;
    }

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

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

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

    .details-list {
        grid-template-columns: 1fr;
    }

    .footer__inner {
        grid-template-columns: 1fr;
    }

    .footer__inner > div:last-child {
        justify-self: start;
    }

    .final-cta__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .final-cta__inner .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 104px;
    }

    .disclaimer {
        top: 76px;
    }

    .header__inner,
    .container,
    .section-container,
    .welcome-content__inner {
        width: min(1280px, calc(100% - 24px));
    }

    .header__inner {
        min-height: 76px;
        gap: 12px;
    }

    .header {
        position: sticky;
        overflow: visible;
    }

    .header__nav,
    .header__actions {
        display: none;
    }

    .header__burger {
        display: inline-flex;
        flex-shrink: 0;
    }

    .header--menu-open {
        box-shadow: 0 16px 36px rgba(15, 39, 71, 0.08);
    }

    .header--menu-open .header__burger span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

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

    .header--menu-open .header__burger span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .header__mobile-menu {
        display: grid;
        position: absolute;
        top: calc(100% + 8px);
        left: 50%;
        width: min(1280px, calc(100% - 24px));
        margin: 0;
        padding: 16px;
        border: 1px solid rgba(229, 234, 241, 0.9);
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow);
        grid-template-rows: 0fr;
        opacity: 0;
        pointer-events: none;
        visibility: hidden;
        transform: translate(-50%, -14px);
        z-index: 120;
        transition: grid-template-rows 0.28s ease, opacity 0.22s ease, transform 0.28s ease, visibility 0s linear 0.28s;
    }

    .header__mobile-menu > * {
        overflow: hidden;
    }

    .header--menu-open .header__mobile-menu {
        grid-template-rows: 1fr;
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, 0);
        pointer-events: auto;
        transition-delay: 0s;
    }

    .header__mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .header__mobile-nav a {
        display: flex;
        align-items: center;
        min-height: 48px;
        padding: 0 14px;
        border-radius: 16px;
        color: var(--primary);
        font-weight: 700;
        background: rgba(15, 39, 71, 0.03);
    }

    .header__mobile-actions {
        display: grid;
        gap: 10px;
        margin-top: 14px;
    }

    .header__mobile-actions .btn {
        width: 100%;
    }

    .disclaimer-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
    }

    .disclaimer-content p {
        font-size: 0.9rem;
    }

    .welcome-content h1 {
        font-size: clamp(1.9rem, 6vw, 2.4rem);
    }

    .welcome-content .subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .quiz-modal {
        align-items: center;
        padding: 12px;
    }

    .quiz-modal__dialog {
        width: 100%;
        max-height: calc(100dvh - 24px);
    }

    .quiz-modal__close {
        top: 12px;
        right: 12px;
    }

    .quiz-container {
        padding: 1.5rem;
        padding-top: 4.25rem;
        max-height: 84vh;
    }

    .form-container,
    .results-container {
        padding: 1.5rem;
        padding-top: 3.5rem;
        max-height: 84vh;
    }

    .date-inputs {
        grid-template-columns: 1fr;
    }

    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .table-header {
        display: none;
    }

    .table-row {
        padding: 1rem;
        border: 1px solid var(--border);
        margin-bottom: 1rem;
        position: relative;
    }

    .col {
        display: flex;
        justify-content: space-between;
        padding: 0.25rem 0;
        color: var(--text);
    }

    .col:first-child::before,
    .col:nth-child(2)::before,
    .col:nth-child(3)::before {
        content: attr(data-label);
        font-weight: 700;
    }

    .quiz-buttons {
        flex-direction: column-reverse;
    }

    #btn-prev {
        flex: 1;
    }

    #btn-next {
        flex: 1;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .price-grid {
        grid-template-columns: 1fr;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .contact-details {
        padding: 24px;
    }

    .details-list {
        gap: 14px;
    }

    .detail-card {
        padding: 18px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .final-cta__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .final-cta__inner .btn {
        width: 100%;
    }

    .section {
        padding: 60px 0;
    }

    .section h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .footer__inner {
        grid-template-columns: 1fr;
    }

    .logo {
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    html {
        scroll-padding-top: 132px;
    }

    .disclaimer {
        top: 80px;
    }

    .header__inner,
    .container,
    .section-container,
    .welcome-content__inner {
        width: min(1280px, calc(100% - 20px));
    }

    .disclaimer-content {
        gap: 8px;
    }

    .disclaimer-content p {
        font-size: 0.85rem;
    }

    .welcome-content {
        padding: 2rem 0;
    }

    .welcome-content h1 {
        font-size: 1.7rem;
    }

    .quiz-container {
        padding: 1rem;
        padding-top: 4rem;
    }

    .form-container,
    .results-container {
        padding: 1rem;
        padding-top: 3.25rem;
    }

    .quiz-content h2 {
        font-size: 1.35rem;
    }

    .form-subtitle,
    .info-text,
    .section > .section-container > .section-head > p:last-child {
        font-size: 1rem;
    }

    .section {
        padding: 40px 0;
    }

    .card {
        padding: 20px;
    }

    .card h3 {
        font-size: 18px;
    }

    .card p {
        font-size: 14px;
    }

    .final-cta {
        padding: 60px 0;
    }

    .final-cta h2 {
        font-size: 1.5rem;
    }

    .footer {
        padding: 30px 0 60px;
    }

    .header__inner {
        min-height: 80px;
    }

    .header__mobile-menu {
        width: min(1280px, calc(100% - 20px));
        padding: 14px;
        border-radius: 20px;
    }

    .logo {
        max-width: 150px;
    }

    .logo img {
        height: auto;
        width: 100%;
    }

    .logo--footer img {
        width: auto;
        height: 38px;
    }
}

@media (max-width: 375px) {
    .btn {
        width: 100%;
        min-height: 52px;
        padding: 0 18px;
    }

    .welcome-content h1 {
        font-size: 1.55rem;
    }

    .welcome-content .subtitle {
        font-size: 0.95rem;
    }

    .quiz-modal {
        padding: 8px;
    }

    .quiz-modal__dialog {
        max-height: calc(100dvh - 16px);
    }

    .quiz-container,
    .form-container,
    .results-container {
        border-radius: 20px;
        padding: 0.9rem;
        padding-top: 3.25rem;
        max-height: 82vh;
    }

    .quiz-content h2,
    .form-container h2,
    .results-container h2,
    .final-cta h2,
    .section h2 {
        font-size: 1.25rem;
    }

    .progress-text,
    .section-label {
        letter-spacing: 0.04em;
    }

    .option-label,
    .contact-card,
    .card,
    .price-card,
    .step,
    .contact-details {
        padding: 16px;
    }

    .option-label span,
    .contact-card p,
    .card p,
    .price-card p,
    .step p,
    .detail-row p,
    .footer__text,
    .footer__bottom p {
        font-size: 0.95rem;
    }

    .text-input,
    .date-input,
    .form-group input {
        padding: 12px 14px;
    }

    .contact-icon {
        width: 64px;
        height: 64px;
    }

    .footer {
        padding: 30px 0 48px;
    }
}
