/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'Roboto', system-ui, sans-serif; background: #fff; color: #111; overflow-x: clip; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── TOKENS ─── */
:root {
  --dark:    #0A0A0A;
  --light:   #FFFFFF;
  --accent:  #FF6B3D;
  --accent2: rgba(255,107,61,.1);
  --agrad:   linear-gradient(135deg, #FF7840 0%, #E8431C 100%);
  --text:    #111111;
  --muted:   #6B6B6B;
  --border:  rgba(0,0,0,.08);
  --bdk:     rgba(255,255,255,.1);
  --r:       16px;
  --rs:      10px;
  --max:     1180px;
  --sv:      120px;
  --bg-2:    #141414;
  --txt-2:   rgba(255,255,255,.55);
  --txt-3:   rgba(255,255,255,.3);
  --radius:  14px;
  --fg:      rgba(255,255,255,.7);
}

/* ─── TYPE ─── */
.tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  font-family: 'Inter Tight', sans-serif;
  color: var(--accent); background: var(--accent2);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 20px;
}
.tag.inv { color: rgba(255,255,255,.6); background: rgba(255,255,255,.08); }

h1 { font-size: clamp(36px,5vw,64px); font-weight: 900; line-height: 1.08; letter-spacing: -.03em; font-family: 'Inter Tight', sans-serif; }
h2 { font-size: clamp(28px,3.6vw,48px); font-weight: 800; line-height: 1.1; letter-spacing: -.025em; font-family: 'Inter Tight', sans-serif; }
h3 { font-size: 18px; font-weight: 700; line-height: 1.3; font-family: 'Inter Tight', sans-serif; }
.lead { font-size: clamp(15px,1.6vw,18px); color: var(--muted); line-height: 1.75; }
.lead.c { text-align: center; margin-inline: auto; max-width: 560px; }

/* ─── LAYOUT ─── */
.wrap  { max-width: var(--max); margin-inline: auto; padding-inline: 28px; }
.sec   { padding-block: var(--sv); }
.sh    { margin-bottom: 60px; }
.sh.c  { text-align: center; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 100px;
  font-size: 15px; font-weight: 700; transition: all .22s ease;
  white-space: nowrap; border: none;
}
.btn-p { background: var(--agrad); color: #fff; }
.btn-p:hover { background: linear-gradient(135deg, #FFAB6E 0%, #FF6B3D 100%); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,92,43,.3); }
.btn-g { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-g:hover { border-color: #aaa; transform: translateY(-2px); }
.btn-gi { background: transparent; color: #fff; border: 1.5px solid var(--bdk); }
.btn-gi:hover { border-color: rgba(255,255,255,.45); transform: translateY(-2px); }
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }

/* ═══════════════════════════════
   NAVIGATION
═══════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  padding: 22px 0; transition: all .3s;
}
#nav.scrolled {
  background: rgba(10,10,10,.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 14px 0;
  border-bottom: 1px solid var(--bdk);
}
.nav-i { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo {
  font-size: 26px; font-weight: 900; color: #fff;
  letter-spacing: -.02em; flex-shrink: 0;
  font-family: 'Inter Tight', sans-serif;
  line-height: 1;
}
.nav-logo .logo-e { color: var(--accent); }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.6); transition: color .2s; }
.nav-links a:hover { color: #fff; }
.nav-cta { padding: 10px 22px; font-size: 14px; }
/* burger */
.burger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px; padding: 6px; cursor: pointer;
}
.burger span {
  display: block; height: 2px; background: #fff; border-radius: 2px;
  transition: all .25s ease;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile nav overlay */
#mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 190;
  background: rgba(10,10,10,.98);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 36px;
}
#mobile-nav.open { display: flex; }
#mobile-nav a {
  font-size: 28px; font-weight: 800; color: #fff;
  letter-spacing: -.02em; transition: color .2s;
}
#mobile-nav a:hover { color: #fff; }
#mobile-nav .btn { font-size: 16px; margin-top: 8px; }

.nav-right-wrap { display: flex; align-items: center; gap: 10px; }

@media (max-width: 820px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
}

/* ═══════════════════════════════
   HERO — DARK
═══════════════════════════════ */
#hero {
  min-height: 100vh; background: var(--dark);
  display: flex; align-items: center;
  padding-top: 80px; position: relative; overflow: hidden;
}
.hero-glow1 {
  position: absolute; top: -180px; right: -180px;
  width: 640px; height: 640px; pointer-events: none;
  background: radial-gradient(circle, rgba(255,92,43,.13) 0%, transparent 68%);
}
.hero-glow2 {
  position: absolute; bottom: -80px; left: -80px;
  width: 520px; height: 520px; pointer-events: none;
  background: radial-gradient(circle, rgba(255,92,43,.10) 0%, transparent 68%);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 480px;
  gap: 56px; align-items: center;
  position: relative; z-index: 1;
  padding-block: 40px;
}
.hero-tag { margin-bottom: 24px; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 22px; border-radius: 100px; margin-bottom: 28px;
  background: rgba(255,107,61,.06);
  border: 1px solid rgba(255,107,61,.32);
  font-size: 12px; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--accent);
  font-family: 'Inter Tight', sans-serif;
}
.hero-pill-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}
.hero-h1 { color: #fff; margin-bottom: 24px; }
.hero-h1 em {
  font-style: normal;
  background: var(--agrad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 16px; line-height: 1.75;
  color: rgba(255,255,255,.62); margin-bottom: 32px; max-width: 480px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-card {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--bdk); border-radius: var(--r);
  backdrop-filter: blur(8px); max-width: 400px;
}
.hero-av {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #FF5C2B, #FF9A3C);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; color: #fff;
}
.hero-card-name { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.hero-card-role { font-size: 12px; color: rgba(255,255,255,.4); line-height: 1.4; }
.pills { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.pill {
  font-size: 11px; font-weight: 600; padding: 3px 10px;
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.55);
  border-radius: 100px; border: 1px solid var(--bdk);
}
/* hero right */
.hero-right { display: flex; align-items: center; justify-content: center; }
.hero-photo {
  width: 100%; aspect-ratio: 3/4; border-radius: 24px;
  background: linear-gradient(160deg, rgba(255,92,43,.12), rgba(60,60,100,.08));
  border: 1px solid rgba(255,92,43,.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 96px; position: relative; overflow: hidden;
}
.hero-photo picture {
  position: absolute; inset: 0; display: block;
}
.hero-photo picture img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block;
  transform: scale(1.25) translateY(-12%) translateX(-9%); transform-origin: center top;
}
.hero-photo-chip {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  background: rgba(15,15,15,.9); backdrop-filter: blur(16px);
  border: 1px solid var(--bdk); border-radius: 100px;
  padding: 8px 20px; font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.6); white-space: nowrap;
}
/* scroll hint */
.scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.25); font-size: 10px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  animation: sh 2.2s ease-in-out infinite;
}
@keyframes sh { 0%,100%{transform:translateX(-50%) translateY(0)}50%{transform:translateX(-50%) translateY(7px)} }

