/* ============================================================
   AVELAR — Mastercard World Elite Landing
   Design system: premium dark fintech
   ============================================================ */

:root {
  /* palette */
  --bg:            #000002;
  --bg-soft:       #07070b;
  --bg-card:       #0c0d12;
  --bg-card-2:     #101117;
  --line:          rgba(255,255,255,.09);
  --line-strong:   rgba(255,255,255,.16);
  --white:         #ffffff;
  --grey:          #a6a8b3;
  --grey-dim:      #82848e;
  --accent:        #fb3600;
  --accent-600:    #d62e00;
  --accent-soft:   rgba(251,54,0,.12);
  --accent-glow:   rgba(251,54,0,.45);

  /* type */
  --f-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --f-head: 'Manrope', var(--f-body);
  --f-display: 'Unbounded', var(--f-head);

  /* layout */
  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 40px);
  --radius: 18px;
  --radius-lg: 26px;
  --radius-sm: 12px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration:.001ms !important; transition-duration:.001ms !important; }
}

body {
  padding-top: 88px;
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

/* Prevent CSS grid/flex track blowout from long words & large figures */
.feature-list > *, .feature > div, .stats-row > *, .focus-grid > *,
.rekv-grid > *, .footer-grid > *, .offer-card > *, .steps > * { min-width: 0; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--accent); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- typography helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; flex-wrap: wrap; max-width: 100%;
  font-family: var(--f-head); font-size: .8rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--grey);
  overflow-wrap: anywhere;
}
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent-glow); }
.accent-text { color: var(--accent); }
.muted { color: var(--grey); }

.section-title {
  font-family: var(--f-head); font-weight: 800;
  font-size: clamp(1.85rem, 4.4vw, 3.05rem);
  line-height: 1.08; letter-spacing: -.02em; margin-top: 18px;
}
.section-lead { color: var(--grey); font-size: clamp(1rem, 1.7vw, 1.15rem); max-width: 70ch; margin-top: 18px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--f-head); font-weight: 700; font-size: 1rem;
  padding: 14px 24px; border-radius: 999px; line-height: 1;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn-ico { width: 19px; height: 19px; transition: transform .25s var(--ease); }
.btn:hover .btn-ico { transform: translateX(4px); }

