/* ============================================================
   HCL GROUP — Wealth Management
   Design system rebranded from Saltus (authorised rebuild).
   Palette: navy #22384F · deep navy #18263A · mint #9DE6E4 ·
            cream #FFF5E6 · coral #FF8264
   Type: Source Serif 4 (headings) + Roboto (body)
   ============================================================ */

:root {
  /* Colour */
  --navy: #22384f;
  --navy-deep: #18263a;
  --mint: #9de6e4;
  --mint-soft: #c7f1f0;
  --cream: #fff5e6;
  --cream-soft: #fffaf2;
  --coral: #ff8264;
  --white: #ffffff;
  --ink: #18263a;
  --muted: #5b6b7d;
  --line: rgba(24, 38, 58, 0.12);

  /* Type */
  --font-head: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-body: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Spacing scale (base 4px) */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-6: 24px;
  --s-8: 32px;
  --s-12: 48px;
  --s-16: 64px;
  --s-24: 96px;

  /* Radius */
  --r-card: 8px;
  --r-lg: 20px;
  --r-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(24, 38, 58, 0.06);
  --shadow-md: 0 14px 40px rgba(24, 38, 58, 0.12);
  --shadow-lg: 0 30px 70px rgba(24, 38, 58, 0.18);

  --container: 1200px;
  --nav-h: 76px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--navy-deep);
  margin: 0 0 0.4em;
}

h1 {
  font-size: clamp(2.4rem, 5.2vw, 3.9rem);
}
h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.85rem);
}
h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

p {
  margin: 0 0 1.1em;
  color: var(--muted);
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--coral);
  margin: 0 0 var(--s-4);
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: clamp(56px, 9vw, 110px) 0;
}

.section--navy {
  background: var(--navy-deep);
  color: var(--cream);
}
.section--navy h1,
.section--navy h2,
.section--navy h3 {
  color: var(--white);
}
.section--navy p {
  color: rgba(255, 245, 230, 0.78);
}

.section--cream-soft {
  background: var(--cream-soft);
}

.section__head {
  max-width: 720px;
  margin-bottom: var(--s-16);
}
.section__head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lead {
  font-size: 1.16rem;
  color: var(--muted);
}
.section--navy .lead {
  color: rgba(255, 245, 230, 0.82);
}

.grid {
  display: grid;
  gap: var(--s-8);
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn--primary {
  background: var(--mint);
  color: var(--navy-deep);
  border-color: var(--mint);
}
.btn--primary:hover {
  box-shadow: 0 12px 28px rgba(157, 230, 228, 0.5);
}
.btn--coral {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.btn--coral:hover {
  box-shadow: 0 12px 28px rgba(255, 130, 100, 0.45);
}
.btn--ghost {
  background: transparent;
  border-color: currentColor;
  color: var(--navy-deep);
}
.section--navy .btn--ghost {
  color: var(--cream);
}
.btn--ghost:hover {
  background: rgba(24, 38, 58, 0.06);
}
.section--navy .btn--ghost:hover {
  background: rgba(255, 245, 230, 0.1);
}
.btn--lg {
  padding: 17px 34px;
  font-size: 1.05rem;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--navy-deep);
  border-bottom: 2px solid var(--mint);
  padding-bottom: 2px;
  transition: gap 0.2s ease, color 0.2s ease;
}
.section--navy .link-arrow {
  color: var(--mint);
}
.link-arrow:hover {
  gap: 12px;
}
.link-arrow::after {
  content: "→";
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(255, 245, 230, 0.86);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: height 0.25s ease, box-shadow 0.25s ease,
    background 0.25s ease;
}
.site-header.scrolled {
  height: 64px;
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--line);
}
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-8);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--navy-deep);
  letter-spacing: -0.02em;
}
.brand__mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--s-8);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--navy-deep);
  position: relative;
  padding: 4px 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  background: var(--coral);
  transition: width 0.22s ease;
}
.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}
.nav__cta {
  display: flex;
  align-items: center;
  gap: var(--s-4);
}
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
}
.nav__toggle span {
  width: 26px;
  height: 2px;
  background: var(--navy-deep);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav__toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 70px);
  padding-bottom: 90px;
  background: radial-gradient(
      1100px 600px at 85% -10%,
      var(--mint-soft) 0%,
      transparent 55%
    ),
    var(--cream);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--s-16);
  align-items: center;
}
.hero h1 {
  margin-bottom: var(--s-6);
}
.hero__sub {
  font-size: 1.2rem;
  max-width: 32ch;
}
.hero__actions {
  display: flex;
  gap: var(--s-4);
  flex-wrap: wrap;
  margin-top: var(--s-8);
}
.hero__trust {
  display: flex;
  gap: var(--s-8);
  margin-top: var(--s-12);
  flex-wrap: wrap;
}
.hero__trust div strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--navy-deep);
}
.hero__trust div span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Animated illustration: stacking "wealth" blocks */
.hero__art {
  position: relative;
  height: 420px;
  display: grid;
  place-items: center;
}
.build {
  position: relative;
  width: 280px;
  height: 320px;
}
.build__brick {
  position: absolute;
  left: 50%;
  border-radius: 10px;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  animation: brickIn 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.build__brick:nth-child(1) {
  bottom: 0;
  width: 280px;
  height: 70px;
  background: var(--navy-deep);
  animation-delay: 0.1s;
}
.build__brick:nth-child(2) {
  bottom: 80px;
  width: 230px;
  height: 70px;
  background: var(--coral);
  animation-delay: 0.3s;
}
.build__brick:nth-child(3) {
  bottom: 160px;
  width: 180px;
  height: 70px;
  background: var(--mint);
  animation-delay: 0.5s;
}
.build__brick:nth-child(4) {
  bottom: 240px;
  width: 120px;
  height: 70px;
  background: var(--white);
  border: 2px solid var(--navy-deep);
  animation-delay: 0.7s;
}
.build__coin {
  position: absolute;
  top: -6px;
  left: 50%;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--mint);
  border: 3px solid var(--navy-deep);
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--navy-deep);
  opacity: 0;
  animation: brickIn 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) 0.9s forwards,
    floaty 3.5s ease-in-out 1.6s infinite;
}
@keyframes brickIn {
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
@keyframes floaty {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--s-8);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  height: 100%;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--mint-soft);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: var(--s-6);
}
.card h3 {
  margin-bottom: var(--s-3);
}
.card ul {
  margin: 0 0 var(--s-6);
  padding: 0;
  list-style: none;
}
.card ul li {
  padding: 7px 0 7px 26px;
  position: relative;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 700;
}

