:root {
  --ink: #132821;
  --ink-soft: #395047;
  --paper: #f5f1e8;
  --paper-light: #fffdf8;
  --line: #d8d3c8;
  --lime: #d7ff69;
  --lime-dark: #b9e842;
  --coral: #ff7359;
  --sky: #bfe8ed;
  --shadow: 0 24px 60px rgba(19, 40, 33, 0.14);
  --radius: 24px;
  --page: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-width {
  width: var(--page);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(19, 40, 33, 0.12);
  background: rgba(245, 241, 232, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.wordmark-mark {
  width: 31px;
  height: 31px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 3px;
  padding: 7px;
  border-radius: 50%;
  background: var(--ink);
}

.wordmark-mark span {
  width: 4px;
  border-radius: 4px;
  background: var(--lime);
}

.wordmark-mark span:nth-child(1) { height: 9px; }
.wordmark-mark span:nth-child(2) { height: 16px; }
.wordmark-mark span:nth-child(3) { height: 12px; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 650;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

.button-small {
  min-height: 43px;
  padding-inline: 18px;
  font-size: 0.86rem;
}

.button-dark {
  background: var(--ink);
  color: white;
}

.button-primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(184, 231, 65, 0.2);
}

.button-primary:hover {
  background: var(--lime-dark);
  box-shadow: 0 14px 34px rgba(184, 231, 65, 0.3);
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 100px;
}

.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -250px;
  top: -220px;
  border: 1px solid rgba(19, 40, 33, 0.11);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, 0.96fr);
  align-items: center;
  gap: 76px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.eyebrow > span {
  width: 21px;
  height: 7px;
  border-radius: 10px;
  background: var(--coral);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.74);
}

.eyebrow-light > span {
  background: var(--lime);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(3.35rem, 6.2vw, 5.65rem);
  font-weight: 820;
}

h1 em {
  display: block;
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.45rem, 4.3vw, 4.25rem);
  font-weight: 820;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-intro {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.6vw, 1.25rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 39px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-underline-offset: 6px;
  font-weight: 750;
}

.text-link span {
  font-size: 1.2rem;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 650;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-list li::before {
  content: "✓";
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  font-size: 0.68rem;
}

.hero-visual {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 410px;
  height: 410px;
  border-radius: 46% 54% 62% 38% / 54% 42% 58% 46%;
  background: var(--sky);
  transform: rotate(-9deg);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(19, 40, 33, 0.16);
  border-radius: 50%;
}

.orbit-one { width: 510px; height: 510px; }
.orbit-two { width: 580px; height: 340px; transform: rotate(32deg); }

.phone-preview {
  position: relative;
  z-index: 3;
  width: 286px;
  padding: 11px;
  border: 6px solid var(--ink);
  border-radius: 38px;
  background: var(--ink);
  box-shadow: var(--shadow);
  transform: rotate(3deg);
}

.phone-top,
.play-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.67rem;
  font-weight: 750;
}

.phone-top {
  padding: 4px 7px 11px;
}

.video-art {
  position: relative;
  min-height: 424px;
  overflow: hidden;
  padding: 17px;
  border-radius: 25px;
  background: linear-gradient(160deg, #fd8b57 0%, #ff5f4a 53%, #ea3d3d 100%);
}

.video-art::before,
.video-art::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 228, 145, 0.35);
}

.video-art::before { width: 280px; height: 280px; right: -120px; top: 42px; }
.video-art::after { width: 180px; height: 180px; left: -92px; bottom: 60px; }

.video-label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  color: white;
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.tool-illustration {
  position: relative;
  z-index: 2;
  width: 215px;
  margin: 22px auto -1px;
  filter: drop-shadow(0 19px 10px rgba(86, 20, 14, 0.25));
  fill: var(--ink);
}

.tool-illustration circle {
  fill: var(--lime);
}

.video-message {
  position: relative;
  z-index: 2;
  color: white;
}

.video-message strong {
  display: block;
  margin-bottom: 9px;
  font-size: 1.55rem;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.video-message span {
  font-size: 0.74rem;
  font-weight: 700;
}

.play-row {
  gap: 9px;
  padding: 12px 5px 5px;
}

.play-button {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.58rem;
}

.play-line {
  height: 3px;
  flex: 1;
  overflow: hidden;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.2);
}

