/* TG-Renhold Klinikk – forslag fra Moonlanding
   Farger: marineblå (#0d2236) + limegrønn (#c8ef4d)
   Fonter: Bricolage Grotesque (overskrifter), Inter (brødtekst) */

:root {
  --navy: #0d2236;
  --navy-2: #163452;
  --ink: #14202b;
  --muted: #54606b;
  --lime: #c8ef4d;
  --lime-dark: #a9d12a;
  --bg: #ffffff;
  --tint: #f2f5f1;
  --line: #e1e7e3;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 18px 40px -18px rgba(13, 34, 54, .28);
  --head: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --wrap: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--head); line-height: 1.08; margin: 0 0 .5em; letter-spacing: -.02em; }
h1 { font-size: clamp(2.5rem, 5.6vw, 4.4rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.22rem; font-weight: 700; letter-spacing: -.01em; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.wrap { width: min(100% - 32px, var(--wrap)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--lime); color: var(--navy); padding: 8px 14px; border-radius: 8px; z-index: 100; }
.skip:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--lime-dark); outline-offset: 3px; }

/* Utkast-banner */
.draft-bar {
  background: var(--lime);
  color: var(--navy);
  text-align: center;
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 12px;
}

/* Knapper */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font: 700 .82rem/1 var(--body);
  letter-spacing: .07em; text-transform: uppercase;
  padding: 1.25em 1.9em;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.btn svg { width: 1.25em; height: 1.25em; fill: currentColor; }
