﻿:root {
    --gold: #d4b05c;
    --gold-bright: #f0d78a;
    --gold-deep: #b8923e;
    --gold-btn: linear-gradient(180deg, #ead07a 0%, #c9a44c 100%);
    --navy: #0b1c42;
    --navy-deep: #071530;
    --navy-mid: #12305f;
    --navy-soft: #1a3a72;
    --white: #ffffff;
    --text: #0d1b3e;
    --header-h: 86px;
    --container: 1280px;
    --font: "Be Vietnam Pro", "Segoe UI", sans-serif;
    --serif: "Playfair Display", "Times New Roman", serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
}

body {
    font-family: var(--font);
    color: var(--white);
    background: var(--navy-deep);
    min-height: 100vh;
}

img,
svg {
    display: block;
    max-width: 100%;
}

button,
input,
select {
    font-family: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 1.2;
    border-radius: 8px;
    padding: 12px 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    white-space: nowrap;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn--gold {
    background: var(--gold-btn);
    color: var(--navy);
    box-shadow: 0 8px 20px rgba(201, 164, 76, 0.28);
}

.btn.is-sending {
    background: #1f7a4d;
    color: #fff;
    box-shadow: none;
    cursor: wait;
    pointer-events: none;
}

.btn.is-sending:hover {
    transform: none;
    filter: none;
}

form.is-sending {
    pointer-events: none;
    opacity: 0.78;
}

.btn--light {
    background: rgba(255, 255, 255, 0.96);
    color: var(--navy);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.btn--block {
    width: 100%;
    padding: 14px 20px;
}

.btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

.btn:active {
    transform: translateY(0);
}

/* ---------- Header ---------- */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    height: var(--header-h);
}

.header.is-solid {
    position: fixed;
    background: rgba(8, 20, 48, 0.92);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.header__inner {
    max-width: calc(var(--container) + 48px);
    margin: 0 auto;
    height: 100%;
    padding: 0 28px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo__mark {
    width: 42px;
    height: 42px;
}

.logo__mark svg {
    width: 100%;
    height: 100%;
}

.logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.logo__top {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
}

.logo__name {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;
    margin-left: auto;
}

.nav a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.94);
    position: relative;
    padding: 6px 0;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.2s ease;
}

.nav a:hover::after {
    width: 100%;
}

.header__cta {
    flex-shrink: 0;
    padding: 11px 18px;
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--white);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 50% at 18% 78%, rgba(232, 140, 60, 0.16), transparent 60%),
        linear-gradient(165deg, #07122c 0%, #102850 36%, #1c3d68 58%, #142848 100%);
}

.hero__scene {
    position: absolute;
    inset: 0 0 0 30%;
    background: url("../images/hero-scene.png") right center / cover no-repeat;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 22%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 22%);
}

.hero__wash {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 18, 46, 0.9) 0%, rgba(8, 18, 46, 0.72) 26%, rgba(8, 18, 46, 0.28) 46%, rgba(8, 18, 46, 0.08) 64%, rgba(8, 18, 46, 0.22) 100%),
        linear-gradient(180deg, rgba(7, 16, 40, 0.4) 0%, transparent 20%, transparent 70%, rgba(7, 16, 40, 0.5) 100%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    width: min(100%, calc(var(--container) + 48px));
    margin: 0 auto;
    padding: calc(var(--header-h) + 36px) 28px 180px;
    animation: heroIn 0.8s ease both;
}

@keyframes heroIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: none; }
}

