/* ============================================================
   Refreshd – stylesheet
   Mobile-first. Farver, type og spacing via CSS-variabler.
   ============================================================ */

:root {
  --paper: #F6F5F0;
  --ink: #17191B;
  --green: #2E7D52;
  --green-dark: #256443;
  --green-deep: #16432C;
  --green-deepest: #0f3220;
  --mint: #8FD3AB;
  --chip-bg: #E7F0E8;
  --muted: #4A4D48;
  --muted-2: #6A6D67;
  --muted-3: #6B6E68;        /* WCAG AA på lyst (≥4.5:1) */
  --green-text: #256443;     /* grøn der består AA som lille tekst på papir/hvid */
  --line: rgba(23, 25, 27, 0.09);
  --line-strong: rgba(23, 25, 27, 0.16);

  --font-head: 'Schibsted Grotesk', system-ui, sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, sans-serif;
  --font-mono: 'Space Mono', ui-monospace, monospace;

  --maxw: 1200px;
  --pad: 20px;
  --pill: 999px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--green); color: #fff; }

h1, h2, h3 { font-family: var(--font-head); margin: 0; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ---- Mode-switching ---- */
[data-mode="erhverv"] .m-forhandler { display: none; }
[data-mode="forhandler"] .m-erhverv { display: none; }

@keyframes spinSlow { to { transform: rotate(360deg); } }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; scroll-behavior: auto !important; }
}

/* ============================ Buttons ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.1;
  padding: 14px 24px;
  min-height: 44px;
  border-radius: var(--pill);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s ease, transform .15s ease, color .15s ease;
}
.btn--lg { padding: 15px 28px; }
.btn--green { background: var(--green); color: #fff; box-shadow: 0 4px 14px rgba(22,67,44,.22); }
.btn--green:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn--deep { background: var(--green-deep); color: #fff; font-weight: 700; box-shadow: 0 10px 26px -10px rgba(22,67,44,.5); }
.btn--deep:hover { background: var(--green-deepest); transform: translateY(-1px); }
.btn--white { background: #fff; color: var(--green-deep); font-weight: 700; box-shadow: 0 8px 22px -8px rgba(0,0,0,.4); }
.btn--white:hover { background: var(--chip-bg); }
.btn--outline { border-color: rgba(23,25,27,.2); color: var(--ink); background: transparent; }
.btn--outline:hover { background: rgba(23,25,27,.05); }
.btn--outline-light { border-color: rgba(255,255,255,.3); color: #fff; background: transparent; }
.btn--outline-light:hover { background: rgba(255,255,255,.1); }
.btn--ghost-green { border-color: var(--green); color: var(--green-text); background: transparent; padding: 10px 18px; font-size: 15px; }
.btn--ghost-green:hover { background: var(--chip-bg); }

:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; border-radius: 4px; }

/* Mobil: lange CTA-knapper stables i fuld bredde og må ombryde tekst,
   så deres min-bredde aldrig tvinger kolonnen bredere end skærmen. */
@media (max-width: 559px) {
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn,
  .sustain__btn,
  .ctaband .btn { width: 100%; white-space: normal; }
}

/* Tillad grid-kolonner at krympe under deres indholds min-bredde */
.hero__grid > div, .sustain__grid > div, .signup > div { min-width: 0; }

/* Touch-targets: løft små klikbare elementer mod ~44px */
.nav__logo { padding: 8px 0; }
.rhero__back { padding: 11px 4px 11px 0; }
.footer__list a { display: inline-block; padding: 8px 0; }

/* ============================ Nav ============================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246,245,240,.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(23,25,27,.08);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 14px var(--pad);
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.nav__logo { display: flex; align-items: center; }
.nav__links { display: none; gap: 24px; font-size: 15px; font-weight: 500; }
.nav__links a { opacity: .8; }
.nav__links a:hover { opacity: 1; }
.nav__actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
/* Mobil: skjul sekundære tekstlinks (logo går hjem, Kontakt er i footeren)
   og kompakt CTA, så nav'en aldrig løber ud over skærmen. */