.play-line i {
  display: block;
  width: 62%;
  height: 100%;
  background: var(--lime);
}

.floating-card {
  position: absolute;
  z-index: 4;
  min-width: 185px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border: 1px solid rgba(19, 40, 33, 0.08);
  border-radius: 15px;
  background: var(--paper-light);
  box-shadow: 0 18px 45px rgba(19, 40, 33, 0.16);
}

.floating-card strong,
.floating-card small {
  display: block;
}

.floating-card strong { font-size: 0.83rem; }
.floating-card small { color: var(--ink-soft); font-size: 0.67rem; }

.card-caption { top: 92px; right: -5px; transform: rotate(4deg); }
.card-audio { bottom: 74px; left: -10px; transform: rotate(-4deg); }

.floating-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--coral);
  color: white;
  font-size: 0.66rem;
  font-weight: 900;
}

.audio-bars {
  width: 36px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border-radius: 10px;
  background: var(--lime);
}

.audio-bars i { width: 3px; border-radius: 4px; background: var(--ink); }
.audio-bars i:nth-child(1) { height: 9px; }
.audio-bars i:nth-child(2) { height: 18px; }
.audio-bars i:nth-child(3) { height: 13px; }
.audio-bars i:nth-child(4) { height: 7px; }

.service-strip {
  background: var(--ink);
  color: white;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 26px;
}

.strip-grid > div {
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.strip-grid > div:first-child { padding-left: 0; }
.strip-grid > div:last-child { border-right: 0; }
.strip-grid strong,
.strip-grid span { display: block; }
.strip-grid strong { margin-bottom: 4px; font-size: 0.92rem; }
.strip-grid span { color: rgba(255, 255, 255, 0.64); font-size: 0.75rem; }

.section {
  padding: 112px 0;
  scroll-margin-top: 74px;
}

.section-heading {
  margin-bottom: 54px;
}

.heading-row {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 70px;
}

.heading-row h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.heading-row > p,
.centred-heading > p,
.example-copy > p,
.standards-copy > p,
.faq-heading > p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.content-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 26px;
  border-radius: var(--radius);
}

.content-card-large {
  grid-row: span 2;
  min-height: 798px;
}

.card-coral { background: var(--coral); color: white; }
.card-lime { background: var(--lime); }
.card-cream { background: #e7decf; }
.card-dark { background: var(--ink); color: white; }

.card-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
  opacity: 0.78;
}

.content-card p {
  margin-bottom: 0;
  color: currentColor;
  font-size: 0.9rem;
  opacity: 0.75;
}

.mini-frame {
  position: relative;
  width: 78%;
  aspect-ratio: 9 / 14;
  margin: 18px auto;
  overflow: hidden;
  border: 5px solid var(--ink);
  border-radius: 23px;
  background: #f5c4a2;
  transform: rotate(-5deg);
  box-shadow: 17px 20px 0 rgba(19, 40, 33, 0.14);
}

.mini-frame span {
  position: absolute;
  z-index: 2;
  top: 17px;
  left: 17px;
  padding: 6px 8px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.54rem;
  font-weight: 900;
}

.mini-tool {
  position: absolute;
  width: 145px;
  height: 62px;
  top: 43%;
  left: 50%;
  border-radius: 12px 24px 14px 12px;
  background: var(--ink);
  transform: translate(-50%, -50%) rotate(-9deg);
  box-shadow: 0 16px 16px rgba(72, 37, 21, 0.25);
}

.mini-tool::before {
  content: "";
  position: absolute;
  width: 38px;
  height: 90px;
  right: 25px;
  top: 39px;
  border-radius: 4px 4px 13px 13px;
  background: var(--ink);
  transform: skewX(9deg);
}

.mini-tool::after {
  content: "";
  position: absolute;
  width: 65px;
  height: 12px;
  left: -55px;
  top: 20px;
  background: var(--ink);
}

.offer-graphic {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 12px 0;
  line-height: 0.85;
}

.offer-graphic strong {
  font-size: clamp(4.5rem, 8vw, 7rem);
  letter-spacing: -0.08em;
}

