/* ── Variables ───────────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary:     #8B1A1A;
  --primary-dk:  #6B1313;
  --primary-xl:  #2B0A0A;
  --gold:        #D4AF37;
  --gold-lt:     #E8C766;
  --gold-dk:     #B8860B;
  --bg:          #FDFBF5;
  --surface:     #F9F5E8;
  --surface2:    #F3EDD6;
  --text:        #1A1200;
  --text-dim:    #6B4C1E;
  --text-muted:  #9B7B4E;
  --white:       #FFFFFF;
  --radius:      12px;
  --shadow:      0 4px 20px rgba(139,26,26,.12);
  --shadow-md:   0 8px 32px rgba(139,26,26,.18);
}

/* ── Base ────────────────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── Header ──────────────────────────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--primary);
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
  transition: box-shadow .3s;
}
header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.35); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.3px;
  flex-shrink: 0;
}
.logo img { width: 34px; height: 34px; object-fit: contain; }
.logo-name span { color: var(--gold-lt); }

nav { display: flex; align-items: center; gap: 2px; }
nav a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-size: 14px;
  padding: 6px 11px;
  border-radius: 8px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
nav a:hover { background: rgba(212,175,55,.15); color: var(--gold-lt); }

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  gap: 2px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 3px;
}
.lang-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,.65);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: background .2s, color .2s;
  letter-spacing: .5px;
}
.lang-btn:hover { color: var(--white); background: rgba(255,255,255,.15); }
.lang-btn.active { background: var(--gold); color: var(--primary); }

.btn-sm { padding: 8px 16px; font-size: 13px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
  display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--primary-dk);
  padding: 12px 0 20px;
}
.mobile-nav a {
  color: rgba(255,255,255,.9);
  text-decoration: none;
  padding: 12px 24px;
  font-size: 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav a:hover { background: rgba(212,175,55,.12); color: var(--gold-lt); }
.mobile-nav.open { display: flex; }
.mobile-lang {
  display: flex;
  gap: 8px;
  padding: 16px 24px 0;
}
.mobile-lang .lang-btn { font-size: 14px; padding: 6px 12px; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
  border: none;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.btn:active { transform: translateY(0); }

.btn-gold { background: var(--gold); color: var(--primary-xl); }
.btn-gold:hover { background: var(--gold-lt); }

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,.55);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold-lt); color: var(--gold-lt); }

.btn-full { width: 100%; justify-content: center; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(150deg, #0E0202 0%, #2B0808 25%, #6B1313 60%, #8B1A1A 100%);
  color: var(--white);
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero-rays {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-rays svg { width: 100%; height: 100%; }

.hero-ornament-top,
.hero-ornament-bottom {
  position: relative;
  z-index: 2;
  line-height: 0;
}
.hero-ornament-bottom { transform: scaleY(-1); }

.hero-container {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
  position: relative;
  z-index: 1;
}

.hero-content { text-align: left; }

.hero-badge {
  display: inline-block;
  background: rgba(212,175,55,.18);
  border: 1px solid rgba(212,175,55,.5);
  color: var(--gold-lt);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(212,175,55,.4);
  box-shadow: 0 0 16px rgba(212,175,55,.12);
}

.hero h1 {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.13;
  margin-bottom: 18px;
  letter-spacing: -.5px;
  text-shadow: 0 2px 16px rgba(0,0,0,.6), 0 0 40px rgba(139,26,26,.5);
}
.hero h1 em {
  color: var(--gold-lt);
  font-style: normal;
  text-shadow: 0 0 24px rgba(212,175,55,.5), 0 2px 8px rgba(0,0,0,.5);
}

.hero-content > p {
  font-size: clamp(15px, 2vw, 18px);
  opacity: .85;
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.65;
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 0; }

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.stat { text-align: left; }
.stat-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--gold-lt);
  display: block;
  line-height: 1;
  text-shadow: 0 0 20px rgba(212,175,55,.45), 0 2px 8px rgba(0,0,0,.5);
}
.stat-label { font-size: 12px; opacity: .65; margin-top: 4px; text-shadow: 0 1px 4px rgba(0,0,0,.4); }

/* Illustration */
.hero-illustration {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero-pagoda-svg {
  width: 100%;
  max-width: 320px;
  filter: drop-shadow(0 0 32px rgba(212,175,55,0.22));
}
.hero-cloud {
  position: absolute;
  width: 120px;
  opacity: 0.8;
}
.hero-cloud--left  { left: -20px; top: 42%; }
.hero-cloud--right { right: -20px; top: 30%; transform: scaleX(-1); }

/* ── Section shared ──────────────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(139,26,26,.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text);
  letter-spacing: -.3px;
}
.section-sub { color: var(--text-dim); font-size: 16px; max-width: 540px; line-height: 1.6; }
.section-header { margin-bottom: 52px; }

/* ── How it works ────────────────────────────────────────────────────────── */
.steps-section { background: var(--primary); color: var(--white); }
.steps-section .section-tag { background: rgba(212,175,55,.18); color: var(--gold-lt); }
.steps-section .section-title { color: var(--white); }
.steps-section .section-sub { color: rgba(255,255,255,.72); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}
.step-card {
  text-align: center;
  padding: 28px 20px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(212,175,55,.22);
  border-radius: 16px;
  transition: background .25s, transform .25s;
  animation: stepFadeIn .55s ease both;
}
.step-card--1 { animation-delay: .0s; }
.step-card--2 { animation-delay: .1s; }
.step-card--3 { animation-delay: .2s; }
.step-card--4 { animation-delay: .3s; }
@keyframes stepFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.step-card:hover { background: rgba(212,175,55,.1); transform: translateY(-3px); }
.step-num {
  width: 52px; height: 52px;
  background: var(--gold);
  color: var(--primary-xl);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900;
  margin: 0 auto 18px;
}
.step-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 14px; opacity: .78; line-height: 1.6; }