/* Desktop: скрываем мобильное фото в hero и about */
.hero-photo-mobile { display: none; }
.about-photo-mobile { display: none; }

@media (max-width: 960px) {
  /* Hero */
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-right { display: none; } /* скрываем десктопное фото */
  .hero-photo-mobile { display: block; margin: 28px 0; }
  .hero-photo-mobile .hero-photo { aspect-ratio: 3/4; max-height: 420px; border-radius: 20px; }
  .hero-photo-mobile .hero-photo picture img { transform: scale(1.25) translateY(-12%) translateX(-9%); }
  .hero-desc { max-width: 100%; }
  /* About */
  .about-photo-wrap { display: none; } /* скрываем десктопное фото */
  .about-photo-mobile { display: block; margin: 20px 0 28px; max-width: 300px; }
}

/* ═══════════════════════════════
   PAIN — LIGHT
═══════════════════════════════ */
#pain { background: #fff; }
.pain-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.pain-card {
  background: #fff; border: 1.5px solid rgba(0,0,0,.13); border-radius: var(--r);
  padding: 32px;
  box-shadow: 0 6px 24px rgba(0,0,0,.07);
  transform: translateY(-2px);
}
.pain-ico {
  width: 40px; height: 40px; border-radius: var(--rs);
  background: var(--accent2); display: flex; align-items: center; justify-content: center;
  color: var(--accent); margin-bottom: 18px;
}
.pain-num { font-size: 11px; font-weight: 700; letter-spacing: .1em; color: #ccc; margin-bottom: 10px; font-family: 'Inter Tight', sans-serif; }
.pain-card h3 { font-size: 17px; margin-bottom: 10px; }
.pain-card p { font-size: 14px; line-height: 1.7; color: var(--muted); }
.pain-card.accent { background: var(--agrad); border-color: transparent; color: #fff; }
.pain-card.accent h3 { color: #fff; }
.pain-card.accent p { color: rgba(255,255,255,.85); }
.pain-card.accent .pain-num { color: rgba(255,255,255,.5); }
.pain-card.accent:hover { box-shadow: 0 18px 48px rgba(255,92,43,.3); }

@media (max-width: 900px) { .pain-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .pain-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════
   SOLUTION — LIGHT
═══════════════════════════════ */
#solution { background: #fff; }
.solution-quote {
  border-left: 3px solid var(--accent);
  padding: 20px 28px; background: var(--accent2);
  border-radius: 0 var(--rs) var(--rs) 0;
  font-size: 17px; font-weight: 600; line-height: 1.65; color: var(--text);
  font-style: italic; margin-bottom: 52px;
}

/* solution columns */
.sol-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.sol-col {
  padding: 28px; border: 1.5px solid var(--accent); border-radius: var(--r);
  background: #fff;
  box-shadow: 0 0 0 3px var(--accent2);
}
.sol-icon {
  width: 44px; height: 44px; border-radius: var(--rs);
  background: var(--accent2); display: flex; align-items: center; justify-content: center;
  color: var(--accent); margin-bottom: 16px;
}
.sol-col h3 { margin-bottom: 8px; }
.sol-col p { font-size: 14px; line-height: 1.7; color: var(--muted); }

@media (max-width: 768px) { .sol-cols { grid-template-columns: 1fr; } }

/* ═══════════════════════════════
   MARQUEE — ACCENT STRIP
═══════════════════════════════ */
.marquee-strip {
  background: var(--dark); border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 18px 0; overflow: hidden;
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; gap: 20px;
  padding-right: 20px; white-space: nowrap;
  font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.marquee-item.hi { color: rgba(255,255,255,.75); }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ═══════════════════════════════
   ABOUT — DARK
═══════════════════════════════ */
#about { background: var(--dark); }
.about-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 80px; align-items: stretch; }
.about-photo-wrap { position: sticky; top: 120px; align-self: stretch; }
.about-photo {
  height: 100%; min-height: 480px; border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 8px 24px rgba(0,0,0,.4), 0 28px 64px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.07), inset 0 1px 0 rgba(255,255,255,.1);
  display: block; position: relative;
  font-size: 88px;
}
.about-photo picture {
  display: block; width: 100%; height: 100%;
  position: absolute; inset: 0; border-radius: 20px; overflow: hidden;
}
.about-photo picture img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block;
}
.about-right h2 { color: #fff; margin-bottom: 8px; }
.about-role {
  display: inline-block; font-size: 13px; color: var(--accent); margin-bottom: 28px;
  font-weight: 700; font-family: 'Inter Tight', sans-serif; letter-spacing: .04em;
  background: var(--accent2); padding: 4px 14px; border-radius: 100px;
}
.about-bio { font-size: 16px; line-height: 1.85; color: rgba(255,255,255,.75); margin-bottom: 52px; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat {
  padding: 24px; border: 1px solid var(--bdk); border-radius: var(--r);
  background: rgba(255,255,255,.025); transition: border-color .2s;
}
.stat:hover { border-color: rgba(255,255,255,.2); }
.stat-n { font-size: 42px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 4px; }
.stat-n em { font-style: normal; color: var(--accent); }
.stat-l { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.4; }

@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-wrap { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
}


/* ═══════════════════════════════
   METHOD — LIGHT
═══════════════════════════════ */
#method { background: #F7F7F5; border-top: 1px solid var(--border); }
.method-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 100px;
  border: 1.5px solid var(--accent); color: var(--accent);
  font-size: 13px; font-weight: 700; margin-bottom: 16px;
}

/* ── TIMELINE STEPS ── */
.method-steps {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 16px; margin-top: 60px; position: relative;
}
.method-steps::before {
  content: ''; position: absolute;
  top: 22px; left: calc(100% / 8); right: calc(100% / 8);
  height: 2px; background: var(--agrad); z-index: 0; pointer-events: none;
}
.ms-step {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.ms-circle { display: flex; justify-content: center; }
.ms-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--agrad); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800; font-family: 'Inter Tight', sans-serif;
  position: relative; z-index: 1;
  box-shadow: 0 4px 16px rgba(255,92,43,.3);
}
.ms-body {
  padding: 22px 20px; background: #fff; border-radius: var(--r);
  border: 1.5px solid rgba(0,0,0,.09);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  width: 100%;
}
.ms-word { font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; font-family: 'Inter Tight', sans-serif; }
.ms-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.ms-desc { font-size: 13px; line-height: 1.7; color: var(--muted); }
.method-cta { text-align: center; margin-top: 48px; }

@media (max-width: 900px) {
  .method-steps { grid-template-columns: 1fr; gap: 0; }
  .method-steps::before { display: none; }
  .ms-step {
    flex-direction: row; align-items: flex-start;
    gap: 20px; padding-bottom: 28px; position: relative;
  }
  .ms-step:not(:last-child)::after {
    content: ''; position: absolute;
    left: 21px; top: 44px; bottom: 0;
    width: 2px; background: var(--agrad); opacity: 0.25;
  }
  .ms-circle { flex-shrink: 0; }
  .ms-body { flex: 1; margin-top: 6px; }
}

/* ═══════════════════════════════
   FREEBIE — DARK STRIP
═══════════════════════════════ */
#freebie { background: var(--dark); padding-block: 80px; position: relative; overflow: hidden; }
#freebie::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; pointer-events: none;
  background: radial-gradient(circle, rgba(255,107,61,.1) 0%, transparent 65%);
}
#freebie::after {
  content: ''; position: absolute; bottom: -200px; left: -200px;
  width: 500px; height: 500px; pointer-events: none;
  background: radial-gradient(circle, rgba(100,80,255,.06) 0%, transparent 65%);
}
.freebie-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center; position: relative; z-index: 1;
}
.freebie-icon {
  width: 52px; height: 52px; border-radius: var(--r);
  background: var(--agrad); display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px; color: #fff; flex-shrink: 0;
}
.freebie-inner h2 { color: #fff; font-size: clamp(22px,2.8vw,34px); margin-bottom: 10px; }
.freebie-inner p { color: rgba(255,255,255,.6); font-size: 15px; line-height: 1.65; }
.freebie-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.freebie-tag {
  font-size: 11px; font-weight: 600; padding: 3px 10px;
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.5);
  border-radius: 100px; border: 1px solid var(--bdk);
}
.freebie-form { display: flex; gap: 10px; }
.freebie-input {
  flex: 1; padding: 14px 20px; border-radius: 100px;
  background: rgba(255,255,255,.06); border: 1.5px solid var(--bdk);
  color: #fff; font-family: inherit; font-size: 15px; outline: none;
  transition: border-color .2s; min-width: 0;
}
.freebie-input::placeholder { color: rgba(255,255,255,.38); }
.freebie-input:focus { border-color: var(--accent); }
.freebie-note { font-size: 12px; color: rgba(255,255,255,.32); margin-top: 12px; }

