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

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: #0e0e0e;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --gold: #c9a96e;
  --gold-light: #e2c080;
  --gold-hover: #e2c080;
  --gold-10: rgba(201,169,110,0.10);
  --gold-20: rgba(201,169,110,0.20);
  --gold-30: rgba(201,169,110,0.30);
  --border-gold: rgba(201,169,110,0.30);
  --dark: #0e0e0e;
  --dark2: #161616;
  --dark3: #1a1a1a;
  --dark4: #111;
  --white: #ffffff;
  --white-65: rgba(255,255,255,0.65);
  --white-40: rgba(255,255,255,0.40);
  --white-10: rgba(255,255,255,0.10);
  --radius: 8px;
  --max-w: 1240px;
}

/* ===== CONTAINER ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--white-10);
}
.site-header__inner {
  display: flex;
  flex-wrap: wrap;         /* allows nav to wrap to row 2 */
  align-items: center;
  column-gap: 20px;
  row-gap: 0;
  height: auto;            /* grows to fit 2 rows */
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  order: 1;
  padding: 12px 0;         /* makes row 1 = 48px img + 24px padding = 72px */
}
.site-header__logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 6px;
}
.site-header__logo-name {
  display: none;
}
.site-header__logo-sub {
  font-size: 0.7rem;
  color: var(--white-40);
  margin-top: 2px;
}
.site-header__contacts {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.82rem;
  order: 2;
  flex: 1;                /* fills space between logo and CTA */
  justify-content: center;
}
.site-header__contacts a {
  color: var(--white-65);
  transition: color 0.2s;
}
.site-header__contacts a:hover { color: var(--gold); }
.email-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.3;
}
.site-header__contacts .phone {
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
  white-space: nowrap; /* prevent phone number from wrapping */
}
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 1.15rem;
  order: 10;              /* row 2: after all row-1 items */
  flex-basis: 100%;       /* forces nav to its own row */
  height: 44px;
  border-top: 1px solid var(--white-10);
}
.site-header__nav a {
  color: var(--white-65);
  transition: color 0.2s;
}
.site-header__nav a:hover { color: var(--gold); }
.btn-cta {
  display: inline-flex;
  align-items: center;
  background: var(--gold);
  color: #000;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 11px 22px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}
.btn-cta:hover { background: var(--gold-hover); transform: translateY(-1px); }
.btn-cta:active { transform: translateY(0); }
/* Header row-1 order for CTA and burger */
.site-header .btn-cta { order: 3; }
.burger { order: 4; margin-left: auto; }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  padding-top: 116px; /* 2-row header: 72px top bar + 44px nav bar */
}
/* WordPress admin bar (32px on desktop, 46px on mobile) shifts html down,
   so we subtract that height to keep hero within the viewport */
.admin-bar .hero {
  height: calc(100vh - 32px);
}
@media screen and (max-width: 782px) {
  .admin-bar .hero {
    height: calc(100vh - 46px);
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,10,10,0.96) 0%,
    rgba(10,10,10,0.88) 45%,
    rgba(10,10,10,0.72) 70%,
    rgba(10,10,10,0.82) 100%
  );
}

.hero__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 380px 300px;
  gap: 48px;
  align-items: start;
  padding-top: 60px;
  padding-bottom: 120px;
}

/* Hero Left */
.hero__breadcrumb {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 500;
}

.hero__title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}
.hero__title-accent { color: var(--gold); }

.hero__subtitle {
  font-size: 0.97rem;
  color: var(--white-65);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero__nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero__nav-link {
  font-size: 0.82rem;
  color: var(--white-65);
  border-bottom: 1px solid var(--gold-30);
  padding-bottom: 2px;
  transition: color 0.25s ease, border-color 0.25s ease;
  font-weight: 500;
}
.hero__nav-link:hover { color: var(--gold); border-color: var(--gold); }

/* Hero Form Card */
.hero__form-wrap { z-index: 1; }
.hero__form-card {
  background: rgba(22,22,22,0.95);
  border: 1px solid var(--gold-30);
  border-radius: 8px;
  padding: 32px 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero__form-header { margin-bottom: 24px; }
.hero__form-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-10);
  border: 1px solid var(--gold-30);
  padding: 4px 12px;
  border-radius: 40px;
  margin-bottom: 12px;
}
.hero__form-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--white);
}
.hero__form-title-accent { color: var(--gold); }

