/* ============================================================
   Makna.io — Design System v1 (lean)
   Owner: Anna Wintour · 12 Aug 2026
   Concept: "Meaning in motion" — human warmth + machine precision
   ============================================================ */

:root {
  --ink: #0F1B2D;
  --body: #3D4A5C;
  --muted: #66707F;
  --accent: #00BFA5;
  --accent-deep: #00897B;
  --warm: #FF7A59;
  --bg: #FFFFFF;
  --surface: #F5F9F8;
  --card: #FFFFFF;
  --line: #E4ECE9;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(15, 27, 45, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 27, 45, 0.12);
  --maxw: 1140px;
  --gutter: 24px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

:focus-visible {
  outline: 3px solid rgba(0, 191, 165, 0.55);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 0 0 10px 0;
  font-size: 14px; font-weight: 600;
}
.skip-link:focus { left: 0; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 560;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.display {
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h2 { font-size: clamp(30px, 4vw, 40px); }
h3 { font-size: 22px; letter-spacing: -0.015em; }

.lead { font-size: 19px; line-height: 1.65; color: var(--body); max-width: 62ch; }
.small { font-size: 14px; }
.meta { font-size: 12.5px; color: var(--muted); letter-spacing: 0.02em; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 14px;
}

.accent-dot { color: var(--warm); }
.accent-t { color: var(--accent-deep); }
strong { color: var(--ink); font-weight: 600; }

.section { padding: 96px 0; }
.section.tint { background: var(--surface); }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head p { margin-top: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.navbar {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 10px;
}
.logo .dot { color: var(--warm); }
.logo-mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
}
.logo-mark svg { width: 20px; height: 20px; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--body);
  padding: 6px 0; border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); border-bottom-color: var(--accent); }

.nav-cta { margin-left: 8px; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  margin: 5px 0; border-radius: 2px; transition: 0.2s;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 600;
  padding: 12px 24px; border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer; transition: all 0.18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-1px); }
.btn-accent { background: var(--accent); color: var(--ink); }
.btn-accent:hover { background: var(--accent-deep); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-lg { padding: 15px 30px; font-size: 16px; }
.btn .arr { transition: transform 0.18s; }
.btn:hover .arr { transform: translateX(3px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 110px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(0, 191, 165, 0.12), transparent 60%),
    radial-gradient(700px 380px at -10% 110%, rgba(255, 122, 89, 0.08), transparent 60%),
    var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}
.hero h1 .hl { position: relative; white-space: nowrap; }
.hero h1 .hl::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 6px;
  height: 10px; background: rgba(0, 191, 165, 0.28);
  z-index: -1; border-radius: 4px;
}
.hero .lead { margin: 26px 0 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 18px; font-size: 13.5px; color: var(--muted); }

/* Hero visual — "meaning mark" card stack */
.hero-visual { position: relative; }
.hero-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 28px;
}
.hero-card .hc-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.hero-card .hc-chip {
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  background: rgba(0, 191, 165, 0.12); color: var(--accent-deep);
  padding: 5px 12px; border-radius: 999px;
}
.hero-card .hc-status { font-size: 12.5px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.hero-card .hc-status::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 3px rgba(0, 191, 165, 0.2);
}
.hero-card .hc-row { display: flex; gap: 12px; align-items: center; padding: 13px 0; border-top: 1px solid var(--line); }
.hero-card .hc-row:first-of-type { border-top: 0; }
.hc-avatar {
  width: 38px; height: 38px; border-radius: 12px; flex: none;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: #fff;
}
.hc-name { font-size: 14px; font-weight: 600; color: var(--ink); }
.hc-sub { font-size: 12.5px; color: var(--muted); }
.hc-tag { margin-left: auto; font-size: 12px; font-weight: 600; color: var(--accent-deep); white-space: nowrap; }
.hero-card .hc-ai {
  margin-top: 18px; background: var(--surface); border-radius: var(--radius-sm);
  padding: 14px 16px; font-size: 13.5px; color: var(--body);
  border: 1px dashed var(--line);
}
.hero-card .hc-ai b { color: var(--accent-deep); }
.hc-float {
  position: absolute; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm); box-shadow: var(--shadow);
  padding: 10px 14px; font-size: 13px; font-weight: 600; color: var(--ink);
  display: flex; align-items: center; gap: 8px;
}
.hc-float .emoji { font-size: 16px; }
.hc-float.f1 { top: -18px; right: -12px; animation: floaty 5s ease-in-out infinite; }
.hc-float.f2 { bottom: -16px; left: -14px; animation: floaty 6s ease-in-out 1s infinite; }

