:root {
  --ink: #042646;
  --ink-soft: #4a5d73;
  --paper: #f7fafc;
  --white: #fff;
  --line: #e2e8f0;
  --green: #1faa4a;
  --green-deep: #178a3a;
  --blue: #0b6bcb;
  --red: #c8102e;
  --shell: min(1180px, calc(100% - 2rem));
  --font: "Manrope", system-ui, sans-serif;
  --display: "Manrope", system-ui, sans-serif;
  --radius: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --topbar-h: 2.5rem;
  --nav-h: 4.5rem;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

.shell { width: var(--shell); margin-inline: auto; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.55rem 0.9rem;
  z-index: 200;
}
.skip:focus { left: 0.75rem; top: 0.75rem; }

/* —— Top bar —— */
.topbar {
  background: #eef2f6;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  min-height: var(--topbar-h);
  display: flex;
  align-items: center;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: var(--shell);
  margin-inline: auto;
  flex-wrap: wrap;
  padding: 0.35rem 0;
}
.topbar-brand {
  color: var(--ink-soft);
  font-weight: 500;
  white-space: nowrap;
}
.topbar-nav {
  display: none;
  gap: 1.15rem;
  align-items: center;
}
.topbar-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
}
.topbar-nav a:hover { color: var(--ink); }
.topbar-phone {
  color: var(--green) !important;
  font-weight: 700 !important;
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.topbar-phone:hover { color: var(--green-deep) !important; }
.topbar-phone-mobile { display: inline; font-weight: 700; text-decoration: none; }
@media (min-width: 900px) {
  .topbar-phone-mobile { display: none; }
}

/* —— Main header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: var(--shell);
  margin-inline: auto;
  min-height: var(--nav-h);
}
.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.1;
  flex-shrink: 0;
}
.brand-mark {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.brand-logo {
  display: block;
  height: 58px;
  width: 58px;
  object-fit: contain;
}
.brand-logo-footer {
  height: 84px;
  width: 84px;
  margin: 0;
}
.brand-logo-chip {
  display: inline-block;
  background: #fff;
  padding: 0.6rem;
  border-radius: 14px;
  margin-bottom: 0.6rem;
  line-height: 0;
}
@media (max-width: 520px) {
  .brand-logo { height: 48px; width: 48px; }
}
.brand-badge {
  margin-top: 0.2rem;
  display: inline-flex;
  align-self: flex-start;
  background: linear-gradient(90deg, #1faa4a, #0b6bcb);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.18rem 0.45rem;
  border-radius: 4px;
}
.nav-desktop {
  display: none;
  gap: 0.15rem;
  align-items: center;
}
.nav-desktop > a,
.nav-item > summary {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  cursor: pointer;
  list-style: none;
}
.nav-desktop > a:hover,
.nav-item > summary:hover,
.nav-desktop > a.is-active { background: #eef4fa; color: var(--blue); }
.nav-item { position: relative; }
.nav-item > summary::-webkit-details-marker { display: none; }
.nav-item > summary::after {
  content: "▾";
  margin-left: 0.35rem;
  font-size: 0.7rem;
  opacity: 0.55;
}
.nav-drop {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(4, 38, 70, 0.1);
  padding: 0.55rem;
  display: grid;
  gap: 0.15rem;
  z-index: 60;
}
.nav-drop a {
  text-decoration: none;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav-drop a:hover { background: #eef4fa; color: var(--ink); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.btn-destek {
  display: none;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.95rem;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: background 0.2s var(--ease);
  white-space: nowrap;
}
.btn-destek:hover { background: var(--green-deep); }
.btn-destek-icon { width: 1.05rem; height: 1.05rem; }
.btn-destek-block {
  justify-content: center;
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  display: inline-flex;
  border-bottom: 0 !important;
}

.nav-toggle {
  display: inline-flex;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}
.nav-mobile {
  display: none;
  position: fixed;
  inset: calc(var(--topbar-h) + var(--nav-h)) 0 0;
  background: rgba(255, 255, 255, 0.98);
  padding: 1.25rem;
  z-index: 49;
  flex-direction: column;
  gap: 0.35rem;
  overflow-y: auto;
  border-top: 1px solid var(--line);
}
.nav-mobile.is-open { display: flex; }
.nav-mobile a {
  color: var(--ink);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 0.7rem 0.35rem;
  border-bottom: 1px solid var(--line);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  border: 0;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn:hover { background: #06345f; }
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 0.5rem 0.85rem; font-size: 0.8rem; }
.btn-green { background: var(--green); }
.btn-green:hover { background: var(--green-deep); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn-ghost:hover { background: #eef4fa; }
.btn-outline {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn-outline:hover { background: var(--white); }
.btn-wa { background: #128c7e; }
.btn-wa:hover { background: #0e7368; }

/* —— Hero (Izmir-like split) —— */
.hero-split {
  background: var(--white);
  padding: 2.5rem 0 3rem;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
.hero-copy h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 3.8vw, 2.35rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 18ch;
}
.hero-copy .lead {
  margin: 0 0 1.5rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
  max-width: 48ch;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 0.65rem; }

.hero-collage {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 0.75rem;
  min-height: 280px;
}
.hero-collage .shot {
  border-radius: var(--radius);
  overflow: hidden;
  background: #d9e2ec;
  box-shadow: 0 10px 28px rgba(4, 38, 70, 0.1);
}
.hero-collage .shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-collage .shot-tall { grid-row: span 2; min-height: 300px; }
.hero-collage .shot-sm { min-height: 140px; }

/* Solutions intro + cards */
.section { padding: clamp(3rem, 7vw, 4.75rem) 0; }
.section-head { max-width: 36rem; margin-bottom: clamp(1.5rem, 3vw, 2.25rem); }
.section-head h2,
.prose h2,
.block-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  line-height: 1.2;
  margin: 0 0 0.65rem;
  color: var(--ink);
}
.section-head p,
.muted { color: var(--ink-soft); margin: 0; font-size: 1.02rem; }
.bg-white { background: var(--white); border-block: 1px solid var(--line); }

