/* ============================================================
   Melloo Media — brand stylesheet
   Red #F60F06 · Blue #1481B8 · Atkinson Hyperlegible
   ============================================================ */

@font-face {
  font-family: 'Atkinson Hyperlegible';
  src: url('../fonts/AtkinsonHyperlegible-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Atkinson Hyperlegible';
  src: url('../fonts/AtkinsonHyperlegible-Italic.ttf') format('truetype');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Atkinson Hyperlegible';
  src: url('../fonts/AtkinsonHyperlegible-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Atkinson Hyperlegible';
  src: url('../fonts/AtkinsonHyperlegible-BoldItalic.ttf') format('truetype');
  font-weight: 700; font-style: italic; font-display: swap;
}

:root {
  --red: #F60F06;
  --red-dark: #D30C04;
  --blue: #1481B8;
  --blue-dark: #0F628C;
  --ink: #141414;
  --ink-soft: #4a4a4a;
  --muted: #6b6b6b;
  --bg: #ffffff;
  --paper: #fafaf7;
  --paper-2: #f3f3ee;
  --line: #e9e8e2;
  --line-strong: #dcdbd3;
  --white: #ffffff;

  --shadow-sm: 0 1px 2px rgba(20,20,20,.05), 0 2px 8px rgba(20,20,20,.04);
  --shadow-md: 0 2px 6px rgba(20,20,20,.05), 0 12px 32px rgba(20,20,20,.08);
  --shadow-lg: 0 4px 12px rgba(20,20,20,.06), 0 24px 56px rgba(20,20,20,.12);

  --radius: 14px;
  --radius-lg: 22px;

  --font: 'Atkinson Hyperlegible', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --container: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }
::selection { background: rgba(246,15,6,.16); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 700; font-size: 16px;
  padding: 13px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease, border-color .18s ease;
  text-decoration: none; line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn--red { background: var(--red); color: #fff; box-shadow: 0 6px 18px rgba(246,15,6,.28); }
.btn--red:hover { background: var(--red-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(211,12,4,.34); }
.btn--blue { background: var(--blue); color: #fff; box-shadow: 0 6px 18px rgba(20,129,184,.28); }
.btn--blue:hover { background: var(--blue-dark); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); transform: translateY(-2px); }
.btn--lg { padding: 16px 32px; font-size: 17px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand__mark { width: 38px; height: 38px; flex: none; }
.brand__word {
  font-family: var(--font); font-weight: 700; font-style: italic;
  font-size: 1.35rem; color: var(--red); letter-spacing: -0.01em; white-space: nowrap;
}
.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  font-weight: 700; font-size: 15.5px; color: var(--ink-soft);
  padding: 9px 14px; border-radius: 999px; transition: color .16s ease, background .16s ease;
}
.nav__link:hover { color: var(--ink); background: var(--paper-2); }
.nav__link.is-active { color: var(--red); }
.nav__cta { margin-left: 12px; padding: 11px 22px; font-size: 15px; }
.nav-toggle {
  display: none; width: 44px; height: 44px; background: none; border: 0; cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px; border-radius: 10px;
}
.nav-toggle span { display: block; width: 22px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- sections ---------- */
section { padding: 92px 0; }
.section--paper { background: var(--paper); }
.section--tight { padding: 56px 0; }

.section-head { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.section-head--left { margin-left: 0; text-align: left; }
.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 700; letter-spacing: -0.02em;
  line-height: 1.12; margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--red); }
.section-lede { color: var(--muted); font-size: 1.12rem; line-height: 1.6; }

/* ---------- hero ---------- */
.hero { padding: 72px 0 84px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 56px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 14px; color: var(--blue);
  background: rgba(20,129,184,.08); border: 1px solid rgba(20,129,184,.18);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex: none; }
.hero-title {
  font-size: clamp(2.55rem, 5.6vw, 4.3rem); font-weight: 700; letter-spacing: -0.025em;
  line-height: 1.04; margin-bottom: 22px;
}
.hero-title .mark { font-style: italic; color: var(--red); }
.hero-title .accent { color: var(--blue); }
.hero-sub { color: var(--ink-soft); font-size: 1.2rem; line-height: 1.6; max-width: 520px; margin-bottom: 32px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-trust { display: flex; align-items: center; gap: 12px; margin-top: 30px; color: var(--muted); font-size: 15px; }
.hero-trust .stars { color: #f5a623; letter-spacing: 1px; font-size: 16px; }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; min-height: 380px; }
.hero-mark { width: min(360px, 82%); filter: drop-shadow(0 24px 40px rgba(20,20,20,.10)); }
.hero-mark img { width: 100%; height: auto; }
.hero-ring {
  position: absolute; inset: 0; margin: auto; width: min(430px, 96%); height: min(430px, 96%);
  border-radius: 50%; border: 1px dashed rgba(20,129,184,.28);
  animation: spin 60s linear infinite; pointer-events: none;
}
.hero-chip {
  position: absolute; background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 10px 16px; box-shadow: var(--shadow-md); font-weight: 700; font-size: 14px; line-height: 1.2;
}
.hero-chip strong { display: block; font-size: 22px; color: var(--red); letter-spacing: -0.01em; }
.hero-chip--a { top: 8%; left: 2%; }
.hero-chip--b { top: 14%; right: 0%; }
.hero-chip--c { bottom: 10%; left: 8%; }
.hero-chip--d { bottom: 4%; right: 6%; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-mark { animation: floaty 6s ease-in-out infinite; }

/* ---------- logos strip ---------- */
.logos-strip { padding: 44px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.logos-strip .container { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 18px 48px; }
.logos-strip .label { font-weight: 700; color: var(--muted); font-size: 14px; letter-spacing: .02em; }
.logo-item { font-weight: 700; font-size: 20px; color: var(--ink-soft); opacity: .72; white-space: nowrap; transition: opacity .18s ease, color .18s ease; }
.logo-item:hover { opacity: 1; color: var(--ink); }
.logo-item .accent { color: var(--blue); }

/* ---------- services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 32px; position: relative; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.service-card__icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-card__icon svg { width: 26px; height: 26px; }
.service-card__icon--red { background: rgba(246,15,6,.09); color: var(--red); }
.service-card__icon--blue { background: rgba(20,129,184,.09); color: var(--blue); }
.service-card h3 { font-size: 1.4rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 10px; }
.service-card p { color: var(--ink-soft); margin-bottom: 16px; }
.service-card__link { font-weight: 700; color: var(--red); display: inline-flex; align-items: center; gap: 6px; }
.service-card__link:hover { color: var(--red-dark); }
.service-card__link .arr { transition: transform .18s ease; }
.service-card:hover .service-card__link .arr { transform: translateX(4px); }

/* ---------- stats band ---------- */
.stats-band { background: var(--ink); color: #fff; padding: 76px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.stat__num { font-size: clamp(2.6rem, 5vw, 3.6rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.stat__num .plus { color: var(--red); }
.stat__label { color: rgba(255,255,255,.68); font-size: 15.5px; margin-top: 8px; }

/* ---------- value list ---------- */
.value-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.value-item {
  display: flex; gap: 16px; align-items: flex-start; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 22px;
}
.value-item__mark { flex: none; width: 26px; height: 26px; color: var(--blue); margin-top: 2px; }
.value-item__mark svg { width: 26px; height: 26px; }
.value-item h4 { font-size: 1.12rem; font-weight: 700; margin-bottom: 4px; }
.value-item p { color: var(--muted); font-size: 15.5px; line-height: 1.5; }

/* ---------- case studies ---------- */
.cs-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 40px 0; border-bottom: 1px solid var(--line); }
.cs-row:first-of-type { padding-top: 0; }
.cs-row:last-of-type { border-bottom: 0; }
.cs-row--flip .cs-media { order: 2; }
.cs-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); background: var(--paper-2); }
.cs-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.cs-tag { display: inline-block; font-weight: 700; font-size: 13px; letter-spacing: .02em; color: var(--blue); text-transform: uppercase; margin-bottom: 12px; }
.cs-row h3 { font-size: 1.7rem; font-weight: 700; letter-spacing: -0.015em; line-height: 1.18; margin-bottom: 12px; }
.cs-row .cs-desc { color: var(--ink-soft); margin-bottom: 20px; }
.cs-metrics { display: flex; gap: 32px; flex-wrap: wrap; }
.cs-metric strong { display: block; font-size: 1.9rem; font-weight: 700; color: var(--red); letter-spacing: -0.02em; line-height: 1; }
.cs-metric span { font-size: 14px; color: var(--muted); }
.cs-metric--blue strong { color: var(--blue); }

/* ---------- results / specialties ---------- */
.results { background: var(--paper); }
.results-split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.results-copy p { color: var(--ink-soft); font-size: 1.08rem; margin-bottom: 18px; }
.results-big { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.results-big .rbox { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; }
.results-big .rbox strong { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 700; letter-spacing: -0.03em; color: var(--red); display: block; line-height: 1; }
.results-big .rbox.blue strong { color: var(--blue); }
.results-big .rbox p { margin: 12px 0 0; color: var(--muted); font-size: 15.5px; }

/* ---------- testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.testimonial {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 32px; display: flex; flex-direction: column; gap: 18px;
}
.testimonial__quote { font-size: 1.12rem; line-height: 1.6; color: var(--ink-soft); font-style: italic; }
.testimonial__who { display: flex; align-items: center; gap: 14px; }
.testimonial__avatar {
  width: 48px; height: 48px; border-radius: 50%; background: var(--paper-2);
  display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--red); flex: none;
  border: 1px solid var(--line);
}
.testimonial__who strong { display: block; font-size: 1.02rem; }
.testimonial__who span { color: var(--muted); font-size: 14px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 12px; background: #fff; overflow: hidden; }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--font); font-weight: 700; font-size: 1.06rem; color: var(--ink);
  padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-q .plus { flex: none; font-size: 22px; color: var(--red); transition: transform .2s ease; line-height: 1; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 22px 22px; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--red); color: #fff; text-align: center; padding: 84px 0; }
.cta-band h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.12; margin-bottom: 16px; }
.cta-band p { font-size: 1.15rem; color: rgba(255,255,255,.92); max-width: 560px; margin: 0 auto 30px; }
.cta-band .btn--white { background: #fff; color: var(--red); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.cta-band .btn--white:hover { color: var(--red-dark); transform: translateY(-2px); }

/* ---------- page hero (inner) ---------- */
.page-hero { background: var(--paper); border-bottom: 1px solid var(--line); padding: 72px 0 60px; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 700; letter-spacing: -0.025em; line-height: 1.06; }
.page-hero h1 em { font-style: italic; color: var(--red); }
.page-hero p { color: var(--ink-soft); font-size: 1.18rem; max-width: 640px; margin-top: 16px; }

/* ---------- about ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split__img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.split__img img { width: 100%; height: 100%; object-fit: cover; }
.pillar { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; }
.pillar__num { font-weight: 700; font-style: italic; color: var(--blue); font-size: 1.1rem; margin-bottom: 10px; }
.pillar h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; }
.pillar p { color: var(--ink-soft); }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.founder { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: center; }
.founder__photo { position: relative; }
.founder__photo img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; max-height: 560px; object-fit: cover; object-position: top; }
.founder__name { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; letter-spacing: -0.01em; }
.founder__role { color: var(--red); font-weight: 700; font-style: italic; font-size: 1.1rem; margin-bottom: 16px; }
.founder p { color: var(--ink-soft); margin-bottom: 16px; }
.traits { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.trait { background: var(--paper-2); border: 1px solid var(--line); color: var(--ink-soft); font-weight: 700; font-size: 14px; padding: 8px 14px; border-radius: 999px; }

/* ---------- process ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 24px; position: relative; }
.step__num { font-weight: 700; font-style: italic; font-size: 2.4rem; color: var(--red); line-height: 1; margin-bottom: 14px; }
.step h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; line-height: 1.55; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; }
.contact-card + .contact-card { margin-top: 18px; }
.contact-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 6px; }
.contact-card p, .contact-card a { color: var(--ink-soft); }
.contact-card a { display: block; font-weight: 700; font-size: 1.15rem; }
.contact-card a:hover { color: var(--red); }
.contact-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; margin-top: 14px; }
.contact-meta div { font-size: 15px; color: var(--muted); }
.contact-meta strong { display: block; color: var(--ink); font-size: 14px; }
.form label { display: block; font-weight: 700; font-size: 14.5px; margin-bottom: 7px; }
.form input, .form textarea, .form select {
  width: 100%; font-family: var(--font); font-size: 16px; color: var(--ink);
  border: 1.5px solid var(--line-strong); border-radius: 11px; padding: 13px 15px;
  margin-bottom: 18px; background: #fff; transition: border-color .16s ease, box-shadow .16s ease;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(20,129,184,.14);
}
.form textarea { resize: vertical; min-height: 130px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 13.5px; color: var(--muted); margin-top: 6px; }

/* ---------- blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .2s ease, box-shadow .2s ease; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-card__media { aspect-ratio: 16/9; background: var(--paper-2); overflow: hidden; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post-card__meta { font-size: 13px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .02em; margin-bottom: 10px; }
.post-card h3 { font-size: 1.22rem; font-weight: 700; line-height: 1.3; margin-bottom: 10px; letter-spacing: -0.01em; }
.post-card p { color: var(--muted); font-size: 15.5px; flex: 1; }
.post-card__link { margin-top: 16px; font-weight: 700; color: var(--red); }

/* ---------- footer ---------- */
.site-footer { background: var(--paper); border-top: 1px solid var(--line); padding: 68px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .brand__lockup { width: 150px; margin-bottom: 18px; }
.footer-tag { color: var(--muted); font-size: 15.5px; max-width: 300px; }
.footer-col h4 { font-size: 1rem; font-weight: 700; margin-bottom: 16px; letter-spacing: .01em; }
.footer-col a { display: block; color: var(--ink-soft); padding: 4px 0; font-size: 15.5px; }
.footer-col a:hover { color: var(--red); }
.footer-col p { color: var(--ink-soft); font-size: 15.5px; padding: 4px 0; }
.footer-bottom { border-top: 1px solid var(--line); padding: 22px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted); font-size: 14px; }

/* ---------- utilities ---------- */
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-40 { margin-bottom: 40px; }

/* reveal — only applied once JS confirms (content visible by default) */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.16,.84,.44,1), transform .7s cubic-bezier(.16,.84,.44,1); }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .hero-mark, .hero-ring { animation: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .split, .results-split, .contact-grid, .founder { grid-template-columns: 1fr; }
  .founder__photo img { max-height: 480px; }
  .services-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .value-list { grid-template-columns: 1fr 1fr; }
  .pillars, .process { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .cs-row { grid-template-columns: 1fr; gap: 28px; }
  .cs-row--flip .cs-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { min-height: 300px; }
  .hero-chip--a { left: -2%; } .hero-chip--b { right: -2%; } .hero-chip--c { left: -2%; } .hero-chip--d { right: -2%; }
}

@media (max-width: 640px) {
  section { padding: 64px 0; }
  .hero { padding: 48px 0 64px; }
  .value-list, .pillars, .process, .blog-grid, .footer-grid, .results-big, .contact-meta { grid-template-columns: 1fr; }
  .form .row { grid-template-columns: 1fr; }
  .nav { position: absolute; top: 74px; left: 0; right: 0; background: #fff; flex-direction: column; align-items: stretch; padding: 12px 20px 20px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); display: none; gap: 2px; }
  .nav.open { display: flex; }
  .nav__link { padding: 14px 16px; font-size: 17px; }
  .nav__cta { margin: 10px 16px 4px; justify-content: center; }
  .nav-toggle { display: flex; }
  .brand__word { font-size: 1.2rem; }
  .hero-chip { font-size: 12.5px; padding: 8px 12px; }
  .hero-chip strong { font-size: 18px; }
  .footer-bottom { flex-direction: column; }
}