.offer-graphic span {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--lime);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.story-graphic {
  position: relative;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-graphic span {
  position: absolute;
  width: 92px;
  height: 132px;
  border: 4px solid var(--ink);
  border-radius: 15px;
  background: var(--paper-light);
}

.story-graphic span:nth-child(1) { transform: translateX(-61px) rotate(-11deg); background: var(--coral); }
.story-graphic span:nth-child(2) { z-index: 2; background: var(--lime); }
.story-graphic span:nth-child(3) { transform: translateX(61px) rotate(11deg); background: var(--sky); }

.sound-graphic {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.sound-graphic i {
  width: 9px;
  border-radius: 10px;
  background: var(--lime);
}

.sound-graphic i:nth-child(1), .sound-graphic i:nth-child(7) { height: 30px; }
.sound-graphic i:nth-child(2), .sound-graphic i:nth-child(6) { height: 66px; }
.sound-graphic i:nth-child(3), .sound-graphic i:nth-child(5) { height: 94px; }
.sound-graphic i:nth-child(4) { height: 120px; background: var(--coral); }

.example-section {
  background: var(--ink);
  color: white;
}

.example-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 100px;
}

.example-copy {
  position: sticky;
  top: 120px;
  align-self: start;
}

.example-copy h2 {
  font-size: clamp(2.6rem, 4.4vw, 4.5rem);
}

.example-copy > p {
  color: rgba(255, 255, 255, 0.7);
}

.example-note {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  font-size: 0.75rem !important;
}

.idea-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 25px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.idea-list article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.idea-list article > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
}

.idea-list h3 {
  font-size: 1.4rem;
}

.idea-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.65);
}

.centred-heading {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centred-heading .eyebrow {
  justify-content: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-card {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-light);
}

.featured-step {
  background: var(--lime);
  border-color: var(--lime);
  transform: translateY(-14px);
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: auto;
}

.step-top span,
.step-top i {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 900;
}

.step-top i {
  border: 0;
  background: var(--ink);
  color: var(--lime);
}

.step-card h3 {
  font-size: 1.45rem;
}

.step-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.standards-section {
  background: #e7decf;
}

.standards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
}

.standards-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.standards-visual::before {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: var(--coral);
}

.review-window {
  position: relative;
  z-index: 2;
  width: min(440px, 92%);
  overflow: hidden;
  border: 5px solid var(--ink);
  border-radius: 24px;
  background: var(--paper-light);
  box-shadow: var(--shadow);
  transform: rotate(-3deg);
}

.review-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 15px;
  background: var(--ink);
  color: white;
  font-size: 0.68rem;
  font-weight: 800;
}

.review-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
}

.review-bar i:nth-child(2) { background: #f8c95c; }
.review-bar i:nth-child(3) { background: var(--lime); }
.review-bar span { margin-left: auto; }

.review-video {
  position: relative;
  width: 135px;
  height: 240px;
  display: grid;
  place-items: center;
  margin: 24px auto;
  border-radius: 13px;
  background: linear-gradient(155deg, var(--sky), #508799);
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.8rem;
  font-weight: 900;
}

.review-video b {
  position: absolute;
  right: -16px;
  bottom: -14px;
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  border: 4px solid var(--paper-light);
  border-radius: 50%;
  background: var(--lime);
  color: var(--ink);
}

.review-checks {
  display: grid;
  gap: 8px;
  padding: 0 24px 24px;
}

.review-checks span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border-radius: 9px;
  background: var(--paper);
  font-size: 0.72rem;
  font-weight: 750;
}

.review-checks i {
  color: #4d7d1d;
  font-style: normal;
}

.standards-copy h2 {
  max-width: 550px;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 720;
}

.check-list span {
  width: 27px;
  height: 27px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  font-size: 0.72rem;
}

.small-print {
  padding: 17px 18px;
  border: 1px solid rgba(19, 40, 33, 0.17);
  border-radius: 14px;
  font-size: 0.76rem !important;
}

.monthly-section {
  background: var(--ink);
  color: white;
}

.monthly-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
  gap: 95px;
}

.monthly-grid > div:first-child {
  position: sticky;
  top: 120px;
}

.monthly-card {
  padding: 38px;
  border-radius: 28px;
  background: white;
  color: var(--ink);
}

