/* Fleetman marketing site - styles.
 *
 * Palette inherited from the product (dashboard-mockup-topnav.html / main.css):
 * slate header, teal primary, light surfaces, colour-coded accents. This is a
 * marketing landing page, so the type scale and spacing are larger than the app.
 */

/* --- Tokens -------------------------------------------------------------- */
:root {
  --slate-900: #2a2b34;
  --slate-800: #3A3C48;
  --slate-700: #4D4F60;
  --slate-500: #6b6d7e;

  --teal-50:  #E1F5EE;
  --teal-100: #BCE9D8;
  --teal-400: #1D9E75;
  --teal-600: #0F6E56;
  --teal-800: #085041;

  --purple-50: #EEEDFE; --purple-400: #6F65D6; --purple-600: #534AB7;
  --amber-50:  #FAEEDA; --amber-400: #E0902B; --amber-600: #854F0B;
  --red-50:    #FCEBEB; --red-400: #D85757; --red-600: #A32D2D;
  --blue-50:   #E5EDFB; --blue-400: #5B86D9; --blue-600: #2F5DA8;

  --bg: #f4f4f6;
  --bg-tint: #eef0f3;
  --surface: #ffffff;
  --text: #20212a;
  --text-2: #54566a;
  --text-3: #8a8c9c;
  --border: rgba(77, 79, 96, 0.16);
  --border-strong: rgba(77, 79, 96, 0.28);

  --shadow-sm: 0 1px 2px rgba(38, 39, 48, 0.06);
  --shadow-md: 0 10px 30px rgba(38, 39, 48, 0.10);
  --shadow-lg: 0 28px 70px rgba(38, 39, 48, 0.20);

  --radius: 14px;
  --radius-lg: 20px;
  --container: 1180px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* --- Reset / base -------------------------------------------------------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.02em; font-weight: 700; }
section { scroll-margin-top: 80px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--teal-600);
}
.eyebrow i { font-size: 16px; }
.section-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); margin: 14px 0 14px; }
.section-head p { font-size: 18px; color: var(--text-2); }