@media (max-width: 768px) {
  .freebie-inner { grid-template-columns: 1fr; gap: 32px; }
  .freebie-form { flex-direction: column; }
  .freebie-form .btn { width: 100%; justify-content: center; }
  .freebie-input { border-radius: var(--r); }
}

/* ═══════════════════════════════
   SERVICES
═══════════════════════════════ */
#services { background: #fff; }
.srv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: stretch; }
.srv {
  border-radius: 20px; padding: 38px 30px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
/* Card 1 — warm tint */
.srv:nth-child(1) {
  background: #FFF8F4;
  border: 1.5px solid rgba(255,107,61,.18);
  box-shadow: 0 4px 24px rgba(255,107,61,.08);
}
/* Card 2 — featured orange */
.srv.feat {
  background: var(--agrad);
  border: none;
  box-shadow: 0 20px 64px rgba(255,92,43,.35);
  transform: translateY(-6px);
}
/* Card 3 — dark premium */
.srv:nth-child(3) {
  background: linear-gradient(160deg, #1E1B2E 0%, #16141F 100%);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 4px 32px rgba(0,0,0,.3);
}
.srv-pop {
  position: absolute; top: 18px; right: 18px;
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #fff; background: rgba(255,255,255,.22);
  padding: 4px 12px; border-radius: 100px;
  font-family: 'Inter Tight', sans-serif;
}
.srv-num {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  color: rgba(255,107,61,.4); margin-bottom: 18px;
  font-family: 'Inter Tight', sans-serif;
}
.srv.feat .srv-num { color: rgba(255,255,255,.45); }
.srv:nth-child(3) .srv-num { color: rgba(255,255,255,.25); }

.srv-name { font-size: 21px; font-weight: 800; margin-bottom: 6px; color: var(--text); }
.srv.feat .srv-name { color: #fff; }
.srv:nth-child(3) .srv-name { color: #fff; }

.srv-desc {
  font-size: 13px; line-height: 1.6; color: var(--muted);
  margin-bottom: 16px; padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.srv.feat .srv-desc { color: rgba(255,255,255,.55); border-bottom-color: rgba(255,255,255,.12); }
.srv:nth-child(3) .srv-desc { color: rgba(255,255,255,.55); border-bottom-color: rgba(255,255,255,.12); }

.srv-price { font-size: 38px; font-weight: 900; font-family: 'Inter Tight', sans-serif; color: var(--accent); line-height: 1; margin-bottom: 28px; }
.srv-price small { font-size: 15px; font-weight: 500; color: var(--muted); font-family: 'Roboto', sans-serif; }
.srv.feat .srv-price { color: #fff; }
.srv.feat .srv-price small { color: rgba(255,255,255,.65); }
.srv:nth-child(3) .srv-price { color: #fff; }
.srv:nth-child(3) .srv-price small { color: rgba(255,255,255,.45); }

.srv-feats { list-style: none; margin-bottom: 32px; flex: 1; }
.srv-feats li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; line-height: 1.5; color: var(--muted);
  padding-bottom: 10px; border-bottom: 1px solid rgba(0,0,0,.07); margin-bottom: 10px;
}
.srv.feat .srv-feats li { color: rgba(255,255,255,.88); border-bottom-color: rgba(255,255,255,.15); }
.srv:nth-child(3) .srv-feats li { color: rgba(255,255,255,.88); border-bottom-color: rgba(255,255,255,.1); }

/* checkmark icons */
.srv-feats li::before {
  content: ''; width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  margin-top: 1px; background-color: var(--accent2);
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='7' viewBox='0 0 9 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.5L3.2 5.5L8 1' stroke='%23FF5C2B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  border: 1.5px solid rgba(255,92,43,.25);
}
.srv.feat .srv-feats li::before {
  background-color: rgba(255,255,255,.2);
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='7' viewBox='0 0 9 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.5L3.2 5.5L8 1' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  border-color: rgba(255,255,255,.3);
}
.srv:nth-child(3) .srv-feats li::before {
  background-color: rgba(255,255,255,.1);
  background-image: url("data:image/svg+xml,%3Csvg width='9' height='7' viewBox='0 0 9 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3.5L3.2 5.5L8 1' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  border-color: rgba(255,255,255,.15);
}

.srv-note { font-size: 0.78rem; color: var(--txt-3, #999); margin-bottom: 20px; line-height: 1.5; }
.srv-note a { color: inherit; text-decoration: underline; }
.srv.feat .srv-note { color: rgba(255,255,255,.45); }
.srv.feat .srv-note a { color: rgba(255,255,255,.6); }
.srv .btn { width: 100%; justify-content: center; }
/* ghost btn on card 1 */
.srv:nth-child(1) .btn-g { border-color: rgba(255,107,61,.3); color: var(--accent); }
.srv:nth-child(1) .btn-g:hover { border-color: var(--accent); background: var(--accent2); }
/* white btn on featured orange card */
.srv.feat .btn-p { background: #fff; color: var(--accent); box-shadow: 0 4px 16px rgba(0,0,0,.12); }
.srv.feat .btn-p:hover { background: #fff5f2; box-shadow: 0 8px 24px rgba(0,0,0,.15); transform: translateY(-2px); }
/* ghost btn on dark card */
.srv:nth-child(3) .btn-g { border-color: rgba(255,255,255,.25); color: #fff; background: rgba(255,255,255,.06); }
.srv:nth-child(3) .btn-g:hover { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.1); }

@media (max-width: 900px) {
  .srv-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .srv.feat { transform: none; }
}

/* ═══════════════════════════════
   RESULTS — WARM CREAM
═══════════════════════════════ */
#results { background: #F5F4F0; border-top: 1px solid rgba(0,0,0,.07); }
.res-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.res-card {
  border: 1.5px solid rgba(0,0,0,.09); border-radius: var(--r); overflow: hidden;
  transition: all .28s; box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.res-card:hover { box-shadow: 0 20px 50px rgba(0,0,0,.1); transform: translateY(-4px); border-color: rgba(0,0,0,.16); }
.res-before, .res-after { padding: 22px 24px; }
.res-before { background: #FFF7F5; }
.res-after  { background: #F3FBF3; }
.res-lbl {
  font-size: 10px; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; margin-bottom: 10px;
}
.res-before .res-lbl { color: #C0401A; }
.res-after  .res-lbl { color: #2A7A2A; }
.res-div {
  display: flex; align-items: center; justify-content: center;
  height: 36px; background: #EEEDE9;
  font-size: 16px; color: #aaa;
}
.res-before p, .res-after p { font-size: 14px; line-height: 1.65; color: var(--text); }
.res-after p { color: #2A7A2A; font-weight: 500; }
.res-note {
  margin-top: 44px; padding: 24px 28px; border: 1px dashed var(--border);
  border-radius: var(--r); text-align: center; font-size: 14px;
  color: var(--muted); line-height: 1.7;
}
.res-note a { color: var(--accent); font-weight: 600; }

@media (max-width: 900px) { .res-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }

/* ═══════════════════════════════
   FAQ — LIGHT
═══════════════════════════════ */
#faq { background: #fff; border-top: 1px solid var(--border); }
.faq-wrap { max-width: 700px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; text-align: left; background: none; border: none;
  font-family: inherit; font-size: 16px; font-weight: 600; color: var(--text);
  cursor: pointer; gap: 16px; transition: color .2s;
}
.faq-q:hover { color: var(--accent); }
.faq-icon { width: 22px; height: 22px; flex-shrink: 0; color: #ccc; transition: transform .3s, color .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .38s ease; }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a-in { padding: 0 0 20px; font-size: 15px; line-height: 1.8; color: var(--muted); }
.faq-cta { text-align: center; margin-top: 52px; }
.faq-cta p { color: var(--muted); font-size: 15px; margin-bottom: 16px; }

/* ═══════════════════════════════
   CONTACT — DARK FULLSCREEN
═══════════════════════════════ */
#contact {
  background: var(--dark); position: relative; overflow: hidden;
  padding-block: var(--sv); display: flex; align-items: center;
}
#contact::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; pointer-events: none;
  background: radial-gradient(circle, rgba(255,92,43,.09) 0%, transparent 65%);
}
#contact::after {
  content: ''; position: absolute; bottom: -180px; left: -180px;
  width: 500px; height: 500px; pointer-events: none;
  background: radial-gradient(circle, rgba(255,92,43,.07) 0%, transparent 65%);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center;
  position: relative; z-index: 1; width: 100%;
}
.contact-left h2 { color: #fff; margin-bottom: 16px; }
.contact-left .lead { color: rgba(255,255,255,.62); margin-bottom: 36px; }
.contact-links { display: flex; flex-direction: column; gap: 14px; }
.c-link {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,.5); transition: color .2s;
}
.c-link:hover { color: rgba(255,255,255,.85); }
.c-link svg { color: var(--accent); flex-shrink: 0; }

/* form panel */
.contact-form-wrap {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 36px 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ── Custom phone picker ── */
.phone-wrap {
  position: relative; display: flex; align-items: stretch;
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--rs); transition: border-color .2s, background .2s;
}
.phone-wrap:focus-within {
  border-color: var(--accent); background: rgba(255,92,43,.06);
}
.phone-sel {
  display: flex; align-items: center; gap: 6px; padding: 0 12px 0 14px;
  background: none; border: none; border-right: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.85); cursor: pointer; white-space: nowrap;
  flex-shrink: 0; transition: color .2s; font-family: inherit;
}
.phone-sel:hover { color: #fff; }
.phone-flag-em { font-size: 20px; line-height: 1; }
.phone-sel-code { font-size: 14px; font-weight: 600; }
.phone-sel-arr {
  width: 10px; height: 6px; color: rgba(255,255,255,.4); flex-shrink: 0;
  transition: transform .2s;
}
.phone-sel.open .phone-sel-arr { transform: rotate(180deg); }
.phone-num {
  flex: 1; min-width: 0; width: auto;
  background: none; border: none; border-radius: 0;
  padding: 13px 16px; color: #fff; font-family: inherit; font-size: 15px; outline: none;
}
.phone-num::placeholder { color: rgba(255,255,255,.3); }
.phone-drop {
  display: none; position: absolute; top: calc(100% + 6px); left: 0;
  width: 290px; max-height: 260px; overflow-y: auto;
  background: #1C1A26; border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; box-shadow: 0 12px 40px rgba(0,0,0,.6); z-index: 999;
}
.phone-drop.open { display: block; }
.phone-drop::-webkit-scrollbar { width: 4px; }
.phone-drop::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 2px; }
.phone-search-inp {
  width: 100%; padding: 10px 14px; background: transparent;
  border: none; border-bottom: 1px solid rgba(255,255,255,.08);
  color: #fff; font-family: inherit; font-size: 14px; outline: none; box-sizing: border-box;
}
.phone-search-inp::placeholder { color: rgba(255,255,255,.28); }
.phone-div { height: 1px; background: rgba(255,255,255,.08); margin: 4px 0; }
.phone-opt {
  display: flex; align-items: center; gap: 10px; padding: 9px 14px;
  cursor: pointer; transition: background .15s;
}
.phone-opt:hover, .phone-opt.active { background: rgba(255,255,255,.07); }
.phone-opt-flag { font-size: 20px; line-height: 1; flex-shrink: 0; }
.phone-opt-name { font-size: 14px; color: rgba(255,255,255,.8); flex: 1; }
.phone-opt-code { font-size: 13px; color: rgba(255,255,255,.35); }
.c-form { display: flex; flex-direction: column; gap: 0; }
.fg { margin-bottom: 22px; position: relative; }
.fg label {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #fff; margin-bottom: 10px;
  font-family: 'Inter Tight', sans-serif;
}
.fg input:not(.phone-num), .fg textarea {
  width: 100%; background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--rs);
  padding: 13px 16px; color: #fff; font-family: inherit; font-size: 15px; outline: none;
  transition: border-color .2s, background .2s; resize: none;
}
.fg input:not(.phone-num)::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,.35); }
.fg input:not(.phone-num):focus, .fg textarea:focus {
  border-color: var(--accent); background: rgba(255,92,43,.06);
}
.fg textarea { min-height: 88px; }
.form-note { font-size: 12px; color: rgba(255,255,255,.65); margin-top: 16px; text-align: center; }
.form-submit { margin-top: 4px; }

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

/* ═══════════════════════════════
   BLOG — DARK
═══════════════════════════════ */
#blog { background: var(--dark); }
.blog-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-bottom: 52px; flex-wrap: wrap;
}
.blog-head-left { max-width: 520px; }
.blog-head-left h2 { color: #fff; margin-top: 12px; margin-bottom: 12px; }
.blog-head-left p { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,.5); }
.btn-blog {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  padding: 12px 24px; border-radius: 100px; flex-shrink: 0;
  font-size: 14px; font-weight: 700; font-family: 'Inter Tight', sans-serif;
  color: rgba(255,255,255,.75); border: 1.5px solid rgba(255,255,255,.18);
  transition: all .22s;
}
.btn-blog:hover { border-color: rgba(255,255,255,.45); color: #fff; transform: translateY(-2px); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.blog-card {
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px; padding: 0; overflow: hidden; display: flex; flex-direction: column;
  transition: all .28s; cursor: pointer; text-decoration: none; color: inherit;
}
.blog-thumb {
  height: 160px; position: relative; overflow: hidden;
  background: rgba(255,255,255,.03);
}
.blog-thumb svg { width: 100%; height: 100%; display: block; }
.blog-card-body { padding: 24px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.blog-card:hover {
  background: rgba(255,255,255,.075); border-color: rgba(255,255,255,.16);
  transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,.3);
}
.blog-cat {
  font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px; font-family: 'Inter Tight', sans-serif;
}
.blog-title {
  font-size: 18px; font-weight: 700; color: #fff; line-height: 1.35;
  margin-bottom: 12px; font-family: 'Inter Tight', sans-serif;
}
.blog-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.48); flex: 1; margin-bottom: 28px; }
.blog-read {
  font-size: 14px; font-weight: 700; color: var(--accent);
  display: flex; align-items: center; gap: 6px; transition: gap .2s;
}
.blog-card:hover .blog-read { gap: 10px; }

@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr; max-width: 460px; } }
@media (max-width: 600px) { .blog-head { flex-direction: column; align-items: flex-start; } }

/* ═══════════════════════════════
   FOOTER — 4 COLUMNS
═══════════════════════════════ */
footer {
  background: #000; border-top: 1px solid rgba(255,255,255,.06);
  padding: 0;
}
.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 48px;
  padding: 52px 0 44px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-logo-else {
  display: block;
  font-size: 28px; font-weight: 900; font-family: 'Inter Tight', sans-serif;
  color: #fff; letter-spacing: -.02em; line-height: 1;
  text-decoration: none; margin-bottom: 14px;
}
.footer-logo-else .logo-e { color: var(--accent); }
.footer-desc {
  font-size: 13px; color: rgba(255,255,255,.42); line-height: 1.65;
  margin: 0 0 20px; max-width: 260px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-social-link {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); transition: color .2s, border-color .2s;
  text-decoration: none;
}
.footer-social-link:hover { color: #fff; border-color: rgba(255,255,255,.3); }
.footer-col-title {
  font-size: 11px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}
.footer-col-links {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.footer-col-links a {
  font-size: 13px; color: rgba(255,255,255,.5);
  text-decoration: none; transition: color .2s;
}
.footer-col-links a:hover { color: rgba(255,255,255,.88); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,.3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: 13px; color: rgba(255,255,255,.28); text-decoration: none; transition: color .2s;
}
.footer-legal a:hover { color: rgba(255,255,255,.6); }

@media (max-width: 900px) {
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .footer-cols { grid-template-columns: 1fr; padding: 36px 0 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  :root { --sv: 64px; }
  .sh { margin-bottom: 36px; }
}

/* ═══════════════════════════════
   SCROLL REVEAL
═══════════════════════════════ */
.r {
  opacity: 0; transform: translateY(36px);
  transition: opacity .65s ease, transform .65s ease;
}
.r.v { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }

/* ═══════════════════════════════
   MODAL
═══════════════════════════════ */
.modal-ov {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.modal-ov.open { opacity: 1; visibility: visible; }
.modal-box {
  background: #141414;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  padding: 48px 44px 44px;
  width: 100%; max-width: 500px;
  position: relative;
  transform: translateY(28px) scale(.97);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
  max-height: 90vh; overflow-y: auto;
}
.modal-ov.open .modal-box { transform: none; }
.modal-x {
  position: absolute; top: 18px; right: 18px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: background .2s, color .2s, transform .2s;
}
.modal-x:hover { background: rgba(255,255,255,.14); color: #fff; transform: rotate(90deg); }
.modal-head { margin-bottom: 28px; }
.modal-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 26px; font-weight: 800; color: #fff;
  line-height: 1.2; margin-bottom: 8px;
}
.modal-sub { font-size: 14px; color: rgba(255,255,255,.4); line-height: 1.5; }

/* Accent top line */
.modal-box::before {
  content: '';
  position: absolute; top: 0; left: 44px; right: 44px; height: 2px;
  background: var(--agrad);
  border-radius: 0 0 4px 4px;
}

@media (max-width: 560px) {
  .modal-box { padding: 40px 24px 32px; border-radius: 22px; }
  .modal-title { font-size: 22px; }
  .modal-box::before { left: 24px; right: 24px; }
}

/* ═══════════════════════════════
   DOCUMENT PAGES (offer, privacy)
═══════════════════════════════ */
.doc-page { background: var(--dark); }
.doc {
  max-width: 760px;
  margin: 0 auto;
  padding: 100px 24px 80px;
  color: var(--fg);
}
.doc-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent);
  background: rgba(249,115,22,.1);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.doc h1 {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 8px;
}
.doc-meta {
  font-size: 14px;
  color: rgba(255,255,255,.4);
  margin-bottom: 36px;
}
.doc .highlight-box {
  background: rgba(249,115,22,.07);
  border-left: 3px solid var(--accent);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin-bottom: 36px;
}
.doc .highlight-box p { margin: 0; line-height: 1.6; color: rgba(255,255,255,.8); }
.doc h2 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 40px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.doc h3 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  margin: 24px 0 10px;
}
.doc p { line-height: 1.7; color: rgba(255,255,255,.65); margin-bottom: 12px; }
.doc ul, .doc ol { padding-left: 20px; margin-bottom: 16px; }
.doc li { line-height: 1.7; color: rgba(255,255,255,.65); margin-bottom: 6px; }
.doc a { color: var(--accent); }
.doc a:hover { text-decoration: underline; }
.doc strong { color: rgba(255,255,255,.85); }
.doc table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 32px;
  font-size: 14px;
  border-radius: 12px;
  overflow: hidden;
}
.doc table th {
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.7);
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.doc table td {
  padding: 12px 16px;
  color: rgba(255,255,255,.6);
  border-bottom: 1px solid rgba(255,255,255,.06);
  vertical-align: top;
}
.doc table tr:last-child td { border-bottom: none; }
.footer-doc {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.foot-doc-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.3);
}
.foot-doc-inner a { color: rgba(255,255,255,.4); transition: color .2s; }
.foot-doc-inner a:hover { color: rgba(255,255,255,.7); }

@media (max-width: 640px) {
  .foot-doc-inner { flex-direction: column; }
}

/* ═══════════════════════════════
   ARTICLE PAGES
═══════════════════════════════ */
.article-page { background: var(--dark); }

/* Scroll reveal for articles */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }

/* Article hero */
.article-hero {
  background: var(--dark);
  padding: 120px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.wrap-narrow { max-width: 820px; margin-inline: auto; padding-inline: 28px; }

/* Hero banner (decorative SVG) */
.hero-banner {
  border-radius: 16px; overflow: hidden; margin-bottom: 28px;
  height: 180px; background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.07);
}
.hero-banner-inner { width: 100%; height: 100%; }
.hero-banner-inner svg { width: 100%; height: 100%; }

/* Breadcrumb */
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 13px; color: rgba(255,255,255,.35);
  margin-bottom: 18px; flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.35); transition: color .2s; }
.breadcrumb a:hover { color: rgba(255,255,255,.7); }
.breadcrumb > span { color: rgba(255,255,255,.2); }
.breadcrumb > span:last-child { color: rgba(255,255,255,.5); }

/* Article label */
.article-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}

/* Article H1 */
.article-h1 {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(24px, 4vw, 42px); font-weight: 800;
  line-height: 1.12; letter-spacing: -.025em;
  color: #fff; margin-bottom: 20px;
}

/* Article meta */
.article-meta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 24px; }
.meta-item { display: flex; align-items: center; gap: 6px; font-size: 13px; color: rgba(255,255,255,.4); }
.meta-item svg { flex-shrink: 0; opacity: .6; }

/* Article intro */
.article-intro { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,.6); max-width: 680px; }