.nav__link-strong { display: none; font-size: 15px; font-weight: 600; opacity: .85; }
.nav__link-strong:hover { opacity: 1; }
.nav__actions .btn { font-size: 13.5px; padding: 9px 14px; }
/* Korte CTA-labels på mobil; fulde labels fra 880px */
.lbl-full { display: none; }
.lbl-short { display: inline; }

@media (min-width: 880px) {
  .nav__inner { gap: 32px; padding: 16px 28px; flex-wrap: nowrap; }
  .nav__links { display: flex; margin-left: 12px; }
  .nav__actions { gap: 14px; }
  .nav__link-strong { display: inline-flex; }
  .nav__actions .btn { font-size: 15px; padding: 11px 20px; }
  .lbl-full { display: inline; }
  .lbl-short { display: none; }
}

/* ============================ Shared bits ============================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 14px; margin: 0;
  border: 1px solid rgba(23,25,27,.14); border-radius: var(--pill);
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .04em;
  text-transform: uppercase; color: var(--green-text);
}
.eyebrow--mint { border-color: rgba(255,255,255,.22); color: var(--mint); }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); display: inline-block; flex-shrink: 0; }
.dot--mint { background: var(--mint); }
.mono { font-family: var(--font-mono); }
.mint { color: var(--mint); }

.kicker {
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .06em;
  text-transform: uppercase; color: var(--green-text); margin: 0;
}
.kicker--mint { color: var(--mint); }

.section { padding-top: 48px; padding-bottom: 12px; }
.section__head { max-width: 620px; }
.section__title {
  font-weight: 700; font-size: clamp(28px, 5vw, 38px);
  letter-spacing: -.015em; line-height: 1.08; margin-top: 12px;
}

/* ============================ Erhverv hero ============================ */
.hero { padding: 48px var(--pad) 32px; max-width: var(--maxw); margin: 0 auto; }
.hero__grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.hero__title { font-weight: 800; font-size: clamp(36px, 8vw, 54px); line-height: 1.05; letter-spacing: -.02em; margin-top: 22px; max-width: 12ch; text-wrap: balance; }
.hero__title--light { color: #fff; max-width: 14ch; }
.hero__lead { font-size: clamp(17px, 2.4vw, 19px); line-height: 1.55; color: var(--muted); max-width: 480px; margin-top: 22px; }
.hero__lead--light { color: rgba(255,255,255,.8); max-width: 500px; }
.hero__cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 24px; margin: 40px 0 0; padding: 0; list-style: none; font-size: 14px; color: var(--muted-2); flex-wrap: wrap; }
.hero__stats strong { display: block; color: var(--ink); font-size: 17px; font-family: var(--font-head); }
.hero__stats-divider { width: 1px; align-self: stretch; background: rgba(23,25,27,.12); }