.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 8px 30px -8px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn-primary:hover { background: #ff4612; transform: translateY(-2px); box-shadow: 0 14px 40px -10px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,.3); }
.btn-primary:active { transform: translateY(0); }

.btn-line { background: transparent; color: #fff; border: 1px solid var(--line-strong); }
.btn-line:hover { border-color: var(--accent); background: var(--accent-soft); }

.btn-sm { padding: 11px 20px; font-size: .94rem; }
.btn-lg { padding: 17px 30px; font-size: 1.06rem; }
.btn-block { width: 100%; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  background: rgba(0,0,2,.55);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.site-header.scrolled { background: rgba(0,0,2,.82); border-bottom-color: var(--line); }
/* opaque fallback where backdrop-filter is unsupported */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header { background: rgba(0,0,2,.93); }
  .site-header.scrolled { background: rgba(0,0,2,.97); }
  .mobile-nav { background: #050507; }
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 88px; gap: 20px; transition: height .35s var(--ease); }

.brand { display: inline-flex; align-items: center; width: 152px; justify-content: flex-start; }
.brand-logo { height: 66px; width: auto; transition: height .35s var(--ease); }
.brand-logo-lg { height: 52px; }

.site-header.scrolled .header-inner { height: 74px; }
.site-header.scrolled .brand-logo { height: 54px; }

.nav { display: flex; gap: clamp(14px, 2.4vw, 30px); }
.nav a { font-family: var(--f-head); font-weight: 600; font-size: .95rem; color: var(--grey); transition: color .2s; position: relative; padding: 6px 0; }
.nav a::after { content:""; position:absolute; left:0; bottom:0; width:0; height:1.5px; background:var(--accent); transition:width .25s var(--ease); }
.nav a:hover { color: #fff; }
.nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle { display: none; width: 42px; height: 42px; border-radius: 11px; border: 1px solid var(--line); flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav-toggle span { width: 18px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; flex-direction: column; gap: 4px; padding: 12px var(--pad) 22px; border-bottom: 1px solid var(--line); background: rgba(0,0,2,.96); }
.mobile-nav a { font-family: var(--f-head); font-weight: 600; padding: 13px 4px; color: var(--grey); border-bottom: 1px solid var(--line); }
.mobile-nav a:last-of-type { border: none; }
.mobile-nav .btn { margin-top: 12px; color: #fff; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: clamp(48px, 8vw, 92px); padding-bottom: clamp(40px, 6vw, 70px); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55; }
.glow-a { width: 620px; height: 620px; top: -240px; right: -120px; background: radial-gradient(circle, rgba(251,54,0,.42), transparent 65%); }
.glow-b { width: 520px; height: 520px; bottom: -260px; left: -160px; background: radial-gradient(circle, rgba(251,54,0,.18), transparent 65%); opacity: .5; }
.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 25%, #000 35%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 25%, #000 35%, transparent 80%);
}

.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.hero-grid > * { min-width: 0; }

.hero-title {
  font-family: var(--f-head); font-weight: 800;
  font-size: clamp(2.3rem, 5.4vw, 4rem); line-height: 1.04; letter-spacing: -.025em;
  margin-top: 22px;
}
.hero-sub { color: var(--grey); font-size: clamp(1.05rem, 1.9vw, 1.25rem); max-width: 52ch; margin-top: 22px; }

.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 34px; }
.price-plate {
  display: inline-flex; flex-direction: column; gap: 2px;
  background: var(--accent); color: #fff; padding: 11px 22px; border-radius: 14px;
  box-shadow: 0 10px 34px -10px var(--accent-glow);
}
.price-plate-label { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; }
.price-plate-value { font-family: var(--f-display); font-weight: 700; font-size: 1.5rem; line-height: 1; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 30px; }
.hero-trust li { display: inline-flex; align-items: center; gap: 9px; color: var(--grey); font-size: .92rem; }
.hero-trust svg { width: 18px; height: 18px; color: var(--accent); flex: none; }

/* ---- hero phone mockup ---- */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.phone-glow {
  position: absolute; z-index: 0; width: 80%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(251,54,0,.42), transparent 62%);
  filter: blur(72px); pointer-events: none;
}
.hero-phone {
  position: relative; z-index: 1; width: auto;
  max-height: min(660px, 80vh); max-width: 100%;
  filter: drop-shadow(0 44px 80px rgba(0,0,0,.7));
  animation: float 6.5s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---- 6 focus tiles ---- */
.focus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: clamp(48px, 7vw, 84px); }
.focus-card {
  background: linear-gradient(180deg, var(--bg-card), var(--bg-soft));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; transition: border-color .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
}
.focus-card:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.focus-ico { width: 30px; height: 30px; color: var(--accent); margin-bottom: 16px; }
.focus-card h3 { font-family: var(--f-head); font-weight: 700; font-size: 1.18rem; letter-spacing: -.01em; }
.focus-card p { color: var(--grey); font-size: .96rem; margin-top: 9px; }

/* ============================================================
   GENERIC SECTION
   ============================================================ */
.section { padding-block: clamp(64px, 9vw, 120px); position: relative; }
.section-alt { background: linear-gradient(180deg, var(--bg-soft), var(--bg)); border-block: 1px solid var(--line); }
.section-head { max-width: 860px; margin-bottom: clamp(38px, 5vw, 60px); }

/* ---- stats row ---- */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: clamp(40px, 5vw, 64px); }
.stat { padding: 24px 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-card); position: relative; overflow: hidden; }
.stat::before { content:""; position:absolute; top:0; left:0; width:40px; height:3px; background: var(--accent); }
.stat-num { display: block; font-family: var(--f-display); font-weight: 700; font-size: clamp(1.6rem, 3.4vw, 2.3rem); color: var(--accent); letter-spacing: -.01em; line-height: 1; }
.stat-cap { display: block; color: var(--grey); font-size: .9rem; margin-top: 12px; }

/* ---- feature list ---- */
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.feature { display: flex; gap: 18px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-card); transition: border-color .3s, transform .3s var(--ease); }
.feature:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.feature-ico { flex: none; width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center; background: var(--accent-soft); border: 1px solid rgba(251,54,0,.25); }
.feature-ico svg { width: 26px; height: 26px; color: var(--accent); }
.feature h3 { font-family: var(--f-head); font-weight: 700; font-size: 1.16rem; }
.feature p { color: var(--grey); font-size: .96rem; margin-top: 7px; }