/* Article layout */
.article-layout {
  display: grid; grid-template-columns: 1fr 300px;
  gap: 60px; padding: 60px 0 80px; align-items: start;
}

/* Article content */
.article-content {
  min-width: 0; color: rgba(255,255,255,.68);
  font-size: 16px; line-height: 1.78;
}
.article-content h2 {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px); font-weight: 700;
  color: #fff; margin: 48px 0 16px;
  letter-spacing: -.02em; scroll-margin-top: 80px;
}
.article-content h3 {
  font-size: 18px; font-weight: 700;
  color: rgba(255,255,255,.88); margin: 28px 0 10px;
  scroll-margin-top: 80px;
}
.article-content p { margin-bottom: 16px; }
.article-content ul, .article-content ol { padding-left: 24px; margin-bottom: 16px; }
.article-content li { margin-bottom: 8px; }
.article-content strong { color: rgba(255,255,255,.9); font-weight: 600; }
.article-content em { color: var(--accent); font-style: normal; }
.article-content a { color: var(--accent); }
.article-content a:hover { text-decoration: underline; }
.article-content a.btn, .article-content a.btn-primary,
.callout a.btn, .callout a.btn-primary { color: #fff; text-decoration: none; }
.article-content a.btn:hover, .article-content a.btn-primary:hover,
.callout a.btn:hover, .callout a.btn-primary:hover { text-decoration: none; }

/* BLUF answer capsule */
.bluf-answer {
  background: rgba(255,107,61,.06);
  border-left: 3px solid var(--accent);
  padding: 14px 18px; margin: 8px 0 24px;
  border-radius: 0 8px 8px 0;
  font-size: 14px; line-height: 1.65;
  color: rgba(255,255,255,.65);
}
.bluf-answer strong { color: rgba(255,255,255,.88); }

/* Callout box */
.callout {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px; padding: 20px 24px; margin: 28px 0;
}
.callout-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--accent); margin-bottom: 10px;
}
.callout p { margin: 0; font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.65; }
.callout p em { color: rgba(255,255,255,.88); font-style: italic; }