@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* ---------- Trust band ---------- */
.trust-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 26px 0; }
.trust-band .wrap { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; }
.trust-band .tb-label { font-size: 12.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.trust-band .tb-item { display: flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 600; color: var(--ink); }
.trust-band .tb-item svg { flex: none; }

/* ---------- Value props ---------- */
.vp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vp-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; transition: transform 0.2s, box-shadow 0.2s;
}
.vp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.vp-icon {
  width: 48px; height: 48px; border-radius: 14px; margin-bottom: 22px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 191, 165, 0.12);
}
.vp-icon.warm { background: rgba(255, 122, 89, 0.12); }
.vp-card h3 { margin-bottom: 10px; font-size: 20px; }
.vp-card p { font-size: 15px; }

/* ---------- Stats band ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat {
  border-left: 3px solid var(--accent); padding: 8px 0 8px 22px;
}
.stat .num { font-family: var(--font-display); font-size: 44px; font-weight: 600; color: var(--ink); letter-spacing: -0.02em; line-height: 1; }
.stat .num small { font-size: 22px; color: var(--accent-deep); }
.stat .lbl { margin-top: 10px; font-size: 14px; color: var(--muted); max-width: 24ch; }

/* ---------- Split / product teaser ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split-visual {
  border-radius: var(--radius); border: 1px solid var(--line);
  background: var(--ink); color: #fff; padding: 36px;
  min-height: 380px; position: relative; overflow: hidden;
}
.split-visual::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(500px 300px at 80% 0%, rgba(0, 191, 165, 0.35), transparent 60%),
              radial-gradient(400px 260px at 10% 100%, rgba(255, 122, 89, 0.25), transparent 60%);
}
.sv-row { position: relative; }
.sv-label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.sv-line { display: flex; gap: 12px; align-items: flex-start; padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.12); }
.sv-line:first-of-type { border-top: 0; }
.sv-ico { width: 34px; height: 34px; border-radius: 9px; flex: none; display: flex; align-items: center; justify-content: center; background: rgba(0,191,165,0.2); }
.sv-ico.w { background: rgba(255,122,89,0.2); }
.sv-t { font-size: 14.5px; font-weight: 600; }
.sv-d { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 2px; }

.split .check-list { margin-top: 28px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; padding: 9px 0; font-size: 15.5px; color: var(--body); }
.check-list li::before {
  content: ""; flex: none; width: 20px; height: 20px; margin-top: 2px;
  border-radius: 50%; background: rgba(0, 191, 165, 0.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M6 10.5l2.5 2.5L14 7.5' stroke='%2300897B' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 14px; background-position: center; background-repeat: no-repeat;
}

/* ---------- Service cards (products) ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.svc-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 32px; background: var(--card);
  display: flex; flex-direction: column; gap: 6px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.svc-card .num { font-family: var(--font-display); font-size: 15px; color: var(--accent-deep); font-weight: 600; }
.svc-card h3 { font-size: 22px; margin: 8px 0 6px; }
.svc-card p { font-size: 15px; flex: 1; }
.svc-card .tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.svc-card .usecase { margin-top: auto; padding-top: 14px; flex: 0 1 auto; }
.svc-card .more {
  margin-top: 18px; color: var(--accent-deep); font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
}
a.svc-card:hover .more { text-decoration: underline; }

.chip {
  font-size: 12.5px; font-weight: 600; color: var(--accent-deep);
  background: rgba(0, 191, 165, 0.1); padding: 4px 12px; border-radius: 999px;
  white-space: nowrap;
}
.chip.warm { color: #C74E2F; background: rgba(255, 122, 89, 0.12); }

.tags { display: flex; gap: 8px; flex-wrap: wrap; }

/* ---------- Pillars (about) ---------- */
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; background: var(--card);
  display: flex; gap: 18px; align-items: flex-start;
}
.pillar .p-num { font-family: var(--font-display); font-size: 30px; font-weight: 600; color: var(--accent); line-height: 1; }
.pillar h3 { font-size: 17px; margin-bottom: 6px; }
.pillar p { font-size: 14px; }

/* ---------- Article cards ---------- */
.art-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.art-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--card);
  display: flex; flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.art-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.art-thumb { height: 150px; display: flex; align-items: center; justify-content: center; }
.art-thumb svg { width: 56px; height: 56px; }
.art-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.art-body .art-meta { margin-top: auto; padding-top: 10px; }
.art-body .chip { align-self: flex-start; }
.art-body h3 { font-size: 18px; line-height: 1.3; }
.art-body p { font-size: 14px; flex: 1; }
.art-meta { display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: var(--muted); }
.art-meta .rd { color: var(--accent-deep); font-weight: 600; }