/* Hero Benefits */
.hero__benefits { padding-top: 8px; min-width: 0; overflow: hidden; }
/* Prevent grid items from expanding beyond their declared track width */
.hero__container > * { min-width: 0; }
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.benefits-list__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--white-10);
  font-size: 0.88rem;
  color: var(--white-65);
  line-height: 1.5;
  transition: color 0.25s ease;
}
.benefits-list__item:first-child { padding-top: 0; }
.benefits-list__item:last-child { border-bottom: none; }
.benefits-list__item:hover { color: var(--white); }

.benefits-list__icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold-10);
  border: 1px solid var(--gold-30);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* Stats bar */
.hero__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(22,18,10,0.94);
  border-top: 1px solid var(--border-gold);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.stats-row {
  display: flex;
  align-items: stretch;
  min-height: 80px;
}

.stats-row__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 24px;
  gap: 4px;
}

.stats-row__item--accent {
  background: rgba(201,169,110,0.12);
}

.stats-row__num {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stats-row__item--accent .stats-row__num { color: var(--gold-light); }

.stats-row__label {
  font-size: 0.75rem;
  color: var(--white-65);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.stats-row__divider {
  width: 1px;
  background: var(--white-10);
  flex-shrink: 0;
  align-self: stretch;
  margin: 16px 0;
}

/* ===== SECTION BASE ===== */
section { padding: 90px 0; }
.section-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 1rem;
  color: var(--white-65);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.ben-body {
  max-width: 820px;
  margin-bottom: 40px;
}
.ben-body-text {
  font-size: 0.95rem;
  color: var(--white-65);
  line-height: 1.8;
  margin-bottom: 18px;
}
.ben-body-text:last-child { margin-bottom: 0; }

/* flat benefits list */
.ben-flat-list {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ben-flat-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--white-65);
  line-height: 1.6;
}
.ben-flat-icon {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1rem;
  margin-top: 2px;
}

/* highlighted block */
.ben-highlight-box {
  max-width: 820px;
  background: linear-gradient(135deg, rgba(201,169,110,0.12) 0%, rgba(201,169,110,0.04) 100%);
  border: 1px solid var(--gold-20);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ben-highlight-star {
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 2px;
}
.ben-highlight-box p {
  margin: 0;
  font-size: 0.97rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.65;
}

/* ===== BENEFITS SECTION (Реальная защита) =====  */
.benefits-section { background: var(--dark2); }
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.benefits-left {}
.benefits-left .benefit-block {
  border: 1px solid var(--gold-20);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
  background: var(--dark3);
}
.benefits-left .benefit-block-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}
.benefits-left .benefit-block-text {
  font-size: 0.88rem;
  color: var(--white-65);
  line-height: 1.65;
}
.benefits-right {}
.benefits-list-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--white-10);
  font-size: 0.9rem;
  color: var(--white-65);
  align-items: flex-start;
}
.benefits-list-item:last-child { border-bottom: none; }
.benefits-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.7rem;
  color: var(--gold);
  width: 28px;
  flex-shrink: 0;
  padding-top: 3px;
}

/* ===== SERVICES ===== */
.services-section { background: var(--dark); }
.services-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--white-10);
  overflow-x: auto;
}
.services-tab {
  padding: 14px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white-40);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.services-tab.active, .services-tab:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.services-panel { display: none; }
.services-panel.active { display: block; }
.services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.services-item {
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--white-10);
  border-right: 1px solid var(--white-10);
  font-size: 0.86rem;
  color: var(--white-65);
  line-height: 1.5;
}
.services-item:nth-child(2n) { border-right: none; }
.services-icon {
  width: 24px;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1rem;
  margin-top: 1px;
}

/* ===== OFFERS ===== */
.offers-section { background: var(--dark2); }
.offers-banner {
  border: 1px solid var(--gold-30);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(201,169,110,0.08) 0%, rgba(22,22,22,0.95) 100%);
  padding: 40px;
}
.offers-banner-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}
.offers-list { margin-bottom: 28px; }
.offers-item {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gold-20);
  font-size: 0.9rem;
  color: var(--white-65);
}
.offers-item:last-child { border-bottom: none; }
.offers-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ===== ABOUT ===== */
.about-section { background: var(--dark); }

