@charset "UTF-8";
/* ============================================================
   smm-agency.by — landing styles
   Modern grotesque, blue + red accent on white, dosed marker
   ============================================================ */

:root {
  /* color tokens (overridable via tweaks) */
  --blue: #1763e6;
  --blue-deep: #0e44a8;
  --blue-ink: #0a2f73;
  --red: #f1382e;
  --ink: #0c121c;
  --ink-2: #141b26;
  --muted: #2c3542;
  --line: #e7ebf2;
  --paper: #ffffff;
  --paper-2: #f4f7fb;
  --paper-3: #eef3fa;
  --chip: #eaf1fe;

  --font-head: "Manrope", system-ui, sans-serif;
  --font-body: "Golos Text", system-ui, sans-serif;

  --maxw: 1240px;
  --pad: clamp(20px, 4vw, 64px);
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 10px rgba(16, 23, 37, 0.05);
  --shadow-md: 0 14px 40px rgba(16, 23, 37, 0.10);
  --shadow-lg: 0 30px 70px rgba(10, 47, 115, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 17px;
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
  text-wrap: balance;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(56px, 8vw, 110px); }
.section--tight { padding-block: clamp(40px, 6vw, 80px); }

/* ---- section eyebrow / kicker ---- */
.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head);
  font-weight: 700; font-size: 13px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue);
}
.kicker::before {
  content: ""; width: 26px; height: 2px; background: var(--red); border-radius: 2px;
}

.h-sec {
  font-size: clamp(28px, 4vw, 46px);
  margin-top: 14px;
}
.lead {
  color: var(--muted); font-size: clamp(16px, 1.4vw, 19px);
  max-width: 720px; margin-top: 16px;
}

/* ---- marker accent helper ---- */
.mk { position: relative; display: inline-block; }
.mk > svg { position: absolute; overflow: visible; pointer-events: none; color: var(--red); }
.mk-underline > svg { left: -4%; bottom: -0.32em; width: 108%; height: 0.5em; }
.mk-circle { padding-inline: 0.02em; }
.mk-circle > svg { left: -19%; top: -85%; width: 138%; height: 272%; z-index: -1; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 16px;
  padding: 15px 26px; border-radius: 999px; border: 0;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 10px 24px rgba(23,99,230,.28); }
.btn-primary:hover { background: var(--blue-deep); box-shadow: 0 14px 30px rgba(23,99,230,.36); }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 10px 24px rgba(241,56,46,.26); }
.btn-red:hover { filter: brightness(.95); }
.btn-ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-light { background: rgba(255,255,255,.16); color: #fff; backdrop-filter: blur(4px); }
.btn-light:hover { background: rgba(255,255,255,.26); }
.btn-arrow svg { width: 18px; height: 18px; transition: transform .2s ease; }
.btn:hover .btn-arrow svg { transform: translateX(3px); }

/* ============================================================
   HEADER
   ============================================================ */
.topbar {
  background: var(--paper-2); border-bottom: 1px solid var(--line);
  font-size: 13.5px; color: var(--ink-2);
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 40px; gap: 18px; }
.topbar .t-loc { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); }
.topbar .t-soc { display: flex; gap: 8px; }
.topbar .t-soc a {
  width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; border: 1px solid var(--line); color: var(--ink-2);
}
.topbar .t-soc a:hover { color: var(--blue); border-color: var(--blue); }