/* Code block */
.code-block {
  background: #0d0d0d; border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; padding: 20px 24px;
  font-family: 'Courier New', monospace;
  font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.55);
  overflow-x: auto; margin: 20px 0; white-space: pre-wrap;
}

/* FAQ block (article version) */
.faq-block { margin: 16px 0 32px; }
.faq-block .faq-item { border-bottom: 1px solid rgba(255,255,255,.07); padding: 16px 0; }
.faq-block .faq-item:last-child { border-bottom: none; }
.faq-q-text { font-weight: 600; font-size: 15px; margin-bottom: 8px; color: #fff; }
.faq-q-text::before { content: "Q: "; color: var(--accent); }
.faq-a-text { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,.52); padding-left: 18px; }

/* Article CTA block */
.article-cta {
  background: rgba(255,107,61,.06);
  border: 1px solid rgba(255,107,61,.2);
  border-radius: 16px; padding: 32px; margin: 40px 0; text-align: center;
}
.cta-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--accent); margin-bottom: 12px;
}
.article-cta h3 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 22px; font-weight: 700;
  color: #fff; margin: 0 0 12px; line-height: 1.3;
}
.article-cta p { font-size: 14px; color: rgba(255,255,255,.5); margin-bottom: 20px; }

/* Divider */
.divider { height: 1px; background: rgba(255,255,255,.07); margin: 40px 0; }