/* About layout: card + stats side by side */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 28px;
  align-items: start;
  margin-bottom: 40px;
}
.about-body {
  background: var(--dark3);
  border: 1px solid var(--gold-20);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 32px 36px;
}
.about-para {
  font-size: 0.92rem;
  color: var(--white-65);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-para:last-of-type { margin-bottom: 0; }
.about-list {
  list-style: none;
  margin: 16px 0 20px 0;
  padding: 12px 16px;
  background: rgba(201,169,110,0.05);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
}
.about-list-icon { flex-shrink: 0; margin-top: 1px; }
.about-footer-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.65;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--gold-20);
}

/* About stats — vertical sidebar card */
.about-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-stat {
  border: 1px solid var(--gold-20);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--dark3);
  text-align: center;
}
.about-stat-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.about-stat-label {
  font-size: 0.78rem;
  color: var(--white-40);
  text-align: center;
}

/* ===== STEPS ===== */
.steps-section { background: var(--dark2); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--white-10);
}
.step-item {
  background: var(--dark2);
  padding: 32px 28px;
  position: relative;
}
.step-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold-10);
  line-height: 1;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-20) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.step-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.35;
}
.step-text {
  font-size: 0.83rem;
  color: var(--white-40);
  line-height: 1.6;
}

/* ===== CONTACTS ===== */
.contacts-section { background: var(--dark); }
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
}
.contact-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--white-10);
  align-items: flex-start;
}
.contact-item:last-child { border-bottom: none; }
.contact-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold-30);
  border-radius: var(--radius);
  background: var(--gold-10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white-40);
  margin-bottom: 4px;
}
.contact-value {
  font-size: 0.98rem;
  font-weight: 600;
  color: #fff;
}
.contact-value a { color: #fff; transition: color 0.2s; }
.contact-value a:hover { color: var(--gold); }

/* ===== FORM ===== */
.form-field {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 12px;
}
.form-field:focus { border-color: var(--gold); }
.form-field::placeholder { color: var(--white-40); }
.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.72rem;
  color: var(--white-40);
  line-height: 1.5;
  margin-bottom: 14px;
}
.form-check input[type=checkbox] { accent-color: var(--gold); margin-top: 2px; flex-shrink: 0; }

/* ===== FOOTER ===== */
.site-footer {
  background: #080808;
  border-top: 1px solid var(--white-10);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col p, .footer-col a, .footer-col li {
  font-size: 0.83rem;
  color: var(--white-40);
  line-height: 1.7;
}
.footer-col a:hover { color: var(--gold); }
.footer-col ul { display: flex; flex-direction: column; gap: 6px; }
.footer-bottom {
  border-top: 1px solid var(--white-10);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--white-40);
}
.footer-legal {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.22);
  line-height: 1.5;
}
.footer-inn {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.18);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 560px;
  z-index: 9999;
  background: #1a1a1a;
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.cookie-banner p {
  font-size: 0.8rem;
  color: var(--white-65);
  line-height: 1.55;
  flex: 1;
}
.cookie-banner p a { color: var(--gold); text-decoration: underline; }
.cookie-accept {
  padding: 10px 20px;
  background: var(--gold);
  color: #000;
  font-size: 0.78rem;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.cookie-accept:hover { background: var(--gold-hover); }
.cookie-hidden { display: none !important; }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: #1a1a1a;
  border: 1px solid var(--gold-30);
  border-radius: var(--radius);
  padding: 36px;
  max-width: 480px;
  width: 100%;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--white-40);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.2s;
}
.modal-close:hover { color: #fff; }
.modal-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.4;
}
.modal-title span { color: var(--gold); }

/* ===== MOBILE MENU ===== */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(10,10,10,0.98);
  border-bottom: 1px solid var(--white-10);
  padding: 20px 24px;
  z-index: 999;
}
.mobile-menu.open { display: flex; flex-direction: column; gap: 16px; }
.mobile-menu a {
  font-size: 1rem;
  color: var(--white-65);
  padding: 8px 0;
  border-bottom: 1px solid var(--white-10);
}
.mobile-menu a:hover { color: var(--gold); }