.solutions-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}
.sol-cards {
  display: grid;
  gap: 0.85rem;
}
.sol-card {
  display: grid;
  gap: 0.45rem;
  padding: 1.25rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.sol-card:hover {
  border-color: #b8d0e8;
  box-shadow: 0 10px 24px rgba(4, 38, 70, 0.08);
  transform: translateY(-2px);
}
.sol-card svg {
  width: 2rem;
  height: 2rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
}
.sol-card strong {
  font-size: 1.02rem;
  color: var(--ink);
}
.sol-card span {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.45;
}

/* Feature bands */
.feature-band {
  display: grid;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}
.feature-band:first-of-type { border-top: 0; padding-top: 0; }
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.chip-list a {
  display: inline-flex;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: #eef4fa;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background 0.2s var(--ease);
}
.chip-list a:hover { background: #dceaf8; }

/* Kampanyalar */
.section-head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  max-width: none;
}
.kampanya-meta { margin: 0 0 1.25rem; font-size: 0.92rem; }
.kampanya-loading { margin: 0; }
.kampanya-stage { min-height: 8rem; }
.kampanya-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.5rem;
  align-items: center;
}
.kampanya-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.35rem 0.15rem 0.85rem;
  scrollbar-width: thin;
}
.kampanya-nav {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 10px;
}
.kampanya-nav:hover { background: #eef4fa; }
.kampanya-grid {
  display: grid;
  gap: 1rem;
}
.kampanya-card {
  flex: 0 0 min(86vw, 320px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.2s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.kampanya-grid .kampanya-card { flex: none; }
.kampanya-card:hover {
  border-color: #b8d0e8;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(4, 38, 70, 0.08);
}
.kampanya-card-media {
  display: block;
  aspect-ratio: 2 / 1;
  background: #e8ecf0;
  overflow: hidden;
}
.kampanya-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.kampanya-card:hover .kampanya-card-media img { transform: scale(1.04); }
.kampanya-card-body {
  display: grid;
  gap: 0.4rem;
  padding: 1rem 1.05rem 1.15rem;
}
.kampanya-ends {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
}
.kampanya-card-body strong {
  font-size: 1rem;
  line-height: 1.3;
}
.kampanya-more {
  font-size: 0.88rem;
  color: var(--blue);
  font-weight: 600;
  margin-top: 0.15rem;
}
.kampanya-cta {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}
.kampanya-cta p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  max-width: 46ch;
}

/* Why / FAQ */
.faq {
  display: grid;
  gap: 0.65rem;
}
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  float: right;
  color: var(--ink-soft);
  font-weight: 500;
}
.faq details[open] summary::after { content: "–"; }
.faq details p {
  margin: 0.75rem 0 0.25rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Inner pages */
.page-hero {
  padding: 2.25rem 0 2rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-weight: 800;
  font-size: clamp(1.7rem, 3.5vw, 2.35rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.55rem;
  line-height: 1.15;
  color: var(--ink);
}
.page-hero p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 48ch;
  font-size: 1.05rem;
}
.breadcrumb {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.breadcrumb a { color: inherit; text-decoration: none; }
.breadcrumb a:hover { color: var(--blue); text-decoration: underline; }

.eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
}
.fact-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}
.fact-list li {
  padding-left: 0.9rem;
  border-left: 3px solid var(--green);
  color: var(--ink-soft);
}
.fact-list strong { color: var(--ink); }

.split {
  display: grid;
  gap: 2rem;
  align-items: start;
}
.split-visual {
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 240px;
  background: #d9e2ec;
  box-shadow: 0 10px 28px rgba(4, 38, 70, 0.08);
}
.split-visual img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}
.prose p { color: var(--ink-soft); max-width: 62ch; }
.prose p + p { margin-top: 0.9rem; }