/* --- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-size: 15px; font-weight: 600;
  padding: 12px 22px; border-radius: 11px; border: 1px solid transparent;
  cursor: pointer; transition: transform .12s ease, background .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn i { font-size: 18px; }
.btn-primary { background: var(--teal-400); color: #fff; box-shadow: 0 6px 16px rgba(29,158,117,0.28); }
.btn-primary:hover { background: var(--teal-600); box-shadow: 0 8px 22px rgba(29,158,117,0.34); }
.btn-ghost { background: var(--surface); color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--slate-500); }
.btn-light { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.28); }
.btn-light:hover { background: rgba(255,255,255,0.2); }
.btn-white { background: #fff; color: var(--slate-800); }
.btn-white:hover { background: var(--teal-50); }
.btn-lg { font-size: 16px; padding: 14px 26px; }

/* --- Header -------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(58, 60, 72, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header .container { display: flex; align-items: center; gap: 28px; height: 66px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand-name { color: #fff; font-weight: 700; font-size: 17px; letter-spacing: 0.16em; }
.site-nav { display: flex; gap: 4px; margin-left: 8px; flex: 1; }
.site-nav a {
  color: #c3c5d2; font-size: 14.5px; font-weight: 500; padding: 8px 13px; border-radius: 9px;
  transition: color .15s, background .15s;
}
.site-nav a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .btn { padding: 9px 16px; font-size: 14px; }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }

/* --- Hero ---------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 520px at 78% -8%, rgba(29,158,117,0.16), transparent 60%),
    radial-gradient(900px 500px at 6% 4%, rgba(83,74,183,0.10), transparent 55%),
    var(--bg);
  padding: 84px 0 70px;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 1.25fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(34px, 5vw, 56px); letter-spacing: -0.03em; }
.hero h1 .accent { color: var(--teal-600); }
.hero-sub { font-size: 19px; color: var(--text-2); margin: 22px 0 30px; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.hero-trust { display: flex; align-items: center; gap: 18px; color: var(--text-3); font-size: 14px; flex-wrap: wrap; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust i { color: var(--teal-400); font-size: 17px; }

/* Browser-frame mock around the hero screenshot */
.browser {
  border-radius: var(--radius-lg); background: var(--surface);
  border: 1px solid var(--border); box-shadow: var(--shadow-lg); overflow: hidden;
}
.browser-bar {
  display: flex; align-items: center; gap: 7px; padding: 11px 14px;
  background: var(--bg-tint); border-bottom: 1px solid var(--border);
}
.browser-bar .dot { width: 11px; height: 11px; border-radius: 50%; background: #cfd1da; }
.browser-bar .dot:nth-child(1) { background: #f0a4a0; }
.browser-bar .dot:nth-child(2) { background: #f3cd8c; }
.browser-bar .dot:nth-child(3) { background: #aedcc4; }
.browser-bar .url {
  margin-left: 10px; font-size: 12.5px; color: var(--text-3);
  background: var(--surface); border: 1px solid var(--border); border-radius: 7px;
  padding: 4px 12px; flex: 1; max-width: 320px;
}
.browser img, .browser video { width: 100%; display: block; }

/* Animated FLEETMAN hero (HTML/CSS/SVG, no video file) */
.fm-hero {
  position: relative; width: 100%; aspect-ratio: 700 / 394; display: block;
  container-type: inline-size; overflow: hidden;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  background: radial-gradient(120% 120% at 50% 50%, #0a2a1f 0%, #061812 45%, #03100b 100%);
}
.fm-hero .net { position: absolute; inset: 0; width: 100%; height: 100%; }
.fm-hero .fmh-ln { stroke-dasharray: 100; stroke-dashoffset: 100; animation: fmhDraw 6s ease-in-out infinite; }
.fm-hero .fmh-ball { opacity: 0; animation: fmhBall 6s ease-in-out infinite; }
.fm-hero .fmh-ic {
  position: absolute; transform: translate(-50%, -50%) scale(.6);
  font-size: clamp(20px, 6.2cqw, 46px); color: #27f0b0;
  filter: drop-shadow(0 0 6px #16e6a4); opacity: 0; animation: fmhPop 6s ease-in-out infinite;
}
.fm-hero .fmh-icsvg {
  position: absolute; width: clamp(18px, 5.4cqw, 40px); height: clamp(18px, 5.4cqw, 40px);
  transform: translate(-50%, -50%) scale(.6);
  filter: drop-shadow(0 0 6px #16e6a4); opacity: 0; animation: fmhPop 6s ease-in-out infinite;
}
.fm-hero .fmh-title {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  text-align: center; color: #d9fff2; font-weight: 800;
  font-size: clamp(15px, 4.8cqw, 34px); letter-spacing: .45em; padding-left: .45em; white-space: nowrap;
  filter: drop-shadow(0 0 7px #1ff0ad); animation: fmhTitle 6s ease-in-out infinite;
}
@keyframes fmhDraw { 0% { stroke-dashoffset: 100; } 22% { stroke-dashoffset: 0; } 82% { stroke-dashoffset: 0; opacity: 1; } 100% { stroke-dashoffset: 100; opacity: .2; } }
@keyframes fmhBall { 0%, 22% { opacity: 0; } 28% { opacity: 1; } 82% { opacity: 1; } 100% { opacity: 0; } }
@keyframes fmhPop { 0% { opacity: 0; transform: translate(-50%, -50%) scale(.6); } 22% { opacity: 1; transform: translate(-50%, -50%) scale(1); } 50% { filter: drop-shadow(0 0 11px #2bffbe); } 82% { opacity: 1; transform: translate(-50%, -50%) scale(1); } 100% { opacity: 0; transform: translate(-50%, -50%) scale(.85); } }
@keyframes fmhTitle { 0% { opacity: 0; letter-spacing: 1em; } 24% { opacity: 1; letter-spacing: .45em; } 46% { filter: drop-shadow(0 0 15px #34ffc4); } 82% { opacity: 1; } 100% { opacity: 0; letter-spacing: .75em; } }
@media (prefers-reduced-motion: reduce) {
  .fm-hero .fmh-ln { animation: none; stroke-dashoffset: 0; }
  .fm-hero .fmh-ball, .fm-hero .fmh-title { animation: none; opacity: 1; }
  .fm-hero .fmh-ic, .fm-hero .fmh-icsvg { animation: none; opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.hero-figure { position: relative; }
.hero-badge {
  position: absolute; bottom: -16px; left: -16px; z-index: 3;
  background: var(--surface); border: 1px solid var(--border); border-radius: 13px;
  box-shadow: var(--shadow-md); padding: 12px 15px; display: flex; align-items: center; gap: 11px;
}
.hero-badge .ic { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; font-size: 20px; }
.hero-badge .ic.red { background: var(--red-50); color: var(--red-600); }
.hero-badge b { font-size: 15px; }
.hero-badge small { display: block; color: var(--text-3); font-size: 12.5px; }

/* --- Logos / sectors strip ---------------------------------------------- */
.sectors { padding: 30px 0 6px; }
.sectors p { text-align: center; color: var(--text-3); font-size: 13.5px; font-weight: 500; letter-spacing: .04em; }
.sectors .row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 28px; margin-top: 18px; }
.sectors .chip {
  display: inline-flex; align-items: center; gap: 9px; color: var(--slate-700);
  font-weight: 600; font-size: 15px; opacity: .82;
}
.sectors .chip i { font-size: 20px; color: var(--teal-600); }

/* --- Value props --------------------------------------------------------- */
.values { padding: 76px 0; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.value-ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; font-size: 24px; margin-bottom: 16px; }
.value-ic.teal { background: var(--teal-50); color: var(--teal-600); }
.value-ic.purple { background: var(--purple-50); color: var(--purple-600); }
.value-ic.amber { background: var(--amber-50); color: var(--amber-600); }
.value-ic.blue { background: var(--blue-50); color: var(--blue-600); }
.value-card h3 { font-size: 18px; margin-bottom: 9px; }
.value-card p { font-size: 15px; color: var(--text-2); }

/* --- Modules (tabbed showcase) ------------------------------------------ */
.modules { padding: 80px 0; background: var(--bg-tint); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-bottom: 38px; }
.tab {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border); color: var(--text-2);
  font-family: inherit; font-size: 14.5px; font-weight: 600; padding: 9px 16px; border-radius: 999px;
  cursor: pointer; transition: all .15s ease;
}
.tab i { font-size: 18px; }
.tab:hover { border-color: var(--border-strong); color: var(--text); }
.tab.active { background: var(--slate-800); border-color: var(--slate-800); color: #fff; }

.panel { display: none; }
.panel.active { display: block; animation: fade .35s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.panel-grid { display: grid; grid-template-columns: 0.92fr 1.4fr; gap: 46px; align-items: center; }
.panel-copy .eyebrow { margin-bottom: 12px; }
.panel-copy h3 { font-size: 28px; margin-bottom: 14px; }
.panel-copy > p { font-size: 17px; color: var(--text-2); margin-bottom: 20px; }
.feature-list { list-style: none; display: grid; gap: 12px; }
.feature-list li { display: flex; gap: 12px; font-size: 15.5px; color: var(--text); }
.feature-list i { color: var(--teal-400); font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.panel-figure .browser { box-shadow: var(--shadow-md); }

/* Cropped UI shots (cards, KPI rows, filters) shown without a browser frame. */
.panel-figure--center { display: flex; justify-content: center; }
.shot { width: 100%; border-radius: 14px; border: 1px solid var(--border); box-shadow: var(--shadow-md); display: block; }
.shot--card { max-width: 380px; width: 100%; }

/* Asset register: the vehicle, documents and compliance sections of the detail
   page, captured separately and stacked with a slight overlap. */
.vd-stack { position: relative; padding: 6px 0; }
.vd-shot { display: block; border-radius: 12px; border: 1px solid var(--border); box-shadow: var(--shadow-lg); background: #fff; }
.vd-1 { width: 96%; margin: 0 auto 0 0; }       /* vehicle record (back, left) */
.vd-2 { width: 80%; margin: -7% 0 0 auto; }      /* documents (overlap, right) */
.vd-3 { width: 74%; margin: -6% auto 0 8%; }     /* compliance (front, left) */

/* Compliance: each severity filter pill captured on its own (active state, no
   rows) and cascaded diagonally down-right with a slight slant and overlap. */
.fchip-stack { position: relative; height: 186px; }
.fchip {
  position: absolute; height: 36px; width: auto;
  filter: drop-shadow(0 6px 13px rgba(58, 60, 72, 0.16));
  transform: rotate(-7deg); transform-origin: left center;
}
.fchip-1 { top: 6px;   left: 4%;  z-index: 1; }
.fchip-2 { top: 38px;  left: 13%; z-index: 2; }
.fchip-3 { top: 70px;  left: 22%; z-index: 3; }
.fchip-4 { top: 102px; left: 31%; z-index: 4; }
.fchip-5 { top: 134px; left: 40%; z-index: 5; }

/* SMR: the four headline KPI cards captured individually and arranged in a
   diamond (top, left, right, bottom). aspect-ratio keeps it scaling at any
   figure width; the cards meet at their corners around the centre. */
.smr-diamond { position: relative; width: 100%; max-width: 420px; margin-inline: auto; aspect-ratio: 1 / 0.68; }
.smr-kpi {
  position: absolute; width: 46%;
  filter: drop-shadow(0 8px 18px rgba(58, 60, 72, 0.14));
}
.smr-top    { top: 0;    left: 50%; transform: translateX(-50%); }
.smr-bottom { bottom: 0; left: 50%; transform: translateX(-50%); }
.smr-left   { left: 0;   top: 50%;  transform: translateY(-50%); }
.smr-right  { right: 0;  top: 50%;  transform: translateY(-50%); }


/* Incidents: text-only panel (no screenshot). */
.panel-textonly { max-width: 720px; margin: 0 auto; text-align: center; }
.panel-textonly .eyebrow { margin-bottom: 12px; }
.panel-textonly h3 { font-size: 28px; margin-bottom: 14px; }
.panel-textonly > p { font-size: 17px; color: var(--text-2); margin-bottom: 22px; }
.feature-list--grid { grid-template-columns: 1fr 1fr; gap: 12px 26px; text-align: left; max-width: 620px; margin: 0 auto; }

/* --- Stats band ---------------------------------------------------------- */
.stats { background: var(--slate-800); color: #fff; padding: 56px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; text-align: center; }
.stat .num { font-size: clamp(30px, 4vw, 44px); font-weight: 800; letter-spacing: -0.02em; color: #fff; }
.stat .num .u { color: var(--teal-400); }
.stat .lbl { color: #b9bbc9; font-size: 14.5px; margin-top: 6px; }
.stats-grid .stat + .stat { border-left: 1px solid rgba(255,255,255,0.12); }

/* --- Security ------------------------------------------------------------ */
.security { padding: 80px 0; }
.sec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.sec-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; display: flex; gap: 16px; box-shadow: var(--shadow-sm);
}
.sec-card .ic { width: 44px; height: 44px; flex-shrink: 0; border-radius: 11px; display: grid; place-items: center; font-size: 22px; background: var(--teal-50); color: var(--teal-600); }
.sec-card h4 { font-size: 17px; margin-bottom: 5px; }
.sec-card p { font-size: 14.5px; color: var(--text-2); }
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 40px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600;
  color: var(--slate-700); background: var(--surface); border: 1px solid var(--border);
  border-radius: 999px; padding: 9px 16px;
}
.pill i { color: var(--teal-600); font-size: 17px; }

/* --- Reporting feature (split) ------------------------------------------ */
.reporting { padding: 80px 0; background: var(--bg-tint); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.report-grid { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 46px; align-items: center; }
.report-grid.flip { grid-template-columns: 0.9fr 1.3fr; }
.report-charts { display: flex; flex-direction: column; gap: 16px; max-width: 480px; }

/* --- Pricing ------------------------------------------------------------- */
.pricing { padding: 84px 0; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px 28px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
}
.price-card.featured { border-color: var(--teal-400); box-shadow: 0 18px 44px rgba(29,158,117,0.18); position: relative; }
.price-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--teal-400); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .04em;
  padding: 5px 14px; border-radius: 999px; text-transform: uppercase;
}
.price-card h3 { font-size: 19px; }
.price-card .desc { color: var(--text-2); font-size: 14.5px; margin: 6px 0 18px; min-height: 42px; }
.price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.price .amt { font-size: 42px; font-weight: 800; letter-spacing: -0.02em; }
.price .amt .pence { font-size: 0.45em; font-weight: 700; vertical-align: super; margin-left: 1px; letter-spacing: 0; }
.price .per { color: var(--text-3); font-size: 14.5px; }
.price-card .note { color: var(--text-3); font-size: 13px; margin-bottom: 20px; }
.price-card ul { list-style: none; display: grid; gap: 11px; margin-bottom: 24px; flex: 1; }
.price-card li { display: flex; gap: 10px; font-size: 14.5px; color: var(--text); }
.price-card li i { color: var(--teal-400); font-size: 18px; flex-shrink: 0; }
.price-card .btn { width: 100%; }

/* --- CTA band ------------------------------------------------------------ */
.cta {
  margin: 0 0 0; padding: 78px 0;
  background:
    radial-gradient(800px 380px at 84% 0%, rgba(29,158,117,0.22), transparent 60%),
    var(--slate-800);
  color: #fff; text-align: center;
}
.cta h2 { font-size: clamp(28px, 4vw, 42px); }
.cta p { font-size: 18px; color: #c3c5d2; max-width: 560px; margin: 16px auto 30px; }
.cta-actions { display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; }

/* --- Footer -------------------------------------------------------------- */
.site-footer { background: var(--slate-900); color: #b9bbc9; padding: 56px 0 28px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.foot-brand .brand { margin-bottom: 14px; }
.foot-brand p { font-size: 14px; max-width: 280px; }
.foot-col h5 { color: #fff; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 14px; }
.foot-col a { display: block; color: #b9bbc9; font-size: 14.5px; padding: 5px 0; }
.foot-col a:hover { color: #fff; }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13.5px; color: #8a8c9c;
}
.foot-bottom .socials { display: flex; gap: 10px; }
.foot-bottom .socials a { width: 34px; height: 34px; border-radius: 8px; display: grid; place-items: center; background: rgba(255,255,255,0.07); color: #c3c5d2; font-size: 18px; }
.foot-bottom .socials a:hover { background: var(--teal-400); color: #fff; }

/* --- Responsive ---------------------------------------------------------- */
@media (max-width: 980px) {
  .hero-grid, .panel-grid, .report-grid, .report-grid.flip, .sec-grid { grid-template-columns: 1fr; }
  .panel-figure, .report-grid .browser { order: -1; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 26px; }
  .stats-grid .stat + .stat { border-left: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .site-nav, .header-cta .btn-ghost { display: none; }
  .site-nav.open {
    display: flex; flex-direction: column; position: absolute; top: 66px; left: 0; right: 0;
    background: var(--slate-800); padding: 12px; gap: 4px; border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-toggle { display: block; }
  .value-grid { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 50px; }
  .hero-badge { display: none; }
  body { font-size: 16px; }
}
