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

/* ── Variables ── */
:root {
  --bg:            #0A0A0A;
  --bg-2:          #111111;
  --bg-3:          #161616;
  --bg-4:          #1C1C1C;
  --border:        rgba(255,255,255,0.06);
  --border-2:      rgba(255,255,255,0.10);
  --purple:        #8B5CF6;
  --purple-light:  #A78BFA;
  --purple-dark:   #6D28D9;
  --purple-dim:    rgba(139,92,246,0.08);
  --purple-glow:   rgba(139,92,246,0.18);
  --purple-border: rgba(139,92,246,0.28);
  --text-1: #FFFFFF;
  --text-2: #E4E4E7;
  --text-3: #A1A1AA;
  --text-4: #71717A;
  --radius:    12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --max-w:     1160px;
  --py:        96px;
  --t:         0.2s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text-1);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: var(--py) 0; }
.section--alt { background: var(--bg-2); }
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border-2), transparent); }

/* ── Typography helpers ── */
.gradient-text {
  background: linear-gradient(135deg, #fff 0%, var(--purple-light) 60%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Pill label ── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: var(--purple-dim);
  border: 1px solid var(--purple-border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--purple-light);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.pill::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--purple);
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%,100% { opacity:1; } 50% { opacity:0.35; }
}

/* ── Section header ── */
.sh { margin-bottom: 56px; }
.sh h2 {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.sh p { font-size: 17px; color: var(--text-3); max-width: 580px; line-height: 1.65; }
.sh--center { text-align: center; }
.sh--center p { margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  transition: all var(--t);
  border: none;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary { background: var(--purple); color: #fff; }
.btn-primary:hover {
  background: var(--purple-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(139,92,246,0.42);
}
.btn-outline {
  background: transparent;
  color: var(--text-1);
  border: 1px solid var(--border-2);
}
.btn-outline:hover { border-color: var(--purple-border); background: var(--purple-dim); }
.btn-lg { padding: 16px 34px; font-size: 16px; }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  padding: 13px 0;
}
.nav__inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 20px; font-weight: 800; letter-spacing: -0.02em;
  color: var(--text-1); flex-shrink: 0;
}
.nav__logo__mark {
  width: 34px; height: 34px;
  background: var(--purple);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 900; color: #fff;
}
.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__links a {
  padding: 7px 13px;
  font-size: 14px; font-weight: 500;
  color: var(--text-3);
  border-radius: 6px;
  transition: all var(--t);
}
.nav__links a:hover, .nav__links a.active {
  color: var(--text-1);
  background: rgba(255,255,255,0.05);
}
.nav__actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px;
}
.nav__toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text-1); border-radius: 2px;
  transition: all 0.3s;
}
.nav__mobile {
  display: none;
  position: fixed; inset: 0; z-index: 99;
  background: var(--bg);
  padding: 100px 24px 40px;
  flex-direction: column; gap: 4px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: 15px 0;
  font-size: 22px; font-weight: 700; color: var(--text-2);
  border-bottom: 1px solid var(--border);
  transition: color var(--t);
}
.nav__mobile a:hover { color: var(--purple-light); }
.nav__mobile .btn { margin-top: 24px; width: 100%; font-size: 16px; padding: 16px; }
.nav__mobile-close {
  position: absolute; top: 22px; right: 22px;
  background: var(--bg-3); border: 1px solid var(--border);
  color: var(--text-2); width: 38px; height: 38px;
  border-radius: 8px; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
}