.hero__title {
    font-family: var(--serif);
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.hero__title-white,
.hero__title-gold {
    display: block;
}

.hero__title-white {
    color: var(--white);
    font-size: clamp(48px, 6.4vw, 86px);
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.hero__title-gold {
    font-size: clamp(48px, 6.4vw, 86px);
    background: linear-gradient(180deg, #f6e7b0 0%, #e0c36a 42%, #c49a3c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.25));
}

.hero__tagline {
    margin-top: 14px;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(18px, 2vw, 26px);
    color: #e8d08a;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.price-pill {
    margin-top: 22px;
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
    background: #0b1c45;
    color: var(--white);
    border-radius: 10px;
    padding: 10px 22px 10px 18px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.price-pill__label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.price-pill__value {
    font-family: var(--serif);
    font-size: 52px;
    font-weight: 800;
    line-height: 0.9;
    background: linear-gradient(180deg, #f6e7b0, #d4af5a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.price-pill__unit {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.price-pill__unit small {
    font-size: 13px;
    font-weight: 700;
    margin-left: 2px;
}

.feature-card {
    margin-top: 22px;
    width: min(100%, 470px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(255, 255, 255, 0.97);
    border-radius: 16px;
    padding: 18px 8px 16px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.feature-card__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.35;
}

.feature-card__icon {
    width: 42px;
    height: 42px;
    color: var(--gold-deep);
}

.feature-card__icon svg {
    width: 100%;
    height: 100%;
}

.hero__actions {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Shield badge */
.hero__badge {
    position: absolute;
    top: 108px;
    right: 64px;
    z-index: 3;
    width: 214px;
    padding: 22px 16px 36px;
    text-align: center;
    color: var(--white);
    background: linear-gradient(180deg, #1e447c 0%, #10285a 58%, #0c1f46 100%);
    border: 2px solid #d4b05c;
    clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 100%, 0 78%);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.hero__badge p {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.45;
}

.hero__badge p:first-child {
    font-size: 13px;
    margin-bottom: 2px;
}

.hero__stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 10px;
}

.hero__stars span {
    width: 14px;
    height: 14px;
    background: #efc75a;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* Bottom highlight bar */
.hero__bar {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    background: #0b1c45;
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.hero__bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 10px;
}

.hero__bar-icon {
    width: 36px;
    height: 36px;
    color: var(--gold);
    flex-shrink: 0;
}

.hero__bar-icon svg {
    width: 100%;
    height: 100%;
}

.hero__bar-item p {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.hero__bar-item strong {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.hero__bar-item span {
    font-size: 12px;
    opacity: 0.92;
}

/* Floating social */
.float-social {
    position: fixed;
    right: 18px;
    top: 54%;
    z-index: 45;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.float-social a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.float-social__circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.float-social__zalo .float-social__circle {
    background: #0068ff;
}

.float-social__msg .float-social__circle {
    background: #0084ff;
}

.float-social__msg svg {
    width: 26px;
    height: 26px;
}

.float-social__label {
    font-size: 12px;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

/* ---------- Modal ---------- */
.modal[hidden] {
    display: none;
}

.modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 12, 30, 0.62);
    backdrop-filter: blur(4px);
}

.modal__panel {
    position: relative;
    z-index: 1;
    width: min(860px, calc(100% - 24px));
    max-height: min(92vh, 640px);
    background: #fff;
    color: var(--text);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.modal__close {
    position: absolute;
    top: 10px;
    right: 14px;
    z-index: 2;
    border: none;
    background: none;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    color: #667;
}

.modal__media {
    min-height: 100%;
    background: #0b1c45;
}

.modal__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
}

.modal__content {
    padding: 28px 26px 22px;
    overflow-y: auto;
}

.modal__panel h2 {
    font-family: var(--font);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.3;
    color: var(--navy);
    margin: 0 0 6px;
}

.modal__panel h2 span {
    display: block;
    color: #c9a44c;
}

.modal__desc {
    font-size: 13px;
    color: #5a6a80;
    margin-bottom: 14px;
    text-align: center;
    line-height: 1.5;
}

.modal__form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal__field {
    position: relative;
    display: block;
}

.modal__ico {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #8aa0c2;
    pointer-events: none;
}

.modal__ico svg {
    width: 100%;
    height: 100%;
}

.modal__form input,
.modal__form select {
    width: 100%;
    height: 42px;
    border: 1px solid #d7dbe7;
    border-radius: 8px;
    padding: 0 12px 0 38px;
    font-size: 13.5px;
    outline: none;
    background: #fff;
    color: var(--navy);
}

.modal__form input:focus,
.modal__form select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 176, 92, 0.2);
}

.modal__check {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 12px;
    line-height: 1.4;
    color: #445;
    font-weight: 500;
    margin: 4px 0 2px;
}

.modal__check input {
    width: 15px;
    height: 15px;
    margin-top: 2px;
    accent-color: #c9a44c;
    padding: 0;
}

.modal__note,
.modal__success {
    font-size: 12px;
    color: #667;
    text-align: center;
}

.modal__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 4px;
}

.modal__note svg {
    width: 16px;
    height: 16px;
    color: #c9a44c;
}

.modal__success {
    color: #1a7a3a;
    font-weight: 600;
    margin-top: 8px;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 760px) {
    .modal__panel {
        grid-template-columns: 1fr;
        max-height: 92vh;
    }

    .modal__media {
        height: 140px;
        min-height: 140px;
    }
}

/* ---------- Shared section bits ---------- */
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.section-kicker__num {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-btn);
    color: var(--navy);
    font-weight: 800;
    font-size: 13px;
    box-shadow: 0 6px 16px rgba(201, 164, 76, 0.28);
}

.section-kicker__label {
    color: var(--gold-deep);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.is-gold {
    color: var(--gold-deep);
    background: linear-gradient(180deg, #c9a44c 0%, #a78432 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ---------- Overview ---------- */
.overview {
    position: relative;
    color: var(--text);
    background:
        radial-gradient(ellipse 80% 50% at 90% 0%, rgba(255, 214, 140, 0.35), transparent 55%),
        linear-gradient(180deg, #d7e9f8 0%, #eef6fc 38%, #f7fbfe 100%);
    padding: 100px 0 36px;
    overflow: hidden;
}

.overview__inner {
    width: min(100%, calc(var(--container) + 48px));
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) minmax(320px, 1.15fr) minmax(300px, 1.2fr);
    gap: 28px 32px;
    align-items: start;
}

.overview__title {
    font-family: var(--serif);
    font-weight: 800;
    line-height: 0.95;
    text-transform: uppercase;
    font-size: clamp(36px, 4vw, 56px);
    color: var(--navy);
}

.overview__title span {
    display: block;
}

.overview__tagline {
    margin-top: 12px;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 500;
    font-size: clamp(18px, 1.8vw, 24px);
    color: #c39a3e;
}

.overview__desc {
    margin-top: 16px;
    font-size: 14.5px;
    line-height: 1.75;
    color: #3a4a63;
    max-width: 34ch;
}

.overview-facts {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 18px;
    overflow: hidden;
}

.overview-facts li {
    display: flex;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(180, 200, 220, 0.45);
}

.overview-facts li:nth-child(odd) {
    border-right: 1px solid rgba(180, 200, 220, 0.45);
}

.overview-facts li:nth-last-child(-n + 2) {
    border-bottom: none;
}

.overview-facts__icon {
    width: 32px;
    height: 32px;
    color: var(--gold-deep);
    flex-shrink: 0;
    margin-top: 2px;
}

.overview-facts__icon svg {
    width: 100%;
    height: 100%;
}

.overview-facts strong {
    display: block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 4px;
}

.overview-facts span:last-child {
    font-size: 13.5px;
    line-height: 1.45;
    color: #4a5a70;
}

.overview-visual {
    margin: 0;
    border-radius: 28px;
    overflow: hidden;
    border: 3px solid rgba(232, 212, 139, 0.85);
    box-shadow: 0 22px 48px rgba(20, 50, 90, 0.16);
    min-height: 360px;
}

.overview-visual img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    object-position: center;
}

/* ---------- Why choose ---------- */
.why {
    color: var(--text);
    background: linear-gradient(180deg, #f7fbfe 0%, #eaf4fb 55%, #dcecf8 100%);
    padding: 28px 0 80px;
}

.why__inner {
    width: min(100%, calc(var(--container) + 48px));
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: 1.35fr 0.9fr;
    gap: 28px;
    align-items: stretch;
}

.why__title {
    font-family: var(--serif);
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
    font-size: clamp(28px, 3.2vw, 42px);
    color: var(--navy);
}

.why__title span {
    display: block;
}

.why__desc {
    margin: 12px 0 22px;
    font-size: 14.5px;
    line-height: 1.7;
    color: #3a4a63;
    max-width: 62ch;
}

.why-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.why-card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(20, 50, 90, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 250px;
}

.why-card__photo {
    height: 110px;
    overflow: hidden;
}

.why-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.why-card__icon {
    position: absolute;
    top: 88px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    color: var(--gold-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    z-index: 1;
}

.why-card__icon svg {
    width: 22px;
    height: 22px;
}

.why-card__body {
    padding: 32px 12px 16px;
    text-align: center;
}

.why-card__body h3 {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 6px;
}

.why-card__body p {
    font-size: 12.5px;
    line-height: 1.5;
    color: #4a5a70;
}

.why-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 420px;
    box-shadow: 0 22px 48px rgba(20, 50, 90, 0.16);
}

.why-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% center;
    min-height: 420px;
}

.why-visual::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 70%;
    height: 42%;
    background: linear-gradient(135deg, rgba(226, 239, 250, 0.92) 0%, rgba(226, 239, 250, 0.2) 70%, transparent 100%);
    pointer-events: none;
}

.why-visual__quote {
    position: absolute;
    top: 28px;
    left: 24px;
    right: 24px;
    font-family: var(--serif);
    font-style: italic;
    font-weight: 600;
    font-size: clamp(22px, 2vw, 28px);
    line-height: 1.25;
    color: var(--navy);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.6);
}

.why-visual__badges {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    background: #0b1c45;
    color: #fff;
    border-radius: 14px;
    padding: 12px 10px;
}

.why-visual__badges > div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.why-visual__badges svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
    flex-shrink: 0;
}

.why-visual__badges span {
    display: flex;
    flex-direction: column;
    font-size: 11px;
    line-height: 1.25;
    text-transform: uppercase;
}

.why-visual__badges strong {
    font-size: 11px;
    letter-spacing: 0.02em;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
    .nav {
        gap: 16px;
    }

    .hero__badge {
        right: 28px;
        width: 180px;
        padding: 16px 12px 30px;
    }

    .hero__badge p {
        font-size: 11px;
    }

    .hero__bar-item strong {
        font-size: 12px;
    }

    .hero__bar-item span {
        font-size: 11px;
    }

    .overview__inner {
        grid-template-columns: 1fr 1.05fr;
    }

    .overview__intro {
        grid-column: 1 / -1;
        max-width: 720px;
    }

    .why-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 960px) {
    .header__inner {
        gap: 12px;
    }

    .nav {
        position: fixed;
        inset: var(--header-h) 16px auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(8, 20, 48, 0.96);
        border-radius: 12px;
        padding: 10px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    }

    .nav.is-open {
        display: flex;
    }

    .nav a {
        padding: 12px 14px;
        border-radius: 8px;
    }

    .nav a:hover {
        background: rgba(255, 255, 255, 0.06);
    }

    .nav-toggle {
        display: flex;
        margin-left: 0;
    }

    .header__cta {
        margin-left: auto;
        padding: 10px 12px;
        font-size: 11px;
    }

    .hero__content {
        max-width: 100%;
        margin-left: auto;
        padding-bottom: 280px;
    }

    .hero__scene {
        inset: 0;
        opacity: 0.9;
        -webkit-mask-image: linear-gradient(180deg, #000 40%, transparent 100%);
        mask-image: linear-gradient(180deg, #000 40%, transparent 100%);
    }

    .hero__wash {
        background:
            linear-gradient(180deg, rgba(8, 18, 46, 0.35) 0%, rgba(8, 18, 46, 0.55) 48%, rgba(8, 18, 46, 0.88) 100%);
    }

    .hero__badge {
        top: auto;
        bottom: 250px;
        right: 18px;
        width: 150px;
    }

    .hero__bar {
        grid-template-columns: 1fr 1fr;
        left: 12px;
        right: 12px;
        bottom: 14px;
    }

    .float-social {
        top: auto;
        bottom: 24px;
        right: 12px;
        transform: none;
    }

    .overview__inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .overview__desc {
        max-width: none;
    }

    .overview-visual,
    .overview-visual img {
        min-height: 260px;
    }

    .why__inner {
        grid-template-columns: 1fr;
    }

    .why-cards {
        grid-template-columns: 1fr 1fr;
    }

    .why-visual,
    .why-visual img {
        min-height: 340px;
    }
}

@media (max-width: 640px) {
    .logo__name {
        font-size: 16px;
    }

    .hero__content {
        padding: calc(var(--header-h) + 18px) 16px 300px;
    }

    .price-pill__value {
        font-size: 40px;
    }

    .feature-card {
        width: 100%;
        padding: 14px 4px;
    }

    .feature-card__item {
        font-size: 11px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__badge {
        display: none;
    }

    .float-social__circle {
        width: 44px;
        height: 44px;
        font-size: 11px;
    }

    .overview__inner,
    .why__inner {
        padding: 0 16px;
    }

    .overview-facts {
        grid-template-columns: 1fr;
    }

    .overview-facts li {
        border-right: none;
    }

    .overview-facts li:nth-last-child(-n + 2) {
        border-bottom: 1px solid rgba(180, 200, 220, 0.45);
    }

    .overview-facts li:last-child {
        border-bottom: none;
    }

    .why-cards {
        grid-template-columns: 1fr;
    }

    .why-visual__badges span,
    .why-visual__badges strong {
        font-size: 10px;
    }
}

/* ---------- Location ---------- */
.location {
    color: var(--text);
    background:
        radial-gradient(ellipse 55% 60% at 88% 18%, rgba(255, 214, 140, 0.32), transparent 58%),
        linear-gradient(180deg, #e7f2fb 0%, #f4f9fd 55%, #ffffff 100%);
    padding: 72px 0 28px;
    overflow: hidden;
}

.location__inner {
    width: min(100%, calc(var(--container) + 48px));
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(520px, 1.35fr);
    gap: 20px 28px;
    align-items: center;
}

.location__title {
    font-family: var(--serif);
    font-weight: 800;
    line-height: 0.98;
    text-transform: uppercase;
    font-size: clamp(28px, 3.1vw, 44px);
    color: var(--navy);
}

.location__title span {
    display: block;
}

.location__desc {
    margin: 14px 0 20px;
    font-size: 14px;
    line-height: 1.7;
    color: #3d4e66;
    max-width: 42ch;
}

.location-times {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location-times li {
    display: grid;
    grid-template-columns: 28px 96px 1fr;
    align-items: center;
    gap: 10px;
}

.location-times__icon {
    width: 28px;
    height: 28px;
    color: var(--gold-deep);
}

.location-times__icon svg {
    width: 100%;
    height: 100%;
}

.location-times__min {
    color: var(--gold-deep);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.location-times__min b {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0;
    margin-right: 2px;
}

.location-times__place {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

.location-visual {
    position: relative;
    min-height: 430px;
}

.location-visual__map {
    position: absolute;
    top: 0;
    left: 0;
    width: 72%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: left center;
}

.location-visual__shot {
    position: absolute;
    inset: 0 0 0 46%;
    clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
    overflow: hidden;
}

.location-visual__shot > img:first-child {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center 30%;
}

.location-visual__brand {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #0b1c45;
    color: #fff;
    border-radius: 999px;
    padding: 8px 14px 8px 8px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
    z-index: 2;
}

.location-visual__brand svg {
    width: 28px;
    height: 28px;
}

.location-visual__brand span {
    font-size: 11px;
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.location-visual__mini {
    position: absolute;
    left: 18%;
    right: 18px;
    bottom: 18px;
    width: auto;
    max-width: none;
    height: 118px;
    object-fit: cover;
    object-position: right center;
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    background: #fff;
}

/* ---------- Potential ---------- */
.potential {
    color: var(--text);
    background:
        radial-gradient(ellipse 50% 80% at 100% 50%, rgba(255, 210, 130, 0.28), transparent 55%),
        linear-gradient(180deg, #ffffff 0%, #eaf4fb 100%);
    padding: 20px 0 80px;
}

.potential__inner {
    width: min(100%, calc(var(--container) + 48px));
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    grid-template-areas:
        "head panel"
        "cards panel";
    gap: 18px 22px;
    align-items: start;
}

.potential__head {
    grid-area: head;
}

.potential__head .section-kicker {
    margin-bottom: 6px;
}

.potential__title {
    font-family: var(--serif);
    font-weight: 800;
    text-transform: uppercase;
    font-size: clamp(26px, 2.8vw, 36px);
    color: var(--navy);
    line-height: 1.15;
}

.potential__desc {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.7;
    color: #3d4e66;
    max-width: 72ch;
}

.potential-panel {
    grid-area: panel;
    background: #0b1c45;
    color: #fff;
    border-radius: 18px;
    padding: 28px 22px 24px;
    min-height: 100%;
    box-shadow: 0 18px 40px rgba(11, 28, 69, 0.22);
    align-self: stretch;
}

.potential-panel h3 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    background: linear-gradient(180deg, #f0d78a, #c9a44c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 22px;
}

.potential-panel ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.potential-panel li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13.5px;
    line-height: 1.45;
}

.potential-panel li span {
    width: 28px;
    height: 28px;
    color: var(--gold);
    flex-shrink: 0;
}

.potential-panel li svg {
    width: 100%;
    height: 100%;
}

.potential-cards {
    grid-area: cards;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.pot-card {
    position: relative;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(20, 50, 90, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.pot-card__photo {
    height: 118px;
    overflow: hidden;
}

.pot-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.pot-card__icon {
    position: absolute;
    top: 96px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    color: var(--gold-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    z-index: 1;
}

.pot-card__icon svg {
    width: 22px;
    height: 22px;
}

.pot-card__body {
    padding: 32px 14px 16px;
    text-align: center;
}

.pot-card__body h3 {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 8px;
}

.pot-card__body ul {
    list-style: none;
    text-align: left;
}

.pot-card__body li {
    position: relative;
    padding-left: 12px;
    font-size: 12.5px;
    line-height: 1.5;
    color: #4a5a70;
    margin-bottom: 5px;
}

.pot-card__body li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold-deep);
}

@media (max-width: 1100px) {
    .location__inner {
        grid-template-columns: 1fr;
    }

    .location-visual {
        min-height: 380px;
    }

    .potential__inner {
        grid-template-columns: 1fr;
        grid-template-areas:
            "head"
            "cards"
            "panel";
    }

    .potential-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .location__inner,
    .potential__inner {
        padding: 0 16px;
    }

    .location-times li {
        grid-template-columns: 24px 88px 1fr;
        gap: 6px;
    }

    .location-visual {
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .location-visual__map {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 220px;
    }

    .location-visual__shot {
        position: relative;
        inset: auto;
        clip-path: none;
        min-height: 240px;
        border-radius: 16px;
    }

    .location-visual__mini {
        height: 90px;
        left: 12px;
        right: 12px;
        bottom: 12px;
    }

    .potential-cards {
        grid-template-columns: 1fr;
    }
}

/* ---------- Amenity ---------- */
.amenity {
    color: var(--text);
    background: linear-gradient(180deg, #eaf4fb 0%, #f7fbfe 40%, #ffffff 100%);
    padding: 80px 0 36px;
}

.amenity__inner {
    width: min(100%, calc(var(--container) + 48px));
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.4fr);
    gap: 28px 32px;
    align-items: start;
}

.amenity__title {
    font-family: var(--serif);
    font-weight: 800;
    line-height: 1.02;
    text-transform: uppercase;
    font-size: clamp(26px, 3vw, 40px);
    color: var(--navy);
}

.amenity__title span {
    display: block;
}

.amenity__desc {
    margin: 12px 0 18px;
    font-size: 14px;
    line-height: 1.7;
    color: #3d4e66;
}

.amenity__street {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(20, 50, 90, 0.14);
}

.amenity__street img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center 60%;
}

.amenity__group {
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
    margin: 0 0 14px;
}

.amenity__main .amenity__group:nth-of-type(2) {
    margin-top: 22px;
}

.amenity-in {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.amenity-in__card {
    position: relative;
    text-align: center;
}

.amenity-in__photo {
    height: 92px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(20, 50, 90, 0.1);
}

.amenity-in__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.amenity-in__icon {
    position: absolute;
    top: 74px;
    left: 50%;
    transform: translateX(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #0b1c45;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(11, 28, 69, 0.25);
}

.amenity-in__icon svg {
    width: 18px;
    height: 18px;
}

.amenity-in__card h4 {
    margin-top: 26px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--navy);
}

.amenity-in__card p {
    margin-top: 3px;
    font-size: 12px;
    color: #5a6a80;
    line-height: 1.4;
}

.amenity-out {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.amenity-out__card {
    background: #0b1c45;
    color: #fff;
    border-radius: 14px;
    padding: 16px 10px 14px;
    text-align: center;
    min-height: 148px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.amenity-out__icon {
    width: 28px;
    height: 28px;
    color: var(--gold);
    margin-bottom: 8px;
}

.amenity-out__icon svg {
    width: 100%;
    height: 100%;
}

.amenity-out__card h4 {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.3;
}

.amenity-out__card p {
    margin-top: 4px;
    font-size: 11px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.78);
    flex: 1;
}

.amenity-out__card strong {
    display: block;
    margin-top: 8px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ---------- Masterplan ---------- */
.masterplan {
    color: var(--text);
    background:
        radial-gradient(ellipse 40% 50% at 8% 80%, rgba(255, 214, 140, 0.22), transparent 55%),
        linear-gradient(180deg, #ffffff 0%, #eaf4fb 100%);
    padding: 24px 0 80px;
}

.masterplan__inner {
    width: min(100%, calc(var(--container) + 48px));
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.35fr) 220px;
    gap: 20px 18px;
    align-items: stretch;
}

.masterplan__title {
    font-family: var(--serif);
    font-weight: 800;
    line-height: 1.02;
    text-transform: uppercase;
    font-size: clamp(26px, 2.8vw, 38px);
    color: var(--navy);
}

.masterplan__title span {
    display: block;
}

.masterplan__desc {
    margin: 12px 0 18px;
    font-size: 14px;
    line-height: 1.7;
    color: #3d4e66;
}

.masterplan-stats {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 10px;
}

.masterplan-stats li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.masterplan-stats__icon {
    width: 32px;
    height: 32px;
    color: var(--gold-deep);
    flex-shrink: 0;
}

.masterplan-stats__icon svg {
    width: 100%;
    height: 100%;
}

.masterplan-stats strong {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 0.02em;
}

.masterplan-stats span {
    font-size: 11.5px;
    color: #5a6a80;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.masterplan__map {
    margin: 0;
    position: relative;
}

.masterplan__map img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: contain;
    object-position: center;
}

.masterplan__map figcaption {
    text-align: center;
    font-size: 11px;
    font-style: italic;
    color: #6a7a90;
    margin-top: 4px;
}

.masterplan-legend {
    background: #0b1c45;
    color: #fff;
    border-radius: 16px;
    padding: 22px 16px 18px;
}

.masterplan-legend ol {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.masterplan-legend li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.3;
}

.masterplan-legend span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #c0392b;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
}

@media (max-width: 1100px) {
    .amenity__inner,
    .masterplan__inner {
        grid-template-columns: 1fr;
    }

    .amenity-in {
        grid-template-columns: repeat(3, 1fr);
    }

    .amenity-out {
        grid-template-columns: repeat(3, 1fr);
    }

    .masterplan__map img {
        min-height: 280px;
    }
}

@media (max-width: 640px) {
    .amenity__inner,
    .masterplan__inner {
        padding: 0 16px;
    }

    .amenity-in,
    .amenity-out {
        grid-template-columns: 1fr 1fr;
    }

    .amenity__street img {
        height: 180px;
    }

    .masterplan-stats {
        grid-template-columns: 1fr;
    }
}

/* ---------- Product ---------- */
.product {
    color: var(--text);
    background: linear-gradient(180deg, #eaf4fb 0%, #f7fbfe 45%, #ffffff 100%);
    padding: 80px 0 80px;
}

.product__inner {
    width: min(100%, calc(var(--container) + 48px));
    margin: 0 auto;
    padding: 0 28px;
}

.product__head {
    display: grid;
    grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.5fr);
    gap: 24px 28px;
    align-items: start;
    margin-bottom: 22px;
}

.product__title {
    font-family: var(--serif);
    font-weight: 800;
    line-height: 1.02;
    text-transform: uppercase;
    font-size: clamp(26px, 3vw, 40px);
    color: var(--navy);
}

.product__title span {
    display: block;
}

.product__desc {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.7;
    color: #3d4e66;
}

.product-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.product-type {
    position: relative;
    border: 0;
    padding: 0;
    background: #0b1c45;
    color: #fff;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 12px 28px rgba(20, 50, 90, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-type:hover,
.product-type.is-active {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(20, 50, 90, 0.18);
}

.product-type__photo {
    height: 96px;
}

.product-type__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.product-type__icon {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0b1c45;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.product-type__icon svg {
    width: 20px;
    height: 20px;
}

.product-type__body {
    padding: 14px 12px 16px;
}

.product-type__body h3 {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 6px;
}

.product-type__body p {
    font-size: 12px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.86);
}

.product-board {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 14px 36px rgba(20, 50, 90, 0.08);
    overflow: hidden;
}

.product-tabs {
    display: flex;
    gap: 6px;
    padding: 12px 16px 0;
    background: #f3f6fb;
}

.product-tabs button {
    border: 0;
    background: transparent;
    color: var(--navy);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 10px 18px;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
}

.product-tabs button.is-active {
    background: var(--gold-btn);
    color: var(--navy);
}

.product-board__body {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 0;
    align-items: stretch;
}

.product-side-wrap {
    border-right: 1px solid #e7edf5;
}

.product-side {
    padding: 22px 18px 20px;
}

.product-side ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 18px;
}

.product-side li {
    display: flex;
    gap: 10px;
}

.product-side li > span {
    width: 28px;
    height: 28px;
    color: var(--gold-deep);
    flex-shrink: 0;
}

.product-side li svg {
    width: 100%;
    height: 100%;
}

.product-side strong {
    display: block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--navy);
}

.product-side p {
    font-size: 12px;
    line-height: 1.45;
    color: #5a6a80;
}

.product-side__btn {
    width: 100%;
    background: #0b1c45;
    color: #fff;
    text-transform: uppercase;
    font-size: 12px;
}

.product-table-wrap {
    min-width: 0;
    padding: 8px 12px 12px;
}

.product-table-scroll {
    overflow-x: auto;
}

.product-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12.5px;
    min-width: 760px;
}

.product-table th {
    background: #0b1c45;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 11px;
    padding: 10px 8px;
    text-align: center;
    white-space: nowrap;
}

.product-table td {
    padding: 9px 8px;
    text-align: center;
    border-bottom: 1px solid #edf1f6;
    color: #2c3b52;
}

.product-table tbody tr:nth-child(odd) {
    background: #f7f9fc;
}

.product-table tbody tr:nth-child(even) {
    background: #fff;
}

.product-table .is-price {
    color: var(--gold-deep);
    font-weight: 800;
    white-space: nowrap;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 12px;
    white-space: nowrap;
}

.status::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status--on {
    color: #1a9d4a;
}

.status--on::before {
    background: #1a9d4a;
}

.status--hold {
    color: #d4a017;
}

.status--hold::before {
    background: #d4a017;
}

.product-note {
    margin-top: 8px;
    font-size: 12px;
    font-style: italic;
    color: #6a7a90;
}

.product-reasons {
    margin-top: 18px;
    background: #fff;
    border: 1px solid #e8eef5;
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(20, 50, 90, 0.06);
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    align-items: stretch;
    overflow: hidden;
    min-height: 108px;
}

.product-reasons__label {
    position: relative;
    background: #0b1c45;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 18px 36px 18px 22px;
    clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 50%, calc(100% - 22px) 100%, 0 100%);
}

.product-reasons__label h3 {
    font-family: var(--font);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
}

.product-reasons ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px 8px;
    padding: 16px 16px 16px 10px;
    align-items: center;
}

.product-reasons li {
    display: flex;
    gap: 10px;
    align-items: center;
}

.product-reasons__icon {
    width: 40px;
    height: 40px;
    color: #c9a44c;
    flex-shrink: 0;
}

.product-reasons__icon svg {
    width: 40px;
    height: 40px;
}

.product-reasons strong {
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #c9a44c;
    margin-bottom: 3px;
    line-height: 1.25;
}

.product-reasons p {
    font-size: 11.5px;
    line-height: 1.35;
    color: #5b6b80;
    font-weight: 400;
}

@media (max-width: 1100px) {
    .product__head,
    .product-board__body,
    .product-reasons {
        grid-template-columns: 1fr;
    }

    .product-reasons__label {
        clip-path: none;
        padding: 16px 20px;
        justify-content: center;
        text-align: center;
    }

    .product-reasons ul {
        grid-template-columns: 1fr 1fr;
        padding: 16px;
    }

    .product-side-wrap {
        border-right: 0;
        border-bottom: 1px solid #e7edf5;
    }

    .product-side {
        border-right: 0;
        border-bottom: 0;
    }
}

@media (max-width: 640px) {
    .product__inner {
        padding: 0 16px;
    }

    .product-types {
        grid-template-columns: 1fr;
    }

    .product-reasons ul {
        grid-template-columns: 1fr;
    }
}

/* ---------- Legal ---------- */
.legal {
    color: var(--text);
    background:
        radial-gradient(ellipse 50% 40% at 90% 10%, rgba(255, 214, 140, 0.28), transparent 55%),
        linear-gradient(180deg, #e7f2fb 0%, #f7fbfe 55%, #ffffff 100%);
    padding: 80px 0 28px;
}

.legal__inner {
    width: min(100%, calc(var(--container) + 48px));
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.35fr);
    grid-template-areas:
        "intro docs"
        "bar bar";
    gap: 22px 28px;
}

.legal__intro { grid-area: intro; }
.legal-docs { grid-area: docs; }
.legal-bar { grid-area: bar; }

.legal__title {
    font-family: var(--serif);
    font-weight: 800;
    line-height: 1.02;
    text-transform: uppercase;
    font-size: clamp(26px, 3vw, 40px);
    color: var(--navy);
}

.legal__title span { display: block; }

.legal__desc {
    margin: 12px 0 16px;
    font-size: 14px;
    line-height: 1.7;
    color: #3d4e66;
}

.legal-points {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    background: #0b1c45;
    color: #fff;
    border-radius: 16px;
    padding: 16px 14px;
}

.legal-points li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.legal-points li > span {
    width: 26px;
    height: 26px;
    color: var(--gold);
    flex-shrink: 0;
}

.legal-points li svg { width: 100%; height: 100%; }

.legal-points strong {
    display: block;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.legal-points p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.4;
}

.legal-docs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    align-items: end;
}

.legal-docs figure {
    margin: 0;
    background: #fff;
    border-radius: 12px;
    padding: 8px 8px 10px;
    box-shadow: 0 10px 24px rgba(20, 50, 90, 0.1);
    text-align: center;
}

.legal-docs img {
    width: 100%;
    height: 168px;
    object-fit: cover;
    object-position: top center;
    border-radius: 8px;
    background: #f4f6fa;
}

.legal-docs figcaption {
    margin-top: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--navy);
    line-height: 1.35;
}

.legal-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.legal-bar > div {
    background: #0b1c45;
    color: #fff;
    border-radius: 12px;
    padding: 14px 14px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.legal-bar span {
    width: 28px;
    height: 28px;
    color: var(--gold);
    flex-shrink: 0;
}

.legal-bar svg { width: 100%; height: 100%; }

.legal-bar strong {
    display: block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.legal-bar p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.35;
}

/* ---------- Policy ---------- */
.policy {
    color: var(--text);
    background:
        radial-gradient(ellipse 45% 50% at 8% 80%, rgba(255, 210, 130, 0.22), transparent 55%),
        linear-gradient(180deg, #ffffff 0%, #eaf4fb 100%);
    padding: 36px 0 80px;
}

.policy__inner {
    width: min(100%, calc(var(--container) + 48px));
    margin: 0 auto;
    padding: 0 28px;
}

.policy__head {
    display: grid;
    grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.55fr);
    gap: 16px 20px;
    margin-bottom: 16px;
    align-items: center;
}

.policy__title {
    font-family: var(--serif);
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    font-size: clamp(28px, 3.1vw, 42px);
    color: var(--navy);
}

.policy__title span { display: block; }

.policy__desc {
    margin-top: 10px;
    font-size: 13.5px;
    line-height: 1.65;
    color: #3d4e66;
    max-width: 36ch;
}

.policy-offers {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.policy-offers article {
    background: #fff;
    border-radius: 16px;
    padding: 14px 8px 12px;
    text-align: center;
    box-shadow: 0 10px 22px rgba(20, 50, 90, 0.08);
    min-height: 168px;
}

.policy-offers__icon {
    width: 48px;
    height: 48px;
    color: #c9a44c;
    margin: 0 auto 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.policy-offers__icon svg {
    width: 48px;
    height: 48px;
}

.policy-offers h3 {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--navy);
    line-height: 1.3;
}

.policy-offers b {
    display: block;
    margin: 2px 0 2px;
    font-size: 42px;
    line-height: 0.95;
    font-weight: 800;
    color: #c9a44c;
}

.policy-offers b.is-gift {
    font-size: 22px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-top: 0;
}

.policy-offers p {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #c9a44c;
    line-height: 1.3;
}

.policy-offers__cap {
    margin-top: 6px;
}

.policy-grid {
    display: grid;
    grid-template-columns: 200px minmax(0, 1.25fr) minmax(220px, 0.72fr) minmax(230px, 0.78fr);
    gap: 12px;
    align-items: stretch;
}

.policy-special {
    background: #0b1c45;
    color: #fff;
    border-radius: 16px;
    overflow: hidden;
    padding: 0 0 8px;
}

.policy-special__head {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 14px 10px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #e8d078;
}

.policy-special__head svg {
    width: 26px;
    height: 26px;
    color: #e8d078;
}

.policy-special ul {
    list-style: none;
    padding: 4px 14px 12px;
}

.policy-special li {
    position: relative;
    padding-left: 22px;
    font-size: 12.5px;
    line-height: 1.45;
    color: #fff;
    margin-bottom: 10px;
}

.policy-special li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.15em;
    width: 14px;
    height: 14px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none'%3E%3Crect x='6' y='14' width='20' height='13' rx='1.5' stroke='%23e8d078' stroke-width='2'/%3E%3Cpath d='M6 14l10-6 10 6M16 8v19' stroke='%23e8d078' stroke-width='2' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.policy-table {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(20, 50, 90, 0.08);
}

.policy-table h3,
.policy-bank h3 {
    background: #0b1c45;
    color: #e8d078;
    margin: 0;
    padding: 11px 14px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
}

.policy-table__scroll { overflow-x: auto; }

.policy-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.policy-table th {
    background: #0b1c45;
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 7px 8px;
    text-align: left;
}

.policy-table td {
    padding: 7px 8px;
    border-bottom: 1px solid #edf1f6;
    color: #2c3b52;
    vertical-align: middle;
}

.policy-table tbody tr:nth-child(odd) { background: #f7f9fc; }

.policy-table .is-rate {
    color: #c9a44c;
    font-weight: 800;
    white-space: nowrap;
}

.policy-table .is-note {
    font-size: 10.5px;
    color: #7a8a9c;
    font-style: italic;
}

.policy-table .is-total td {
    font-weight: 800;
    background: #0b1c45;
    color: #fff;
    text-transform: uppercase;
}

.policy-table .is-total .is-rate {
    color: #e8d078;
}

.policy-table--early td b {
    color: #c9a44c;
    font-size: 22px;
    font-weight: 800;
    margin-right: 4px;
    line-height: 1;
}

.policy-table--early td span {
    display: block;
    font-size: 11px;
    color: #6a7a90;
    font-weight: 400;
    line-height: 1.3;
}

.policy-bank {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(20, 50, 90, 0.08);
    display: flex;
    flex-direction: column;
}

.policy-bank ul {
    list-style: none;
    padding: 12px 14px 8px;
}

.policy-bank li {
    position: relative;
    padding-left: 20px;
    font-size: 12.5px;
    line-height: 1.45;
    color: #3d4e66;
    margin-bottom: 8px;
}

.policy-bank li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.2em;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1.6px solid #c9a44c;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6.2l2.3 2.3 4.7-5' fill='none' stroke='%23c9a44c' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 9px 9px no-repeat;
}

.policy-cta {
    position: relative;
    margin: auto 10px 10px;
    background: #0b1c45;
    color: #fff;
    border-radius: 12px;
    padding: 14px 86px 12px 14px;
    overflow: hidden;
}

.policy-cta p {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 8px;
    color: #e8d078;
}

.policy-cta .btn {
    font-size: 12px;
    padding: 8px 16px;
}

.policy-cta small {
    display: block;
    margin-top: 8px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.policy-cta__gift {
    position: absolute;
    right: 2px;
    bottom: 2px;
    width: 84px;
    height: 84px;
}

.policy-cta__gift svg { width: 100%; height: 100%; }

.policy-disclaimer {
    margin-top: 10px;
    font-size: 11.5px;
    font-style: italic;
    color: #6a7a90;
}

@media (max-width: 1100px) {
    .legal__inner,
    .policy__head,
    .policy-grid {
        grid-template-columns: 1fr;
    }

    .legal__inner {
        grid-template-areas:
            "intro"
            "docs"
            "bar";
    }

    .legal-docs,
    .legal-bar,
    .policy-offers {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .legal__inner,
    .policy__inner {
        padding: 0 16px;
    }

    .legal-points,
    .legal-docs,
    .legal-bar,
    .policy-offers {
        grid-template-columns: 1fr;
    }
}

/* ---------- Register ---------- */
.register {
    color: var(--text);
    background: linear-gradient(180deg, #eaf4fb 0%, #f7fbfe 50%, #ffffff 100%);
    padding: 80px 0 48px;
}

.register__inner {
    width: min(100%, calc(var(--container) + 48px));
    margin: 0 auto;
    padding: 0 28px;
    display: grid;
    grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1.05fr) minmax(280px, 0.92fr);
    gap: 22px;
    align-items: start;
}

.register__title {
    font-family: var(--serif);
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    font-size: clamp(26px, 3vw, 38px);
    color: var(--navy);
}

.register__title span { display: block; }

.register__desc {
    margin: 12px 0 16px;
    font-size: 14px;
    line-height: 1.7;
    color: #3d4e66;
}

.register__photo {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(20, 50, 90, 0.14);
}

.register__photo img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    object-position: center 55%;
}

.register-benefits h3 {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--navy);
    text-align: center;
    margin-bottom: 14px;
}

.register-benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.register-benefits article {
    background: #fff;
    border-radius: 14px;
    padding: 16px 10px 14px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(20, 50, 90, 0.07);
}

.register-benefits article span {
    width: 42px;
    height: 42px;
    margin: 0 auto 8px;
    color: #0b1c45;
    display: flex;
}

.register-benefits article svg {
    width: 42px;
    height: 42px;
}

.register-benefits article strong {
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 4px;
}

.register-benefits article p {
    font-size: 12px;
    line-height: 1.4;
    color: #5a6a80;
}

.register-hotline {
    margin-top: 12px;
    background: #0b1c45;
    color: #fff;
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

.register-hotline svg {
    width: 26px;
    height: 26px;
    color: #e8d078;
}

.register-hotline strong {
    display: block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.register-hotline p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.82);
}

.register-form {
    background: #0b1c45;
    color: #fff;
    border-radius: 18px;
    padding: 22px 20px 18px;
    box-shadow: 0 18px 40px rgba(11, 28, 69, 0.22);
}

.register-form h3 {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.35;
    margin-bottom: 16px;
    color: #e8d078;
}

.register-form__field {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.register-form__ico {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: #8aa0c2;
    pointer-events: none;
}

.register-form__ico svg { width: 100%; height: 100%; }

.register-form input,
.register-form select {
    width: 100%;
    height: 42px;
    border: 0;
    border-radius: 8px;
    padding: 0 12px 0 38px;
    font-size: 13.5px;
    color: var(--navy);
    background: #fff;
    outline: none;
}

.register-form__check {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 12px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.88);
    margin: 4px 0 12px;
}

.register-form__check input {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    padding: 0;
    accent-color: #c9a44c;
}

.register-form .btn {
    font-size: 14px;
    padding: 12px 16px;
}

.register-form__ok {
    margin-top: 8px;
    text-align: center;
    color: #b8e0c4;
    font-size: 13px;
}

.register-form__actions {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin-top: 12px;
}

.register-form__actions a {
    border-radius: 8px;
    padding: 8px 6px;
    text-align: center;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.25;
    background: #fff;
    color: var(--navy);
}

.register-form__actions a:nth-child(1) { background: #e8d078; }
.register-form__actions a:nth-child(2) { background: #0068ff; color: #fff; }
.register-form__actions a:nth-child(3) { background: #0084ff; color: #fff; }

.register-form__actions b {
    display: block;
    font-size: 11.5px;
    margin-top: 2px;
}

/* ---------- Footer ---------- */
.site-footer {
    background: #071530;
    color: rgba(255, 255, 255, 0.88);
    padding: 42px 0 0;
}

.site-footer__inner {
    width: min(100%, calc(var(--container) + 48px));
    margin: 0 auto;
    padding: 0 28px 28px;
    display: grid;
    grid-template-columns: 1.15fr 1fr 0.95fr 0.8fr 1.05fr;
    gap: 24px 18px;
}

.site-footer h3 {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #e8d078;
    margin-bottom: 12px;
}

.site-footer__tag {
    margin: 10px 0 8px;
    font-size: 13px;
    font-style: italic;
    color: #e8d078;
}

.site-footer__brand p {
    font-size: 13px;
    line-height: 1.65;
}

.site-footer__social {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.site-footer__social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e8d078;
}

.site-footer__social svg { width: 14px; height: 14px; }

.site-footer__list,
.site-footer__links {
    list-style: none;
}

.site-footer__list li,
.site-footer__links a {
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 8px;
}

.site-footer__links a::before {
    content: "› ";
    color: #e8d078;
}

.site-footer__map img {
    width: 100%;
    height: 168px;
    object-fit: cover;
    border-radius: 12px;
    background: #12305f;
}

.site-footer__copy {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 28px;
    width: min(100%, calc(var(--container) + 48px));
    margin: 0 auto;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 1100px) {
    .register__inner,
    .site-footer__inner {
        grid-template-columns: 1fr 1fr;
    }

    .register-form {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .register__inner,
    .site-footer__inner,
    .register-benefits__grid,
    .register-form__actions,
    .site-footer__copy {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .register__inner,
    .site-footer__inner {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* ---------- Section titles: line spacing ---------- */
.overview__title,
.why__title,
.location__title,
.potential__title,
.amenity__title,
.masterplan__title,
.product__title,
.legal__title,
.policy__title,
.register__title {
    line-height: 1.25;
    letter-spacing: 0.04em;
}

.overview__title span,
.why__title span,
.location__title span,
.amenity__title span,
.masterplan__title span,
.product__title span,
.legal__title span,
.policy__title span,
.register__title span {
    display: block;
    line-height: 1.25;
}

.overview__title span + span,
.why__title span + span,
.location__title span + span,
.amenity__title span + span,
.masterplan__title span + span,
.product__title span + span,
.legal__title span + span,
.policy__title span + span,
.register__title span + span {
    margin-top: 0.18em;
}

.field-error {
    display: block;
    color: #b42318;
    font-size: 12px;
    font-weight: 500;
    margin: 4px 2px 0;
    line-height: 1.4;
}

.field-error[hidden] {
    display: none;
}

.modal__field.is-invalid input,
.register-form__field.is-invalid input {
    border-color: #b42318;
}

.thanks-modal {
    z-index: 90;
}

.thanks-modal__panel {
    position: relative;
    z-index: 1;
    width: min(440px, calc(100% - 24px));
    background: #fff;
    color: var(--navy);
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    padding: 36px 28px 28px;
    text-align: center;
}

.thanks-modal__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 14px;
    color: #c9a44c;
}

.thanks-modal__icon svg {
    width: 100%;
    height: 100%;
}

.thanks-modal__panel h2 {
    font-family: var(--font-display, "Playfair Display", serif);
    font-size: 28px;
    margin: 0 0 8px;
    text-transform: none;
    letter-spacing: 0;
    color: var(--navy);
}

.thanks-modal__lead {
    margin: 0 0 18px;
    color: #445;
    font-size: 15px;
    line-height: 1.55;
}

.thanks-modal__hint {
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
}

.thanks-modal__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.thanks-modal__btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 10px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.thanks-modal__btn span {
    width: 28px;
    height: 28px;
}

.thanks-modal__btn svg {
    width: 100%;
    height: 100%;
}

.thanks-modal__btn b {
    font-size: 15px;
}

.thanks-modal__btn--call {
    background: var(--navy);
}

.thanks-modal__btn--zalo {
    background: #0068ff;
}

@media (max-width: 480px) {
    .thanks-modal__actions {
        grid-template-columns: 1fr;
    }
}