.monthly-label {
  margin-bottom: 22px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.monthly-card ul {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.monthly-card li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.02rem;
  font-weight: 760;
}

.monthly-card li span {
  color: var(--coral);
  font-size: 0.68rem;
  font-weight: 900;
}

.monthly-card > p:last-of-type {
  margin-bottom: 26px;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
}

.faq-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  font-size: 1.08rem;
  font-weight: 780;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  width: 31px;
  height: 31px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 720px;
  padding: 0 48px 23px 0;
  color: var(--ink-soft);
}

.contact-section {
  padding: 112px 0;
  scroll-margin-top: 74px;
  background: var(--coral);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  align-items: start;
  gap: 90px;
}

.contact-copy {
  position: sticky;
  top: 120px;
  color: white;
}

.contact-copy > p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.03rem;
}

.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-points span {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.86rem;
  font-weight: 750;
}

.contact-points i {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  font-style: normal;
  font-size: 0.68rem;
}

.contact-form {
  padding: 36px;
  border-radius: 28px;
  background: var(--paper-light);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 19px;
  font-size: 0.78rem;
  font-weight: 800;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #cfc9bc;
  border-radius: 11px;
  background: white;
  color: var(--ink);
}

input,
select {
  min-height: 50px;
  padding: 0 13px;
}

textarea {
  resize: vertical;
  padding: 13px;
}

input::placeholder,
textarea::placeholder {
  color: #7c867f;
}

.consent-field {
  grid-template-columns: 20px 1fr !important;
  align-items: start;
  gap: 11px !important;
  color: var(--ink-soft);
  font-size: 0.7rem !important;
  font-weight: 550 !important;
}

.consent-field input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.form-note {
  margin: 12px 0 0;
  color: var(--ink-soft);
  text-align: center;
  font-size: 0.69rem;
}

.form-note.form-warning {
  color: #8a3121;
  font-weight: 750;
}

.site-footer {
  padding: 27px 0;
  background: var(--ink);
  color: white;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 30px;
}

.wordmark-footer .wordmark-mark {
  background: var(--lime);
}

.wordmark-footer .wordmark-mark span {
  background: var(--ink);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.73rem;
}

@media (max-width: 1000px) {
  .desktop-nav {
    display: none;
  }

  .hero-grid,
  .standards-grid,
  .monthly-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 35px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-visual {
    min-height: 580px;
  }

  .strip-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px 0;
  }

  .strip-grid > div:nth-child(2) {
    border-right: 0;
  }

  .strip-grid > div:nth-child(3) {
    padding-left: 0;
  }

  .heading-row,
  .example-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .heading-row {
    align-items: start;
  }

  .example-copy,
  .faq-heading,
  .monthly-grid > div:first-child,
  .contact-copy {
    position: static;
  }

  .content-grid {
    grid-template-columns: 1fr 1fr;
  }

  .content-card-large {
    grid-row: auto;
    min-height: 500px;
  }

  .mini-frame {
    width: 48%;
    max-width: 230px;
  }

  .standards-grid,
  .monthly-grid,
  .contact-grid {
    gap: 55px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner p:first-of-type {
    text-align: right;
  }

  .footer-inner p:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  :root {
    --page: min(100% - 28px, 1180px);
  }

  .header-inner {
    min-height: 66px;
  }

  .wordmark > span:last-child {
    display: none;
  }

  .hero {
    padding: 64px 0 72px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.35rem);
  }

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.3rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .trust-list {
    display: grid;
  }

  .hero-visual {
    min-height: 540px;
    transform: scale(0.91);
    margin: -28px -22px;
  }

  .card-caption { right: -20px; }
  .card-audio { left: -20px; }

  .strip-grid {
    grid-template-columns: 1fr;
  }

  .strip-grid > div {
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .strip-grid > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .section,
  .contact-section {
    padding: 78px 0;
  }

  .content-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .content-card,
  .content-card-large {
    min-height: 420px;
  }

  .mini-frame {
    width: 57%;
  }

  .featured-step {
    transform: none;
  }

  .standards-visual {
    min-height: 440px;
  }

  .standards-visual::before {
    width: 320px;
    height: 320px;
  }

  .monthly-card,
  .contact-form {
    padding: 25px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-inner p:first-of-type {
    text-align: left;
  }

  .footer-inner p:last-child {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