/* ── Hero ── */
.hero {
  position: relative;
  padding: 156px 0 96px;
  overflow: hidden;
}
.hero__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% -5%, rgba(139,92,246,0.22) 0%, transparent 65%),
    radial-gradient(circle at 15% 85%, rgba(139,92,246,0.05) 0%, transparent 50%),
    radial-gradient(circle at 85% 20%, rgba(109,40,217,0.05) 0%, transparent 50%);
}
.hero__label { margin-bottom: 28px; }
.hero h1 {
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 900;
  letter-spacing: -0.036em;
  line-height: 1.03;
  margin-bottom: 22px;
  max-width: 820px;
}
.hero__sub {
  font-size: clamp(15px, 1.8vw, 19px);
  color: var(--text-3);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 38px;
}
.hero__actions {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap; margin-bottom: 64px;
}
.hero__stats {
  display: flex; flex-wrap: wrap;
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
}
.hero__stat {
  padding: 22px 30px;
  border-right: 1px solid var(--border);
  min-width: 130px;
}
.hero__stat:last-child { border-right: none; }
.hero__stat-num {
  font-size: 28px; font-weight: 900;
  letter-spacing: -0.03em; color: var(--purple-light);
  line-height: 1; margin-bottom: 5px;
}
.hero__stat-label { font-size: 12px; color: var(--text-4); font-weight: 500; }

/* ── Niche grid ── */
.niche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.niche-card {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px 22px;
  transition: all 0.25s;
}
.niche-card:hover {
  border-color: var(--purple-border);
  background: var(--bg-3);
  transform: translateY(-2px);
}
.niche-card__icon {
  width: 44px; height: 44px;
  background: var(--purple-dim); border: 1px solid var(--purple-border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 14px;
}
.niche-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 7px; }
.niche-card p { font-size: 14px; color: var(--text-3); line-height: 1.55; }

/* ── Services grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.svc {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px; background: var(--bg-2);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: border-color var(--t);
}
.svc:hover { border-color: var(--border-2); }
.svc__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--purple-dim); border: 1px solid var(--purple-border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.svc h4 { font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.svc p { font-size: 13px; color: var(--text-3); line-height: 1.55; }

/* ── Stats row ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-block { background: var(--bg-2); padding: 36px 24px; text-align: center; }
.stat-block__num {
  font-size: 44px; font-weight: 900; line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #fff, var(--purple-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 8px;
}
.stat-block__label { font-size: 13px; color: var(--text-4); font-weight: 500; }

/* ── Process steps ── */
.process-wrap { position: relative; }
.process-wrap::before {
  content: ''; position: absolute; left: 23px;
  top: 52px; bottom: 52px; width: 1px;
  background: linear-gradient(to bottom, var(--purple-border), transparent);
}
.ps {
  display: flex; gap: 22px; padding: 28px 0;
  border-bottom: 1px solid var(--border); position: relative;
}
.ps:last-child { border-bottom: none; }
.ps__num {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--bg-2); border: 1px solid var(--purple-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; color: var(--purple-light);
  position: relative; z-index: 1;
}
.ps__badge {
  display: inline-block; padding: 3px 10px;
  background: var(--purple-dim); border: 1px solid var(--purple-border);
  border-radius: 100px; font-size: 11px; font-weight: 700;
  color: var(--purple-light); letter-spacing: 0.05em; text-transform: uppercase;
  margin-bottom: 6px;
}
.ps h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.ps p { font-size: 14px; color: var(--text-3); line-height: 1.6; }

/* ── Exclusivity block ── */
.excl {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 64px;
  position: relative; overflow: hidden;
}
.excl::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 80% 80% at 50% 110%, rgba(139,92,246,0.14) 0%, transparent 65%);
}
.excl > * { position: relative; z-index: 1; }
.excl h2 {
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 800; letter-spacing: -0.025em; margin-bottom: 14px;
}
.excl p { font-size: 17px; color: var(--text-3); max-width: 580px; line-height: 1.65; margin-bottom: 30px; }

