:root {
    --red: #ED1C24;
    --red-2: #c40d14;
    --maroon: #871015;
    --magenta: #92278F;
    --gold: #FFC83D;
    --gold-2: #F6A609;
    --ink: #1c1113;
    --ink-soft: #4d4244;
    --muted: #7c7173;
    --cream: #FFF6F1;
    --paper: #ffffff;
    --line: rgba(20, 10, 12, 0.1);
    --shadow-sm: 0 6px 18px rgba(135, 16, 21, 0.08);
    --shadow-md: 0 18px 44px rgba(135, 16, 21, 0.16);
    --shadow-lg: 0 34px 80px rgba(135, 16, 21, 0.26);
    --radius: 18px;
    --radius-lg: 28px;
    --maxw: 1180px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

h1, h2, h3 { line-height: 1.08; letter-spacing: -0.01em; }
.display { font-family: 'Anton', 'Poppins', sans-serif; font-weight: 400; letter-spacing: 0.01em; text-transform: uppercase; }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    padding: 15px 30px; border-radius: 60px; font-weight: 700; font-size: 15px;
    letter-spacing: 0.015em; line-height: 1; position: relative; overflow: hidden;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s ease;
    white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--red { background: var(--red); color: #fff; box-shadow: 0 12px 26px rgba(237, 28, 36, 0.34); }
.btn--red:hover { background: var(--red-2); transform: translateY(-3px); box-shadow: 0 18px 36px rgba(237, 28, 36, 0.44); }
.btn--gold { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #3b2400; box-shadow: 0 12px 26px rgba(246, 166, 9, 0.38); }
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(246, 166, 9, 0.5); }
.btn--ghost { background: transparent; color: #fff; border: 2px solid rgba(255, 255, 255, 0.55); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; transform: translateY(-3px); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; transform: translateY(-3px); }
.btn--block { width: 100%; }
.btn--lg { padding: 18px 38px; font-size: 16px; }

.topbar {
    background: linear-gradient(90deg, var(--maroon), var(--red-2));
    color: #ffe9ea; font-size: 13px;
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; min-height: 40px; }
.topbar__msg { font-weight: 500; letter-spacing: 0.01em; }
.topbar__phone { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: #fff; }
.topbar__phone:hover { color: var(--gold); }

.header {
    position: sticky; top: 0; z-index: 90; background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(14px); border-bottom: 1px solid var(--line);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}
.header.is-scrolled { box-shadow: 0 10px 30px rgba(28, 17, 19, 0.08); background: rgba(255, 255, 255, 0.96); }
.header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 20px; }
.brand__logo { height: 50px; width: auto; }
.nav { display: flex; align-items: center; gap: 6px; }
.nav__link { padding: 10px 16px; font-weight: 600; font-size: 15px; color: var(--ink-soft); border-radius: 30px; transition: color 0.2s ease, background 0.2s ease; }
.nav__link:hover { color: var(--red); }
.nav__link.is-active { color: var(--red); background: rgba(237, 28, 36, 0.08); }
.nav__cta { margin-left: 12px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 4px; transition: transform 0.3s var(--ease), opacity 0.2s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.hero {
    position: relative; overflow: hidden;
    background: radial-gradient(120% 130% at 85% 0%, #ff3b43 0%, var(--red) 32%, var(--red-2) 62%, var(--maroon) 100%);
    color: #fff; padding: 70px 0 90px;
}
.hero::before {
    content: ""; position: absolute; inset: 0;
    background-image: radial-gradient(circle at 18% 28%, rgba(255, 255, 255, 0.16) 0 2px, transparent 3px),
        radial-gradient(circle at 72% 12%, rgba(255, 255, 255, 0.1) 0 3px, transparent 4px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.08) 0 2px, transparent 3px);
    background-size: 240px 240px, 320px 320px, 200px 200px; opacity: 0.7; pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 40px; align-items: center; }
.hero__eyebrow {
    display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px; border-radius: 50px;
    background: rgba(255, 255, 255, 0.14); border: 1px solid rgba(255, 255, 255, 0.28);
    font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 22px;
}
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(255, 200, 61, 0.3); }
.hero h1 { font-size: clamp(2.6rem, 6.2vw, 5rem); margin-bottom: 20px; text-shadow: 0 8px 30px rgba(0, 0, 0, 0.18); }
.hero h1 .swash { color: var(--gold); display: block; }
.hero__lead { font-size: clamp(1rem, 1.4vw, 1.18rem); max-width: 520px; color: rgba(255, 255, 255, 0.92); margin-bottom: 32px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 26px; }
.hero__trust div { display: flex; flex-direction: column; }
.hero__trust b { font-family: 'Anton', sans-serif; font-size: 1.7rem; line-height: 1; color: var(--gold); }
.hero__trust span { font-size: 12.5px; letter-spacing: 0.03em; color: rgba(255, 255, 255, 0.82); text-transform: uppercase; }

.hero__visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 420px; }
.glow { position: absolute; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 200, 61, 0.5), transparent 65%); filter: blur(8px); }
.can { position: relative; width: 168px; height: 350px; border-radius: 24px / 30px; transform: rotate(-8deg); z-index: 2; filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.35)); animation: floatY 5s ease-in-out infinite; }
.can__body { position: absolute; inset: 0; border-radius: 22px / 26px; background: linear-gradient(100deg, #a30f16 0%, var(--red) 26%, #ff5a61 42%, var(--red) 60%, #9d0d14 100%); overflow: hidden; }
.can__body::after { content: ""; position: absolute; top: 0; left: 26%; width: 16px; height: 100%; background: rgba(255, 255, 255, 0.4); filter: blur(4px); }
.can__top { position: absolute; top: -9px; left: 6px; right: 6px; height: 26px; border-radius: 50%; background: linear-gradient(180deg, #f4f4f6, #b9bcc4 55%, #8c9098); box-shadow: inset 0 -3px 6px rgba(0, 0, 0, 0.25); z-index: 3; }
.can__bottom { position: absolute; bottom: -7px; left: 8px; right: 8px; height: 20px; border-radius: 50%; background: linear-gradient(180deg, #8c9098, #b9bcc4); z-index: 1; }
.can__label { position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%); background: #fff; padding: 22px 10px; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05); z-index: 4; }
.can__label img { height: 56px; width: auto; }
.bubble { position: absolute; border-radius: 50%; background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.25)); z-index: 3; animation: rise 6s ease-in infinite; }
.bubble.b1 { width: 18px; height: 18px; left: 22%; bottom: 14%; animation-delay: 0.2s; }
.bubble.b2 { width: 11px; height: 11px; left: 64%; bottom: 8%; animation-delay: 1.2s; }
.bubble.b3 { width: 26px; height: 26px; left: 76%; bottom: 24%; animation-delay: 0.6s; }
.bubble.b4 { width: 9px; height: 9px; left: 14%; bottom: 30%; animation-delay: 2s; }
.bubble.b5 { width: 15px; height: 15px; left: 50%; bottom: 4%; animation-delay: 1.6s; }
.hero__pricetag { position: absolute; top: 8%; right: 4%; background: var(--gold); color: #3b2400; border-radius: 16px; padding: 12px 16px; font-weight: 800; box-shadow: var(--shadow-md); transform: rotate(6deg); z-index: 5; animation: floatY 4s ease-in-out infinite; }
.hero__pricetag small { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.05em; opacity: 0.8; }
.hero__pricetag b { font-size: 1.25rem; }

@keyframes floatY { 0%, 100% { transform: translateY(0) rotate(-8deg); } 50% { transform: translateY(-16px) rotate(-8deg); } }
@keyframes rise { 0% { transform: translateY(0) scale(1); opacity: 0; } 20% { opacity: 1; } 100% { transform: translateY(-180px) scale(0.4); opacity: 0; } }

.marquee { background: var(--ink); color: #fff; overflow: hidden; padding: 16px 0; }
.marquee__track { display: flex; gap: 56px; white-space: nowrap; width: max-content; animation: slide 26s linear infinite; }
.marquee__track span { font-family: 'Anton', sans-serif; font-size: 1.15rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255, 255, 255, 0.62); display: inline-flex; align-items: center; gap: 56px; }
.marquee__track span::after { content: "•"; color: var(--gold); }
@keyframes slide { to { transform: translateX(-50%); } }

.section { padding: 92px 0; }
.section--cream { background: var(--cream); }
.section--ink { background: var(--ink); color: #fff; }
.section__head { max-width: 660px; margin: 0 auto 56px; text-align: center; }
.section__head.left { margin-left: 0; text-align: left; }
.eyebrow { display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.section--ink .eyebrow { color: var(--gold); }
.section__title { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 16px; }
.section__sub { color: var(--muted); font-size: 1.05rem; }
.section--ink .section__sub { color: rgba(255, 255, 255, 0.74); }

.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.why-card__icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(237, 28, 36, 0.12), rgba(146, 39, 143, 0.12)); color: var(--red); margin-bottom: 18px; }
.why-card__icon svg { width: 28px; height: 28px; }
.why-card h3 { font-size: 1.18rem; margin-bottom: 9px; }
.why-card p { color: var(--muted); font-size: 0.95rem; }

.models { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.model { position: relative; background: var(--paper); border-radius: var(--radius-lg); padding: 36px 30px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); overflow: hidden; }
.model::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: linear-gradient(90deg, var(--red), var(--gold)); }
.model:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.model.is-featured { background: linear-gradient(170deg, #2a1417, var(--maroon)); color: #fff; border-color: transparent; }
.model__tag { position: absolute; top: 22px; right: 22px; background: var(--gold); color: #3b2400; font-size: 11px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; padding: 6px 12px; border-radius: 30px; }
.model__num { font-family: 'Anton', sans-serif; font-size: 1rem; color: var(--red); letter-spacing: 0.1em; }
.model.is-featured .model__num { color: var(--gold); }
.model h3 { font-size: 1.6rem; margin: 6px 0 10px; }
.model__price { font-size: 0.95rem; font-weight: 600; color: var(--muted); margin-bottom: 20px; }
.model.is-featured .model__price { color: rgba(255, 255, 255, 0.8); }
.model__price b { font-family: 'Anton', sans-serif; font-size: 1.6rem; color: var(--ink); display: block; font-weight: 400; }
.model.is-featured .model__price b { color: #fff; }
.model ul { list-style: none; margin-bottom: 28px; display: grid; gap: 12px; }
.model li { display: flex; gap: 11px; font-size: 0.95rem; align-items: flex-start; }
.model li svg { flex: 0 0 auto; width: 20px; height: 20px; color: var(--red); margin-top: 2px; }
.model.is-featured li svg { color: var(--gold); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 34px 24px; border-radius: var(--radius); background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.12); }
.step__n { font-family: 'Anton', sans-serif; font-size: 2.6rem; line-height: 1; color: var(--gold); opacity: 0.85; }
.step h3 { font-size: 1.18rem; margin: 12px 0 8px; }
.step p { color: rgba(255, 255, 255, 0.72); font-size: 0.93rem; }
.step__line { position: absolute; top: 48px; right: -13px; color: rgba(255, 200, 61, 0.5); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split__media { position: relative; border-radius: var(--radius-lg); background: linear-gradient(160deg, var(--red), var(--maroon)); min-height: 420px; overflow: hidden; box-shadow: var(--shadow-lg); display: flex; align-items: center; justify-content: center; }
.split__media .can { animation: floatY 5s ease-in-out infinite; }
.split__media::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.12) 0 3px, transparent 4px), radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.1) 0 2px, transparent 3px); background-size: 160px 160px, 200px 200px; }
.benefits { list-style: none; display: grid; gap: 18px; }
.benefits li { display: flex; gap: 16px; align-items: flex-start; }
.benefits .bx { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 13px; background: linear-gradient(135deg, var(--red), var(--magenta)); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); }
.benefits .bx svg { width: 22px; height: 22px; }
.benefits h4 { font-size: 1.1rem; margin-bottom: 3px; }
.benefits p { color: var(--muted); font-size: 0.95rem; }

.stats-band { background: linear-gradient(120deg, var(--magenta), var(--red)); color: #fff; padding: 60px 0; }
.stats-band__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.stat b { display: block; font-family: 'Anton', sans-serif; font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1; }
.stat span { font-size: 0.95rem; letter-spacing: 0.02em; color: rgba(255, 255, 255, 0.85); }

.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tcard { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.tcard__stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; }
.tcard p { font-size: 1rem; color: var(--ink-soft); margin-bottom: 20px; }
.tcard__who { display: flex; align-items: center; gap: 13px; }
.tcard__av { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--red), var(--maroon)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-family: 'Anton', sans-serif; }
.tcard__who b { font-size: 0.98rem; }
.tcard__who span { font-size: 0.85rem; color: var(--muted); display: block; }

.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq__item { border: 1px solid var(--line); border-radius: 14px; background: var(--paper); overflow: hidden; transition: box-shadow 0.3s ease; }
.faq__item.is-open { box-shadow: var(--shadow-sm); }
.faq__q { width: 100%; text-align: left; padding: 20px 24px; font-weight: 600; font-size: 1.05rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq__q span { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; background: rgba(237, 28, 36, 0.1); color: var(--red); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; transition: transform 0.3s var(--ease); }
.faq__item.is-open .faq__q span { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq__a p { padding: 0 24px 22px; color: var(--muted); }

.cta-band { position: relative; overflow: hidden; background: radial-gradient(120% 140% at 10% 10%, #ff3b43, var(--red) 40%, var(--maroon)); color: #fff; border-radius: var(--radius-lg); padding: 64px 48px; text-align: center; box-shadow: var(--shadow-lg); }
.cta-band::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.14) 0 4px, transparent 5px), radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0 3px, transparent 4px); background-size: 220px 220px, 180px 180px; }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: 14px; }
.cta-band p { max-width: 560px; margin: 0 auto 28px; color: rgba(255, 255, 255, 0.9); }
.cta-band__btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.footer { background: #160b0d; color: rgba(255, 255, 255, 0.74); padding: 70px 0 30px; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.footer__logo { height: 52px; margin-bottom: 18px; }
.footer__tag { font-size: 0.95rem; max-width: 320px; margin-bottom: 20px; }
.footer__contact { display: flex; flex-direction: column; gap: 7px; }
.footer__contact a { font-weight: 600; color: #fff; }
.footer__contact a:hover { color: var(--gold); }
.footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer__col a { display: block; padding: 5px 0; font-size: 0.95rem; transition: color 0.2s ease, transform 0.2s ease; }
.footer__col a:hover { color: var(--gold); transform: translateX(4px); }
.footer__bottom { display: flex; flex-direction: column; gap: 8px; padding-top: 26px; font-size: 0.85rem; }
.footer__legal { color: rgba(255, 255, 255, 0.42); max-width: 760px; }

.floating-call { position: fixed; right: 18px; bottom: 18px; z-index: 80; display: inline-flex; align-items: center; gap: 9px; background: linear-gradient(135deg, #27c24c, #1ba23c); color: #fff; padding: 13px 20px; border-radius: 60px; font-weight: 700; box-shadow: 0 14px 30px rgba(27, 162, 60, 0.4); transition: transform 0.3s var(--ease); }
.floating-call:hover { transform: translateY(-3px); }
.floating-call::before { content: ""; position: absolute; inset: 0; border-radius: 60px; border: 2px solid rgba(39, 194, 76, 0.6); animation: ping 1.8s ease-out infinite; }
@keyframes ping { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(1.35); opacity: 0; } }

.modal { position: fixed; inset: 0; z-index: 120; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity 0.35s ease, visibility 0.35s ease; }
.modal.is-open { opacity: 1; visibility: visible; }
.modal__overlay { position: absolute; inset: 0; background: rgba(22, 8, 10, 0.7); backdrop-filter: blur(4px); }
.modal__dialog { position: relative; z-index: 2; width: 100%; max-width: 560px; max-height: 92vh; overflow-y: auto; background: var(--paper); border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow-lg); transform: translateY(28px) scale(0.97); opacity: 0; transition: transform 0.4s var(--ease), opacity 0.4s var(--ease); }
.modal.is-open .modal__dialog { transform: translateY(0) scale(1); opacity: 1; }
.modal__close { position: absolute; top: 16px; right: 18px; width: 38px; height: 38px; border-radius: 50%; background: var(--cream); color: var(--ink); font-size: 1.5rem; line-height: 1; display: flex; align-items: center; justify-content: center; transition: background 0.2s ease, transform 0.2s ease; }
.modal__close:hover { background: var(--red); color: #fff; transform: rotate(90deg); }
.modal__head { text-align: center; margin-bottom: 24px; }
.modal__badge { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--red); background: rgba(237, 28, 36, 0.1); padding: 6px 14px; border-radius: 30px; margin-bottom: 14px; }
.modal__head h2 { font-size: 1.7rem; margin-bottom: 8px; }
.modal__head h2 span { color: var(--red); }
.modal__head p { color: var(--muted); font-size: 0.95rem; }

.aform__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink-soft); }
.field input, .field select {
    width: 100%; padding: 13px 15px; border: 1.6px solid var(--line); border-radius: 12px;
    font-family: inherit; font-size: 15px; color: var(--ink); background: #fff; transition: border 0.2s ease, box-shadow 0.2s ease;
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%237c7173' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.field input:focus, .field select:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 4px rgba(237, 28, 36, 0.12); }
.field input::placeholder { color: #b3a9ab; }
.aform__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.aform__submit { margin-top: 20px; }
.aform__spinner { display: none; width: 18px; height: 18px; border: 2.5px solid rgba(59, 36, 0, 0.3); border-top-color: #3b2400; border-radius: 50%; animation: spin 0.7s linear infinite; }
.aform.is-loading .aform__spinner { display: inline-block; }
.aform.is-loading .aform__submit-text { opacity: 0.7; }
@keyframes spin { to { transform: rotate(360deg); } }
.aform__note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; }
.aform__status { margin-top: 14px; font-size: 0.92rem; font-weight: 500; text-align: center; padding: 0; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; border-radius: 12px; }
.aform__status.show { max-height: 200px; padding: 13px 16px; }
.aform__status.ok { background: rgba(39, 162, 60, 0.12); color: #1ba23c; }
.aform__status.err { background: rgba(237, 28, 36, 0.1); color: var(--red-2); }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

@media (max-width: 980px) {
    .hero__inner { grid-template-columns: 1fr; }
    .hero__visual { min-height: 360px; order: -1; }
    .why-grid, .steps, .stats-band__grid { grid-template-columns: repeat(2, 1fr); }
    .models, .tcards { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .split { grid-template-columns: 1fr; gap: 36px; }
    .split__media { min-height: 340px; }
    .step__line { display: none; }
}

@media (max-width: 760px) {
    .topbar__msg { display: none; }
    .topbar__inner { justify-content: center; }
    .nav {
        position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); flex-direction: column; align-items: stretch;
        background: #fff; padding: 96px 26px 40px; gap: 4px; transform: translateX(100%);
        transition: transform 0.4s var(--ease); box-shadow: var(--shadow-lg); z-index: 95;
    }
    .nav.is-open { transform: translateX(0); }
    .nav__link { padding: 14px 16px; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
    .nav__cta { margin: 16px 0 0; }
    .nav-toggle { display: flex; z-index: 96; }
    .section { padding: 64px 0; }
    .why-grid, .steps, .stats-band__grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .cta-band { padding: 48px 24px; }
    .footer__top { grid-template-columns: 1fr 1fr; gap: 30px; }
    .modal__dialog { padding: 30px 22px; }
    .aform__grid { grid-template-columns: 1fr; }
    .floating-call span { display: none; }
    .floating-call { padding: 14px; }
}

@media (max-width: 460px) {
    .why-grid, .steps, .stats-band__grid { grid-template-columns: 1fr; }
    .hero__trust { gap: 18px; }
    .footer__top { grid-template-columns: 1fr; }
}

.subhero { position: relative; overflow: hidden; background: radial-gradient(120% 170% at 82% 0%, #ff3b43, var(--red) 38%, var(--red-2) 66%, var(--maroon)); color: #fff; padding: 66px 0 76px; text-align: center; }
.subhero::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 16% 30%, rgba(255, 255, 255, 0.14) 0 2px, transparent 3px), radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.1) 0 3px, transparent 4px), radial-gradient(circle at 60% 78%, rgba(255, 255, 255, 0.08) 0 2px, transparent 3px); background-size: 230px 230px, 300px 300px, 200px 200px; opacity: 0.7; pointer-events: none; }
.subhero__inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
.subhero .eyebrow { color: var(--gold); }
.subhero h1 { font-size: clamp(2.2rem, 5.4vw, 3.7rem); margin-bottom: 16px; text-shadow: 0 8px 30px rgba(0, 0, 0, 0.18); }
.subhero h1 span { color: var(--gold); }
.subhero p { color: rgba(255, 255, 255, 0.92); font-size: 1.1rem; max-width: 620px; margin: 0 auto; }
.breadcrumb { display: flex; gap: 9px; justify-content: center; align-items: center; margin-top: 24px; font-size: 0.85rem; color: rgba(255, 255, 255, 0.78); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-style: normal; opacity: 0.55; }
.breadcrumb b { color: #fff; font-weight: 600; }

.lead-copy p { font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 18px; }
.lead-copy p:last-child { margin-bottom: 0; }
.lead-copy strong { color: var(--ink); }
.split__badge { position: absolute; bottom: 22px; left: 22px; right: 22px; background: rgba(255, 255, 255, 0.94); border-radius: 16px; padding: 16px 20px; display: flex; align-items: center; gap: 14px; box-shadow: var(--shadow-md); z-index: 3; }
.split__badge b { font-family: 'Anton', sans-serif; font-size: 2rem; color: var(--red); line-height: 1; }
.split__badge span { font-size: 0.88rem; color: var(--ink-soft); }

.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.duo__card { position: relative; overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 42px 38px; box-shadow: var(--shadow-sm); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.duo__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.duo__card::before { content: ""; position: absolute; width: 150px; height: 150px; right: -46px; top: -46px; border-radius: 50%; background: linear-gradient(135deg, rgba(237, 28, 36, 0.1), rgba(146, 39, 143, 0.1)); }
.duo__icon { position: relative; z-index: 1; width: 62px; height: 62px; border-radius: 17px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--red), var(--maroon)); color: #fff; margin-bottom: 22px; box-shadow: var(--shadow-sm); }
.duo__icon svg { width: 30px; height: 30px; }
.duo__card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.duo__card p { color: var(--muted); }

.timeline { max-width: 760px; margin: 0 auto; }
.tl-item { position: relative; padding-left: 38px; padding-bottom: 34px; border-left: 2px solid rgba(237, 28, 36, 0.22); margin-left: 8px; }
.tl-item:last-child { border-left-color: transparent; padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: -9px; top: 3px; width: 16px; height: 16px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(237, 28, 36, 0.16); }
.tl-item .yr { font-family: 'Anton', sans-serif; color: var(--red); font-size: 0.98rem; letter-spacing: 0.05em; }
.tl-item h4 { font-size: 1.2rem; margin: 4px 0 7px; }
.tl-item p { color: var(--muted); font-size: 0.97rem; }

@media (max-width: 760px) {
    .duo { grid-template-columns: 1fr; }
    .duo__card { padding: 34px 26px; }
    .split__badge { position: static; margin: 18px; }
}

.contact-wrap { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 44px; align-items: start; }
.contact-info > .eyebrow { margin-bottom: 14px; }
.contact-info > h2 { margin-bottom: 12px; }
.contact-info > p.section__sub { margin-bottom: 16px; }
.contact-method { display: flex; gap: 16px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-method:last-of-type { border-bottom: none; }
.contact-method__icon { width: 56px; height: 56px; border-radius: 16px; flex: 0 0 auto; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--red), var(--maroon)); color: #fff; box-shadow: var(--shadow-sm); }
.contact-method__icon svg { width: 25px; height: 25px; }
.contact-method h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.09em; color: var(--muted); margin-bottom: 4px; font-weight: 700; }
.contact-method a, .contact-method p { font-size: 1.12rem; font-weight: 600; color: var(--ink); }
.contact-method a:hover { color: var(--red); }
.contact-highlight { margin-top: 28px; background: linear-gradient(140deg, #2a1417, var(--maroon)); color: #fff; border-radius: var(--radius); padding: 28px 30px; position: relative; overflow: hidden; }
.contact-highlight::after { content: ""; position: absolute; width: 130px; height: 130px; right: -40px; bottom: -40px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 200, 61, 0.4), transparent 70%); }
.contact-highlight b { font-family: 'Anton', sans-serif; font-size: 1.5rem; display: block; margin-bottom: 6px; }
.contact-highlight span { color: rgba(255, 255, 255, 0.84); font-size: 0.97rem; }

.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); }
.form-card__head { margin-bottom: 24px; }
.form-card__head .eyebrow { margin-bottom: 8px; }
.form-card__head h3 { font-size: 1.55rem; margin-bottom: 8px; }
.form-card__head p { color: var(--muted); font-size: 0.97rem; }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); line-height: 0; }
.map-wrap iframe { width: 100%; height: 360px; border: 0; }