/* Sidebar */
.article-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 20px; }
.sidebar-toc {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; padding: 22px;
}
.sidebar-toc-title {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.3); margin-bottom: 14px;
}
.toc-list { list-style: none; padding: 0; }
.toc-list li { margin-bottom: 6px; }
.toc-list a {
  font-size: 13px; color: rgba(255,255,255,.42);
  transition: color .2s; line-height: 1.4; display: block;
}
.toc-list a:hover { color: rgba(255,255,255,.85); }

.sidebar-author {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; padding: 22px;
}
.author-row { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; flex-shrink: 0; overflow: hidden;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-size: 14px; font-weight: 600; color: #fff; }
.author-title { font-size: 12px; color: rgba(255,255,255,.38); margin-top: 2px; }
.author-bio { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.45); }

/* Sidebar price box (audit article) */
.sidebar-price {
  background: var(--bg-2);
  border: 1px solid rgba(255,107,61,.2);
  border-radius: var(--radius); padding: 22px;
}
.sidebar-price-label {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.sidebar-price-amount {
  font-size: 2rem; font-weight: 800; letter-spacing: -.04em; margin-bottom: 4px; color: #fff;
}
.sidebar-price-rub { font-size: .8rem; color: var(--txt-2); margin-bottom: 16px; }
.sidebar-price ul {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px;
}
.sidebar-price li {
  font-size: .82rem; color: var(--txt-2);
  display: flex; align-items: flex-start; gap: 8px;
}
.sidebar-price li span { color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* Related articles section */
.related {
  background: rgba(255,255,255,.02);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 60px 0;
}
.related-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 28px;
}
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.related-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px; padding: 24px; transition: border-color .2s;
}
.related-card:hover { border-color: rgba(255,255,255,.18); }
.related-tag {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--accent); margin-bottom: 10px;
}
.related-card h3 { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 8px; line-height: 1.4; }
.related-card p { font-size: 13px; color: rgba(255,255,255,.42); line-height: 1.5; margin-bottom: 12px; }
.read-more {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 600; color: var(--accent); transition: gap .2s;
}
.read-more:hover { gap: 9px; }