/* ===== FORM SUCCESS ===== */
.form-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.form-success.show { display: block; }
.form-success-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.form-success-title {
  font-family: 'Unbounded', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.form-success-text {
  font-size: 0.85rem;
  color: var(--white-65);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1280px) {
  .hero__container { grid-template-columns: 1fr 360px 260px; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  /* Header: collapse to single row, show burger */
  .site-header__nav { display: none; }
  .site-header__contacts { display: none; }
  .site-header .btn-cta { display: none; }
  .burger { display: flex; }

  /*
   * Mobile hero: height determined by content only.
   * Stats flow naturally after the form — no absolute positioning.
   * hero__bg (position:absolute; inset:0) stretches to cover the full
   * hero height including stats, so no bleed into the next section.
   */
  .hero {
    height: auto;
    min-height: unset;
    overflow: hidden;
    padding-top: 80px; /* single-row header = 72px + 8px breathing */
  }
  .admin-bar .hero { height: auto; min-height: unset; }

  .hero__container {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 24px;
    padding-bottom: 0; /* stats start immediately after form, no gap */
  }
  .hero__benefits { display: none; }

  /* Stats: normal flow, right after the form card */
  .hero__stats {
    position: relative;
    bottom: -60px;
    left: auto;
    right: auto;
  }
  .stats-row { flex-wrap: wrap; }
  .stats-row__item { flex: 1 1 45%; min-width: 140px; }
  .stats-row__divider { display: none; }
}

@media (max-width: 800px) {
  section { padding: 60px 0; }
  .benefits-grid { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .about-stats { flex-direction: row; flex-wrap: wrap; }
  .about-stat { flex: 1 1 45%; }
  .contacts-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .services-list { grid-template-columns: 1fr; }
  .services-item { border-right: none !important; }
  .footer-grid { grid-template-columns: 1fr; }
  /* Mobile menu CTA button */
  .mobile-menu .btn-cta {
    display: flex;
    justify-content: center;
    width: 100%;
    border-bottom: none;
    margin-top: 4px;
    padding: 14px 20px;
    font-size: 0.85rem;
  }
}

@media (max-width: 540px) {
  .container { padding: 0 16px; }
  .hero { padding-top: 80px; } /* single-row header 72px */
  .hero__container { padding-top: 24px; padding-bottom: 0; gap: 16px; }
  .hero__title { font-size: 1.75rem; line-height: 1.2; margin-bottom: 16px; }
  .hero__subtitle { font-size: 0.9rem; margin-bottom: 24px; }
  .hero__breadcrumb { margin-bottom: 14px; }
  .hero__form-card { padding: 20px 16px; }
  .hero__form-title { font-size: 0.95rem; }
  .stats-row__item { flex: 1 1 45%; padding: 14px 16px; }
  .stats-row__num { font-size: 1.2rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; }
  .about-stat { flex: 1 1 100%; }
  /* Offers banner */
  .offers-banner { padding: 24px 16px; }
  .offers-banner .btn-cta {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
}

/* ===== ABOUT NOTE BLOCK ===== */
.about-note {
  margin-top: 48px;
  border: 1px solid rgba(201, 169, 110, 0.25);
  border-left: 4px solid #c9a96e;
  background: rgba(201, 169, 110, 0.04);
  border-radius: 0 6px 6px 0;
  padding: 28px 32px;
}
.about-note p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.875rem;
  line-height: 1.75;
  margin-bottom: 14px;
}
.about-note p:last-of-type { margin-bottom: 0; }
.about-note__list {
  list-style: none;
  padding: 0;
  margin: 4px 0 20px;
}
.about-note__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: 8px;
}
.about-note__icon { flex-shrink: 0; margin-top: 1px; }
.about-note__footer {
  color: #c9a96e !important;
  font-size: 0.875rem !important;
  font-style: italic;
  margin-top: 16px;
  margin-bottom: 0 !important;
}
@media (max-width: 768px) {
  .about-note { padding: 20px 18px; }
}
