:root {
  --navy: #081B2D;
  --teal: #0FA39A;
  --white: #FFFFFF;
  --slate: #24374D;
  --mist: #E8EEF2;
  --ice: #F5F7F9;
  --charcoal: #3A4653;
  --success: #2CB67D;
  --amber: #F4B740;
  --crimson: #D64545;
  --shadow: 0 24px 60px rgba(8, 27, 45, .14);
  --shadow-soft: 0 16px 42px rgba(8, 27, 45, .09);
  --max-width: 1240px;
  --header-height: 86px;
  --radius: 18px;
  --radius-sm: 12px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", "IBM Plex Sans", Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--navy);
  background: var(--white);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 700; line-height: .95; letter-spacing: -.02em; }
h1 { font-size: clamp(54px, 5.2vw, 86px); color: var(--navy); margin-bottom: 28px; }
h1 span, h2 span { color: var(--teal); }

.skip-link {
  position: absolute; left: 16px; top: -48px; z-index: 1000;
  background: var(--navy); color: var(--white); padding: 10px 14px; border-radius: 6px;
}
.skip-link:focus { top: 16px; }
.container { width: min(var(--max-width), calc(100% - 56px)); margin: 0 auto; }
.section-padding { padding: 86px 0; }
.muted-bg { background: linear-gradient(180deg, #fbfcfd 0%, var(--ice) 100%); }
.desktop-only { display: inline-flex; }

.site-header {
  position: sticky; top: 0; z-index: 900;
  height: var(--header-height);
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(8, 27, 45, .08);
}
.header-inner { height: 100%; display: flex; align-items: center; gap: 26px; }
.brand { flex: 0 0 auto; display: inline-flex; align-items: center; }
.brand-logo { width: 226px; max-height: 62px; object-fit: contain; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 28px; }
.nav-link { position: relative; font-size: 13.5px; font-weight: 800; color: var(--navy); opacity: .95; white-space: nowrap; }
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -12px; height: 2px; width: 0;
  background: var(--teal); transition: width .2s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.header-cta { margin-left: 10px; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 27px; height: 2px; margin: 6px 0; background: var(--navy); border-radius: 99px; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 48px; padding: 0 24px; border-radius: 6px;
  font-size: 14px; font-weight: 800; letter-spacing: .01em; border: 0; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-dark { color: var(--white); background: var(--navy); box-shadow: 0 10px 26px rgba(8, 27, 45, .2); }
.button-teal { color: var(--white); background: linear-gradient(135deg, var(--teal), #07887f); box-shadow: 0 14px 30px rgba(15, 163, 154, .25); }
.button-ghost { color: var(--navy); background: rgba(255,255,255,.74); border: 1px solid rgba(8, 27, 45, .22); }
.button-light { background: var(--ice); color: var(--navy); border: 1px solid rgba(8,27,45,.10); }
.button-outline { background: transparent; color: var(--navy); border: 1px solid rgba(8,27,45,.20); }
.full-width { width: 100%; }
.text-link { color: var(--teal); font-weight: 800; display: inline-flex; align-items: center; gap: 12px; margin-top: 16px; }

.hero {
  position: relative;
  min-height: calc(690px - var(--header-height));
  overflow: hidden;
  display: flex;
  align-items: stretch;
  background: var(--ice);
}
.hero-picture { position: absolute; inset: 0; overflow: hidden; }
.hero-picture img { width: 100%; height: 100%; object-fit: cover; object-position: center right; filter: saturate(1.02) contrast(1.02); }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.84) 31%, rgba(255,255,255,.35) 58%, rgba(255,255,255,.02) 100%),
    linear-gradient(180deg, rgba(255,255,255,.16), rgba(8,27,45,.08));
}
.hero-content { position: relative; min-height: 604px; display: flex; align-items: center; }
.hero-copy { position: relative; max-width: 650px; padding-left: 44px; }
.hero-rule { position: absolute; left: 0; top: 8px; width: 2px; height: 315px; background: var(--teal); }
.hero-lede { max-width: 500px; font-size: 18px; font-weight: 650; color: #13283d; margin-bottom: 28px; line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.metrics-band { background: var(--navy); color: var(--white); padding: 28px 0; }
.metrics-grid { display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.metric { display: grid; grid-template-columns: 48px 1fr; gap: 12px 18px; align-items: center; padding: 0 32px; border-right: 1px solid rgba(255,255,255,.22); }
.metric:last-child { border-right: 0; }
.metric-icon { width: 48px; height: 48px; color: var(--white); opacity: .94; grid-row: span 2; }
.metric strong { font-family: var(--serif); font-size: 35px; line-height: .95; font-weight: 700; }
.metric span:not(.metric-icon) { color: rgba(255,255,255,.82); font-size: 14px; line-height: 1.25; }
.metric-wide strong { font-size: 29px; }

.eyebrow {
  margin: 0 0 14px; color: var(--teal); font-weight: 800; font-size: 12px;
  letter-spacing: .18em; text-transform: uppercase;
}
.section-intro h2, .about-copy h2, .center-heading h2, .how-head h2, .contact-copy h2 { font-size: clamp(38px, 4vw, 58px); color: var(--navy); margin-bottom: 20px; }
.section-intro p:not(.eyebrow) { color: var(--slate); max-width: 420px; }
.center-heading { text-align: center; max-width: 860px; margin: 0 auto 46px; }
.center-heading h2 { margin-bottom: 0; }

.about-panel { background: var(--white); border-bottom: 1px solid rgba(8,27,45,.08); }
.about-grid { display: grid; grid-template-columns: 410px 1fr; gap: 72px; align-items: center; }
.about-text { columns: 2; column-gap: 42px; color: var(--slate); font-size: 17px; }
.about-text p { break-inside: avoid; margin-bottom: 0; }

.why { background: linear-gradient(180deg, var(--white) 0%, #fbfcfd 100%); }
.why-story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; align-items: start; }
.why-story-card { position: relative; }
.why-story-card img { height: 218px; width: 100%; object-fit: cover; border-radius: 8px; box-shadow: 0 12px 28px rgba(8,27,45,.08); margin-bottom: 24px; }
.story-number { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--white); font-weight: 800; margin-right: 12px; }
.why-story-card h3 { display: inline; font-size: 21px; margin: 0; }
.why-story-card p { color: var(--slate); margin: 16px 0 0; font-size: 15px; }
.problem-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 42px; }
.problem-grid article { background: var(--white); border: 1px solid rgba(8,27,45,.10); border-radius: 10px; padding: 22px 16px 20px; text-align: center; box-shadow: 0 10px 28px rgba(8,27,45,.04); }
.line-icon { width: 42px; height: 42px; color: var(--teal); display: inline-flex; margin-bottom: 12px; }
.problem-grid h3 { font-size: 14px; line-height: 1.2; margin-bottom: 8px; color: var(--navy); }
.problem-grid p { color: var(--slate); font-size: 13px; margin: 0; line-height: 1.3; }

.how-head { display: grid; grid-template-columns: 520px 1fr; gap: 70px; align-items: end; margin-bottom: 38px; }
.how-head p:not(.eyebrow) { color: var(--slate); margin-bottom: 22px; font-size: 16px; }
.method-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 26px; position: relative; }
.method-grid::before { content: ""; position: absolute; left: 5%; right: 5%; top: 16px; height: 2px; background: linear-gradient(90deg, transparent, rgba(15,163,154,.28), transparent); }
.method-grid article { position: relative; z-index: 1; background: var(--white); border: 1px solid rgba(8,27,45,.10); border-radius: 10px; padding: 34px 22px 24px; box-shadow: 0 10px 28px rgba(8,27,45,.05); min-height: 280px; }
.method-grid article > span { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); width: 42px; height: 42px; border-radius: 50%; background: var(--teal); color: var(--white); display: grid; place-items: center; font-weight: 800; font-size: 13px; }
.method-icon { width: 54px; height: 54px; color: var(--teal); margin: 4px auto 18px; }
.method-grid h3 { text-align: center; font-size: 17px; line-height: 1.2; margin-bottom: 10px; }
.method-grid p { text-align: center; color: var(--slate); font-size: 13.5px; margin: 0; }

.section-heading-row { display: flex; justify-content: space-between; align-items: start; gap: 42px; margin-bottom: 34px; }
.products .section-intro { max-width: 800px; }
.products .section-intro h2 { line-height: 1.05; }
.product-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.product-card { border: 1px solid rgba(8,27,45,.12); border-radius: 10px; padding: 30px 22px 24px; min-height: 258px; display: flex; flex-direction: column; background: var(--white); box-shadow: 0 10px 28px rgba(8,27,45,.04); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color: rgba(15,163,154,.3); }
.product-icon { width: 58px; height: 58px; display: grid; place-items: center; color: var(--teal); border: 1px solid rgba(15,163,154,.40); border-radius: 10px; padding: 13px; margin: 0 auto 22px; }
.product-card h3 { text-align: center; font-size: 17px; line-height: 1.2; margin-bottom: 10px; }
.product-card p { text-align: center; color: var(--slate); font-size: 14px; margin-bottom: 20px; }
.product-card a { margin: auto auto 0; color: var(--teal); font-weight: 800; font-size: 14px; }
.product-card.bespoke { background: linear-gradient(180deg, var(--white), #fbfefe); }

.cta-band { background: var(--navy); color: var(--white); padding: 32px 0; }
.cta-grid { display: grid; grid-template-columns: 74px 1fr auto; gap: 26px; align-items: center; }
.cta-icon { width: 62px; height: 62px; color: var(--white); border: 1px solid rgba(255,255,255,.55); border-radius: 50%; padding: 14px; }
.cta-band h2 { color: var(--white); font-family: var(--sans); font-size: 24px; line-height: 1.15; margin: 0 0 4px; }
.cta-band p { color: rgba(255,255,255,.78); margin: 0; }

.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr minmax(420px, 520px); gap: 72px; align-items: start; }
.contact-copy h2 { line-height: 1; }
.contact-copy p { color: var(--slate); max-width: 460px; }
.contact-list { display: grid; gap: 14px; margin: 32px 0 24px; }
.contact-list a { display: flex; gap: 14px; align-items: start; color: var(--slate); font-weight: 700; }
.contact-list span { color: var(--teal); width: 22px; text-align: center; }
.social-links { display: flex; align-items: center; gap: 18px; margin-top: 30px; }
.social-links a { width: 48px; height: 48px; border: 1px solid rgba(15,163,154,.55); color: var(--teal); border-radius: 50%; display: grid; place-items: center; font-weight: 800; text-transform: uppercase; }
.contact-form { background: var(--white); border: 1px solid rgba(8,27,45,.12); border-radius: var(--radius-sm); padding: 34px; box-shadow: var(--shadow-soft); }
.contact-form h2 { font-family: var(--serif); font-size: 36px; line-height: 1; margin-bottom: 8px; }
.contact-form p { color: var(--slate); margin-bottom: 20px; }
.contact-form small { display: block; text-align: center; color: var(--slate); margin-top: 10px; }
input, textarea { width: 100%; border: 1px solid rgba(8,27,45,.12); border-radius: 6px; padding: 13px 15px; background: #fff; color: var(--navy); outline: none; }
input:focus, textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(15,163,154,.13); }
textarea { resize: vertical; }
.privacy-note { border: 1px solid rgba(15,163,154,.22); background: rgba(15,163,154,.07); color: var(--slate); padding: 14px 16px; border-radius: 8px; font-size: 13px; margin-bottom: 16px; }
.privacy-note a { color: var(--teal); font-weight: 800; }
.google-form-frame { width: 100%; height: 640px; overflow: hidden; border: 1px solid rgba(8,27,45,.10); border-radius: 8px; background: var(--ice); margin-bottom: 18px; }
.google-form-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.google-form-frame.is-placeholder { height: 360px; }
.form-placeholder-content { height: 100%; min-height: 280px; display: grid; place-content: center; text-align: center; padding: 28px; }
.form-placeholder-content p { max-width: 360px; margin: 8px auto 18px; }

.site-footer { background: var(--navy); color: var(--white); padding: 58px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 48px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand img { width: 190px; margin-bottom: 18px; }
.footer-brand p, .site-footer a { color: rgba(255,255,255,.72); font-size: 14px; }
.site-footer h3 { color: var(--white); font-size: 14px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.site-footer a { display: block; margin: 10px 0; }
.site-footer a:hover { color: var(--teal); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; padding-top: 24px; color: rgba(255,255,255,.65); font-size: 13px; }
.footer-bottom a { display: inline; margin: 0; }
.divider { margin: 0 12px; color: rgba(255,255,255,.3); }

.animate-in { animation: fadeUp .8s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

/* Compliance pages */
.page-hero { position: relative; background: linear-gradient(135deg, rgba(8,27,45,.96), rgba(36,55,77,.92)), url('../assets/nairobi-skyline.jpg') center/cover; color: var(--white); padding: 92px 0 72px; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; inset: auto 0 0; height: 4px; background: linear-gradient(90deg, var(--teal), transparent); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); max-width: 760px; margin-bottom: 18px; }
.page-hero p { max-width: 720px; color: rgba(255,255,255,.78); font-size: 18px; }
.page-hero .eyebrow { color: var(--teal); }
.content-section { padding: 74px 0; }
.content-layout { display: grid; grid-template-columns: 280px 1fr; gap: 56px; align-items: start; }
.side-nav { position: sticky; top: calc(var(--header-height) + 24px); border: 1px solid rgba(8,27,45,.10); border-radius: 10px; padding: 16px; background: var(--white); box-shadow: 0 10px 28px rgba(8,27,45,.04); }
.side-nav a { display: block; padding: 11px 10px; color: var(--slate); border-radius: 6px; font-weight: 700; font-size: 14px; }
.side-nav a:hover { background: var(--ice); color: var(--teal); }
.legal-content { max-width: 860px; }
.legal-card { border: 1px solid rgba(8,27,45,.10); border-radius: 12px; padding: 30px; margin-bottom: 22px; background: var(--white); box-shadow: 0 10px 30px rgba(8,27,45,.035); }
.legal-card h2 { font-size: clamp(30px, 3vw, 42px); margin-bottom: 14px; }
.legal-card h3 { margin: 22px 0 8px; font-size: 17px; text-transform: none; letter-spacing: 0; }
.legal-card p, .legal-card li { color: var(--slate); }
.legal-card a { color: var(--teal); font-weight: 800; }
.notice-box { border-left: 3px solid var(--teal); background: var(--ice); padding: 18px 20px; border-radius: 8px; margin: 20px 0; color: var(--slate); }
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 24px 0; }
.info-tile { border: 1px solid rgba(8,27,45,.10); border-radius: 10px; padding: 20px; background: #fff; }
.info-tile strong { display: block; color: var(--navy); margin-bottom: 8px; }
.responsive-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.responsive-table th, .responsive-table td { border-bottom: 1px solid rgba(8,27,45,.10); padding: 14px 12px; text-align: left; vertical-align: top; }
.responsive-table th { color: var(--navy); background: var(--ice); }
.badge { display: inline-flex; align-items: center; border-radius: 999px; padding: 6px 10px; background: rgba(15,163,154,.10); color: var(--teal); font-weight: 800; font-size: 12px; margin-bottom: 12px; }

/* Cookie banner and modal */
.cookie-banner { position: fixed; left: 24px; right: 24px; bottom: 24px; z-index: 1200; display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: center; background: rgba(255,255,255,.98); border: 1px solid rgba(8,27,45,.14); box-shadow: var(--shadow); border-radius: 14px; padding: 20px; }
.cookie-banner__copy strong { display: block; margin-bottom: 6px; }
.cookie-banner__copy p { margin: 0; color: var(--slate); font-size: 14px; max-width: 760px; }
.cookie-banner__copy a { color: var(--teal); font-weight: 800; }
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.cookie-modal-wrap { position: fixed; inset: 0; background: rgba(8,27,45,.52); z-index: 1300; display: grid; place-items: center; padding: 24px; }
.cookie-modal { position: relative; width: min(680px, 100%); max-height: min(780px, 92vh); overflow: auto; background: var(--white); border-radius: 16px; box-shadow: var(--shadow); padding: 34px; }
.cookie-modal h2 { font-size: 42px; margin-bottom: 12px; }
.cookie-modal p { color: var(--slate); }
.cookie-modal__close { position: absolute; right: 18px; top: 14px; width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(8,27,45,.12); background: var(--white); cursor: pointer; font-size: 24px; line-height: 1; color: var(--navy); }
.cookie-toggle-list { display: grid; gap: 12px; margin: 24px 0; }
.cookie-toggle { display: flex; justify-content: space-between; gap: 24px; align-items: center; border: 1px solid rgba(8,27,45,.10); border-radius: 10px; padding: 16px; }
.cookie-toggle span { position: static; width: auto; height: auto; overflow: visible; clip: auto; }
.cookie-toggle small { display: block; color: var(--slate); margin-top: 4px; }
.cookie-toggle input { width: 24px; height: 24px; accent-color: var(--teal); flex: 0 0 auto; }
.cookie-modal__actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

@media (max-width: 1120px) {
  :root { --header-height: 78px; }
  .brand-logo { width: 200px; }
  .site-nav { gap: 18px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .product-card.bespoke { grid-column: span 2; }
  .method-grid { grid-template-columns: repeat(3, 1fr); row-gap: 42px; }
  .method-grid::before { display: none; }
  .problem-grid { grid-template-columns: repeat(3, 1fr); }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .metric { border-bottom: 1px solid rgba(255,255,255,.18); padding: 24px 32px; }
  .metric:nth-child(2n) { border-right: 0; }
  .metric:nth-child(n+3) { border-bottom: 0; }
}

@media (max-width: 880px) {
  .container { width: min(100% - 36px, var(--max-width)); }
  .section-padding { padding: 64px 0; }
  .site-header { height: 76px; }
  .brand-logo { width: 190px; }
  .menu-toggle { display: block; margin-left: auto; }
  .site-nav { position: fixed; left: 18px; right: 18px; top: 86px; z-index: 950; display: grid; gap: 0; margin: 0; padding: 14px; background: rgba(255,255,255,.98); border: 1px solid rgba(8,27,45,.1); border-radius: 14px; box-shadow: var(--shadow); transform: translateY(-12px); opacity: 0; visibility: hidden; pointer-events: none; transition: .2s ease; }
  .site-nav.open { transform: translateY(0); opacity: 1; visibility: visible; pointer-events: auto; }
  .nav-link { padding: 14px 8px; border-bottom: 1px solid rgba(8,27,45,.08); }
  .nav-link:last-child { border-bottom: 0; }
  .nav-link::after { display: none; }
  .header-cta { display: none; }

  .hero { min-height: auto; display: grid; background: var(--white); }
  .hero-picture { position: relative; height: 330px; inset: auto; width: 100%; order: 0; }
  .hero-picture img { object-position: center; }
  .hero-overlay { display: none; }
  .hero-content { min-height: auto; padding: 0; display: block; }
  .hero-copy { max-width: none; padding: 38px 0 48px 26px; }
  .hero-rule { height: calc(100% - 74px); top: 38px; }
  h1 { font-size: clamp(47px, 13vw, 72px); margin-bottom: 20px; }
  .hero-lede { font-size: 16px; }
  .button-ghost { display: none; }

  .metrics-grid, .why-story-grid, .how-head, .about-grid, .contact-grid, .content-layout { grid-template-columns: 1fr; gap: 36px; }
  .about-text { columns: 1; }
  .metric { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .metric:last-child { border-bottom: 0; }
  .why-story-card img { height: 240px; }
  .problem-grid { grid-template-columns: 1fr 1fr; }
  .method-grid { grid-template-columns: 1fr 1fr; }
  .section-heading-row { display: block; margin-bottom: 24px; }
  .desktop-only { display: none; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .product-card { padding: 24px 20px; min-height: 230px; }
  .product-card.bespoke { grid-column: 1 / -1; }
  .cta-grid { grid-template-columns: 58px 1fr; }
  .cta-grid .button { grid-column: 1 / -1; width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
  .side-nav { position: static; display: grid; grid-template-columns: 1fr 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .cookie-banner { grid-template-columns: 1fr; left: 14px; right: 14px; bottom: 14px; }
  .cookie-banner__actions { justify-content: stretch; }
  .cookie-banner__actions .button { flex: 1 1 180px; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 32px, var(--max-width)); }
  .brand-logo { width: 168px; }
  .hero-picture { height: 300px; }
  h1 { font-size: 48px; }
  .section-intro h2, .about-copy h2, .center-heading h2, .how-head h2, .contact-copy h2 { font-size: 40px; }
  .metrics-grid, .problem-grid, .method-grid, .product-grid { grid-template-columns: 1fr; }
  .metric { padding: 20px 0; }
  .why-story-card img { height: 215px; }
  .google-form-frame { height: 720px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .page-hero { padding: 64px 0 48px; }
  .legal-card { padding: 22px; }
  .side-nav { grid-template-columns: 1fr; }
  .responsive-table { display: block; overflow-x: auto; white-space: nowrap; }
  .cookie-modal { padding: 26px 20px; }
  .cookie-modal__actions .button { width: 100%; }
}