/* Responsive */
@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; gap: 40px; }
  .article-sidebar { position: static; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .article-hero { padding: 90px 0 40px; }
  .hero-banner { height: 120px; }
  .article-layout { padding: 40px 0 60px; }
  .related-grid { grid-template-columns: 1fr; }
  .article-cta { padding: 24px; }
}

/* ═══════════════════════════════════════════════
   ENGLISH VERSION — ADDITIONAL STYLES
   Classes that differ from Russian version
═══════════════════════════════════════════════ */

/* ── Nav (blog/article pages use .nav-inner, .nav-right) ── */
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-right { display: flex; align-items: center; gap: 10px; }
.nav-logo .e { color: var(--accent); }
#nav.stuck {
  background: rgba(10,10,10,.94);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  padding: 14px 0;
  border-bottom: 1px solid var(--bdk);
}

/* ── Language pill ── */
.lang-pill {
  display: inline-flex; align-items: center;
  font-size: 12px; font-weight: 700; letter-spacing: .06em;
  padding: 6px 14px; border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.6); transition: all .2s;
}
.lang-pill:hover { border-color: rgba(255,255,255,.4); color: #fff; }

/* ── Button alias ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 100px;
  font-size: 15px; font-weight: 700; transition: all .22s ease;
  white-space: nowrap; border: none;
  background: var(--agrad); color: #fff;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #FFAB6E 0%, #FF6B3D 100%);
  transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,92,43,.3);
}
.btn-primary svg { width: 17px; height: 17px; flex-shrink: 0; }

/* ── Blog hero section ── */
.blog-hero {
  background: var(--dark);
  padding: 120px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.blog-hero h1 {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(28px, 4vw, 52px); font-weight: 800;
  color: #fff; margin-bottom: 16px; line-height: 1.1; letter-spacing: -.025em;
}
.blog-hero p {
  font-size: 16px; line-height: 1.75; color: rgba(255,255,255,.55); max-width: 560px;
}

/* ── Blog grid cards (blog index page) ── */
.blog-grid .blog-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px; padding: 0;
  display: flex; flex-direction: column;
  transition: all .25s; color: inherit; overflow: hidden;
}
.blog-grid .blog-card .blog-card-body {
  padding: 24px 28px 28px; display: flex; flex-direction: column; flex: 1;
}
.blog-grid .blog-card:hover {
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.055);
  transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.25);
}
.blog-grid .blog-card.featured { border-color: rgba(255,107,61,.25); background: rgba(255,107,61,.04); }
.blog-grid .blog-card h2 {
  font-size: 20px; font-weight: 700; color: #fff;
  line-height: 1.3; margin-bottom: 12px; font-family: 'Inter Tight', sans-serif;
}
.blog-grid .blog-card p {
  font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.48); flex: 1; margin-bottom: 16px;
}

/* ── Blog card meta components ── */
.card-tag {
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px; font-family: 'Inter Tight', sans-serif;
}
.card-meta { display: flex; gap: 14px; align-items: center; margin-bottom: 16px; }
.card-date, .card-read { font-size: 12px; color: rgba(255,255,255,.35); }
.card-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 700; color: var(--accent); transition: gap .2s; margin-top: 4px;
}
.card-arrow:hover { gap: 11px; }


/* ── Pain section (English uses .pain-icon instead of .pain-ico) ── */
.pain-icon {
  width: 40px; height: 40px; border-radius: var(--rs);
  background: var(--accent2); display: flex; align-items: center; justify-content: center;
  color: var(--accent); margin-bottom: 18px; font-size: 20px;
}

/* ── Solution grid (English uses .solution-grid / .sol-card) ── */
.solution-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px; }
.sol-card {
  padding: 28px; border: 1.5px solid var(--accent); border-radius: var(--r);
  background: #fff; box-shadow: 0 0 0 3px var(--accent2);
}
.sol-card .sol-icon {
  width: 44px; height: 44px; border-radius: var(--rs);
  background: var(--accent2); display: flex; align-items: center; justify-content: center;
  color: var(--accent); margin-bottom: 16px; font-size: 22px;
}
.sol-card h3 { margin-bottom: 8px; }
.sol-card p { font-size: 14px; line-height: 1.7; color: var(--muted); }
@media (max-width: 768px) { .solution-grid { grid-template-columns: 1fr; } }