.btn svg[stroke] { fill: none; stroke-linecap: round; stroke-linejoin: round; }
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: .95em 1.3em; font-size: .74rem; }
.btn-lime { background: var(--lime); color: var(--navy); box-shadow: 0 10px 26px -12px rgba(200,239,77,.8); }
.btn-lime:hover { background: #d8f77a; }
.btn-ghost { border-color: rgba(255,255,255,.35); color: #fff; }
.btn-ghost:hover { border-color: #fff; }
.btn-outline-w { border-color: rgba(255,255,255,.55); color: #fff; backdrop-filter: blur(4px); }
.btn-outline-w:hover { border-color: #fff; background: rgba(255,255,255,.12); }
.btn-ghost-dark { border-color: var(--navy); color: var(--navy); background: #fff; }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: var(--navy-2); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 6px 20px -14px rgba(13,34,54,.35); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { width: 42px; height: 42px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--head); font-size: 1.28rem; font-weight: 800; letter-spacing: -.02em; color: var(--navy); }
.brand-text small { font-size: .76rem; color: var(--muted); font-weight: 500; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav ul { display: flex; gap: 26px; }
.main-nav ul a { text-decoration: none; font-weight: 500; font-size: .96rem; color: var(--ink); position: relative; }
.main-nav ul a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 3px; border-radius: 3px;
  background: var(--lime); transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.main-nav ul a:hover::after { transform: scaleX(1); }

.menu-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; cursor: pointer; position: relative; }
.menu-toggle-bars, .menu-toggle-bars::before, .menu-toggle-bars::after {
  position: absolute; left: 10px; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .25s, opacity .25s;
}
.menu-toggle-bars { top: 21px; }
.menu-toggle-bars::before, .menu-toggle-bars::after { content: ""; left: 0; }
.menu-toggle-bars::before { top: -7px; }
.menu-toggle-bars::after { top: 7px; }
.menu-toggle[aria-expanded="true"] .menu-toggle-bars { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle-bars::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-bars::after { transform: translateY(-7px) rotate(-45deg); }

/* Topp */
.hero {
  position: relative;
  isolation: isolate;
  background: var(--navy);
  color: #fff;
  min-height: min(86vh, 820px);
  display: flex; align-items: center;
  padding: clamp(80px, 12vw, 130px) 0 clamp(110px, 14vw, 160px);
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0; z-index: -2;
  background: var(--navy) url("hero-poster.jpg") center/cover no-repeat;
}
.hero-video {
  width: 100%; height: 100%; object-fit: cover; object-position: 60% 50%;
  display: block;
  animation: heroZoom 26s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.12); }
}
.hero-veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(8,20,32,.94) 0%, rgba(8,20,32,.82) 38%, rgba(8,20,32,.45) 70%, rgba(8,20,32,.3) 100%),
    linear-gradient(180deg, rgba(8,20,32,.55) 0%, rgba(8,20,32,0) 30%, rgba(8,20,32,.75) 100%);
}
.hero-inner { display: grid; grid-template-columns: 1.15fr auto; gap: clamp(32px, 5vw, 72px); align-items: center; width: min(100% - 32px, var(--wrap)); }
.hero h1 { color: #fff; text-wrap: balance; text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.28rem); color: rgba(255,255,255,.82); max-width: 34em; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--navy-2); margin-bottom: 1.1em;
}
.eyebrow::before { content: ""; width: 22px; height: 3px; border-radius: 3px; background: var(--lime-dark); }
.eyebrow-light { color: var(--lime); }
.eyebrow-light::before { display: none; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 5px rgba(200,239,77,.2); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 32px; }
.trust-line { display: flex; flex-wrap: wrap; gap: 12px 26px; font-size: .95rem; color: rgba(255,255,255,.88); }
.trust-line li { display: flex; align-items: center; gap: 9px; }
.trust-line svg { width: 17px; height: 17px; flex: none; color: var(--lime); stroke-linecap: round; stroke-linejoin: round; }

.check-card {
  background: rgba(255,255,255,.96);
  color: var(--ink);
  border-radius: var(--radius); padding: 22px 24px 20px;
  box-shadow: 0 30px 60px -28px rgba(0,0,0,.7);
  min-width: 260px;
  backdrop-filter: blur(6px);
}
.check-card-title { font-family: var(--head); font-weight: 700; font-size: 1.02rem; margin-bottom: .7em; }
.check-card li { display: flex; align-items: center; gap: 10px; font-size: .92rem; padding: 5px 0; border-top: 1px solid var(--line); }
.check-card li:first-child { border-top: 0; }
.tick {
  width: 20px; height: 20px; border-radius: 6px; flex: none;
  background: var(--navy) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12.5l4.2 4.2L19 7' fill='none' stroke='%23c8ef4d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/13px no-repeat;
}

/* Fakta */
.facts { margin-top: -56px; position: relative; z-index: 2; }
.facts-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.fact { padding: 26px 26px; border-left: 1px solid var(--line); }
.fact:first-child { border-left: 0; }
.fact strong { display: block; font-family: var(--head); font-size: 1.7rem; font-weight: 800; color: var(--navy); letter-spacing: -.02em; line-height: 1.1; }
.fact span { font-size: .92rem; color: var(--muted); }

/* Seksjoner */
.section { padding: clamp(72px, 10vw, 120px) 0; }
.section-tint { background: var(--tint); }
.section-dark { background: var(--navy); color: #fff; }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head p:not(.eyebrow) { color: var(--muted); font-size: 1.1rem; }
.section-head-light h2 { color: #fff; }

/* Klinikkort */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px 22px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.card p { color: var(--muted); font-size: .98rem; margin: 0; }
.icon {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px;
  background: var(--tint); margin-bottom: 20px; transition: background-color .25s;
}
.card:hover .icon { background: var(--lime); }
.icon svg { width: 26px; height: 26px; fill: none; stroke: var(--navy); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.section-foot { margin: 36px 0 0; max-width: 820px; color: var(--muted); font-size: 1.05rem; }

/* Rutiner */
.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(36px, 6vw, 88px); align-items: start; }
.split-media { margin: 0; position: sticky; top: 110px; }
.split-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); }
.split-media figcaption {
  position: absolute; right: -18px; top: 32px;
  background: var(--navy); color: #fff; border-radius: var(--radius-sm);
  padding: 14px 18px; display: flex; flex-direction: column; line-height: 1.3;
  box-shadow: var(--shadow);
}
.split-media figcaption strong { font-family: var(--head); color: var(--lime); }
.split-media figcaption span { font-size: .86rem; color: rgba(255,255,255,.78); }
.split-text > p:not(.eyebrow) { color: var(--muted); font-size: 1.1rem; }

.routine-list { counter-reset: r; margin-top: 32px; display: grid; gap: 4px; }
.routine-list li {
  counter-increment: r;
  display: grid; grid-template-columns: 52px 1fr; column-gap: 18px;
  padding: 20px 0; border-top: 1px solid #d5ddd8;
}
.routine-list li::before {
  content: counter(r, decimal-leading-zero);
  grid-row: span 2;
  font-family: var(--head); font-weight: 800; font-size: 1rem; color: var(--navy);
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; border: 1px solid #d5ddd8;
}
.routine-list h3 { margin: 4px 0 4px; }
.routine-list p { margin: 0; color: var(--muted); }

/* Tjenester */
.service-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; grid-auto-rows: auto; gap: 20px; }
.service {
  border-radius: var(--radius); padding: 28px 26px; background: var(--tint);
  display: flex; flex-direction: column;
}
.service p { color: var(--muted); margin: 0; }
.service-featured {
  grid-row: span 2; background: var(--lime); color: var(--navy);
  justify-content: flex-end; min-height: 320px;
  position: relative; overflow: hidden;
}
.service-featured::before {
  content: ""; position: absolute; right: -40px; top: -40px; width: 220px; height: 220px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cpath d='M20 2c1.3 9.3 8.7 16.7 18 18-9.3 1.3-16.7 8.7-18 18-1.3-9.3-8.7-16.7-18-18 9.3-1.3 16.7-8.7 18-18z' fill='%230d2236' fill-opacity='.09'/%3E%3C/svg%3E") center/contain no-repeat;
}
.service-featured h3 { font-size: clamp(1.8rem, 3vw, 2.3rem); }
.service-featured p { color: var(--navy); opacity: .85; font-size: 1.05rem; }
.tag {
  align-self: flex-start; margin-bottom: auto;
  background: var(--navy); color: var(--lime); font-size: .76rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px;
}
.text-link { margin-top: 18px; font-weight: 600; text-decoration: none; display: inline-flex; gap: 6px; }
.text-link span { transition: transform .2s; }
.text-link:hover span { transform: translateX(4px); }

/* Steg */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step {
  border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius);
  padding: 28px 24px; background: rgba(255,255,255,.03);
}
.step-no { display: block; font-family: var(--head); font-size: 2.6rem; font-weight: 800; color: var(--lime); line-height: 1; margin-bottom: 26px; }
.step p { margin: 0; color: rgba(255,255,255,.72); font-size: .98rem; }

/* Område */
.area { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.area p { color: var(--muted); }
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chips li {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px; border-radius: 999px; background: var(--tint);
  font-weight: 600; color: var(--navy);
}
.chips li::before {
  content: ""; width: 14px; height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 0 1 7 7c0 5-7 13-7 13S5 14 5 9a7 7 0 0 1 7-7zm0 4.5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5z' fill='%23a9d12a'/%3E%3C/svg%3E") center/contain no-repeat;
}
.chips li:first-child { background: var(--navy); color: #fff; }

/* FAQ */
.faq-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.faq details { background: #fff; border-radius: var(--radius-sm); margin-bottom: 12px; border: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 60px 20px 22px; position: relative;
  font-family: var(--head); font-weight: 700; font-size: 1.1rem; line-height: 1.3;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 18px; top: 50%; width: 28px; height: 28px; margin-top: -14px;
  border-radius: 50%; background: var(--tint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 6v12M6 12h12' stroke='%230d2236' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E") center/14px no-repeat;
  transition: transform .25s, background-color .25s;
}
.faq details[open] summary::after { transform: rotate(45deg); background-color: var(--lime); }
.faq details p { padding: 0 22px 20px; margin: 0; color: var(--muted); }

/* Kontakt */
.contact { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.contact-info > p:not(.eyebrow) { color: var(--muted); font-size: 1.1rem; }
.contact-card {
  font-style: normal; margin-top: 28px;
  background: var(--navy); color: #fff; border-radius: var(--radius); padding: 26px;
}
.contact-name { display: flex; flex-direction: column; margin-bottom: 14px; }
.contact-name strong { font-family: var(--head); font-size: 1.3rem; }
.contact-name span { color: rgba(255,255,255,.7); font-size: .9rem; }
.contact-line {
  display: flex; align-items: center; gap: 12px; padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,.12); text-decoration: none; word-break: break-word;
}
.contact-line:hover { color: var(--lime); }
.contact-line svg { width: 20px; height: 20px; fill: var(--lime); flex: none; }

.contact-form-wrap {
  background: var(--tint); border-radius: var(--radius); padding: 12px;
}
.tf-embed { width: 100%; height: 560px; border-radius: 14px; overflow: hidden; background: #fff; }
.tf-embed iframe { border-radius: 14px; }
.contact-form-wrap .form-note { padding: 12px 10px 4px; }
.contact-form-wrap .form-note a { color: var(--navy); font-weight: 600; }
.form-note { font-size: .86rem; color: var(--muted); margin: 0; }

/* Footer */
.site-footer { background: #091827; color: rgba(255,255,255,.75); padding: 64px 0 28px; font-size: .95rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.footer-brand { font-family: var(--head); font-weight: 800; font-size: 1.3rem; color: #fff; }
.footer-title { color: var(--lime); font-weight: 600; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--lime); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; border-top: 1px solid rgba(255,255,255,.1); margin-top: 40px; padding-top: 22px; font-size: .85rem; }
.footer-bottom p { margin: 0; }

.mobile-cta { display: none; }

/* Innglidning */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.visible { opacity: 1; transform: none; }
.hero-text > * { animation: rise .7s ease both; }
.hero-text > *:nth-child(2) { animation-delay: .06s; }
.hero-text > *:nth-child(3) { animation-delay: .12s; }
.hero-text > *:nth-child(4) { animation-delay: .18s; }
.hero-text > *:nth-child(5) { animation-delay: .24s; }
.check-card { animation: pop .7s .6s cubic-bezier(.2,.9,.3,1.3) both; }
.check-card li { animation: fade .4s ease both; }
.check-card li:nth-child(1) { animation-delay: .9s; }
.check-card li:nth-child(2) { animation-delay: 1.05s; }
.check-card li:nth-child(3) { animation-delay: 1.2s; }
.check-card li:nth-child(4) { animation-delay: 1.35s; }
@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes pop { from { opacity: 0; transform: translateY(20px) scale(.94); } to { opacity: 1; transform: none; } }
@keyframes fade { from { opacity: 0; transform: translateX(-6px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
  .hero-video { display: none; }
}

/* Nettbrett */
@media (max-width: 1020px) {
  .main-nav ul { gap: 18px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-featured { grid-row: auto; grid-column: 1 / -1; min-height: 240px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(3) { border-left: 0; }
  .fact:nth-child(n+3) { border-top: 1px solid var(--line); }
}

/* Mobil */
@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px 16px 20px;
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav ul a { display: block; padding: 14px 4px; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .main-nav ul a::after { display: none; }
  .main-nav .btn { margin-top: 16px; }

  .hero-inner, .split, .area, .faq-wrap, .contact { grid-template-columns: 1fr; }
  .hero { min-height: 0; padding: clamp(56px, 12vw, 90px) 0 clamp(90px, 16vw, 120px); }
  .hero-media { background-position: 62% 50%; }
  .hero-video { display: none; }
  .hero-veil { background: linear-gradient(180deg, rgba(8,20,32,.9) 0%, rgba(8,20,32,.82) 55%, rgba(8,20,32,.92) 100%); }
  .check-card { display: none; }
  .split-media { position: relative; top: 0; }
  .split-media img { aspect-ratio: 4 / 3; }
  .split-media figcaption { right: 12px; top: 12px; }
  .faq-wrap .section-head { margin-bottom: 8px; }

  .mobile-cta {
    display: grid; grid-template-columns: 1fr 1.6fr; gap: 10px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.95); border-top: 1px solid var(--line);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  }
  .mobile-cta .btn { padding: .85em 1em; }
  body { padding-bottom: 76px; }
}

@media (max-width: 600px) {
  body { font-size: 1rem; }
  .card-grid, .service-grid, .steps { grid-template-columns: 1fr; }
  .facts-grid { grid-template-columns: 1fr 1fr; }
  .fact { padding: 18px 16px; }
  .fact strong { font-size: 1.3rem; }
  .fact span { font-size: .84rem; }
  .hero-actions .btn { flex: 1 1 100%; }
  .routine-list li { grid-template-columns: 42px 1fr; column-gap: 14px; }
  .routine-list li::before { width: 42px; height: 42px; font-size: .9rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .tf-embed { height: 520px; }
}