/* ============================================================
   BLOCK 3 — REQUISITES
   ============================================================ */
.rekv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.rekv-card {
  background: linear-gradient(180deg, var(--bg-card-2), var(--bg-card));
  border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 3vw, 36px);
  transition: border-color .3s, transform .3s var(--ease);
}
.rekv-card:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.rekv-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.flag-chip { font-family: var(--f-head); font-weight: 700; font-size: .82rem; letter-spacing: .04em; color: #fff; background: rgba(255,255,255,.06); border: 1px solid var(--line); padding: 7px 13px; border-radius: 999px; }
.rekv-ico { width: 26px; height: 26px; color: var(--grey-dim); }
.rekv-card h3 { font-family: var(--f-head); font-weight: 800; font-size: 1.5rem; letter-spacing: -.01em; }
.rekv-card > p { color: var(--grey); margin-top: 12px; font-size: 1rem; }
.rekv-card strong { color: #fff; }
.rekv-field { margin-top: 22px; padding: 16px 18px; border: 1px dashed var(--line-strong); border-radius: var(--radius-sm); background: rgba(0,0,0,.3); }
.rekv-field-label { display: block; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--grey-dim); margin-bottom: 6px; }
.rekv-field-value { font-family: var(--f-display); font-weight: 600; font-size: 1.05rem; letter-spacing: .08em; color: #fff; }
.ticks { margin-top: 20px; display: grid; gap: 11px; }
.ticks li { display: flex; align-items: center; gap: 11px; color: var(--grey); font-size: .95rem; }
.ticks svg { width: 18px; height: 18px; color: var(--accent); flex: none; }

.callout { display: flex; gap: 18px; align-items: flex-start; margin-top: 18px; padding: 24px 26px; border: 1px solid rgba(251,54,0,.28); border-radius: var(--radius); background: var(--accent-soft); }
.callout-ico { width: 28px; height: 28px; color: var(--accent); flex: none; margin-top: 2px; }
.callout p { color: #e7e7ec; font-size: 1rem; }
.callout strong { color: #fff; }

/* ============================================================
   BLOCK 4 — STEPS
   ============================================================ */
.steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 14px; align-items: stretch; }
.step { background: linear-gradient(180deg, var(--bg-card), var(--bg-soft)); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px; position: relative; transition: border-color .3s, transform .3s var(--ease); }
.step:hover { border-color: var(--line-strong); transform: translateY(-4px); }
.step-num { font-family: var(--f-display); font-weight: 700; font-size: 2.4rem; color: var(--accent); line-height: 1; display: block; }
.step h3 { font-family: var(--f-head); font-weight: 700; font-size: 1.28rem; margin-top: 18px; letter-spacing: -.01em; }
.step p { color: var(--grey); margin-top: 10px; font-size: .98rem; }
.step-arrow { display: grid; place-items: center; color: var(--grey-dim); }
.step-arrow svg { width: 30px; height: 30px; }

/* ============================================================
   BLOCK 5 — REVIEWS CAROUSEL
   ============================================================ */
.section-head--reviews { display: flex; justify-content: space-between; align-items: flex-end; gap: 28px 40px; flex-wrap: wrap; max-width: none; }
.section-head--reviews > div:first-child { max-width: 680px; }

.rating-badge {
  flex: none; display: inline-flex; flex-direction: column; align-items: flex-start; gap: 7px;
  padding: 18px 24px; border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, var(--bg-card-2), var(--bg-card));
}
.rating-score { font-family: var(--f-display); font-weight: 700; font-size: 2.3rem; line-height: 1; color: #fff; }
.rating-stars { display: inline-flex; gap: 3px; }
.rating-stars svg { width: 18px; height: 18px; color: var(--accent); }
.rating-meta { color: var(--grey); font-size: .85rem; }

.reviews { position: relative; max-width: var(--maxw); margin: 6px auto 0; padding-inline: var(--pad); }
.reviews-viewport { width: 100%; overflow: hidden; }
.reviews-track {
  display: flex; gap: 24px; padding-block: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  scrollbar-width: none; -ms-overflow-style: none;
}
.reviews-track::-webkit-scrollbar { display: none; }
.reviews-track:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: var(--radius); }

.review-card {
  flex: 0 0 360px; scroll-snap-align: start;
  display: flex; flex-direction: column; gap: 18px;
  background: linear-gradient(135deg, rgba(16, 17, 23, 0.45), rgba(12, 13, 18, 0.75));
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg); padding: 32px 30px;
  position: relative;
  transition: border-color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.review-card:hover {
  border-color: rgba(251, 54, 0, 0.45);
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(251, 54, 0, 0.15);
}
.review-quote { position: absolute; top: 26px; right: 28px; color: var(--accent); opacity: .25; transition: opacity .3s var(--ease); }
.review-card:hover .review-quote { opacity: .45; }
.review-quote svg { width: 36px; height: 36px; }
.review-stars { display: inline-flex; gap: 3px; }
.review-stars svg { width: 16px; height: 16px; color: var(--accent); }
.review-text { color: #d4d5dd; font-size: .98rem; line-height: 1.65; flex: 1; }
.review-foot { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--line); }
.review-avatar {
  flex: none; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--f-head); font-weight: 800; font-size: 1.15rem; color: #fff;
  background: linear-gradient(135deg, #fb3600, #ff7a00);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 4px 12px rgba(251, 54, 0, 0.25);
}
.review-id { display: flex; flex-direction: column; min-width: 0; }
.review-name { font-family: var(--f-head); font-weight: 700; font-size: 1.02rem; }
.review-deal { color: var(--grey-dim); font-size: .8rem; }

.rev-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(12, 13, 18, 0.6);
  color: #fff;
  display: grid; place-items: center;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: border-color .2s, background .2s, opacity .2s, transform .2s, box-shadow .2s;
}
.rev-arrow:hover { border-color: var(--accent); background: var(--accent-soft); box-shadow: 0 10px 28px -5px var(--accent-glow); }
.rev-arrow:active { transform: translateY(-50%) scale(.94); }
.rev-arrow svg { width: 22px; height: 22px; }
.rev-arrow--prev { left: calc(var(--pad) - 26px); }
.rev-arrow--prev svg { transform: rotate(180deg); }
.rev-arrow--next { right: calc(var(--pad) - 26px); }
.rev-arrow[disabled] { opacity: 0; pointer-events: none; }

.reviews-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; flex-wrap: wrap; }
.reviews-dots button { width: 8px; height: 8px; padding: 0; border-radius: 999px; background: var(--line-strong); transition: width .25s var(--ease), background .25s var(--ease); }
.reviews-dots button[aria-selected="true"] { width: 26px; background: var(--accent); }

