/* ============================================================
   NailYourLedger — Home
   Type: Archivo (display) / IBM Plex Sans (body) / IBM Plex Mono (labels)
   Color: Midnight Navy + Underline Teal on a Soft-White→Pale-Blue-Gray field
   ============================================================ */

:root {
  --navy: #05172C;
  --navy-2: #0a2238;
  --ink: #0a2034;
  --teal: #058DA3;
  --teal-deep: #04707f;
  --teal-tint: #e3f1f3;
  --sage: #5D8489;
  --slate: #576A73;
  --line: #c8d6df;
  --line-soft: #dde7ed;
  --paper: #ffffff;
  --bg-1: #fcfdfe;
  --bg-2: #dfe9ef;
  --mist: #eef3f7;

  /* tweakable */
  --accent: #058DA3;
  --accent-deep: #04707f;
  --font-display: 'Archivo';

  --maxw: 1240px;
  --gut: 80px;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow-card: 0 18px 40px -22px rgba(5, 23, 44, 0.32);
  --shadow-cta: 0 12px 26px -10px rgba(5, 141, 163, 0.55);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  color: var(--slate);
  background: linear-gradient(158deg, #fcfefe 0%, #eef4f8 42%, #d9e5ed 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-display), 'Archivo', system-ui, sans-serif;
  color: var(--ink);
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.04;
  text-wrap: balance;
}

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

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

.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
}

/* ---- mono blueprint annotation ---- */
.mono { font-family: 'IBM Plex Mono', monospace; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  padding: 17px 26px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-cta);
}
.btn-primary:hover { background: var(--accent-deep); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-light {
  background: #fff;
  color: var(--navy);
  border-color: var(--line);
}
.btn-light:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-lg { padding: 19px 32px; font-size: 17px; }
.calendly-popup[aria-busy="true"] {
  cursor: wait;
  opacity: 0.72;
  pointer-events: none;
}

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(252, 253, 254, 0.72);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid rgba(200, 214, 223, 0.6);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.nav-logo img { height: 44px; width: auto; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.7);
  color: var(--navy);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  transition: color .18s ease;
}
.nav-links a.active { color: var(--teal); }
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--teal);
  transition: width .22s ease;
}
.nav-links a:not(.btn):hover { color: var(--teal); }
.nav-links a:not(.btn):hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 22px; }
.nav-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  color: var(--navy);
  background: rgba(255,255,255,0.5);
  transition: all .18s ease;
}
.nav-social a:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateY(-2px); }
.nav-social svg { width: 17px; height: 17px; }
.nav .btn { padding: 13px 22px; font-size: 15px; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 18px 0 96px;
}
.hero-blueprint {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  color: var(--navy);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(5,141,163,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5,141,163,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(120% 80% at 70% 30%, #000 0%, transparent 72%);
  mask-image: radial-gradient(120% 80% at 70% 30%, #000 0%, transparent 72%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr 1.1fr;
  gap: 56px;
  align-items: center;
  padding-top: 54px;
}
.hero-copy { max-width: 560px; }
.hero h1 {
  font-size: 78px;
  line-height: 0.98;
  color: var(--navy);
  letter-spacing: -0.035em;
}
.hero h1 .accent {
  color: var(--accent);
  position: relative;
  display: inline-block;
}
.hero h1 .accent svg {
  position: absolute;
  left: -2%;
  bottom: -0.32em;
  width: 104%;
  height: 0.34em;
  color: var(--accent);
}
.hero-sub {
  font-size: 20px;
  line-height: 1.55;
  color: var(--slate);
  margin: 28px 0 0;
  max-width: 488px;
}
.hero-sub strong { color: var(--navy); font-weight: 600; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}
.hero-guarantee {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  font-size: 14.5px;
  color: var(--slate);
}
.hero-guarantee .dot {
  flex: none;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--teal-tint);
  color: var(--teal);
}
.hero-guarantee .dot svg { width: 16px; height: 16px; }
.hero-guarantee strong { color: var(--navy); font-weight: 600; }

/* hero visual — layered blueprint alignment */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 0.92;
}
.hero-frame {
  position: absolute;
  inset: 0;
  z-index: 1;
  color: var(--navy);
  opacity: 0.5;
}
.hero-photo {
  position: absolute;
  z-index: 2;
  left: 4%;
  top: 2%;
  width: 92%;
  height: 88%;
  box-shadow: 0 36px 70px -34px rgba(5,23,44,0.5);
  border-radius: 10px;
  overflow: hidden;
}
.production-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo .production-image { width: 100%; height: 100%; }
.hero-chart {
  position: absolute;
  z-index: 1;
  left: 4%;
  bottom: -2%;
  width: 2%;
  height: 2%;
  color: var(--sage);
  opacity: 0.6;
}

/* hero variant: photo-forward */
[data-hero="photo"] .hero-frame { display: none; }
[data-hero="photo"] .hero-chart { display: none; }
[data-hero="photo"] .hero-photo {
  inset: 0;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  border-radius: 14px;
}
[data-hero="photo"] .hero-visual { aspect-ratio: 1 / 0.86; }

/* ============================================================
   Section scaffolding
   ============================================================ */
section { position: relative; }
.section { padding: 104px 0; }
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-head .eyebrow { display: block; margin-bottom: 16px; }
.section-head h2 {
  font-size: 46px;
  color: var(--navy);
}
.section-head p {
  font-size: 18px;
  margin: 18px auto 0;
  color: var(--slate);
  max-width: 560px;
}
.band-mist { background: linear-gradient(180deg, rgba(238,243,247,0) 0%, var(--mist) 16%, var(--mist) 84%, rgba(238,243,247,0) 100%); }
[data-bands="off"] .band-mist { background: transparent; }

/* ============================================================
   Problems We Can Answer
   ============================================================ */
.problems-inner {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 72px;
  align-items: start;
}
.problems-aside h2 { font-size: 44px; color: var(--navy); }
.problems-aside .eyebrow { display: block; margin-bottom: 16px; }
.problems-aside p { margin-top: 20px; font-size: 17px; }
.problems-aside .quote {
  margin-top: 28px;
  padding: 20px 24px;
  border-left: 3px solid var(--accent);
  background: rgba(255,255,255,0.6);
  font-family: var(--font-display), 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--navy);
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.problem-list { display: grid; gap: 4px; }
.problem {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 26px 4px;
  border-top: 1px solid var(--line-soft);
  align-items: start;
}
.problem:last-child { border-bottom: 1px solid var(--line-soft); }
.problem-ico {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  border: 2px solid var(--navy);
  display: grid; place-items: center;
  color: var(--navy);
  background: rgba(255,255,255,0.55);
}
.problem-ico svg { width: 26px; height: 26px; }
.problem h3 {
  font-size: 23px;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.015em;
}
.problem p { margin: 8px 0 0; font-size: 16px; }
.problem .tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 12px;
  display: inline-block;
}