/* ── CTA block ── */
.cta-block {
  text-align: center; padding: 80px 40px;
  background: linear-gradient(135deg, rgba(139,92,246,0.09), rgba(109,40,217,0.05));
  border: 1px solid var(--purple-border); border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
}
.cta-block::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 70% at 50% 110%, rgba(139,92,246,0.18) 0%, transparent 65%);
}
.cta-block > * { position: relative; z-index: 1; }
.cta-block h2 {
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 800; letter-spacing: -0.025em;
  margin-bottom: 14px; max-width: 680px;
  margin-left: auto; margin-right: auto;
}
.cta-block p { font-size: 17px; color: var(--text-3); max-width: 480px; margin: 0 auto 32px; }
.cta-offer {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; background: rgba(139,92,246,0.14);
  border: 1px solid var(--purple-border); border-radius: 100px;
  font-size: 13px; font-weight: 700; color: var(--purple-light); margin-bottom: 24px;
}

/* ── Case study cards ── */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.case-card {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  transition: all 0.25s; position: relative; overflow: hidden;
}
.case-card::after {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--purple-dark), var(--purple-light));
  opacity: 0; transition: opacity 0.25s;
}
.case-card:hover { border-color: var(--purple-border); transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,0.5); }
.case-card:hover::after { opacity: 1; }
.case-card__roas {
  font-size: 44px; font-weight: 900; letter-spacing: -0.04em;
  color: var(--purple-light); line-height: 1; margin-bottom: 2px;
}
.case-card__roas-sub { font-size: 12px; color: var(--text-4); font-weight: 500; margin-bottom: 20px; }
.case-card__loc {
  font-size: 11px; font-weight: 700; color: var(--text-4);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px;
}
.case-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.case-card p { font-size: 13px; color: var(--text-3); line-height: 1.55; margin-bottom: 18px; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  display: inline-block; padding: 3px 10px;
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: 100px; font-size: 11px; font-weight: 500; color: var(--text-3);
}
.case-card--pending { opacity: 0.72; }
.case-card--pending .case-card__roas { font-size: 18px; color: var(--text-4); }

/* ── Coverage grid ── */
.coverage-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.coverage-item {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 18px;
  display: flex; gap: 12px; align-items: flex-start;
}
.coverage-item__dot {
  width: 8px; height: 8px; background: var(--purple);
  border-radius: 50%; margin-top: 6px; flex-shrink: 0;
}
.coverage-item h4 { font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.coverage-item p { font-size: 12px; color: var(--text-4); }

/* ── About ── */
.founder-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
.founder-text h2 {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800; letter-spacing: -0.025em; margin-bottom: 22px;
}
.founder-text p { font-size: 16px; color: var(--text-3); line-height: 1.75; margin-bottom: 16px; }
.founder-card {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
}
.founder-card__name { font-size: 22px; font-weight: 800; margin-bottom: 2px; }
.founder-card__title { font-size: 13px; color: var(--purple-light); font-weight: 600; margin-bottom: 24px; }
.values { display: flex; flex-direction: column; gap: 14px; }
.val { display: flex; gap: 12px; align-items: flex-start; }
.val__icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--purple-dim); border: 1px solid var(--purple-border);
  border-radius: 7px; display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.val h4 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.val p { font-size: 13px; color: var(--text-3); line-height: 1.5; }

/* ── Contact ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 64px; align-items: start;
}
.contact-info h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.contact-info p { font-size: 15px; color: var(--text-3); line-height: 1.65; margin-bottom: 28px; }
.checklist { display: flex; flex-direction: column; gap: 10px; }
.checklist li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-2);
}
.checklist li::before {
  content: '✓';
  width: 22px; height: 22px; flex-shrink: 0;
  background: var(--purple-dim); border: 1px solid var(--purple-border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--purple-light);
}
.cal-box {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 48px 40px; text-align: center;
}
.cal-box h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.cal-box > p { font-size: 14px; color: var(--text-3); margin-bottom: 28px; }
.cal-placeholder {
  height: 280px; background: var(--bg-3);
  border: 1px dashed var(--border-2); border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 10px;
  color: var(--text-4); font-size: 14px; margin-bottom: 24px;
}
.cal-placeholder .cal-icon { font-size: 36px; }

/* ── Page hero (inner pages) ── */
.pg-hero {
  padding: 136px 0 68px;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.pg-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 70% at 50% -10%, rgba(139,92,246,0.16) 0%, transparent 65%);
}
.pg-hero .container { position: relative; z-index: 1; }
.pg-hero h1 {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 900; letter-spacing: -0.03em; margin-bottom: 14px; max-width: 800px;
}
.pg-hero p { font-size: clamp(15px, 1.8vw, 18px); color: var(--text-3); max-width: 540px; line-height: 1.65; }