@media (max-width: 860px) {
  .rev-arrow { display: none; }
  .reviews { padding-inline: 0; }
  .reviews-track { padding-inline: var(--pad); scroll-padding-left: var(--pad); gap: 16px; }
  .review-card { flex: 0 0 78vw; padding: 28px 24px; }
}
@media (max-width: 640px) {
  .section-head--reviews { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .review-card { flex: 0 0 84vw; }
}

/* ============================================================
   BLOCK 6 — OFFER
   ============================================================ */
.offer-card {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 0;
  border: 1.5px solid var(--accent); border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(180deg, var(--bg-card-2), var(--bg-soft));
  box-shadow: 0 30px 90px -40px var(--accent-glow);
}
.offer-main { padding: clamp(30px, 4vw, 48px); }
.offer-tag { display: inline-block; font-family: var(--f-head); font-weight: 700; font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); background: var(--accent-soft); border: 1px solid rgba(251,54,0,.3); padding: 6px 13px; border-radius: 999px; }
.offer-title { font-family: var(--f-head); font-weight: 800; font-size: clamp(1.5rem, 2.6vw, 2rem); letter-spacing: -.015em; margin-top: 18px; max-width: 22ch; }
.offer-includes { margin-top: 26px; display: grid; gap: 14px; }
.offer-includes li { display: flex; gap: 13px; align-items: flex-start; color: #d9dae1; font-size: 1.02rem; }
.offer-includes svg { width: 21px; height: 21px; color: var(--accent); flex: none; margin-top: 2px; }
.offer-side { padding: clamp(30px, 4vw, 48px); background: rgba(251,54,0,.06); border-left: 1px solid rgba(251,54,0,.25); display: flex; flex-direction: column; justify-content: center; }
.offer-price-label { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--grey); font-weight: 600; }
.offer-price { font-family: var(--f-display); font-weight: 700; font-size: clamp(2.6rem, 6vw, 3.7rem); color: #fff; line-height: 1; margin: 10px 0 26px; }
.offer-cur { color: var(--accent); }
.offer-note { color: var(--grey); font-size: .86rem; margin-top: 16px; text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-soft); padding-top: clamp(48px, 6vw, 72px); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer-tagline { color: var(--grey); margin-top: 16px; max-width: 36ch; }
.footer-h { display: block; font-family: var(--f-head); font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--grey-dim); margin-bottom: 18px; }
.footer-contacts, .footer-links { display: flex; flex-direction: column; gap: 14px; }
.contact-link, .footer-links a { display: inline-flex; align-items: center; gap: 11px; color: var(--grey); font-weight: 500; transition: color .2s; width: fit-content; }
.contact-link svg { width: 20px; height: 20px; color: var(--accent); }
.contact-link:hover, .footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; padding-block: 26px; border-top: 1px solid var(--line); }
.disclaimer { color: var(--grey-dim); font-size: .82rem; max-width: 75ch; line-height: 1.5; }
.copyright { color: var(--grey-dim); font-size: .82rem; white-space: nowrap; }