/* ============================================================
   Services
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.svc-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -24px rgba(5,23,44,0.4); }
.svc-shot {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--navy);
  overflow: hidden;
}
.svc-shot .production-image { width: 100%; height: 100%; }
.svc-shot .svc-label {
  position: absolute;
  left: 16px; bottom: 14px;
  z-index: 3;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(5,23,44,0.7);
  backdrop-filter: blur(4px);
  padding: 6px 11px;
  border-radius: 3px;
}
.svc-body { padding: 26px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.svc-body h3 { font-size: 22px; color: var(--navy); font-weight: 700; letter-spacing: -0.015em; }
.svc-body p { margin: 12px 0 0; font-size: 15.5px; }
.svc-deliv {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.svc-deliv span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--slate);
  background: var(--mist);
  padding: 5px 10px;
  border-radius: 3px;
}

/* ============================================================
   Explore by Work Type
   ============================================================ */
.worktype-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.wt-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  box-shadow: var(--shadow-card);
}
.wt-card .production-image { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; transition: transform 0.8s ease; transform: scale(1); }
.wt-card:hover .production-image { transform: scale(1.08); }
.wt-card .wt-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(5,23,44,0.12) 0%, rgba(5,23,44,0.42) 46%, rgba(5,23,44,0.88) 100%);
  transition: background .25s ease;
}
.wt-card:hover .wt-scrim { background: linear-gradient(180deg, rgba(5,23,44,0.18) 0%, rgba(5,23,44,0.5) 46%, rgba(5,23,44,0.92) 100%); }
.wt-body { position: relative; z-index: 2; padding: 40px; color: #fff; width: 100%; }
.wt-body .eyebrow { color: #8fd6df; }
.wt-body h3 { color: #fff; font-size: 38px; margin-top: 14px; letter-spacing: -0.025em; }
.wt-body p { color: rgba(255,255,255,0.82); font-size: 16px; margin: 14px 0 0; max-width: 360px; }
.wt-link {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 22px;
  font-weight: 600; color: #fff;
  font-size: 15px;
}
.wt-link svg { width: 18px; height: 18px; transition: transform .2s ease; }
.wt-card:hover .wt-link svg { transform: translateX(5px); }

/* ============================================================
   Testimonials
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.testi {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
  position: relative;
  display: flex;
  flex-direction: column;
}
.testi .mark {
  font-family: var(--font-display), 'Archivo', serif;
  font-size: 72px;
  line-height: 0.6;
  color: var(--teal-tint);
  height: 30px;
}
.testi blockquote {
  margin: 0;
  font-family: var(--font-display), 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.38;
  color: var(--navy);
  letter-spacing: -0.015em;
}
.testi-by {
  display: flex; align-items: center; gap: 14px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
}
.avatar-placeholder {
  width: 50px;
  height: 50px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-tint);
  color: var(--teal-deep);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  font-weight: 700;
}
.testi-avatar {
  width: 50px;
  height: 50px;
  flex: none;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 2px solid var(--teal-tint);
}
.testi-by .who strong { display: block; color: var(--navy); font-size: 15px; font-weight: 600; }
.testi-by .who span { font-size: 13px; color: var(--sage); }

/* ============================================================
   Guarantee
   ============================================================ */
.guarantee {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 140% at 80% -10%, #103a55 0%, var(--navy) 55%);
  color: #fff;
  border-radius: 14px;
  padding: 84px 64px;
  text-align: center;
  box-shadow: 0 40px 80px -40px rgba(5,23,44,0.7);
}
.guarantee-bp {
  position: absolute; inset: 0; z-index: 0;
  color: #cfe6ea; opacity: 0.10;
  pointer-events: none;
}
.guarantee-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.guarantee .shield {
  width: 70px; height: 70px;
  margin: 0 auto 26px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(5,141,163,0.18);
  border: 1px solid rgba(143,214,223,0.35);
  color: #8fd6df;
}
.guarantee .shield svg { width: 34px; height: 34px; }
.guarantee .eyebrow { color: #8fd6df; }
.guarantee h2 {
  color: #fff;
  font-size: 50px;
  margin: 16px 0 0;
  letter-spacing: -0.025em;
}
.guarantee h2 .u { color: #8fd6df; }
.guarantee p {
  font-size: 19px;
  color: rgba(255,255,255,0.82);
  margin: 22px auto 0;
  max-width: 600px;
  line-height: 1.6;
}
.guarantee .btn-primary { margin-top: 38px; }
.guarantee-meta {
  margin-top: 28px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(143,214,223,0.8);
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 40px;
  margin-top: 110px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand img { height: 70px; width: auto; margin-bottom: 22px; }
.footer-brand p { font-size: 14.5px; line-height: 1.6; max-width: 280px; color: rgba(255,255,255,0.55); }
.footer-col h4 {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8fd6df;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-col a { font-size: 14.5px; color: rgba(255,255,255,0.66); transition: color .16s ease; }
.footer-col a:hover { color: #fff; }
.footer-disclaimer {
  margin: 48px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,0.45);
}
.footer-bot {
  margin-top: 14px;
  padding-top: 0;
  border-top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 14px;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  :root { --gut: 44px; }
  .hero h1 { font-size: 62px; }
  .hero-inner { gap: 40px; }
  .section-head h2 { font-size: 40px; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 560px; }
  .problems-inner { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .worktype-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .nav-inner { position: relative; }
  .nav-toggle { display: block; }
  .nav-cta {
    margin-left: auto;
    margin-right: 12px;
    gap: 0;
  }
  .nav-social {
    position: fixed;
    top: 88px;
    left: var(--gut);
    z-index: 55;
    display: flex;
    gap: 8px;
    padding: 6px;
    border: 1px solid rgba(200, 214, 223, 0.8);
    border-radius: 999px;
    background: rgba(252, 253, 254, 0.86);
    box-shadow: 0 14px 30px -22px rgba(5,23,44,0.55);
    backdrop-filter: blur(14px) saturate(1.25);
    -webkit-backdrop-filter: blur(14px) saturate(1.25);
    transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
  }
  .nav-social a {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.94);
  }
  .nav-social svg {
    width: 15px;
    height: 15px;
  }
  .nav-open .nav-social {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
  }
  .nav-cta .btn {
    display: inline-flex;
    padding: 10px 14px;
    font-size: 13px;
    white-space: nowrap;
  }
  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: var(--gut);
    right: var(--gut);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    background: rgba(252, 253, 254, 0.98);
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
  }
  .nav-links a {
    padding: 13px 14px;
    border-radius: var(--radius);
  }
  .nav-links a:not(.btn)::after { display: none; }
  .nav-links a:hover,
  .nav-links a.active { background: var(--teal-tint); }
  .nav-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 620px) {
  :root { --gut: 22px; }
  .hero { padding-top: 8px; }
  .hero h1 { font-size: 46px; }
  .hero-sub { font-size: 17px; }
  .section { padding: 72px 0; }
  .section-head h2 { font-size: 32px; }
  .nav-inner { gap: 10px; }
  .brand-text { display: none; }
  .nav-cta { margin-right: 8px; }
  .nav-social {
    top: 86px;
    gap: 6px;
  }
  .nav-social a {
    width: 32px;
    height: 32px;
  }
  .nav-cta .btn {
    padding: 9px 11px;
    font-size: 12px;
  }
  .guarantee { padding: 56px 18px; }
  .guarantee h2 { font-size: 34px; }
  .guarantee .btn-primary {
    display: inline-flex;
    max-width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }
  .footer {
    padding: 64px 0 34px;
    margin-top: 80px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 34px 26px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .hero-actions .btn { flex: 1; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
