/* ============ VTRENDE — дизайн-система из презентации ============ */
:root {
  --navy-950: #0A0E1F;
  --navy-900: #0E1329;
  --navy-800: #131A36;
  --navy-700: #1B2346;
  --crimson: #A61C4B;
  --pink: #E5195E;
  --pink-soft: #F14D86;
  --rose-grad: linear-gradient(120deg, #8E1440 0%, #C51B4F 45%, #E5195E 100%);
  --light: #F4F5F8;
  --white: #FFFFFF;
  --ink: #10131F;
  --grey: #9AA1B5;
  --green: #25D366;
  --green-grad: linear-gradient(120deg, #128C5A, #2BD873);
  --radius: 22px;
  --radius-lg: 32px;
  --shadow: 0 18px 50px rgba(8, 12, 30, .45);
  --shadow-pink: 0 14px 40px rgba(229, 25, 94, .35);
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Jost', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--navy-900);
  color: var(--white);
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

::selection { background: var(--pink); color: #fff; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--navy-950); }
::-webkit-scrollbar-thumb { background: var(--crimson); border-radius: 6px; }

.container { width: min(1200px, 92%); margin: 0 auto; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; }
.accent { color: var(--pink); }
.accent-grad {
  background: linear-gradient(100deg, #E5195E, #F14D86);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Page fade-in / transitions ---------- */
body { opacity: 0; transition: opacity .55s ease; }
body.loaded { opacity: 1; }
body.leaving { opacity: 0; transition: opacity .3s ease; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 18px 0;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
}
.header.scrolled {
  background: rgba(12, 16, 34, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 30px rgba(0,0,0,.35);
  padding: 12px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-head); }
.logo-mark {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  font-weight: 900; font-style: italic; font-size: 20px;
  background: var(--rose-grad);
  border-radius: 12px;
  box-shadow: var(--shadow-pink);
  transform: skewX(-6deg);
}
.logo-text { font-size: 22px; font-weight: 900; font-style: italic; letter-spacing: .5px; }
.logo-text .v { color: var(--pink); }
.logo-sub { display: block; font-family: var(--font-body); font-style: normal; font-weight: 400; font-size: 11px; color: var(--grey); letter-spacing: .3px; }

.nav { display: flex; gap: 6px; }
.nav a {
  padding: 9px 16px; border-radius: 999px;
  font-size: 15.5px; font-weight: 500; color: #D6DAE6;
  transition: color .25s, background .25s;
}
.nav a:hover { color: #fff; background: rgba(229, 25, 94, .16); }
.nav a.active { color: #fff; background: var(--rose-grad); box-shadow: var(--shadow-pink); }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 700; font-size: 16px;
  color: #fff; background: var(--rose-grad);
  box-shadow: var(--shadow-pink);
  border: none; cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform .3s cubic-bezier(.2,.9,.3,1.4), box-shadow .3s;
}
.btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 20px 50px rgba(229,25,94,.5); }
.btn::after {
  content: ''; position: absolute; top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-25deg);
  animation: shine 3.4s ease-in-out infinite;
}
@keyframes shine { 0%, 60% { left: -80%; } 100% { left: 140%; } }
.btn.green { background: var(--green-grad); box-shadow: 0 14px 40px rgba(37, 211, 102, .3); }
.btn.small { padding: 10px 20px; font-size: 14px; }
.btn.ghost { background: transparent; border: 2px solid rgba(255,255,255,.25); box-shadow: none; }
.btn.ghost:hover { border-color: var(--pink); box-shadow: var(--shadow-pink); }

.burger { display: none; width: 44px; height: 44px; border: none; background: none; cursor: pointer; flex-direction: column; justify-content: center; gap: 6px; }
.burger span { display: block; height: 3px; width: 26px; margin: 0 auto; background: #fff; border-radius: 3px; transition: .3s; }
.burger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: 150px 0 90px;
  background:
    radial-gradient(1000px 600px at 85% -10%, rgba(197, 27, 79, .22), transparent 60%),
    radial-gradient(800px 500px at -10% 110%, rgba(229, 25, 94, .16), transparent 60%),
    linear-gradient(150deg, #10152C 0%, #0C1024 55%, #141B3A 100%);
  overflow: hidden;
}
.hero.inner-hero { min-height: 62svh; padding: 170px 0 80px; }

/* диагональная лента как на слайдах */
.ribbon {
  position: absolute; width: 160%; height: 130px;
  background: var(--rose-grad);
  opacity: .95;
  transform: rotate(-35deg);
  box-shadow: 0 0 80px rgba(229,25,94,.4);
  pointer-events: none;
  will-change: transform;
}
.ribbon.r1 { bottom: 4%; left: -68%; }
.ribbon.r2 { top: 6%; right: -75%; height: 90px; opacity: .55; }
.ribbon.thin { height: 34px; opacity: .8; }

/* водяной знак как «ПОРТФОЛИО» на слайдах */
.watermark {
  position: absolute; inset: 0; display: flex; align-items: center;
  font-family: var(--font-head); font-weight: 900; font-style: italic;
  font-size: clamp(120px, 22vw, 300px); letter-spacing: .04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.05);
  white-space: nowrap; pointer-events: none; user-select: none;
  animation: drift 40s linear infinite;
}
@keyframes drift { from { transform: translateX(10%); } to { transform: translateX(-60%); } }

.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.25fr .75fr; gap: 40px; align-items: center; }
.hero-content .kicker {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px; border-radius: 999px;
  background: rgba(229,25,94,.14); border: 1px solid rgba(229,25,94,.4);
  color: var(--pink-soft); font-weight: 600; font-size: 14.5px; letter-spacing: .6px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(38px, 5.4vw, 68px);
  font-weight: 800; margin: 22px 0 18px;
}
.hero .lead { font-size: 20px; color: #C9CEDD; max-width: 560px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.hero-phones { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 30px; color: #AEB5C9; font-size: 16px; }
.hero-phones a { display: inline-flex; gap: 8px; align-items: center; transition: color .25s; }
.hero-phones a:hover { color: var(--green); }

.hero-art { position: relative; display: grid; place-items: center; }
.hero-art img {
  width: min(420px, 90%); border-radius: 26px;
  box-shadow: var(--shadow);
  animation: float 5.5s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-18px) rotate(2deg); } }
.hero-art::before {
  content: ''; position: absolute; width: 340px; height: 340px; border-radius: 50%;
  background: radial-gradient(circle, rgba(229,25,94,.35), transparent 65%);
  filter: blur(10px);
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { transform: scale(1); opacity: .8; } 50% { transform: scale(1.15); opacity: 1; } }

/* ---------- Sections ---------- */
.section { padding: 96px 0; position: relative; }
.section.light { background: var(--light); color: var(--ink); }
.section.darker { background: var(--navy-950); }
.section-head { max-width: 760px; margin-bottom: 54px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 800; }
.section-head p { margin-top: 14px; font-size: 19px; color: var(--grey); }
.section.light .section-head p { color: #5A6072; }

/* пилюля-подложка как на слайдах */
.pill-note {
  display: flex; gap: 18px; align-items: center;
  background: #fff; color: var(--ink);
  border-radius: 999px; padding: 20px 30px 20px 14px;
  box-shadow: 0 14px 44px rgba(15, 19, 40, .12);
  position: relative; overflow: hidden;
  font-size: 17.5px;
}
.pill-note::before { content: ''; width: 46px; align-self: stretch; flex: none; border-radius: 999px; background: var(--rose-grad); }
.section:not(.light) .pill-note { background: #FDFDFF; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 26px; }
.grid.c2 { grid-template-columns: repeat(2, 1fr); }
.grid.c3 { grid-template-columns: repeat(3, 1fr); }
.grid.c4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-700));
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(229,25,94,.45); }
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--rose-grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.card:hover::before { transform: scaleX(1); }
.card .icon {
  width: 58px; height: 58px; border-radius: 16px;
  display: grid; place-items: center; font-size: 26px;
  background: rgba(229,25,94,.14); border: 1px solid rgba(229,25,94,.35);
  margin-bottom: 20px;
}
.card h3 { font-size: 21px; font-weight: 700; margin-bottom: 10px; }
.card p { color: #B9BFD2; font-size: 16.5px; }
.card .more { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--pink-soft); font-weight: 600; font-size: 15.5px; }
.card .more span { transition: transform .3s; }
.card:hover .more span { transform: translateX(6px); }

.section.light .card { background: #fff; border-color: #E7E9F0; }
.section.light .card p { color: #5A6072; }
.section.light .card:hover { box-shadow: 0 18px 50px rgba(15,19,40,.12); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.stat {
  text-align: center; padding: 34px 16px;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-700));
  border-radius: var(--radius); border: 1px solid rgba(255,255,255,.07);
}
.stat .num {
  font-family: var(--font-head); font-weight: 900;
  font-size: clamp(34px, 4vw, 52px);
  background: linear-gradient(100deg, #fff, #F14D86);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.stat .lbl { margin-top: 8px; color: var(--grey); font-size: 16px; }

/* ---------- Steps (процесс) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step {
  background: #fff; color: var(--ink);
  border-radius: var(--radius); padding: 30px 26px 26px;
  position: relative;
  box-shadow: 0 12px 36px rgba(15,19,40,.10);
  transition: transform .35s;
}
.step:hover { transform: translateY(-6px); }
.step::before {
  counter-increment: step; content: '0' counter(step);
  position: absolute; top: -18px; left: 22px;
  font-family: var(--font-head); font-weight: 900; font-size: 15px;
  background: var(--rose-grad); color: #fff;
  padding: 7px 14px; border-radius: 999px;
  box-shadow: var(--shadow-pink);
}
.step h3 { font-size: 19px; margin: 10px 0 8px; }
.step p { color: #5A6072; font-size: 15.5px; }

/* ---------- Portfolio ---------- */
.pf-grid { display: grid; gap: 22px; }
.pf-grid.vert { grid-template-columns: repeat(5, 1fr); }
.pf-grid.wide { grid-template-columns: repeat(2, 1fr); }
.pf-grid.c3 { grid-template-columns: repeat(3, 1fr); }
.pf-grid.c4 { grid-template-columns: repeat(4, 1fr); }
.pf-item {
  border-radius: 18px; overflow: hidden; position: relative;
  box-shadow: 0 14px 40px rgba(5,8,20,.45);
  transition: transform .4s ease, box-shadow .4s ease;
}
.pf-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.pf-item:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(229,25,94,.28); }
.pf-item:hover img { transform: scale(1.06); }
.pf-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14,19,41,.55), transparent 45%);
  opacity: 0; transition: opacity .4s;
}
.pf-item:hover::after { opacity: 1; }

.chip-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.chip {
  padding: 10px 22px; border-radius: 999px; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  color: #C9CEDD; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  transition: all .3s;
}
.chip:hover { border-color: var(--pink); color: #fff; }
.chip.active { background: var(--rose-grad); color: #fff; border-color: transparent; box-shadow: var(--shadow-pink); }

/* ---------- Cases ---------- */
.case-card {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-700));
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius); padding: 30px 28px;
  transition: transform .35s, border-color .35s, box-shadow .35s;
  display: flex; flex-direction: column; gap: 14px;
}
.case-card:hover { transform: translateY(-8px); border-color: rgba(229,25,94,.5); box-shadow: var(--shadow); }
.case-card .tag { align-self: flex-start; font-size: 13px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--pink-soft); background: rgba(229,25,94,.13); border: 1px solid rgba(229,25,94,.35); padding: 6px 14px; border-radius: 999px; }
.case-card h3 { font-size: 20px; }
.case-card .romi {
  font-family: var(--font-head); font-weight: 900; font-size: 44px;
  background: linear-gradient(100deg, #2BD873, #7CE577);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.case-card .romi-lbl { font-size: 13.5px; color: var(--grey); margin-top: -12px; letter-spacing: 1px; text-transform: uppercase; }
.case-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; font-size: 15.5px; color: #B9BFD2; }
.case-metrics b { color: #fff; font-weight: 600; }

/* ---------- Bloggers ---------- */
.blogger-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.blogger {
  display: flex; align-items: center; gap: 14px;
  background: #17182B; border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px; padding: 14px 18px;
  transition: transform .3s, border-color .3s;
}
.blogger:hover { transform: translateY(-4px); border-color: rgba(229,25,94,.5); }
.blogger .ava {
  width: 52px; height: 52px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 800; font-size: 18px; color: #fff;
  background: conic-gradient(from 210deg, #F58529, #DD2A7B, #8134AF, #515BD4, #F58529);
  position: relative;
}
.blogger .ava::after { content: ''; position: absolute; inset: 3px; border-radius: 50%; background: #17182B; }
.blogger .ava span { position: relative; z-index: 1; font-size: 16px; }
.blogger .nick { font-weight: 600; font-size: 15.5px; display: flex; align-items: center; gap: 6px; }
.blogger .nick .check { color: #3D9BFF; font-size: 14px; }
.blogger .subs { font-family: var(--font-head); font-weight: 700; color: #35C2FF; font-size: 14.5px; }

/* ---------- Marquee клиентов ---------- */
.marquee { overflow: hidden; position: relative; padding: 26px 0; }
.marquee-track { display: flex; gap: 60px; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { font-family: var(--font-head); font-weight: 800; font-size: 24px; color: #3E4665; white-space: nowrap; letter-spacing: 1px; transition: color .3s; }
.marquee-item:hover { color: var(--pink); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Founder ---------- */
.founder { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: center; }
.founder-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.founder-photo img { width: 100%; }
.founder-text h2 { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 22px; }
.founder-text p { color: #C9CEDD; margin-bottom: 16px; font-size: 17.5px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative; overflow: hidden;
  background: var(--rose-grad);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 30px;
  box-shadow: 0 30px 80px rgba(197,27,79,.4);
}
.cta-banner::before {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,.12);
}
.cta-banner h2 { font-size: clamp(26px, 3.4vw, 40px); max-width: 560px; position: relative; }
.cta-banner .btn { background: #fff; color: var(--crimson); box-shadow: 0 14px 40px rgba(0,0,0,.25); }
.cta-banner .btn.wa { background: var(--green-grad); color: #fff; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-950); padding: 60px 0 30px; border-top: 1px solid rgba(255,255,255,.06); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer h4 { font-size: 16px; text-transform: uppercase; letter-spacing: 1.2px; color: var(--grey); margin-bottom: 18px; }
.footer a { color: #C9CEDD; display: block; padding: 5px 0; font-size: 16px; transition: color .25s; }
.footer a:hover { color: var(--pink-soft); }
.footer .copy { text-align: center; color: #59617C; font-size: 14.5px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.06); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(46px); transition: opacity .8s cubic-bezier(.2,.65,.3,1), transform .8s cubic-bezier(.2,.65,.3,1); }
.reveal.left { transform: translateX(-56px); }
.reveal.right { transform: translateX(56px); }
.reveal.zoom { transform: scale(.88); }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 26px; bottom: 26px; z-index: 90;
  width: 62px; height: 62px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--green-grad);
  box-shadow: 0 12px 36px rgba(37,211,102,.45);
  font-size: 28px;
  animation: wa-pulse 2.6s ease-in-out infinite;
}
@keyframes wa-pulse {
  0%,100% { transform: scale(1); box-shadow: 0 12px 36px rgba(37,211,102,.45); }
  50% { transform: scale(1.08); box-shadow: 0 12px 46px rgba(37,211,102,.65); }
}

/* ---------- Service detail ---------- */
.svc { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; padding: 60px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.svc:last-child { border-bottom: none; }
.svc h3 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 16px; }
.svc h3 .n { color: var(--pink); font-style: italic; margin-right: 10px; }
.svc ul { margin-top: 14px; }
.svc ul li { position: relative; padding: 7px 0 7px 30px; color: #C9CEDD; font-size: 17px; }
.svc ul li::before { content: ''; position: absolute; left: 0; top: 15px; width: 16px; height: 16px; border-radius: 5px; background: var(--rose-grad); transform: rotate(45deg) scale(.6); }
.svc-visual { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.svc-visual img { width: 100%; }
.svc-visual.pad { background: linear-gradient(160deg, var(--navy-800), var(--navy-700)); padding: 34px; border: 1px solid rgba(255,255,255,.08); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content .lead { margin-inline: auto; }
  .hero-cta, .hero-phones { justify-content: center; }
  .hero-art { order: -1; margin-bottom: 10px; }
  .hero-art img { width: min(300px, 70%); }
  .grid.c3, .grid.c4, .steps { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .pf-grid.vert { grid-template-columns: repeat(3, 1fr); }
  .pf-grid.c4 { grid-template-columns: repeat(2, 1fr); }
  .blogger-grid { grid-template-columns: repeat(2, 1fr); }
  .founder, .svc { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16.5px; }
  .nav {
    position: fixed; inset: 0; z-index: 99;
    background: rgba(10,14,31,.97); backdrop-filter: blur(16px);
    flex-direction: column; align-items: center; justify-content: center; gap: 14px;
    opacity: 0; pointer-events: none; transition: opacity .35s;
  }
  .nav.open { opacity: 1; pointer-events: auto; }
  .nav a { font-size: 22px; }
  .burger { display: flex; z-index: 100; }
  .header .btn { display: none; }
  .grid.c2, .grid.c3, .grid.c4, .steps { grid-template-columns: 1fr; }
  .pf-grid.vert { grid-template-columns: repeat(2, 1fr); }
  .pf-grid.wide, .pf-grid.c3 { grid-template-columns: 1fr; }
  .blogger-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .cta-banner { padding: 40px 28px; }
  .section { padding: 70px 0; }
  .ribbon { display: none; }
}