/* ============================================================
   ORDER MODAL
   ============================================================ */
.modal { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal-overlay { position: absolute; inset: 0; background: rgba(0,0,1,.78); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); animation: fade .3s var(--ease); }
.modal-dialog {
  position: relative; width: 100%; max-width: 480px; max-height: 92vh; overflow-y: auto;
  background: linear-gradient(180deg, var(--bg-card-2), var(--bg-card));
  border: 1px solid var(--line-strong); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 40px);
  box-shadow: 0 40px 120px -30px rgba(0,0,0,.9);
  animation: pop .35s var(--ease);
}
.modal-close { position: absolute; top: 16px; right: 18px; width: 38px; height: 38px; border-radius: 10px; font-size: 1.6rem; line-height: 1; color: var(--grey); border: 1px solid var(--line); transition: color .2s, border-color .2s; }
.modal-close:hover { color: #fff; border-color: var(--line-strong); }
.modal-title { font-family: var(--f-head); font-weight: 800; font-size: clamp(1.3rem, 3vw, 1.65rem); letter-spacing: -.015em; margin-top: 14px; }
.modal-sub { color: var(--grey); margin-top: 10px; font-size: .96rem; }

.order-form { margin-top: 26px; display: grid; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-family: var(--f-head); font-weight: 600; font-size: .9rem; color: #d9dae1; }
.field input {
  width: 100%; padding: 14px 16px; border-radius: var(--radius-sm);
  background: rgba(0,0,0,.4); border: 1px solid var(--line-strong); color: #fff; font-size: 1rem; font-family: var(--f-body);
  transition: border-color .2s, box-shadow .2s;
}
.field input::placeholder { color: var(--grey-dim); }
.field input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field input.invalid { border-color: #ff5a3c; }
.field-err { color: #ff7a5c; font-size: .82rem; font-weight: 500; }
.field-err[hidden] { display: none; }

.seg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.seg-opt { position: relative; }
.seg-opt input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.seg-opt span { display: block; text-align: center; padding: 12px 6px; border-radius: var(--radius-sm); border: 1px solid var(--line-strong); color: var(--grey); font-family: var(--f-head); font-weight: 600; font-size: .9rem; transition: all .2s; }
.seg-opt input:checked + span { border-color: var(--accent); background: var(--accent-soft); color: #fff; }
.seg-opt input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }

.form-legal { color: var(--grey-dim); font-size: .8rem; text-align: center; }
.form-legal a { color: var(--grey); text-decoration: underline; text-underline-offset: 2px; }
.form-legal a:hover { color: var(--accent); }

.order-success { text-align: center; padding: 14px 0 6px; animation: pop .35s var(--ease); }
.success-ico { display: inline-grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; background: var(--accent-soft); border: 1px solid rgba(251,54,0,.4); margin-bottom: 18px; }
.success-ico svg { width: 32px; height: 32px; color: var(--accent); }
.order-success h3 { font-family: var(--f-head); font-weight: 800; font-size: 1.5rem; }
.order-success p { color: var(--grey); margin-top: 10px; }
.success-actions { display: flex; gap: 12px; justify-content: center; margin-top: 22px; }
.success-actions .btn { gap: 9px; }
.success-actions svg { width: 19px; height: 19px; color: var(--accent); }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90;
  display: none; align-items: center; justify-content: space-between; gap: 14px;
  padding: 11px 12px 11px 20px; border-radius: 16px;
  background: rgba(10,10,14,.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line-strong); box-shadow: 0 18px 50px -16px rgba(0,0,0,.85);
  transform: translateY(160%); transition: transform .4s var(--ease);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta-price { display: flex; flex-direction: column; line-height: 1.2; }
.sticky-cta-price span { font-size: .72rem; color: var(--grey); }
.sticky-cta-price strong { font-family: var(--f-display); font-weight: 700; font-size: 1.18rem; }
.sticky-cta .btn { padding: 13px 22px; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-phone { max-height: 560px; }
  .feature-list { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .offer-card { grid-template-columns: 1fr; }
  .offer-side { border-left: none; border-top: 1px solid rgba(251,54,0,.25); }
}

@media (max-width: 860px) {
  body { padding-top: 76px; }
  .header-inner { height: 76px; }
  .brand { width: 125px; }
  .brand-logo { height: 54px; }
  .site-header.scrolled .header-inner { height: 68px; }
  .site-header.scrolled .brand-logo { height: 48px; }
  .nav { display: none; }
  .header-actions .btn-sm { display: none; }
  .nav-toggle { display: flex; }
  .mobile-nav { display: flex; }
  .mobile-nav[hidden] { display: none; }
  .focus-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .step-arrow { transform: rotate(90deg); padding: 4px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .sticky-cta { display: flex; }
}

@media (max-width: 560px) {
  .focus-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .rekv-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-actions { gap: 16px; }
  .price-plate { width: 100%; flex-direction: row; align-items: center; justify-content: space-between; }
  .btn-lg { width: 100%; }
  /* long CTA labels wrap instead of overflowing on narrow screens */
  .btn-lg, .btn-block { white-space: normal; line-height: 1.2; }
  .offer-price { font-size: clamp(2.4rem, 12vw, 3rem); }
  .offer-includes li { font-size: .96rem; }
}

@media (max-width: 380px) {
  .brand { width: 110px; }
  .brand-logo { height: 48px; }
  .site-header.scrolled .brand-logo { height: 42px; }
  .review-card { padding: 24px 20px; }
}