.apply-checklist { list-style: none; display: grid; gap: 15px; margin: 26px 0; }
.apply-checklist li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; color: var(--ink-soft); }
.apply-checklist li svg { flex: 0 0 auto; width: 24px; height: 24px; color: #1ba23c; margin-top: 1px; }
.apply-info { position: sticky; top: 100px; }
.apply-models { display: grid; gap: 12px; margin: 24px 0 4px; }
.apply-model-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 18px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); transition: border 0.2s ease, transform 0.2s ease; }
.apply-model-row:hover { border-color: var(--red); transform: translateX(4px); }
.apply-model-row b { font-size: 1rem; }
.apply-model-row span { font-family: 'Anton', sans-serif; color: var(--red); font-size: 0.95rem; white-space: nowrap; }

@media (max-width: 900px) {
    .apply-info { position: static; }
}

@media (max-width: 900px) {
    .contact-wrap { grid-template-columns: 1fr; gap: 32px; }
    .form-card { padding: 32px 24px; }
}

.section--tight { padding-top: 0; }
.footer__addr { display: block; font-size: 0.9rem; margin-top: 6px; line-height: 1.5; }
.contact-method p.addr { font-weight: 500; font-size: 1rem; line-height: 1.5; color: var(--ink-soft); }

.subhero__meta { display: inline-block; margin-top: 18px; font-size: 0.85rem; color: rgba(255, 255, 255, 0.78); background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.22); padding: 7px 16px; border-radius: 40px; }
.legal-doc { max-width: 870px; margin: 0 auto; }
.legal-intro { background: var(--cream); border: 1px solid var(--line); border-left: 4px solid var(--red); border-radius: 14px; padding: 22px 26px; margin-bottom: 38px; color: var(--ink-soft); }
.legal-intro strong { color: var(--ink); }
.legal-doc h2 { font-size: 1.42rem; margin: 42px 0 14px; scroll-margin-top: 100px; }
.legal-doc h2:first-of-type { margin-top: 0; }
.legal-doc h3 { font-size: 1.12rem; margin: 24px 0 8px; }
.legal-doc p { color: var(--ink-soft); margin-bottom: 14px; }
.legal-doc ul { margin: 0 0 18px; padding-left: 22px; color: var(--ink-soft); }
.legal-doc li { margin-bottom: 9px; }
.legal-doc a { color: var(--red); font-weight: 600; }
.legal-doc a:hover { text-decoration: underline; }
.legal-contactbox { margin-top: 40px; background: linear-gradient(140deg, #2a1417, var(--maroon)); color: #fff; border-radius: var(--radius); padding: 30px 32px; }
.legal-contactbox h3 { color: #fff; margin: 0 0 12px; font-size: 1.25rem; }
.legal-contactbox p { color: rgba(255, 255, 255, 0.86); margin-bottom: 6px; }
.legal-contactbox a { color: var(--gold); font-weight: 600; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    html { scroll-behavior: auto; }
}