.featured {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 0;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--card); margin-bottom: 56px;
}
.featured .f-thumb { background: var(--ink); display: flex; align-items: center; justify-content: center; min-height: 280px; }
.featured .f-body { padding: 44px; display: flex; flex-direction: column; gap: 14px; justify-content: center; }
.featured h3 { font-size: 28px; line-height: 1.2; }
.featured p { font-size: 15.5px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.form-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--card); padding: 40px; box-shadow: var(--shadow);
}
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--font-body); font-size: 15px;
  padding: 12px 15px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  color: var(--ink); background: #fff; transition: border-color 0.15s, box-shadow 0.15s;
}
.field select:invalid { color: var(--muted); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 191, 165, 0.15);
}
.field textarea { min-height: 130px; resize: vertical; }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 12px; }

.chan-card {
  display: flex; gap: 18px; align-items: flex-start;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px 24px; margin-bottom: 16px; background: var(--card);
}
.chan-card .c-ico {
  width: 44px; height: 44px; border-radius: 12px; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 191, 165, 0.12);
}
.chan-card h4 { font-size: 16px; color: var(--ink); margin-bottom: 3px; }
.chan-card p { font-size: 14px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink); color: #fff; border-radius: 24px;
  padding: 72px 56px; text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 85% 0%, rgba(0, 191, 165, 0.28), transparent 60%),
              radial-gradient(500px 280px at 10% 100%, rgba(255, 122, 89, 0.18), transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: rgba(255, 255, 255, 0.75); max-width: 52ch; margin: 0 auto 34px; font-size: 17px; }
.cta-band .btn { background: var(--accent); color: var(--ink); }
.cta-band .btn:hover { background: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, 0.72); padding: 72px 0 40px; margin-top: 120px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; }
.site-footer .logo { color: #fff; }
.footer-about { font-size: 14px; max-width: 30ch; margin-top: 16px; }
.footer-col h4 { color: #fff; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col a { display: block; padding: 5px 0; font-size: 14.5px; transition: color 0.15s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255, 255, 255, 0.5);
}
.footer-bottom .fb-links { display: flex; gap: 24px; }
.footer-bottom a:hover { color: var(--accent); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 88px 0 64px; position: relative; }
.page-hero h1 { font-size: clamp(38px, 5vw, 56px); max-width: 18ch; }
.page-hero .lead { margin-top: 20px; }

/* ---------- Breadcrumb ---------- */
.crumbs { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.crumbs a:hover { color: var(--accent-deep); }
.crumbs .sep { opacity: 0.5; }

/* ---------- Cards used as links ---------- */
.svc-card, .art-card { cursor: pointer; }
a.svc-card:hover h3, a.art-card:hover h3 { color: var(--accent-deep); }
.section-head-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 24px; flex-wrap: wrap; margin-bottom: 40px;
}
.section-head-row .section-head { margin-bottom: 0; }

/* In-content links (articles, legal, contact channels) — underlined for clarity */
main a:not(.btn):not(.logo):not(.logo-mark):not(.nav-links a):not(.art-card):not(.chan-card):not(.f-thumb):not(.more) {
  text-decoration: underline;
  text-decoration-color: rgba(0, 137, 123, 0.45);
  text-underline-offset: 3px;
}
main a:not(.btn):not(.logo):not(.nav-links a):not(.art-card):not(.chan-card):not(.f-thumb):not(.more):hover {
  color: var(--accent-deep);
}

/* ---------- Steps (delivery model) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; background: var(--card); position: relative;
}
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-size: 26px; font-weight: 600; color: var(--accent);
}
.step h3 { font-size: 16.5px; margin: 14px 0 6px; }
.step p { font-size: 13.5px; }

/* ---------- Quote ---------- */
.quote {
  border-left: 3px solid var(--warm); padding: 8px 0 8px 26px; margin: 40px 0;
}
.quote p { font-family: var(--font-display); font-size: 24px; line-height: 1.35; color: var(--ink); }
.quote cite { display: block; margin-top: 12px; font-style: normal; font-size: 14px; color: var(--muted); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid, .split, .contact-grid, .featured { grid-template-columns: 1fr; gap: 48px; }
  .vp-grid, .pillar-grid, .svc-grid, .art-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 72px 0; }
  .nav-links {
    position: fixed; inset: 72px 0 auto 0; background: #fff;
    flex-direction: column; gap: 0; align-items: stretch;
    padding: 12px 24px 24px; border-bottom: 1px solid var(--line);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: 0.2s;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav-links a.active { border-bottom-color: var(--line); color: var(--accent-deep); }
  .nav-links .nav-cta { margin: 16px 0 0; }
  .nav-toggle { display: block; }
}

@media (max-width: 600px) {
  .vp-grid, .pillar-grid, .svc-grid, .art-grid, .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .chip { font-size: 11.5px; padding: 3px 10px; }
  .cta-band { padding: 48px 28px; border-radius: 18px; }
  .hero { padding: 72px 0 72px; }
  .hc-float.f1 { right: 8px; }
  .hc-float.f2 { left: 8px; }
  .form-card { padding: 28px 22px; }
  .featured .f-body { padding: 28px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