/* ── Legal ── */
.legal { max-width: 760px; margin: 0 auto; padding: 72px 0; }
.legal h1 { font-size: 38px; font-weight: 800; letter-spacing: -0.025em; margin-bottom: 6px; }
.legal .updated { font-size: 13px; color: var(--text-4); margin-bottom: 48px; }
.legal h2 { font-size: 20px; font-weight: 700; margin: 36px 0 10px; }
.legal p, .legal li { font-size: 15px; color: var(--text-3); line-height: 1.75; margin-bottom: 10px; }
.legal ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; }

/* ── Footer ── */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 64px 0 0; }
.footer__inner {
  display: grid; grid-template-columns: 2fr 3fr;
  gap: 56px; padding-bottom: 56px;
}
.footer__brand p { font-size: 14px; color: var(--text-4); max-width: 260px; margin-top: 14px; line-height: 1.6; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer__col h4 {
  font-size: 11px; font-weight: 700; color: var(--text-3);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 9px; }
.footer__col ul a { font-size: 14px; color: var(--text-4); transition: color var(--t); }
.footer__col ul a:hover { color: var(--text-1); }
.footer__bottom {
  border-top: 1px solid var(--border); padding: 22px 0;
}
.footer__bottom .container {
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.footer__bottom p { font-size: 13px; color: var(--text-4); }

/* ── Method page specifics ── */
.method-step {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 32px; padding: 44px 0;
  border-bottom: 1px solid var(--border); align-items: start;
}
.method-step:last-child { border-bottom: none; }
.method-step__n {
  font-size: 64px; font-weight: 900; letter-spacing: -0.05em;
  line-height: 1; color: var(--bg-3);
  -webkit-text-stroke: 1px var(--purple-border);
}
.method-step h3 { font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.method-step p { font-size: 15px; color: var(--text-3); line-height: 1.7; margin-bottom: 16px; }
.method-step ul { padding-left: 0; display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.method-step ul li {
  display: flex; gap: 8px; align-items: flex-start;
  font-size: 14px; color: var(--text-3); line-height: 1.5;
}
.method-step ul li::before {
  content: '→'; color: var(--purple-light); font-weight: 700; flex-shrink: 0;
}

.included-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.inc-item {
  display: flex; gap: 12px; padding: 18px;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius); align-items: center;
  font-size: 14px; font-weight: 600; color: var(--text-2);
}
.inc-item::before { content: '✓'; color: var(--purple-light); font-weight: 800; flex-shrink: 0; }

/* ── Animations ── */
.fade { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade.visible { opacity: 1; transform: translateY(0); }
.fade:nth-child(2) { transition-delay: 0.08s; }
.fade:nth-child(3) { transition-delay: 0.16s; }
.fade:nth-child(4) { transition-delay: 0.24s; }
.fade:nth-child(5) { transition-delay: 0.32s; }
.fade:nth-child(6) { transition-delay: 0.40s; }

/* ── Two-col layout ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .niche-grid { grid-template-columns: repeat(2, 1fr); }
  .case-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .founder-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --py: 64px; }
  .nav__links, .nav__actions .btn { display: none; }
  .nav__toggle { display: flex; }
  .hero { padding: 116px 0 64px; }
  .hero__stats { flex-wrap: wrap; width: 100%; }
  .hero__stat { flex: 1 1 140px; padding: 18px; }
  .niche-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .excl { padding: 36px 24px; }
  .cta-block { padding: 48px 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; width: 100%; }
  .method-step { grid-template-columns: 1fr; gap: 8px; }
  .method-step__n { font-size: 40px; }
  .included-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}
