:root {
  --bg: #fbfaf7;
  --surface: #ffffff;
  --surface-2: #f1ece2;
  --ink: #1a241f;
  --muted: #5f6b64;
  --line: #e2dbcc;
  --accent: #1d6f5f;
  --accent-dark: #155a4c;
  --accent-soft: rgba(29, 111, 95, 0.09);
  --amber: #d97706;
  --amber-soft: rgba(217, 119, 6, 0.12);
  --good: #16805d;
  --bad: #b4232a;
  --shadow: 0 18px 50px rgba(33, 28, 20, 0.11);
  --shadow-sm: 0 8px 24px rgba(33, 28, 20, 0.08);
  --radius: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, p, ul { margin: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; }
code { font-family: "JetBrains Mono", monospace; background: var(--surface-2); padding: 2px 6px; border-radius: 5px; font-size: 0.85em; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 10px 14px;
  border-radius: 0 0 8px 0;
  z-index: 200;
}
.skip-link:focus { left: 0; }

.container { width: min(1160px, 92%); margin: 0 auto; }
.accent { color: var(--accent); }
.center { text-align: center; }

.eyebrow {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section { padding: 84px 0; }
.section-tint { background: var(--surface-2); }
.section-title { font-size: clamp(26px, 3.4vw, 38px); line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; }
.section-sub { color: var(--muted); font-size: 17px; margin-top: 12px; max-width: 680px; }
.section-tint .section-sub { color: var(--muted); }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  width: min(1160px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.mark {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 19px;
  box-shadow: 0 8px 18px rgba(29, 111, 95, 0.35);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-size: 16px; }
.brand-text small { color: var(--muted); font-size: 11.5px; font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links > a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  padding: 9px 12px;
  border-radius: 8px;
}
.nav-links > a:not(.btn):hover { background: var(--accent-soft); color: var(--accent-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span { width: 22px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: 0.25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* BUTTONS */
.btn {
  display: inline-block;
  border: 0;
  border-radius: 10px;
  padding: 11px 18px;
  font-size: 14.5px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 24px rgba(29, 111, 95, 0.3); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-outline { background: transparent; color: var(--accent-dark); border: 2px solid var(--accent); }
.btn-outline:hover { background: var(--accent-soft); }
.btn-ghost { background: var(--surface-2); color: var(--ink); }
.btn-ghost:hover { background: #e6e0d2; }
.btn-lg { padding: 14px 24px; font-size: 16px; }

/* HERO */
.hero {
  background:
    radial-gradient(60% 60% at 85% 10%, rgba(217, 119, 6, 0.1), transparent 60%),
    radial-gradient(50% 50% at 10% 80%, rgba(29, 111, 95, 0.12), transparent 60%),
    var(--bg);
  padding: 72px 0 40px;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero-copy h1 { font-size: clamp(34px, 5vw, 56px); line-height: 1.05; letter-spacing: -0.03em; font-weight: 800; margin: 4px 0 18px; }
.lede { color: var(--muted); font-size: 17.5px; max-width: 540px; }
.lede strong { color: var(--ink); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 14px; }
.fine-print { color: var(--muted); font-size: 13px; margin-top: 10px; }
.hero .fine-print { max-width: 520px; }

.hero-visual { position: relative; }
.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card-big { padding: 18px; transform: rotate(-1deg); }
.hero-card-head { display: flex; justify-content: space-between; align-items: center; font-weight: 800; font-size: 14px; color: var(--muted); }
.chip { font-size: 12px; padding: 5px 10px; border-radius: 999px; font-weight: 800; }
.chip-good { background: var(--amber-soft); color: var(--amber); }
.hero-marks { display: flex; align-items: center; gap: 18px; background: var(--surface-2); border-radius: 10px; padding: 14px 16px; margin: 14px 0; }
.hero-marks div { display: flex; flex-direction: column; line-height: 1.1; }
.hero-marks small { color: var(--muted); font-size: 12px; font-weight: 700; }
.hero-marks strong { font-size: 26px; font-weight: 800; }
.hero-marks span { color: var(--muted); font-size: 14px; font-weight: 700; }
.hero-marks .vline { width: 1px; height: 34px; background: var(--line); }
.hero-tick {
  background: var(--accent-soft);
  border: 1px solid rgba(29, 111, 95, 0.3);
  color: var(--accent-dark);
  border-radius: 9px;
  padding: 9px 12px;
  font-size: 13.5px;
  font-weight: 700;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-tick::before {
  content: attr(data-tick);
  width: 24px; height: 24px;
  flex: 0 0 24px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--good);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
}
.hero-tick-bad { background: rgba(180, 35, 42, 0.07); border-color: rgba(180, 35, 42, 0.28); color: #7a1c21; }
.hero-tick-bad::before { background: var(--bad); }
.hero-card-small {
  position: absolute;
  right: -12px;
  bottom: -34px;
  width: 230px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: rotate(1.5deg);
}
.hero-card-small small { color: var(--muted); font-weight: 700; font-size: 12px; }
.hero-card-small strong { font-size: 15px; }
.mini-bar { height: 8px; background: var(--surface-2); border-radius: 999px; overflow: hidden; }
.mini-bar span { display: block; height: 100%; background: var(--accent); border-radius: inherit; }
.mini-label { color: var(--muted); font-size: 12px; font-weight: 600; }
.hero-chip {
  position: absolute;
  left: -18px;
  top: -22px;
  background: var(--amber);
  color: #fff;
  font-weight: 800;
  font-size: 13.5px;
  border-radius: 999px;
  padding: 9px 16px;
  box-shadow: 0 12px 26px rgba(217, 119, 6, 0.4);
  transform: rotate(-3deg);
}
.chip-green { background: var(--accent); }
.hero-chip strong { font-size: 15px; }

/* STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 60px;
}
.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 20px;
}
.stat strong { display: block; font-size: 30px; font-weight: 800; color: var(--accent-dark); letter-spacing: -0.02em; }
.stat span { color: var(--muted); font-size: 13.5px; font-weight: 600; }

/* CARDS GRID */
.cards { display: grid; gap: 18px; margin-top: 40px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 26px;
}
.card h3 { font-size: 19px; font-weight: 800; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 14.5px; }
.card p strong { color: var(--ink); }
.card-icon { font-size: 26px; display: inline-block; margin-bottom: 14px; }

.callout {
  margin-top: 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 5px solid var(--amber);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 15.5px;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.callout em { color: var(--muted); }
.callout-slim { text-align: center; border-left-color: var(--accent); }

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 19px;
  margin-bottom: 16px;
  box-shadow: 0 10px 20px rgba(29, 111, 95, 0.32);
}
.step h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14px; }

/* CANVAS DEMO */
.canvas-demo {
  margin-top: 56px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
}
.canvas-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; margin-bottom: 18px; flex-wrap: wrap; }
.canvas-head h3 { font-size: 20px; font-weight: 800; }
.seg { display: inline-flex; gap: 4px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 10px; padding: 4px; }
.seg-btn { border: 0; background: transparent; padding: 8px 14px; border-radius: 7px; font-weight: 800; font-size: 13.5px; cursor: pointer; color: var(--muted); }
.seg-btn.active { background: var(--accent); color: #fff; }
.canvas-stage { position: relative; border-radius: 10px; overflow: hidden; background: #302d28; }
.canvas-stage img { width: 100%; max-height: 620px; object-fit: contain; transition: filter 0.3s ease; }
.canvas-stage img.dimmed { filter: brightness(0.55); }
.annotations { position: absolute; inset: 0; transition: opacity 0.3s ease; }
.annotations.hidden { opacity: 0; pointer-events: none; }
.tag {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12.5px;
  font-weight: 800;
  color: #fff;
  border-radius: 8px;
  padding: 3px 6px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  line-height: 1.3;
}
.tag-good { background: rgba(22, 128, 93, 0.92); }
.tag-bad { background: rgba(180, 35, 42, 0.92); }
.canvas-caption { color: var(--muted); font-size: 13px; margin-top: 12px; text-align: center; }

/* SPLIT (student loop) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split-copy .lede { max-width: none; }
.checklist { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.checklist li {
  padding-left: 30px;
  position: relative;
  color: var(--muted);
  font-size: 15px;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  display: grid; place-items: center;
}
.checklist strong { color: var(--ink); }

.mastery-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
  transform: rotate(1deg);
}
.mastery-card h4 { font-size: 17px; font-weight: 800; margin-bottom: 18px; }
.bar-row { display: grid; grid-template-columns: 1fr auto; gap: 6px 12px; font-size: 13.5px; font-weight: 700; margin-bottom: 14px; }
.bar-row strong { color: var(--accent-dark); }
.track { grid-column: 1 / -1; height: 9px; background: var(--surface-2); border-radius: 999px; overflow: hidden; }
.track i { display: block; height: 100%; background: linear-gradient(90deg, var(--accent), #2a8a76); border-radius: inherit; }
.error-note {
  margin-top: 18px;
  background: var(--amber-soft);
  border-left: 4px solid var(--amber);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13.5px;
}
.error-note strong { display: block; margin-bottom: 4px; }
.error-note p { color: var(--muted); font-size: 13px; }
.error-cta {
  margin-top: 12px;
  background: var(--accent-soft);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--accent-dark);
}

/* ROI */
.roi-layout { display: grid; grid-template-columns: 420px 1fr; gap: 22px; margin-top: 40px; align-items: start; }
.roi-form { display: grid; gap: 14px; }
.roi-form label { display: grid; gap: 6px; font-size: 13.5px; font-weight: 800; color: var(--muted); }
.roi-form input {
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 12px 14px;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  background: var(--bg);
  font-family: inherit;
}
.roi-form input:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: transparent; }
.roi-results { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.result-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 26px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.result-card span { color: var(--muted); font-size: 13px; font-weight: 700; }
.result-card strong { font-size: 34px; font-weight: 800; color: var(--accent-dark); letter-spacing: -0.02em; margin: 6px 0 4px; }
.result-card small { color: var(--muted); font-size: 12.5px; }

/* COMPLIANCE */
.compliance { text-align: center; }
.badges { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 40px; }
.badge {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.badge strong { font-size: 18px; color: var(--accent-dark); }
.badge span { color: var(--muted); font-size: 12.5px; }

/* PRICING */
.price-cards { align-items: stretch; }
.price { display: flex; flex-direction: column; }
.price h3 { font-size: 20px; }
.price-amt { font-size: 30px; font-weight: 800; color: var(--accent-dark); margin: 6px 0 16px; }
.price-amt span { font-size: 14px; color: var(--muted); font-weight: 700; }
.price ul { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 9px; flex: 1; }
.price ul li { position: relative; padding-left: 24px; color: var(--muted); font-size: 14px; }
.price ul li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 900; }
.price.featured { border: 2px solid var(--accent); box-shadow: 0 24px 60px rgba(29, 111, 95, 0.2); position: relative; }
.price.featured::before {
  content: "Most popular";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.tier-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 20px auto 0;
  max-width: 900px;
}
.tier {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--amber);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tier strong { font-size: 15.5px; font-weight: 800; }
.tier span { color: var(--muted); font-size: 13px; }

/* TIMELINE / PILOT */
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.tl-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 26px;
  position: relative;
}
.tl-day {
  display: inline-block;
  background: var(--amber-soft);
  color: var(--amber);
  font-weight: 800;
  font-size: 12.5px;
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 14px;
}
.tl-step h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.tl-step p { color: var(--muted); font-size: 14px; }

/* DECK GALLERY */
.deck-gallery { margin-top: 40px; }
.deck-main {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.deck-main img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #0e1420;
  border-radius: 10px;
  transition: opacity 0.15s ease;
}
.deck-controls { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 16px; flex-wrap: wrap; }
.deck-controls span { font-weight: 800; color: var(--muted); font-size: 14px; }
.deck-thumbs {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  margin-top: 16px;
}
.thumb {
  border: 2px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  background: none;
  cursor: pointer;
  aspect-ratio: 16 / 9;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb.active { border-color: var(--accent); box-shadow: 0 6px 16px rgba(29, 111, 95, 0.35); }

/* FAQ */
.faq-wrap { max-width: 780px; }
.faq-list { margin-top: 32px; display: grid; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 22px 20px; color: var(--muted); font-size: 14.5px; }

/* CONTACT */
.contact-box {
  background:
    radial-gradient(60% 80% at 90% 10%, rgba(29, 111, 95, 0.14), transparent 60%),
    radial-gradient(50% 60% at 5% 90%, rgba(217, 119, 6, 0.12), transparent 60%),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 64px 48px;
  text-align: center;
}
.contact-box .section-sub { margin-left: auto; margin-right: auto; }
.contact-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

/* FOOTER */
.footer { background: #141b17; color: #cfd8d2; padding: 48px 0; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.footer .brand-text strong { color: #fff; }
.footer p { color: #8fa39a; font-size: 13.5px; margin-top: 10px; max-width: 300px; }
.footer-links { display: grid; gap: 8px; align-content: start; }
.footer-links a { color: #cfd8d2; text-decoration: none; font-size: 14px; font-weight: 600; }
.footer-links a:hover { color: #fff; }
.footer-contact { display: grid; gap: 8px; align-content: start; font-size: 14px; }
.footer-contact a { color: #cfd8d2; text-decoration: none; font-weight: 700; }
.footer-contact a:hover { color: #fff; }

/* TOAST */
.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--ink);
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  transform: translateY(80px);
  opacity: 0;
  transition: all 180ms ease;
  z-index: 200;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.revealed { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 1020px) {
  .nav-links {
    position: fixed;
    inset: 64px 12px auto 12px;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 14px;
    gap: 6px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-links > a { padding: 12px; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 520px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .cards-3 { grid-template-columns: 1fr; }
  .steps, .timeline, .badges, .tier-strip { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .roi-layout { grid-template-columns: 1fr; }
  .roi-results { grid-template-columns: 1fr; }
  .deck-thumbs { grid-template-columns: repeat(4, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .hero-card-small { right: 6px; bottom: -28px; }
}

@media (max-width: 620px) {
  .section { padding: 60px 0; }
  .deck-thumbs { grid-template-columns: repeat(3, 1fr); }
  .hero-chip { left: 6px; top: -18px; }
  .contact-box { padding: 44px 22px; }
}