/* ── Tariffs ─────────────────────────────────────────────────────────────── */
.tariffs { background: var(--bg); }
.tariffs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.tariff-card {
  background: var(--surface);
  border: 1.5px solid var(--gold-dk);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  animation: stepFadeIn .55s ease both;
}
.tariff-card--1 { animation-delay: .0s; }
.tariff-card--2 { animation-delay: .1s; }
.tariff-card--3 { animation-delay: .2s; }
.tariff-card--4 { animation-delay: .3s; }
.tariff-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tariff-card.featured { border-color: var(--primary); border-width: 2px; }
.tariff-badge {
  background: var(--primary);
  color: var(--gold-lt);
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 6px;
  text-transform: uppercase;
}
.tariff-body { padding: 24px; text-align: center; }
.tariff-label { font-size: 15px; font-weight: 600; color: var(--text-dim); margin-bottom: 10px; }
.tariff-price { font-size: 36px; font-weight: 900; color: var(--primary); line-height: 1; }
.tariff-unit { font-size: 14px; color: var(--text-dim); margin-top: 4px; }
.tariff-note { font-size: 13px; color: var(--text-muted); margin-top: 14px; }
.tariff-base-note {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background: rgba(139,26,26,.08);
  border: 1px solid rgba(139,26,26,.2);
  border-radius: 20px;
  padding: 5px 14px;
}
.tariff-regional {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  padding: 12px 16px;
  background: var(--surface2);
  border-left: 3px solid var(--gold-dk);
  border-radius: 0 8px 8px 0;
}
.tariff-disclaimer { margin-top: 12px; font-size: 13px; color: var(--text-muted); text-align: center; }

/* ── PVZ ─────────────────────────────────────────────────────────────────── */
.pvz-section { background: var(--surface); }
.contact-map {
  width: 100%;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 24px;
  border: 1.5px solid var(--gold-dk);
  box-shadow: var(--shadow);
  background: var(--surface2);
}
@media (max-width: 768px) { .contact-map { height: 240px; } }
.pvz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.pvz-card {
  background: var(--white);
  border: 1.5px solid var(--gold-dk);
  border-radius: 16px;
  padding: 24px;
  transition: transform .25s, box-shadow .25s;
}
.pvz-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.pvz-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.pvz-icon {
  width: 44px; height: 44px;
  background: var(--primary);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.pvz-name { font-size: 17px; font-weight: 700; }
.pvz-city { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.pvz-details { font-size: 14px; color: var(--text-dim); }
.pvz-details p { display: flex; gap: 8px; margin-bottom: 6px; line-height: 1.45; }
.pvz-details p:last-child { margin-bottom: 0; }
.pvz-details .lbl { flex-shrink: 0; color: var(--text-muted); }
.pvz-loading { text-align: center; color: var(--text-muted); padding: 32px; grid-column: 1/-1; }
.pvz-error { text-align: center; color: var(--primary); padding: 24px; grid-column: 1/-1; font-size: 14px; }

/* ── Partner program ─────────────────────────────────────────────────────── */
.partners-section { background: var(--bg); }
.partners-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.partners-info .section-title { color: var(--text); }

.partner-rate-badge {
  display: inline-flex;
  flex-direction: column;
  background: linear-gradient(135deg, var(--primary-dk), var(--primary));
  color: var(--white);
  border-radius: 16px;
  padding: 18px 28px;
  margin: 20px 0 28px;
  gap: 4px;
}
.rate-num { font-size: 28px; font-weight: 900; color: var(--gold-lt); line-height: 1; }
.rate-label { font-size: 13px; opacity: .8; }

.partner-benefits { display: flex; flex-direction: column; gap: 18px; }
.benefit-item { display: flex; gap: 14px; align-items: flex-start; }
.benefit-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.benefit-item strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.benefit-item p { font-size: 14px; color: var(--text-dim); line-height: 1.5; }

.partners-form-wrap {
  background: var(--surface);
  border: 1.5px solid var(--gold-dk);
  border-radius: 20px;
  padding: 32px;
}

/* ── Forms ───────────────────────────────────────────────────────────────── */
.form-title { font-size: 20px; font-weight: 700; margin-bottom: 20px; }

.contact-form { display: flex; flex-direction: column; gap: 12px; }

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #E5D9B8;
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  background: var(--white);
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  resize: none;
}
.form-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(139,26,26,.1); }
.form-input::placeholder { color: var(--text-muted); }