/* ── About (English uses .about-text / .about-stats / .stat-item) ── */
.about-text h2 { color: #fff; margin-bottom: 6px; }
.about-text p { font-size: 16px; line-height: 1.85; color: rgba(255,255,255,.75); margin-bottom: 16px; }
.about-stats { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.stat-item {
  padding: 16px 20px; border: 1px solid var(--bdk); border-radius: var(--r);
  background: rgba(255,255,255,.025);
  font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.4;
}
.stat-item .cnt { font-size: 36px; font-weight: 800; color: #fff; line-height: 1; display: block; margin-bottom: 2px; }

/* ── Method step (English uses .ms-n instead of .ms-num) ── */
.ms-step .ms-n {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--agrad); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800; font-family: 'Inter Tight', sans-serif;
  position: relative; z-index: 1;
  box-shadow: 0 4px 16px rgba(255,92,43,.3);
}
.ms-step .ms-title { font-size: 16px; font-weight: 700; margin: 10px 0 6px; }
.ms-step p { font-size: 13px; line-height: 1.7; color: var(--muted); text-align: left; }

/* ── Services grid (English version) ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: stretch; }
.svc-card {
  border-radius: 20px; padding: 38px 30px;
  display: flex; flex-direction: column; position: relative;
  background: #FFF8F4;
  border: 1.5px solid rgba(255,107,61,.18);
  box-shadow: 0 4px 24px rgba(255,107,61,.08);
}
.svc-card.featured {
  background: var(--agrad); border: none;
  box-shadow: 0 20px 64px rgba(255,92,43,.35); transform: translateY(-6px);
}
.svc-badge {
  position: absolute; top: 18px; right: 18px;
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: #fff; background: rgba(255,255,255,.22);
  padding: 4px 12px; border-radius: 100px; font-family: 'Inter Tight', sans-serif;
}
.svc-icon { font-size: 32px; margin-bottom: 16px; }
.svc-tag {
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px; font-family: 'Inter Tight', sans-serif;
}
.svc-card.featured .svc-tag { color: rgba(255,255,255,.75); }
.svc-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.svc-card.featured h3 { color: #fff; }
.svc-card > p { font-size: 14px; line-height: 1.65; color: var(--muted); margin-bottom: 16px; flex: 1; }
.svc-card.featured > p { color: rgba(255,255,255,.8); }
.svc-list { list-style: none; padding: 0; margin-bottom: 24px; }
.svc-list li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; line-height: 1.5; color: var(--muted);
  padding-bottom: 8px; border-bottom: 1px solid rgba(0,0,0,.07); margin-bottom: 8px;
}
.svc-card.featured .svc-list li { color: rgba(255,255,255,.88); border-bottom-color: rgba(255,255,255,.15); }
.svc-list li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.svc-card.featured .svc-list li::before { color: rgba(255,255,255,.9); }
.svc-price {
  font-size: 32px; font-weight: 900; font-family: 'Inter Tight', sans-serif;
  color: var(--accent); line-height: 1; margin-bottom: 20px;
}
.svc-card.featured .svc-price { color: #fff; }
.svc-card .btn, .svc-card .btn-primary { width: 100%; justify-content: center; }
.svc-card.featured .btn-p, .svc-card.featured .btn-primary {
  background: #fff; color: var(--accent); box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.svc-card.featured .btn-p:hover, .svc-card.featured .btn-primary:hover {
  background: #fff5f2; box-shadow: 0 8px 24px rgba(0,0,0,.15); transform: translateY(-2px);
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .svc-card.featured { transform: none; }
}

/* ── Results (English version uses .results-grid / .res-num) ── */
.results-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
#results .res-card {
  background: #fff; border: 1.5px solid rgba(0,0,0,.09); border-radius: var(--r);
  padding: 28px; text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.05); transition: all .25s;
  display: block;
}
#results .res-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,.1); transform: translateY(-3px); }
.res-num {
  font-size: 42px; font-weight: 800; color: var(--accent);
  font-family: 'Inter Tight', sans-serif; line-height: 1; margin-bottom: 8px;
}
#results .res-card p { font-size: 14px; line-height: 1.6; color: var(--muted); }
@media (max-width: 900px) { .results-grid { grid-template-columns: 1fr 1fr; } }

/* ── Contact (English uses .contact-text / .contact-link) ── */
.contact-text h2 { color: #fff; margin-bottom: 12px; }
.contact-text > p { color: rgba(255,255,255,.62); margin-bottom: 28px; font-size: 15px; line-height: 1.7; }
.contact-link {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,.5); transition: color .2s;
}
.contact-link:hover { color: rgba(255,255,255,.85); }

/* ── Form fields (English version, dark context) ── */
.form-field { margin-bottom: 18px; position: relative; }
.form-field label {
  display: block; font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.8); margin-bottom: 8px;
  font-family: 'Inter Tight', sans-serif;
}
.form-field input:not([type=tel]), .form-field textarea {
  width: 100%; background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.1); border-radius: var(--rs);
  padding: 13px 16px; color: #fff; font-family: inherit; font-size: 15px; outline: none;
  transition: border-color .2s, background .2s; resize: none;
}
.form-field input:not([type=tel])::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,.35); }
.form-field input:not([type=tel]):focus, .form-field textarea:focus {
  border-color: var(--accent); background: rgba(255,92,43,.06);
}
.form-field textarea { min-height: 88px; }

/* ── Phone row picker (English version) ── */
.phone-row {
  position: relative; display: flex; align-items: stretch;
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--rs); transition: border-color .2s, background .2s;
}
.phone-row:focus-within { border-color: var(--accent); background: rgba(255,92,43,.06); }
.phone-sel-btn {
  display: flex; align-items: center; gap: 6px; padding: 0 12px 0 14px;
  background: none; border: none; border-right: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.85); cursor: pointer; white-space: nowrap;
  flex-shrink: 0; transition: color .2s; font-family: inherit; font-size: 14px; font-weight: 600;
}
.phone-sel-btn:hover { color: #fff; }
.phone-sel-btn svg { opacity: .5; transition: transform .2s; }
.phone-sel-btn.open svg { transform: rotate(180deg); }
#phone-input, #mp-phone-input {
  flex: 1; min-width: 0; background: none; border: none; border-radius: 0;
  padding: 13px 16px; color: #fff; font-family: inherit; font-size: 15px; outline: none;
}
#phone-input::placeholder, #mp-phone-input::placeholder { color: rgba(255,255,255,.3); }

/* ── Modal (English version: #modal-overlay / .modal) ── */
#modal-overlay {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
}
#modal-overlay.open { opacity: 1; visibility: visible; pointer-events: auto; }
#modal-overlay .modal {
  background: #141414; border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px; padding: 48px 44px 44px;
  width: 100%; max-width: 500px; position: relative;
  transform: translateY(28px) scale(.97);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
  max-height: 90vh; overflow-y: auto;
}
#modal-overlay.open .modal { transform: none; }
#modal-overlay .modal::before {
  content: ''; position: absolute; top: 0; left: 44px; right: 44px; height: 2px;
  background: var(--agrad); border-radius: 0 0 4px 4px;
}
#modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 34px; height: 34px; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: 14px; cursor: pointer;
  transition: background .2s, color .2s, transform .2s;
}
#modal-close:hover { background: rgba(255,255,255,.14); color: #fff; transform: rotate(90deg); }
.modal-content h3 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 24px; font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 8px;
}
.modal-content > p {
  font-size: 14px; color: rgba(255,255,255,.4); line-height: 1.5; margin-bottom: 24px;
}
@media (max-width: 560px) {
  #modal-overlay .modal { padding: 40px 24px 32px; border-radius: 22px; }
  #modal-overlay .modal::before { left: 24px; right: 24px; }
}

/* ── Sec-desc helper ── */
.sec-desc { font-size: 16px; line-height: 1.75; color: var(--muted); margin-bottom: 40px; max-width: 560px; }

/* ── FAQ two-column layout ── */
.faq-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.faq-info h2 { margin-bottom: 24px; }
.faq-info p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
  font-size: 15px;
}
.faq-info-cta { margin-top: 32px; }
.faq-questions .faq-wrap { max-width: 100%; }
@media (max-width: 768px) {
  .faq-two-col { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Dark body for blog/article pages ── */
body:has(.blog-hero) { background: var(--dark); }
body:has(.article-hero) { background: var(--dark); }