.link-rows { display: grid; gap: 0; }
.link-row {
  display: grid;
  gap: 0.35rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
}
.link-row:last-child { border-bottom: 1px solid var(--line); }
.link-row h3 { margin: 0; font-size: 1.15rem; }
.link-row p { margin: 0; color: var(--ink-soft); max-width: 52ch; }
.link-row:hover h3 { color: var(--blue); }

.solution-list { display: grid; gap: 0; }
.solution {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1.1rem;
  row-gap: 0.25rem;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
}
.solution:last-child { border-bottom: 1px solid var(--line); }
.sol-num {
  grid-row: span 2;
  font-weight: 800;
  color: var(--green);
  padding-top: 0.15rem;
}
.solution h3 { margin: 0; font-size: 1.15rem; }
.solution p { margin: 0; color: var(--ink-soft); }

.process {
  display: grid;
  gap: 1rem;
  counter-reset: step;
  margin: 0;
  padding: 0;
}
.process li {
  list-style: none;
  padding: 1.1rem 1.15rem 1.1rem 3.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
}
.process li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1rem;
  top: 1.1rem;
  font-weight: 800;
  color: var(--green);
}

.checklist {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.checklist li {
  padding-left: 1.35rem;
  position: relative;
  color: var(--ink-soft);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--green);
  border-radius: 2px;
}

/* Contact */
.contact-grid { display: grid; gap: 2rem; }
.contact-dl { margin: 0; display: grid; gap: 1rem; }
.contact-dl dt {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.15rem;
}
.contact-dl dd { margin: 0; font-size: 1.05rem; font-weight: 600; }
.contact-dl a { text-decoration: none; }
.contact-dl a:hover { color: var(--blue); }

.contact-form { display: grid; gap: 0.85rem; }
.contact-form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.72rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}
.contact-form .btn { justify-self: start; }

.map-wrap {
  margin-top: 1.25rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(4, 38, 70, 0.08);
  background: #e8eef5;
  box-shadow: 0 10px 28px rgba(4, 38, 70, 0.06);
}
.map-embed {
  display: block;
  width: 100%;
  height: min(52vh, 420px);
  min-height: 280px;
  border: 0;
}
.form-light label { color: var(--ink-soft); }

.cta-band {
  background: var(--ink);
  color: #fff;
  padding: clamp(2.5rem, 6vw, 3.5rem) 0;
}
.cta-band .muted { color: rgba(255, 255, 255, 0.72); }
.cta-band .btn-ghost {
  color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.45);
}
.cta-band .btn-ghost:hover { background: rgba(255, 255, 255, 0.1); }
.cta-band .contact-dl a:hover { color: #9fd4ff; }

/* Footer */
.site-footer {
  background: #031a2e;
  color: rgba(255, 255, 255, 0.72);
  padding: 2.75rem 0 1.75rem;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  gap: 1.75rem;
  margin-bottom: 2rem;
}
.site-footer .brand-mark { color: #fff; }
.site-footer .brand-badge { margin-top: 0.35rem; }
.site-footer a { color: rgba(255, 255, 255, 0.78); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-nav { display: grid; gap: 0.45rem; }
.footer-nav strong {
  color: #fff;
  margin-bottom: 0.25rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.15rem;
  opacity: 0.75;
}

.wa-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  font-weight: 700;
  font-size: 0.72rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: 0.08s; }
[data-delay="2"] { transition-delay: 0.16s; }
[data-delay="3"] { transition-delay: 0.24s; }

@media (min-width: 900px) {
  .topbar-nav { display: flex; }
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
  .btn-destek { display: inline-flex; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; }
  .hero-collage .shot-tall { min-height: 380px; }
  .solutions-layout { grid-template-columns: 0.9fr 1.1fr; gap: 3rem; }
  .sol-cards { grid-template-columns: repeat(3, 1fr); }
  .feature-band { grid-template-columns: 1fr 1.2fr; gap: 2.5rem; align-items: start; }
  .kampanya-grid { grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
  .kampanya-card { flex-basis: min(42%, 340px); }
  .process { grid-template-columns: repeat(5, 1fr); gap: 0.75rem; }
  .process li { padding: 1.1rem; }
  .process li::before { position: static; display: block; margin-bottom: 0.55rem; }
  .solution-list,
  .link-rows { grid-template-columns: 1fr 1fr; column-gap: 2.5rem; }
  .split { grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center; }
  .split-visual,
  .split-visual img { min-height: 380px; }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1.35fr 1fr 1fr 1fr; }
  .footer-grid-wide { grid-template-columns: 1.2fr repeat(5, 1fr); gap: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}