.form-textarea { min-height: 88px; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-dim);
  cursor: pointer;
  line-height: 1.4;
}
.form-checkbox input { margin-top: 2px; flex-shrink: 0; accent-color: var(--primary); }

.form-status {
  font-size: 14px;
  border-radius: var(--radius);
  padding: 0;
  transition: all .3s;
}
.form-status.success { color: #1B7A3E; background: #E8F5E9; padding: 10px 14px; }
.form-status.error   { color: #B71C1C; background: #FFEBEE; padding: 10px 14px; }

/* ── App section ─────────────────────────────────────────────────────────── */
.app-section { background: var(--primary-xl); color: var(--white); }
.app-section .section-tag { background: rgba(212,175,55,.18); color: var(--gold-lt); }
.app-section .section-title { color: var(--white); }
.app-section .section-sub { color: rgba(255,255,255,.72); }

.app-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.app-features {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.app-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  opacity: .88;
}
.app-features li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--gold);
  color: var(--primary-xl);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.app-cta-block {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(212,175,55,.25);
  border-radius: 20px;
  padding: 32px;
}

.app-soon-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.app-phone-icon { font-size: 36px; }
.app-soon-badge strong { font-size: 18px; color: var(--gold-lt); }

.app-soon-sub { font-size: 14px; opacity: .75; margin-bottom: 20px; line-height: 1.6; }

.app-notify-form { margin-bottom: 20px; }
.notify-row { display: flex; gap: 8px; }
.notify-row .form-input {
  flex: 1;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.2);
  color: var(--white);
}
.notify-row .form-input::placeholder { color: rgba(255,255,255,.45); }
.notify-row .form-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,.18); }

.store-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  color: rgba(255,255,255,.5);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s;
}
.store-btn--disabled { cursor: not-allowed; }
.store-btn--disabled:hover { border-color: rgba(212,175,55,.3); color: rgba(255,255,255,.5); transform: none; box-shadow: none; }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq-section { background: var(--bg); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--surface);
  border: 1.5px solid var(--gold-dk);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open] { border-color: var(--primary); }
.faq-item summary {
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform .3s;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { background: var(--surface2); }
.faq-item p {
  padding: 0 20px 18px;
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.65;
}
.faq-item p a { color: var(--primary); }

/* ── Contact ─────────────────────────────────────────────────────────────── */
.contact-section { background: var(--surface); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-details {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 16px;
  font-weight: 600;
}
.contact-details a { color: var(--primary); text-decoration: none; }
.contact-details a:hover { text-decoration: underline; }
.contact-details p:last-child { font-size: 14px; color: var(--text-dim); font-weight: 400; }

.social-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  transition: transform .2s, box-shadow .2s;
}
.social-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.social-wa  { background: #25D366; }
.social-tg  { background: #229ED9; }
.social-ig  { background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCAF45); }
.social-vk  { background: #0077FF; }
.social-fb  { background: #1877F2; }
.social-tt  { background: #010101; }

.contact-form-wrap {
  background: var(--white);
  border: 1.5px solid var(--gold-dk);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow);
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
footer {
  background: var(--primary-xl);
  color: rgba(255,255,255,.65);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}
.footer-logo { font-size: 18px; font-weight: 800; color: var(--white); }
.footer-logo span { color: var(--gold-lt); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,.55); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: var(--gold-lt); }
.footer-links--legal { justify-content: center; margin-bottom: 16px; }
.footer-links--legal a { font-size: 13px; color: rgba(255,255,255,.4); }
.footer-copy { font-size: 13px; text-align: center; color: rgba(255,255,255,.35); }

/* ── Hero decor SVG ──────────────────────────────────────────────────────── */
.hero > .container { position: relative; z-index: 1; }

/* ── Fade-in animation ───────────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .partners-inner, .contact-inner, .app-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .hero-content { text-align: center; }
  .hero-content > p { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .stat { text-align: center; }
  .hero-illustration { order: -1; }
  .hero-pagoda-svg { max-width: 200px; }
  .hero-cloud { display: none; }
}

@media (max-width: 768px) {
  nav { display: none; }
  .header-right .btn-sm { display: none; }
  .hamburger { display: flex; }
  .section { padding: 56px 0; }
  .hero-stats { gap: 28px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .pvz-grid { grid-template-columns: 1fr; }
  .notify-row { flex-direction: column; }
  .notify-row .btn { width: 100%; justify-content: center; }
  .tariff-disclaimer { text-align: left; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .partners-form-wrap, .contact-form-wrap, .app-cta-block { padding: 22px; }
  .hero-stats { gap: 20px; }
  .hero-stats { flex-direction: row; }
  .stat-num { font-size: 28px; }
}