.hero__media { position: relative; }
.hero__glow { position: absolute; inset: -24px; background: radial-gradient(circle at 70% 30%, rgba(46,125,82,.12), transparent 60%); border-radius: 40px; }
.hero__card { position: relative; background: #fff; border: 1px solid rgba(23,25,27,.08); border-radius: 26px; padding: 22px; box-shadow: 0 30px 60px -30px rgba(23,25,27,.28); }
.hero__stage { position: relative; border-radius: 16px; height: 320px; background: radial-gradient(circle at 50% 40%, #F4F3EE, #E9E7E0); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero__product { width: 100%; height: 100%; object-fit: contain; padding: 14px; filter: drop-shadow(0 18px 28px rgba(23,25,27,.22)); }
.badge-dark { position: absolute; top: 16px; left: 16px; background: var(--ink); color: #fff; font-size: 12px; font-weight: 600; padding: 6px 12px; border-radius: var(--pill); font-family: var(--font-mono); }
.hero__cardfoot { display: flex; justify-content: space-between; align-items: center; margin-top: 18px; padding: 0 4px; gap: 12px; }
.hero__cardname { font-family: var(--font-head); font-weight: 700; font-size: 17px; }
.hero__cardspec { font-size: 13.5px; color: var(--muted-2); margin-top: 2px; }
.chip { background: var(--chip-bg); color: var(--green-dark); font-weight: 600; font-size: 12px; padding: 5px 10px; border-radius: var(--pill); }
.chip--stock { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; padding: 7px 12px; }
.hero__float { position: absolute; bottom: -22px; left: -8px; background: var(--green-deep); color: #fff; border-radius: 18px; padding: 16px 18px; box-shadow: 0 18px 40px -16px rgba(22,67,44,.5); animation: floatY 5s ease-in-out infinite; display: flex; align-items: center; gap: 12px; }
.hero__float-label { font-size: 12px; opacity: .7; font-family: var(--font-mono); }
.hero__float-value { font-family: var(--font-head); font-weight: 700; font-size: 18px; }

@media (min-width: 880px) {
  .hero { padding: 72px 28px 40px; }
  .hero__grid { grid-template-columns: 1.05fr .95fr; gap: 56px; }
  .hero__float { left: -22px; }
}

/* ============================ Forhandler hero ============================ */
.rhero { position: relative; background: var(--green-deep); color: #fff; overflow: hidden; }
.rhero__spin { position: absolute; right: -120px; top: -100px; width: 440px; opacity: .07; }
.rhero__spin img { width: 100%; height: auto; animation: spinSlow 60s linear infinite; }
.rhero__inner { padding: 48px var(--pad) 56px; position: relative; }
.rhero__back { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,.7); margin-bottom: 26px; }
.rhero__back:hover { color: #fff; }
.rhero__panel { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 24px; padding: 24px; }
.rhero__panel-label { font-family: var(--font-mono); font-size: 12px; letter-spacing: .05em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.rhero__rows { display: grid; gap: 14px; margin-top: 20px; }
.rhero__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px; background: rgba(255,255,255,.05); border-radius: 14px; font-weight: 600; }
.rhero__row--accent { background: var(--green); font-weight: 700; }
.rhero__pct { font-family: var(--font-head); font-weight: 800; font-size: 18px; }

@media (min-width: 880px) {
  .rhero__inner { padding: 64px 28px 72px; }
}

/* ============================ Brands strip ============================ */
.brands { display: flex; align-items: center; gap: 24px; justify-content: center; flex-wrap: wrap; color: var(--muted-3); padding-top: 44px; padding-bottom: 12px; }
.brands__label { font-family: var(--font-mono); font-size: 13px; letter-spacing: .04em; text-align: center; }
.brands__name { font-family: var(--font-head); font-weight: 700; font-size: 26px; color: var(--ink); }
.brands__dot { width: 6px; height: 6px; border-radius: 50%; background: #C9CAC3; }

/* ============================ Cards (fordele) ============================ */
.cards-3 { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 32px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 28px; }
.card__big { font-family: var(--font-head); font-weight: 800; font-size: 44px; color: var(--green); line-height: 1; }
.card__title { font-weight: 700; font-size: 20px; margin-top: 16px; }
.card__body { font-size: 15.5px; line-height: 1.55; color: var(--muted); margin: 8px 0 0; }

@media (min-width: 720px) { .cards-3 { grid-template-columns: repeat(3, 1fr); gap: 22px; } }

/* ============================ Produkter ============================ */
.products { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 32px; }
.product { background: #fff; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; transition: border-color .15s ease, transform .15s ease; }
.product:hover { border-color: rgba(46,125,82,.4); transform: translateY(-3px); }
.product__stage { position: relative; height: 220px; background: radial-gradient(circle at 50% 35%, #FBFAF7, #ECEAE3); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.product__stage img { width: 100%; height: 100%; object-fit: contain; padding: 28px; filter: drop-shadow(0 10px 16px rgba(23,25,27,.16)); }
.product__brand { position: absolute; top: 12px; left: 12px; font-family: var(--font-mono); font-size: 11px; font-weight: 700; color: var(--ink); background: rgba(255,255,255,.85); padding: 4px 9px; border-radius: var(--pill); }
.product__info { padding: 18px 18px 20px; }
.product__name { font-family: var(--font-head); font-weight: 700; font-size: 17px; }
.product__spec { font-size: 13.5px; color: var(--muted-2); margin-top: 3px; }
.product__meta { display: flex; align-items: center; gap: 8px; margin-top: 14px; }
.product__stock { font-size: 13px; color: var(--muted-2); }

@media (min-width: 600px) { .products { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .products { grid-template-columns: repeat(4, 1fr); } }

/* ============================ Panel + steps ============================ */
.panel { background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 32px 24px; }
.steps { display: grid; grid-template-columns: 1fr; gap: 22px; margin: 32px 0 0; padding: 0; list-style: none; }
.step__no { font-family: var(--font-mono); font-size: 13px; color: var(--green-text); font-weight: 700; }
.step__rule { height: 1px; background: rgba(23,25,27,.12); margin: 12px 0 16px; }
.step__title { font-weight: 700; font-size: 19px; }
.step__body { font-size: 15px; line-height: 1.55; color: var(--muted); margin: 8px 0 0; }

@media (min-width: 720px) { .panel { padding: 48px; } .steps { grid-template-columns: repeat(4, 1fr); } }

/* ============================ Bæredygtighed ============================ */
.sustain { background: var(--green-deep); color: #fff; margin-top: 56px; position: relative; overflow: hidden; }
.sustain__spin { position: absolute; right: -120px; top: -80px; width: 460px; opacity: .06; }
.sustain__spin img { width: 100%; height: auto; animation: spinSlow 60s linear infinite; }
.sustain__grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; padding-top: 64px; padding-bottom: 64px; position: relative; }
.sustain__title { font-weight: 800; font-size: clamp(30px, 5.5vw, 46px); letter-spacing: -.02em; line-height: 1.05; margin-top: 14px; }
.sustain__lead { font-size: 18px; line-height: 1.6; color: rgba(255,255,255,.8); margin-top: 22px; max-width: 480px; }
.sustain__btn { margin-top: 30px; }
.sustain__note { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 12px; }
.sustain__stats { display: grid; gap: 16px; }
.stat { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 18px; padding: 24px; display: flex; align-items: baseline; gap: 18px; }
.stat__value { font-family: var(--font-head); font-weight: 800; font-size: clamp(34px, 7vw, 48px); line-height: 1; color: var(--mint); min-width: 110px; }
.stat__title { font-family: var(--font-head); font-weight: 700; font-size: 18px; }
.stat__body { font-size: 14.5px; color: rgba(255,255,255,.7); margin-top: 4px; }

@media (min-width: 880px) {
  .sustain { margin-top: 72px; }
  .sustain__grid { grid-template-columns: 1fr 1fr; gap: 64px; padding-top: 84px; padding-bottom: 84px; }
  .stat { padding: 26px 28px; }
  .stat__value { min-width: 130px; }
}

/* ============================ FAQ ============================ */
.faq { display: grid; gap: 12px; margin-top: 28px; max-width: 760px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 4px 20px; }
.faq__item summary { font-family: var(--font-head); font-weight: 700; font-size: 17px; cursor: pointer; padding: 16px 0; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--green); font-size: 22px; line-height: 1; }
.faq__item[open] summary::after { content: "–"; }
.faq__item p { margin: 0 0 18px; color: var(--muted); font-size: 15.5px; line-height: 1.6; }

/* ============================ CTA band ============================ */
.ctaband { background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 32px 24px; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.ctaband__text { max-width: 560px; }
.ctaband__title { font-weight: 800; font-size: clamp(26px, 4.5vw, 36px); letter-spacing: -.02em; line-height: 1.1; margin-top: 12px; }
.ctaband__body { font-size: 17px; line-height: 1.55; color: var(--muted); margin: 14px 0 0; }
@media (min-width: 720px) { .ctaband { padding: 56px; } }

/* ============================ Signup ============================ */
.signup { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
.signup__title { font-weight: 800; font-size: clamp(32px, 6vw, 44px); letter-spacing: -.02em; line-height: 1.06; margin-top: 14px; }
.signup__lead { font-size: 18px; line-height: 1.6; color: var(--muted); margin-top: 20px; max-width: 420px; }
.perks { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 14px; }
.perks li { display: flex; align-items: center; gap: 12px; font-size: 16px; color: #2b2e30; }
.perks__check { width: 24px; height: 24px; border-radius: 50%; background: var(--chip-bg); color: var(--green-dark); display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }

.signup__card { background: #fff; border: 1px solid var(--line); border-radius: 26px; padding: 28px 22px; box-shadow: 0 30px 60px -40px rgba(23,25,27,.3); }
.signup__form-title { font-weight: 700; font-size: 22px; margin: 0 0 22px; }
.form__grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 13.5px; font-weight: 600; color: #2b2e30; }
.field input, .field textarea, .field--full textarea {
  border: 1px solid var(--line-strong); border-radius: 12px; padding: 13px 14px;
  font-size: 16px; outline: none; font-family: inherit; width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(46,125,82,.12); }
.field--full { margin-top: 16px; }
.field__error { font-size: 12.5px; color: #C0392B; min-height: 0; }
.field__error:empty { display: none; }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #C0392B; }

.hp { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__status { font-size: 14px; color: #C0392B; margin: 16px 0 0; }
.signup__submit { width: 100%; margin-top: 22px; border-radius: 14px; padding: 16px; font-weight: 700; }
.signup__submit[disabled] { opacity: .6; cursor: progress; }
.signup__disclaimer { font-size: 12.5px; color: var(--muted-3); text-align: center; margin: 14px 0 0; }

.signup__success { text-align: center; padding: 30px 10px; }
.signup__success-icon { width: 64px; height: 64px; border-radius: 50%; background: var(--chip-bg); color: var(--green); display: inline-flex; align-items: center; justify-content: center; font-size: 30px; margin-bottom: 18px; }
.signup__success-title { font-weight: 700; font-size: 26px; }
.signup__success-text { font-size: 16px; line-height: 1.55; color: var(--muted); margin: 12px auto 0; max-width: 360px; }
.signup__success .btn { margin-top: 24px; }

@media (min-width: 600px) { .form__grid { grid-template-columns: 1fr 1fr; } .signup__card { padding: 38px; } }
@media (min-width: 920px) { .signup { grid-template-columns: .9fr 1.1fr; gap: 56px; } }

/* ============================ Footer ============================ */
.footer { background: var(--ink); color: #fff; margin-top: 56px; }
.footer .container { padding-top: 56px; padding-bottom: 32px; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
.footer__about { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,.65); margin: 22px 0 0; max-width: 320px; }
.footer__label { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .05em; text-transform: uppercase; color: rgba(255,255,255,.45); }
.footer__list { margin-top: 18px; display: grid; gap: 12px; font-size: 16px; }
.footer__list a:hover { color: var(--mint); }
.footer__address { font-style: normal; margin-top: 18px; font-size: 16px; line-height: 1.6; color: rgba(255,255,255,.8); }
.footer__bar { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: 13.5px; color: rgba(255,255,255,.45); }
.footer__tagline { display: inline-flex; align-items: center; gap: 8px; }
.footer__tagline img { opacity: .6; }
.footer__legal { color: rgba(255,255,255,.7); text-decoration: underline; }
.footer__legal:hover { color: var(--mint); }

/* ============================ Legal / privatlivspolitik ============================ */
.legal { max-width: 760px; padding-top: 40px; padding-bottom: 8px; }
.legal__updated { font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted-3); margin: 0 0 8px; }
.legal h1 { font-family: var(--font-head); font-weight: 800; font-size: clamp(30px, 6vw, 42px); letter-spacing: -.02em; line-height: 1.08; margin: 6px 0 0; }
.legal__lead { font-size: 18px; line-height: 1.6; color: var(--muted); margin: 18px 0 0; }
.legal h2 { font-family: var(--font-head); font-weight: 700; font-size: 22px; margin: 36px 0 0; line-height: 1.2; }
.legal p, .legal li { font-size: 16px; line-height: 1.7; color: var(--muted); }
.legal p { margin: 12px 0 0; }
.legal ul { margin: 12px 0 0; padding-left: 22px; display: grid; gap: 6px; }
.legal a { color: var(--green-text); text-decoration: underline; }
.legal address { font-style: normal; }

@media (min-width: 760px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
  .footer .container { padding-top: 72px; padding-bottom: 40px; }
}