/* ---------- Stats band ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-8);
  text-align: center;
}
.stat__num {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--mint);
  line-height: 1;
}
.stat__label {
  margin-top: var(--s-3);
  font-size: 0.95rem;
  color: rgba(255, 245, 230, 0.8);
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-8);
  counter-reset: step;
}
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 104px 30px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: 32px;
  left: 30px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--mint);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 600;
}

/* ---------- Split feature ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
  align-items: center;
}
.split--reverse .split__media {
  order: 2;
}
.split__media {
  border-radius: var(--r-lg);
  min-height: 380px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.split__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(24, 38, 58, 0.86) 0%,
    rgba(34, 56, 79, 0.55) 100%
  );
}
.split__media .blob,
.split__media .quote {
  z-index: 1;
}
.split__media .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  animation: floaty 6s ease-in-out infinite;
}
.split__media .blob.a {
  width: 180px;
  height: 180px;
  background: rgba(157, 230, 228, 0.4);
  top: 10%;
  left: 12%;
}
.split__media .blob.b {
  width: 120px;
  height: 120px;
  background: rgba(255, 130, 100, 0.4);
  bottom: 14%;
  right: 16%;
  animation-delay: 1.2s;
}
.split__media .quote {
  position: absolute;
  inset: auto 28px 28px 28px;
  color: var(--cream);
  font-family: var(--font-head);
  font-size: 1.25rem;
  line-height: 1.4;
}

/* ---------- Testimonials ---------- */
.quote-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--s-8);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  height: 100%;
}
.quote-card .stars {
  color: var(--coral);
  letter-spacing: 2px;
  margin-bottom: var(--s-3);
}
.quote-card blockquote {
  margin: 0 0 var(--s-6);
  font-family: var(--font-head);
  font-size: 1.18rem;
  color: var(--navy-deep);
  line-height: 1.45;
}
.quote-card .who {
  font-weight: 600;
  font-size: 0.92rem;
}
.quote-card .who span {
  color: var(--muted);
  font-weight: 400;
}

/* ---------- FAQ accordion ---------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--line);
}
.faq__q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 22px 40px 22px 0;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--font-head);
  color: var(--navy-deep);
  position: relative;
}
.faq__q::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--coral);
  transition: transform 0.25s ease;
}
.faq__item.open .faq__q::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}
.faq__a p {
  padding-bottom: 22px;
  margin: 0;
}

/* ---------- Insights cards ---------- */
.post {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  height: 100%;
}
.post:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.post__img {
  height: 190px;
  overflow: hidden;
  background: var(--navy);
}
.post__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.post:hover .post__img img {
  transform: scale(1.06);
}
.post__body {
  padding: var(--s-6);
}
.post__tag {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--coral);
  font-weight: 600;
}
.post__body h3 {
  font-size: 1.18rem;
  margin: 8px 0 12px;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--mint);
  border-radius: var(--r-lg);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
}
.cta-band h2 {
  color: var(--navy-deep);
}
.cta-band p {
  color: rgba(24, 38, 58, 0.72);
  max-width: 540px;
  margin-inline: auto;
}