header.nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
header.nav .wrap { display: flex; align-items: center; gap: 26px; min-height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand .logo {
  width: 42px; height: 42px; border-radius: 11px; background: var(--blue); color: #fff;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 22px;
  box-shadow: 0 6px 16px rgba(23,99,230,.3);
}
.brand .b-name { font-family: var(--font-head); font-weight: 800; font-size: 19px; letter-spacing: -.02em; white-space: nowrap; display: block; }
.brand .b-sub { font-size: 11px; color: var(--muted); letter-spacing: .02em; display: block; }
nav.main { display: flex; gap: 24px; margin-left: 8px; }
nav.main a { font-weight: 600; font-size: 15px; color: var(--ink-2); position: relative; padding: 6px 0; }
nav.main a:hover { color: var(--blue); }
nav.main a::after { content:""; position:absolute; left:0; bottom:0; height:2px; width:0; background:var(--red); transition:width .2s ease; }
nav.main a:hover::after { width:100%; }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.nav-phone { font-family: var(--font-head); font-weight: 800; font-size: 17px; white-space: nowrap; }
.nav-phone span { display: block; font-family: var(--font-body); font-weight: 500; font-size: 11px; color: var(--muted); }
.burger { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; padding-block: clamp(40px, 6vw, 80px); }
.hero h1 { font-size: clamp(32px, 4.5vw, 52px); line-height: 1.04; }
.hero .sub { margin-top: 22px; font-size: clamp(17px, 1.5vw, 21px); color: var(--ink-2); max-width: 540px; }
.badge-top {
  display: inline-flex; align-items: center; gap: 10px; background: var(--chip); color: var(--blue-deep);
  font-family: var(--font-head); font-weight: 700; font-size: 14px; padding: 9px 16px; border-radius: 999px; margin-bottom: 22px;
}
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 26px; }
.hero-points li { list-style: none; display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; color: var(--ink-2); }
.hero-points .dot { width: 22px; height: 22px; border-radius: 50%; background: var(--blue); color:#fff; display: grid; place-items: center; flex: none; }

/* hero form card */
.lead-form {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-lg); position: relative;
}
.lead-form h3 { font-size: 23px; }
.lead-form p.fine { font-size: 12.5px; color: var(--muted); margin: 14px 0 0; line-height: 1.4; }
.lf-offer { font-size: 14px; color: var(--muted); margin: 8px 0 0; line-height: 1.45; }
.lf-proof { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-size: 12.5px; font-weight: 700; color: var(--blue); background: var(--chip); padding: 6px 12px; border-radius: 999px; }
.lf-proof svg { color: #f5a623; }
.lf-opt { color: var(--muted); font-weight: 500; }
.lf-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.lf-chip { font-family: var(--font-body); font-weight: 600; font-size: 13px; color: var(--ink-2); background: var(--paper-2); border: 1.5px solid var(--line); padding: 9px 14px; border-radius: 999px; transition: all .15s ease; }
.lf-chip:hover { border-color: var(--blue); color: var(--blue); }
.lf-chip.on { background: var(--blue); border-color: var(--blue); color: #fff; }
.field { margin-top: 14px; }
.field label { display: block; font-weight: 600; font-size: 13px; color: var(--ink-2); margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border-radius: 12px; border: 1.5px solid var(--line);
  font-family: inherit; font-size: 15px; color: var(--ink); background: var(--paper-2); transition: border .15s ease, background .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--blue); background: #fff; }
.field input.invalid, .field textarea.invalid { border-color: var(--red); background: #fff5f4; }
.field .err { color: var(--red); font-size: 12px; margin-top: 5px; font-weight: 600; }
.consent { display: flex; gap: 9px; align-items: flex-start; margin-top: 14px; font-size: 12px; color: var(--muted); line-height: 1.4; }
.consent input { margin-top: 2px; accent-color: var(--blue); width: 16px; height: 16px; flex: none; }
.form-ok { text-align: center; padding: 18px 8px; }
.form-ok .tick { width: 56px; height: 56px; border-radius: 50%; background: #e9f7ee; color: #1f9d55; display: grid; place-items: center; margin: 0 auto 12px; }

/* hero illustration placeholder */
.ph {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background:
    repeating-linear-gradient(135deg, var(--paper-3) 0 14px, var(--paper-2) 14px 28px);
  border: 1px solid var(--line);
  display: grid; place-items: center;
}
.ph .ph-tag {
  font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 12px; color: var(--ink-2);
  background: #fff; border: 1px solid #d8e0ec; padding: 6px 12px; border-radius: 8px; letter-spacing: .02em; font-weight: 500;
}
.hero-ph { aspect-ratio: 1 / 1; }

/* hero variant B (centered) */
.hero--b .hero-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 30px; }
.hero--b .hero-points { justify-content: center; }
.hero--b .sub { margin-inline: auto; }
.hero--b .lead-form { width: min(560px, 100%); text-align: left; }
.hero--b .badge-top { margin-inline: auto; }

/* hero variant C (blue panel) */
.hero--c { background: linear-gradient(160deg, var(--blue) 0%, var(--blue-deep) 100%); color: #fff; }
.hero--c .sub { color: rgba(255,255,255,.86); }
.hero--c .badge-top { background: rgba(255,255,255,.18); color: #fff; }
.hero--c .hero-points li { color: rgba(255,255,255,.92); }
.hero--c .hero-points .dot { background: #fff; color: var(--blue); }
.hero--c .ph { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.22); }
.hero--c .ph .ph-tag { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.3); color: #fff; }
.hero--c .mk > svg { color: #ffd23f; }

/* ============================================================
   ADVANTAGES ("не просто лайки")
   ============================================================ */
.adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 46px; }
.adv-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.adv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d4e0f5; }
.adv-card .num { font-family: var(--font-head); font-weight: 800; font-size: 40px; color: var(--blue); line-height: 1; }
.adv-card h3 { font-size: 22px; margin: 16px 0 10px; }
.adv-card p { color: var(--muted); margin: 0; font-size: 15.5px; }

/* ============================================================
   AWARDS
   ============================================================ */
.awards-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 18px; margin-top: 46px; }
.award {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px;
  display: flex; flex-direction: column; gap: 12px; box-shadow: var(--shadow-sm);
}
.award.big { background: linear-gradient(160deg, var(--blue) 0%, var(--blue-deep) 100%); color: #fff; overflow: hidden; position: relative; align-items: center; justify-content: center; text-align: center; gap: 16px; padding: 38px 26px; }
.award.big::before { content: ""; position: absolute; left: -60px; top: -60px; width: 180px; height: 180px; border-radius: 50%; border: 32px solid rgba(255,255,255,.06); }
.award.big::after { content: ""; position: absolute; right: -70px; bottom: -70px; width: 230px; height: 230px; border-radius: 50%; background: rgba(255,255,255,.08); }
.award .ph { flex: 1; min-height: 120px; }
.big-seal { position: relative; z-index: 1; width: 96px; height: 96px; border-radius: 50%; background: rgba(255,255,255,.16); border: 2px solid rgba(255,255,255,.4); display: grid; place-items: center; box-shadow: 0 10px 26px rgba(0,0,0,.20); }
.big-seal::before { content: ""; position: absolute; inset: -9px; border-radius: 50%; border: 2px dashed rgba(255,255,255,.3); }
.award.big .big-trophy { font-size: 46px; line-height: 1; filter: drop-shadow(0 4px 8px rgba(0,0,0,.25)); }
.award.big .big-rank { position: relative; z-index: 1; font-family: var(--font-head); font-weight: 800; font-size: clamp(42px, 4.4vw, 56px); line-height: 1; color: #fff; }
.big-divider { position: relative; z-index: 1; width: 48px; height: 3px; background: rgba(255,255,255,.45); border-radius: 3px; }
.award.big .big-bottom { position: relative; z-index: 1; }
.award.big h4 { font-size: 19px; color: #fff; }
.award.big .meta { color: rgba(255,255,255,.82); }
.award .place { font-family: var(--font-head); font-weight: 800; font-size: 26px; color: var(--blue); }
.award h4 { font-size: 15px; font-weight: 700; }
.award .meta { font-size: 13px; color: var(--muted); }
.award.big .meta { color: rgba(255,255,255,.8); }

/* ============================================================
   SERVICES
   ============================================================ */
.serv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 46px; }
.serv-card {
  position: relative; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 28px 26px;
  background: #fff; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column; gap: 16px;
}
.serv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.serv-card.hot { background: linear-gradient(160deg, #fff 60%, #fff4f3); border-color: #ffd9d5; }
.serv-card .s-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.serv-card h3 { font-size: 24px; max-width: 70%; }
.serv-card .tag-hot { background: var(--red); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 11px; padding: 5px 12px; border-radius: 999px; letter-spacing: .08em; }
.chan { display: flex; flex-wrap: wrap; gap: 8px; }
.chan .c {
  width: 36px; height: 36px; border-radius: 9px; display: grid; place-items: center;
  background: var(--paper-2); border: 1px solid var(--line); font-size: 11px; font-weight: 700; color: var(--ink-2);
}
.serv-card .s-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 8px; }
.serv-card .price { font-family: var(--font-head); font-weight: 800; font-size: 22px; }
.serv-card .price small { font-size: 13px; color: var(--muted); font-weight: 600; display: block; }
.serv-card .price.free { color: #1f9d55; }
.serv-label { font-weight: 600; font-size: 13px; color: var(--muted); }

/* ============================================================
   AUDIT band (blue CTA)
   ============================================================ */
.band {
  background: linear-gradient(155deg, var(--blue) 0%, var(--blue-deep) 100%);
  border-radius: 24px; color: #fff; padding: clamp(30px, 4vw, 52px);
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 36px; align-items: center; position: relative; overflow: hidden;
}
.band h2 { font-size: clamp(26px, 3.2vw, 40px); }
.band p { color: rgba(255,255,255,.85); margin-top: 14px; font-size: 17px; }
.band .b-form { display: flex; gap: 10px; flex-wrap: wrap; }
.band .b-form input { flex: 1; min-width: 200px; padding: 16px 18px; border-radius: 12px; border: 0; font-size: 15px; font-family: inherit; }
.band .deco { position: absolute; right: -40px; top: -40px; width: 220px; height: 220px; border-radius: 50%; background: rgba(255,255,255,.08); }

/* ============================================================
   CASES slider
   ============================================================ */
.slider-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.slider-nav { display: flex; gap: 10px; }
.snav {
  width: 50px; height: 50px; border-radius: 50%; border: 1.5px solid var(--line); background: #fff;
  display: grid; place-items: center; color: var(--ink); transition: all .18s ease;
}
.snav:hover { border-color: var(--blue); color: var(--blue); }
.snav:disabled { opacity: .35; cursor: default; }
.track-mask { overflow: hidden; margin-top: 40px; }
.track { display: flex; gap: 22px; transition: transform .45s cubic-bezier(.22,.61,.36,1); }
.case-card {
  flex: 0 0 calc((100% - 44px) / 3); background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease;
}
.case-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.case-card .ph { aspect-ratio: 16/10; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; }
.case-body { padding: 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.case-body h3 { font-size: 20px; }
.case-body .goal { color: var(--muted); font-size: 14.5px; flex: 1; }
.case-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.case-stat { font-family: var(--font-head); font-weight: 800; color: var(--blue); font-size: 17px; display: inline-flex; align-items: center; gap: 6px; }
.case-stat small { color: var(--muted); font-weight: 600; font-size: 12px; }
.case-more { font-weight: 700; font-size: 14px; color: var(--ink); display: inline-flex; align-items: center; gap: 6px; }
.case-more:hover { color: var(--blue); }

/* ============================================================
   PRICING
   ============================================================ */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 46px; align-items: stretch; }
.price-card {
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.featured { border-color: var(--blue); box-shadow: var(--shadow-lg); position: relative; }
.price-card.featured::before {
  content: "ХИТ"; position: absolute; top: -13px; left: 30px; background: var(--red); color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: 12px; padding: 6px 14px; border-radius: 999px; letter-spacing: .1em;
}
.price-card .p-name { font-family: var(--font-head); font-weight: 800; font-size: 24px; }
.price-card .p-sub { color: var(--muted); font-size: 14px; margin-top: 4px; }
.price-card ul { list-style: none; padding: 0; margin: 22px 0; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.price-card li { display: flex; gap: 11px; font-size: 14.5px; color: var(--ink-2); align-items: flex-start; }
.price-card li svg { flex: none; margin-top: 3px; color: var(--blue); }
.price-card .p-cost { font-family: var(--font-head); font-weight: 800; font-size: 30px; margin: 4px 0 4px; }
.price-card .p-cost small { font-size: 14px; color: var(--muted); font-weight: 600; }
.price-card .p-doc { font-size: 13px; color: var(--blue); font-weight: 600; margin-bottom: 16px; }

/* ============================================================
   DISCOUNTS
   ============================================================ */
.disc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.disc-card {
  border: 1px dashed #c8d6f0; border-radius: var(--radius); padding: 30px; background: var(--paper-2);
  display: flex; flex-direction: column; gap: 10px; position: relative; overflow: hidden;
}
.disc-card .pct { font-family: var(--font-head); font-weight: 800; font-size: 54px; color: var(--blue); line-height: 1; }
.disc-card h3 { font-size: 22px; }
.disc-card p { color: var(--muted); margin: 0; font-size: 14.5px; }

/* ============================================================
   REVIEWS slider
   ============================================================ */
.rev-track-mask { overflow: hidden; margin-top: 40px; }
.rev-track { display: flex; gap: 22px; transition: transform .45s cubic-bezier(.22,.61,.36,1); }
.rev-card { flex: 0 0 calc((100% - 44px) / 3); }
.rev-card .ph { aspect-ratio: 3/4; }

/* ============================================================
   STEPS (7 days)
   ============================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 46px; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; position: relative;
}
.step .s-n { font-family: var(--font-head); font-weight: 800; font-size: 22px; color: var(--blue); }
.step .s-time { font-family: var(--font-head); font-weight: 800; font-size: 30px; margin: 6px 0 4px; }
.step .s-time small { display: block; font-size: 13px; color: var(--muted); font-weight: 600; margin-bottom: 1px; }
.ttl-1line { white-space: nowrap; }
@media (max-width: 640px) { .ttl-1line { white-space: normal; } }
.step p { color: var(--muted); font-size: 14.5px; margin: 12px 0 0; }
.step .bar { height: 4px; background: var(--paper-3); border-radius: 4px; margin-top: 18px; overflow: hidden; }
.step .bar i { display: block; height: 100%; background: var(--blue); border-radius: 4px; }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 46px; }
.team-grid-4 { grid-template-columns: repeat(4, 1fr); }
.member { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.member:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.member .ph { aspect-ratio: 4/3; border: 0; border-radius: 0; }
.member-av { line-height: 0; }
.member-av .avatar-svg { width: 100%; height: auto; aspect-ratio: 1/1; display: block; }
.member .m-body { padding: 22px; }
.member h3 { font-size: 21px; }
.member .role { color: var(--blue); font-weight: 700; font-size: 14px; margin-top: 3px; }
.member p { color: var(--muted); font-size: 14px; margin: 12px 0 0; }
@media (max-width: 900px) { .team-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .team-grid-4 { grid-template-columns: 1fr; } }

/* ============================================================
   CLIENTS marquee
   ============================================================ */
.marquee { overflow: hidden; margin-top: 46px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-row { display: flex; gap: 22px; width: max-content; animation: scroll-x 36s linear infinite; }
.marquee:hover .marquee-row { animation-play-state: paused; }
@keyframes scroll-x { to { transform: translateX(-50%); } }
.client-logo {
  width: 190px; height: 100px; border-radius: 14px; border: 1px solid var(--line); background: #fff;
  display: grid; place-items: center; flex: none; box-shadow: var(--shadow-sm);
}
.client-logo span { font-family: var(--font-head); font-weight: 800; font-size: 20px; color: var(--ink-2); letter-spacing: .02em; }

/* ============================================================
   PROCESS (8 steps timeline)
   ============================================================ */
.proc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 40px; margin-top: 46px; }
.proc {
  display: grid; grid-template-columns: 64px 1fr; gap: 20px; align-items: start;
  padding: 24px 0; border-bottom: 1px solid var(--line);
}
.proc .p-n {
  width: 64px; height: 64px; border-radius: 16px; background: var(--chip); color: var(--blue);
  font-family: var(--font-head); font-weight: 800; font-size: 26px; display: grid; place-items: center;
}
.proc h3 { font-size: 20px; }
.proc p { color: var(--muted); font-size: 14.5px; margin: 8px 0 0; }

/* ============================================================
   WHY SMM
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 46px; }
.why {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; background: #fff;
  transition: border-color .2s ease, transform .2s ease;
}
.why:hover { border-color: var(--blue); transform: translateY(-3px); }
.why .ico { width: 48px; height: 48px; border-radius: 12px; background: var(--blue); color:#fff; display: grid; place-items: center; margin-bottom: 16px; }
.why h3 { font-size: 19px; }
.why p { color: var(--muted); font-size: 14.5px; margin: 10px 0 0; }

/* ============================================================
   AREAS
   ============================================================ */
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 46px; }
.area {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 220px; color: #fff;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 26px;
  background:
    linear-gradient(0deg, rgba(10,47,115,.86), rgba(10,47,115,.25)),
    repeating-linear-gradient(135deg, #2a5fb0 0 16px, #295aa6 16px 32px);
  border: 1px solid var(--line);
}
.area h3 { font-size: 22px; }
.area p { color: rgba(255,255,255,.85); font-size: 14px; margin: 8px 0 0; }
.area .ph-mini { position: absolute; top: 16px; right: 16px; font-family: ui-monospace, monospace; font-size: 10px; color: rgba(255,255,255,.6); border: 1px dashed rgba(255,255,255,.4); padding: 4px 8px; border-radius: 6px; }

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq { max-width: 880px; margin: 46px auto 0; }
.faq-wide { max-width: none; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: 0; text-align: left; padding: 24px 50px 24px 0; position: relative;
  font-family: var(--font-head); font-weight: 700; font-size: clamp(17px, 2vw, 21px); color: var(--ink);
}
.faq-q .pm { position: absolute; right: 4px; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; border-radius: 50%; background: var(--chip); color: var(--blue); display: grid; place-items: center; transition: transform .25s ease, background .2s ease; }
.faq-item.open .faq-q .pm { background: var(--blue); color: #fff; transform: translateY(-50%) rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .3s ease; }
.faq-a .inner { padding: 0 50px 24px 0; color: var(--muted); font-size: 16px; }

/* ============================================================
   OTHER SERVICES
   ============================================================ */
.other-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.other {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; background: var(--paper-2);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.other:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); background: #fff; }
.other h3 { font-size: 20px; }
.other .o-price { color: var(--blue); font-weight: 700; font-size: 14px; margin-top: 4px; }

/* ============================================================
   CONTACTS + KP form
   ============================================================ */
.kp { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.kp-left { background: linear-gradient(160deg, var(--blue) 0%, var(--blue-deep) 100%); color: #fff; border-radius: 24px; padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; gap: 18px; }
.kp-left h2 { font-size: clamp(24px, 3vw, 38px); }
.kp-left p { color: rgba(255,255,255,.85); }
.kp-contacts { margin-top: auto; display: flex; flex-direction: column; gap: 14px; }
.kp-contacts a, .kp-contacts div { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 700; font-size: 19px; }
.kp-contacts .ico { width: 42px; height: 42px; border-radius: 11px; background: rgba(255,255,255,.16); display: grid; place-items: center; flex: none; }
.kp-form { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: clamp(26px, 3vw, 40px); box-shadow: var(--shadow-md); }

/* ============================================================
   FOOTER
   ============================================================ */
footer.site { background: #0c1422; color: #c4cdde; padding-block: clamp(48px, 6vw, 76px) 30px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
footer.site .brand .b-name { color: #fff; }
footer.site .brand .b-sub { color: #7d899e; }
.foot-col h4 { color: #fff; font-size: 15px; margin-bottom: 16px; font-family: var(--font-head); letter-spacing: .02em; }
.foot-col a, .foot-col p { display: block; color: #9aa6ba; font-size: 14.5px; margin-bottom: 10px; }
.foot-col a:hover { color: #fff; }
.foot-soc { display: flex; gap: 10px; margin-top: 18px; }
.foot-soc a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.07); display: grid; place-items: center; color: #c4cdde; }
.foot-soc a:hover { background: var(--blue); color: #fff; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: #7d899e; }

/* ============================================================
   reveal on scroll
   ============================================================ */
.reveal { opacity: 1; transform: none; }
.reveal.in { opacity: 1; transform: none; }

/* marker toggle off */
.no-marker .mk > svg, .no-marker .mk-doodle { display: none !important; }

/* mobile dropdown menu */
.mobile-menu { border-top: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-md); animation: mm-in .2s ease; }
@keyframes mm-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.mobile-menu .wrap { display: flex; flex-direction: column; gap: 2px; padding-block: 10px 18px; }
.mobile-menu a { font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--ink); padding: 13px 4px; border-bottom: 1px solid var(--line); }
.mobile-menu a:last-child { border: 0; }
.mobile-menu .mm-phone { display: flex; align-items: center; gap: 10px; color: var(--blue); }
.mobile-menu .mm-group { display: flex; flex-direction: column; border-bottom: 1px solid var(--line); }
.mobile-menu .mm-toggle { display: flex; align-items: center; justify-content: space-between; background: none; border: 0; font-family: var(--font-head); font-weight: 700; font-size: 17px; color: var(--ink); padding: 13px 4px; text-align: left; cursor: pointer; }
.mobile-menu .mm-toggle svg { color: var(--blue); }
.mobile-menu .mm-sub { display: flex; flex-direction: column; padding: 0 0 8px 14px; }
.mobile-menu .mm-sub a { font-size: 15px !important; font-weight: 600 !important; color: var(--ink-2) !important; padding: 11px 4px !important; border-bottom: 0 !important; }
.mobile-menu .mm-sub a::before { content: "—"; color: var(--blue); margin-right: 8px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1040px) {
  nav.main { display: none; }
  .nav-cta { display: none; }
  .nav-phone span { display: none; }
  .burger { display: grid; }
  .nav-right { gap: 12px; }
  header.nav .wrap { gap: 14px; }
}
@media (max-width: 1080px) {
  .awards-grid { grid-template-columns: repeat(3, 1fr); }
  .awards-grid .award.big { grid-column: span 3; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .case-card, .rev-card { flex-basis: calc((100% - 22px) / 2); }
  .proc-grid { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .adv-grid, .serv-grid, .price-grid, .disc-grid, .team-grid, .why-grid, .areas-grid, .other-grid, .band, .kp { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .awards-grid .award.big { grid-column: span 2; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .case-card, .rev-card { flex-basis: calc((100% - 22px) / 2); }
  .slider-head { align-items: center; }
  .price-card.featured { order: -1; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 680px) {
  .nav-phone { display: none; }
  .topbar .t-loc:first-child { display: none; }
  .case-card, .rev-card { flex-basis: 100%; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  :root { --radius: 16px; }
  .topbar { display: none; }
  header.nav .wrap { min-height: 64px; }
  .brand .logo { width: 38px; height: 38px; font-size: 19px; }
  .brand .b-name { font-size: 17px; }
  .brand .b-sub { font-size: 10px; }
  .awards-grid, .steps-grid { grid-template-columns: 1fr; }
  .awards-grid .award.big { grid-column: span 1; }
  .case-card, .rev-card { flex-basis: 100%; }
  .lead-form { padding: 22px; }
  .band { border-radius: 18px; }
  .kp-left, .kp-form { border-radius: 18px; }
  .snav { width: 44px; height: 44px; }
  .slider-head { flex-wrap: nowrap; }
  .hero-points { gap: 8px 16px; }
  .disc-card .pct { font-size: 46px; }
  .adv-card, .serv-card, .why, .price-card, .step, .disc-card, .case-body, .m-body { padding: 24px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .foot-bottom { flex-direction: column; gap: 8px; }
  .btn { padding: 14px 22px; font-size: 15px; }
  .h-sec { font-size: clamp(26px, 7vw, 34px); }
}
@media (max-width: 400px) {
  .foot-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero h1 { font-size: 33px; }
  .marquee .client-logo { width: 150px; height: 84px; }
}

/* ============================================================
   SUBPAGE: breadcrumb + page hero
   ============================================================ */
.breadcrumb { display: flex; gap: 9px; align-items: center; font-weight: 600; font-size: 14px; color: var(--muted); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb .sep { opacity: .45; }
.breadcrumb .cur { color: var(--blue); }

.page-hero { background: linear-gradient(180deg, var(--paper-2), #fff); border-bottom: 1px solid var(--line); overflow: hidden; }
.page-hero .wrap { padding-block: clamp(22px, 3vw, 40px); }
.page-hero-grid { display: grid; grid-template-columns: 1fr; gap: 0; align-items: center; }
.page-title { font-family: var(--font-head); font-weight: 800; letter-spacing: -.02em; font-size: clamp(36px, 6vw, 64px); display: inline-flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 16px; line-height: 1; }
.badge-30 { background: var(--blue); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: clamp(15px, 1.8vw, 22px); padding: 7px 16px; border-radius: 999px; box-shadow: 0 8px 20px rgba(23,99,230,.3); }
.page-sub { color: var(--ink-2); font-size: clamp(16px, 1.4vw, 20px); max-width: 560px; margin-top: 18px; }
.page-hero .ph { aspect-ratio: 16/11; }

/* ============================================================
   CASE LISTING — full-width alternating rows
   ============================================================ */
.cases-list { display: flex; flex-direction: column; gap: 26px; }
.case-row { display: grid; grid-template-columns: 1fr 1fr; background: #fff; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-md); transition: transform .25s ease, box-shadow .25s ease; }
.case-row:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.case-row.rev .cr-body { order: 2; }
.cr-body { padding: clamp(28px, 3.6vw, 54px); display: flex; flex-direction: column; }
.cr-idx { font-family: var(--font-head); font-weight: 800; font-size: 14px; color: var(--blue); letter-spacing: .1em; }
.cr-title { font-size: clamp(24px, 2.6vw, 33px); margin-top: 10px; }
.cr-goal { color: var(--ink-2); font-size: 17px; margin-top: 16px; max-width: 460px; }
.cr-foot { margin-top: auto; padding-top: 30px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.cr-stat { display: flex; flex-direction: column; gap: 2px; background: linear-gradient(135deg, var(--blue), var(--blue-deep)); color: #fff; padding: 13px 20px; border-radius: 14px; }
.cr-stat b { font-family: var(--font-head); font-weight: 800; font-size: 24px; line-height: 1; }
.cr-stat span { font-size: 13px; opacity: .85; }
.cr-media { position: relative; min-height: 320px; border: 0; border-radius: 0; }
.cr-media .ph-tag { position: absolute; top: 16px; left: 16px; }

/* ============================================================
   CASE STUDY — light compact theme
   ============================================================ */
.case-study { background: var(--paper); color: var(--ink); }
.cs-wrap { max-width: 1080px; margin: 0 auto; padding-inline: var(--pad); }
.cs-section { padding-block: clamp(32px, 4vw, 60px); }
.cs-eyebrow { color: var(--blue); font-family: var(--font-head); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: 13px; display: inline-flex; align-items: center; gap: 10px; }
.cs-eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--red); border-radius: 2px; }
.cs-h { font-family: var(--font-head); font-weight: 800; letter-spacing: -.02em; color: var(--ink); font-size: clamp(24px, 3vw, 38px); margin-top: 12px; }
.cs-lead { color: var(--muted); font-size: 16.5px; margin-top: 12px; max-width: 640px; }

.cs-hero { background: linear-gradient(180deg, var(--paper-2) 0%, #fff 100%); border-bottom: 1px solid var(--line); }
.cs-hero .cs-wrap { padding-block: clamp(28px, 4vw, 56px); }
.cs-hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 40px; align-items: center; }
.cs-hero h1 { font-family: var(--font-head); font-weight: 800; letter-spacing: -.02em; color: var(--ink); font-size: clamp(28px, 4.4vw, 50px); line-height: 1.04; margin-top: 14px; }
.cs-hero .cs-clientline { color: var(--ink-2); font-size: clamp(17px, 1.8vw, 21px); font-weight: 600; margin-top: 14px; }
.cs-tag { display: inline-block; margin-top: 18px; background: var(--chip); border: 1px solid #d4e0f5; color: var(--blue-deep); font-weight: 700; font-size: 14px; padding: 9px 16px; border-radius: 999px; }
.cs-logos { display: flex; gap: 12px; margin-top: 22px; }
.cs-logo { width: 88px; height: 60px; border-radius: 12px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 14px; color: var(--ink-2); text-align: center; line-height: 1.1; box-shadow: var(--shadow-sm); }
.cs-ph { position: relative; border-radius: 16px; overflow: hidden; background:
  repeating-linear-gradient(135deg, var(--paper-3) 0 14px, var(--paper-2) 14px 28px);
  border: 1px solid var(--line); display: grid; place-items: center; }
.cs-ph .ph-tag { font-family: ui-monospace, monospace; font-size: 12px; color: var(--ink-2); background: #fff; border: 1px solid #d8e0ec; padding: 6px 12px; border-radius: 8px; font-weight: 500; }
.cs-ph.portrait { aspect-ratio: 9/16; }
.cs-ph.square { aspect-ratio: 1/1; }
.cs-ph.wide { aspect-ratio: 16/10; }

.cs-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: clamp(22px, 2.6vw, 34px); box-shadow: var(--shadow-sm); }
.brief-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 36px; margin-top: 24px; }
.brief-item .b-label { color: var(--red); font-family: var(--font-head); font-weight: 800; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.brief-item .b-val { color: var(--ink-2); font-size: 16px; margin-top: 8px; line-height: 1.5; }

.cs-split { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.cs-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
.cs-block-row { margin-top: 20px; }
.cs-block-row .b-label { color: var(--blue); font-family: var(--font-head); font-weight: 800; font-size: 13px; letter-spacing: .08em; text-transform: uppercase; }
.cs-block-row p { color: var(--ink-2); font-size: 16px; margin: 8px 0 0; line-height: 1.5; }

.reels-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 24px; }

.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 26px; }
.result { background: linear-gradient(160deg, var(--chip), #fff); border: 1px solid #d8e4f7; border-radius: 16px; padding: 26px; }
.result b { font-family: var(--font-head); font-weight: 800; font-size: clamp(30px, 3.6vw, 42px); color: var(--blue); line-height: 1; display: block; }
.result span { color: var(--ink-2); font-size: 15px; margin-top: 8px; display: block; }

.agency { background: linear-gradient(160deg, var(--blue) 0%, var(--blue-deep) 100%); color: #fff; border-radius: 22px; padding: clamp(26px, 3.5vw, 44px); display: grid; grid-template-columns: 1.4fr .6fr; gap: 36px; align-items: center; }
.agency .cs-eyebrow { color: rgba(255,255,255,.85); }
.agency .cs-h { color: #fff; }
.agency-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 30px; margin-top: 22px; }
.agency .a-label { color: rgba(255,255,255,.7); font-family: var(--font-head); font-weight: 800; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.agency .a-val { color: #fff; font-size: 16.5px; font-weight: 600; margin-top: 8px; }
.agency .a-val a:hover { opacity: .85; }
.qr { width: 100%; max-width: 190px; aspect-ratio: 1/1; border-radius: 16px; background:
  repeating-conic-gradient(#0e3a8a 0 25%, #1657c4 0 50%) 0 0 / 24px 24px,
  rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); display: grid; place-items: center; margin-left: auto; }
.qr span { font-family: ui-monospace, monospace; font-size: 11px; color: #fff; background: rgba(0,0,0,.35); padding: 4px 8px; border-radius: 6px; }

.cs-other { background: var(--paper-2); }
.cs-cap { color: var(--muted); font-size: 14px; margin-top: 10px; font-weight: 600; }
.cs-other-card { display: grid; grid-template-columns: 1.4fr 1fr; background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-md); max-width: 760px; }
.cs-other-card .cr-body { padding: 30px; }
.cs-other-card .cr-media { min-height: 220px; }

/* subpage responsive */
@media (max-width: 980px) {
  .case-row, .cs-hero-grid, .cs-split, .agency, .cs-other-card { grid-template-columns: 1fr; }
  .case-row.rev .cr-body { order: 0; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero .ph { display: none; }
  .cr-media, .cs-other-card .cr-media { min-height: 240px; order: -1; }
  .brief-grid, .cs-pair, .reels-row, .grid-3, .grid-2, .results-grid, .agency-cols { grid-template-columns: 1fr 1fr; }
  .qr { margin: 0 auto; }
}
@media (max-width: 560px) {
  .reels-row, .results-grid, .grid-3 { grid-template-columns: 1fr 1fr; }
  .brief-grid, .cs-pair, .grid-2, .agency-cols { grid-template-columns: 1fr; }
  .case-row, .cs-other-card { border-radius: 18px; }
}

/* ============================================================
   V3 CONVERSION ELEMENTS
   ============================================================ */
/* hero badges */
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.hero-badges .badge-top { margin: 0; white-space: nowrap; }
.badge-7 { background: #fff4f3; color: var(--red); border: 1px solid #ffd9d5; }
.hero--c .badge-7 { background: rgba(255,255,255,.16); color: #ffd23f; border-color: rgba(255,255,255,.25); }

/* form reassurance microcopy */
.reassure { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 20px 0 10px; font-size: 12.5px; font-weight: 600; color: var(--muted); }
.reassure svg { color: #1f9d55; flex: none; }

/* trust bar */
.trustbar { background: var(--ink); color: #fff; }
.trustbar .wrap { padding-block: clamp(26px, 3vw, 38px); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.trust-item { text-align: center; position: relative; padding: 4px 8px; }
.trust-item + .trust-item::before { content: ""; position: absolute; left: 0; top: 12%; height: 76%; width: 1px; background: rgba(255,255,255,.14); }
.trust-item b { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(26px, 3vw, 40px); line-height: 1; letter-spacing: -.02em; }
.trust-item span { display: block; margin-top: 8px; font-size: 13px; color: rgba(255,255,255,.66); line-height: 1.25; }

/* guarantees */
.guar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.guar { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.guar-ico { flex: none; width: 48px; height: 48px; border-radius: 12px; background: #e9f7ee; color: #1f9d55; display: grid; place-items: center; }
.guar h3 { font-size: 18px; }
.guar p { color: var(--muted); font-size: 14.5px; margin: 6px 0 0; }

/* sticky CTA (mobile) */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(255,255,255,.96); backdrop-filter: blur(10px); border-top: 1px solid var(--line); box-shadow: 0 -8px 24px rgba(16,23,37,.10); transform: translateY(120%); transition: transform .3s ease; }
.sticky-cta.show { transform: none; }
.sticky-cta .sc-main { flex: 1; }
.sticky-cta .sc-call { flex: none; width: 52px; padding: 0; }

/* testimonial cards */
.tmt-card { flex: 0 0 calc((100% - 44px) / 3); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); margin: 0; display: flex; flex-direction: column; }
.tmt-stars { color: #f5a623; font-size: 18px; letter-spacing: 2px; }
.tmt-text { font-size: 16px; line-height: 1.55; color: var(--ink); margin: 16px 0 0; flex: 1; }
.tmt-author { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.tmt-ava { width: 44px; height: 44px; border-radius: 50%; flex: none; background: linear-gradient(135deg, var(--blue), var(--blue-deep)); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 19px; }
.tmt-author b { display: block; font-family: var(--font-head); font-size: 16px; }
.tmt-author small { color: var(--muted); font-size: 13px; }

/* pricing tag + help */
.p-name-row { display: flex; flex-direction: column-reverse; align-items: flex-start; gap: 8px; }
.p-tag { font-family: var(--font-head); font-weight: 700; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--blue); background: var(--chip); padding: 5px 11px; border-radius: 999px; }
.price-card.featured .p-tag { color: var(--red); background: #fff4f3; }
.price-help { text-align: center; margin-top: 30px; color: var(--muted); font-size: 15px; }
.price-help a { color: var(--blue); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* bolder case stat */
.case-stat { font-size: 20px; }
.case-stat small { display: block; }

/* reviews page scan grid */
.scan-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.scan-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.scan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.scan-card .ph { aspect-ratio: 3/4; border: 0; border-radius: 0; }
@media (max-width: 1080px) { .scan-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .scan-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .scan-grid { grid-template-columns: 1fr; } }

/* targeting page grids (responsive — no inline overrides) */
.net-ico { width: 46px; height: 46px; border-radius: 11px; object-fit: contain; display: block; flex: none; }
.award-dip { width: 100%; height: 240px; object-fit: contain; border-radius: 12px; display: block; background: #fff; padding: 6px; }
.t-net-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 46px; }
.t-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 46px; }
.t-bens { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 46px; }
@media (max-width: 980px) {
  .t-net-grid { grid-template-columns: repeat(2, 1fr); }
  .t-bens { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) { .t-stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) {
  .t-net-grid { grid-template-columns: 1fr; }
  .t-bens { grid-template-columns: 1fr; }
}
@media (max-width: 480px) { .t-stats { grid-template-columns: 1fr; } }

/* ============================================================
   BLOG page
   ============================================================ */
.blog-cats { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.blog-cat { font-family: var(--font-body); font-weight: 600; font-size: 14px; color: var(--ink-2); background: #fff; border: 1.5px solid var(--line); padding: 9px 18px; border-radius: 999px; cursor: pointer; transition: all .15s ease; }
.blog-cat:hover { border-color: var(--blue); color: var(--blue); }
.blog-cat.on { background: var(--blue); border-color: var(--blue); color: #fff; }

.blog-featured { display: grid; grid-template-columns: 1.1fr .9fr; gap: 0; background: #fff; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-md); margin-top: 30px; transition: transform .25s ease, box-shadow .25s ease; }
.blog-featured:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-featured .bf-media { position: relative; min-height: 320px; border: 0; border-radius: 0; }
.blog-featured .bf-body { padding: clamp(28px, 3.4vw, 48px); display: flex; flex-direction: column; }
.bf-body h2 { font-size: clamp(24px, 2.6vw, 34px); margin-top: 16px; }
.bf-body .bf-ex { color: var(--ink-2); font-size: 17px; margin-top: 16px; }
.bf-body .read-more { margin-top: auto; padding-top: 26px; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 30px; }
.bpost { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.bpost:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.bpost .bp-media { aspect-ratio: 16/10; border: 0; border-radius: 0; border-bottom: 1px solid var(--line); }
.bpost .bp-body { padding: 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.bpost h3 { font-size: 19px; line-height: 1.25; }
.bpost .bp-ex { color: var(--muted); font-size: 14.5px; flex: 1; }
.bp-meta { display: flex; align-items: center; gap: 10px; font-size: 12.5px; color: var(--muted); font-weight: 600; }
.bp-cat { background: var(--chip); color: var(--blue-deep); font-family: var(--font-head); font-weight: 700; font-size: 12px; padding: 5px 11px; border-radius: 999px; }
.bp-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); }
.read-more { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-head); font-weight: 700; font-size: 14.5px; color: var(--blue); }
.read-more:hover { gap: 11px; }
@media (max-width: 980px) {
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured .bf-media { order: -1; min-height: 240px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) { .blog-grid { grid-template-columns: 1fr; } }

/* ============================================================
   BLOG POST (article) page
   ============================================================ */
.post-hero { background: linear-gradient(180deg, var(--paper-2), #fff); border-bottom: 1px solid var(--line); }
.post-hero .wrap { padding-block: clamp(24px, 3.4vw, 44px); max-width: 860px; }
.post-head-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 18px; font-size: 13.5px; color: var(--muted); font-weight: 600; }
.post-title { font-family: var(--font-head); font-weight: 800; letter-spacing: -.02em; font-size: clamp(30px, 4.6vw, 50px); line-height: 1.05; margin-top: 16px; }
.post-author { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.post-author .pa-ava { width: 46px; height: 46px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 18px; flex: none; }
.post-author .pa-name { font-family: var(--font-head); font-weight: 700; font-size: 15px; color: var(--ink); }
.post-author .pa-role { font-size: 13px; color: var(--muted); }

.post-cover { max-width: 980px; margin: 0 auto; padding-inline: var(--pad); margin-top: 36px; }
.post-cover .ph { aspect-ratio: 16/8; border-radius: var(--radius); }

.article { max-width: 720px; margin: 0 auto; padding-inline: var(--pad); padding-block: clamp(36px, 5vw, 64px); }
.article > p { font-size: 18px; line-height: 1.7; color: var(--ink-2); margin: 0 0 22px; }
.article > p:first-of-type { font-size: 20px; color: var(--ink); }
.article h2 { font-family: var(--font-head); font-weight: 800; font-size: clamp(24px, 2.6vw, 32px); letter-spacing: -.02em; margin: 40px 0 16px; }
.article h3 { font-family: var(--font-head); font-weight: 800; font-size: 21px; margin: 30px 0 12px; }
.article ul { margin: 0 0 22px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.article ul li { position: relative; padding-left: 30px; font-size: 17px; line-height: 1.6; color: var(--ink-2); }
.article ul li::before { content: ""; position: absolute; left: 4px; top: 9px; width: 9px; height: 9px; border-radius: 50%; background: var(--blue); }
.article blockquote { margin: 32px 0; padding: 24px 28px; background: var(--paper-2); border-left: 4px solid var(--blue); border-radius: 0 14px 14px 0; }
.article blockquote p { font-family: var(--font-head); font-weight: 700; font-size: 21px; line-height: 1.4; color: var(--ink); margin: 0; }
.article .a-figure { margin: 32px 0; }
.article .a-figure .ph { aspect-ratio: 16/9; border-radius: var(--radius); }
.article .a-figure figcaption { text-align: center; font-size: 13.5px; color: var(--muted); margin-top: 12px; }
.takeaways { background: linear-gradient(160deg, var(--chip), #fff); border: 1px solid #d4e0f5; border-radius: var(--radius); padding: 28px 30px; margin: 34px 0; }
.takeaways h4 { font-family: var(--font-head); font-weight: 800; font-size: 18px; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.takeaways ul li::before { background: var(--red); }

.post-foot { max-width: 720px; margin: 0 auto; padding-inline: var(--pad); padding-bottom: 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 26px; }
.post-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.post-tags .bp-cat { cursor: default; }
.post-share { display: flex; align-items: center; gap: 10px; }
.post-share span { font-size: 13.5px; color: var(--muted); font-weight: 600; }
.post-share a { width: 38px; height: 38px; border-radius: 10px; border: 1.5px solid var(--line); display: grid; place-items: center; color: var(--ink-2); font-family: var(--font-head); font-weight: 700; font-size: 13px; }
.post-share a:hover { border-color: var(--blue); color: var(--blue); }

.related { background: var(--paper-2); }
@media (max-width: 560px) {
  .article > p, .article > p:first-of-type { font-size: 17px; }
}

/* contacts page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.c-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 18px; }
.c-card .c-ico { width: 58px; height: 58px; border-radius: 16px; background: var(--chip); color: var(--blue); display: grid; place-items: center; flex: none; }
.c-addr { grid-row: span 2; flex-direction: column; align-items: flex-start; justify-content: center; gap: 16px; }
.c-label { font-size: 13px; color: var(--muted); font-weight: 600; }
.c-val { font-family: var(--font-head); font-weight: 800; font-size: clamp(20px, 2vw, 26px); margin-top: 2px; word-break: break-word; }
.c-addr .c-val { font-size: 20px; line-height: 1.3; }
.c-card:not(.c-addr) .c-val { font-size: clamp(18px, 1.8vw, 21px); }
.c-card.accent { background: linear-gradient(135deg, var(--blue), var(--blue-deep)); color: #fff; }
.c-card.accent .c-ico { background: rgba(255,255,255,.18); color: #fff; }
.c-card.accent .c-label { color: rgba(255,255,255,.8); }
.map-ph { margin-top: 22px; height: clamp(280px, 38vw, 420px); border-radius: var(--radius); }
.req-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 46px; }
.req-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.req-head { display: flex; align-items: center; gap: 12px; }
.req-head .r-ico { width: 42px; height: 42px; border-radius: 11px; background: #fff; border: 1px solid var(--line); color: var(--blue); display: grid; place-items: center; flex: none; }
.req-head h3 { font-size: 19px; }
.req-card p { color: var(--ink-2); font-size: 15.5px; margin: 16px 0 0; line-height: 1.55; }
@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
  .c-addr { grid-row: auto; }
  .req-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1080px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
  .trust-item::before { display: none !important; }
}
@media (max-width: 860px) {
  .sticky-cta { display: flex; }
  .guar-grid { grid-template-columns: 1fr; }
  body { padding-bottom: 76px; }
}
@media (max-width: 560px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 10px; }
  .trust-item::before { display: none !important; }
  .tmt-card { flex-basis: 100%; padding: 24px; }
}