/* ---------- Forms ---------- */
.form {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--s-8);
  box-shadow: var(--shadow-md);
}
.field {
  margin-bottom: var(--s-4);
}
.field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--navy-deep);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font: inherit;
  color: var(--ink);
  background: var(--cream-soft);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--mint);
  box-shadow: 0 0 0 4px rgba(157, 230, 228, 0.35);
}
.field.error input,
.field.error select,
.field.error textarea {
  border-color: var(--coral);
}
.field .err-msg {
  display: none;
  color: #d8593e;
  font-size: 0.8rem;
  margin-top: 5px;
}
.field.error .err-msg {
  display: block;
}
.form__note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: var(--s-4);
}
.form__success {
  display: none;
  background: var(--mint-soft);
  border-radius: 12px;
  padding: var(--s-8);
  text-align: center;
}
.form__success.show {
  display: block;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 245, 230, 0.72);
  padding: var(--s-24) 0 var(--s-8);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: var(--s-8);
  padding-bottom: var(--s-16);
  border-bottom: 1px solid rgba(255, 245, 230, 0.14);
}
.footer .brand {
  color: var(--white);
  margin-bottom: var(--s-4);
}
.footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer ul li {
  margin-bottom: 10px;
}
.footer ul a {
  color: rgba(255, 245, 230, 0.72);
  transition: color 0.18s ease;
}
.footer ul a:hover {
  color: var(--mint);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: var(--s-6);
  flex-wrap: wrap;
  padding-top: var(--s-8);
  font-size: 0.82rem;
}
.footer__legal {
  display: flex;
  gap: var(--s-6);
  flex-wrap: wrap;
}
.footer__disclaimer {
  font-size: 0.78rem;
  color: rgba(255, 245, 230, 0.5);
  margin-top: var(--s-6);
  line-height: 1.6;
}

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1200;
  max-width: 640px;
  margin: 0 auto;
  background: var(--navy-deep);
  color: var(--cream);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: var(--s-6);
  align-items: center;
  transform: translateY(160%);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.cookie.show {
  transform: translateY(0);
}
.cookie p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 245, 230, 0.85);
}
.cookie a {
  color: var(--mint);
  text-decoration: underline;
}
.cookie__actions {
  display: flex;
  gap: var(--s-3);
  flex-shrink: 0;
}
.cookie__actions .btn {
  padding: 10px 18px;
  font-size: 0.85rem;
}
/* Ghost (Decline) button must be visible on the navy cookie banner */
.cookie .btn--ghost {
  color: var(--cream);
  border-color: rgba(255, 245, 230, 0.5);
}
.cookie .btn--ghost:hover {
  background: rgba(255, 245, 230, 0.12);
}

/* ---------- Legal / article pages ---------- */
.doc {
  max-width: 780px;
  margin: 0 auto;
}
.doc h2 {
  margin-top: var(--s-12);
  font-size: 1.6rem;
}
.doc h3 {
  margin-top: var(--s-8);
}
.doc ul {
  color: var(--muted);
  padding-left: 20px;
}
.doc li {
  margin-bottom: 8px;
}
.page-hero {
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 50px;
  background: radial-gradient(
      900px 400px at 80% -20%,
      var(--mint-soft) 0%,
      transparent 60%
    ),
    var(--cream);
}
.page-hero .eyebrow {
  margin-bottom: var(--s-3);
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal[data-delay="1"] {
  transition-delay: 0.1s;
}
.reveal[data-delay="2"] {
  transition-delay: 0.2s;
}
.reveal[data-delay="3"] {
  transition-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__grid,
  .split,
  .split--reverse .split__media {
    grid-template-columns: 1fr;
    order: 0;
  }
  .hero__art {
    height: 340px;
  }
  .grid-3,
  .grid-4,
  .steps,
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .nav__links,
  .nav__cta .btn--ghost {
    display: none;
  }
  .nav__toggle {
    display: flex;
  }
  .nav__links.open {
    display: flex;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s-4);
    background: var(--cream);
    padding: var(--s-8);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--line);
  }
  .grid-2,
  .grid-3,
  .grid-4,
  .steps,
  .stats {
    grid-template-columns: 1fr;
  }
  .cookie {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__top {
    grid-template-columns: 1fr;
  }
  .hero__trust {
    gap: var(--s-6);
  }
}
