:root {
  color-scheme: light;
  --emerald: #0b4d33;
  --sage: #a9c1b3;
  --offwhite: #f7f5f2;
  --graphite: #10241c;
  --mint: #ddebdf;
  --type-dark: #0a1612;
  --ink: var(--type-dark);
  --muted: rgba(16, 36, 28, 0.68);
  --paper: var(--offwhite);
  --white: #ffffff;
  --leaf: var(--emerald);
  --leaf-dark: var(--graphite);
  --clay: var(--sage);
  --line: rgba(16, 36, 28, 0.12);
  --shadow: 0 1px 2px rgba(16, 36, 28, 0.05), 0 22px 56px rgba(16, 36, 28, 0.06);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.55;
}

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

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

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  width: min(calc(100% - 32px), var(--max));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 12px 14px 12px 18px;
  color: var(--white);
  background: rgba(16, 36, 28, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(18px);
}

.brand {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-links a svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}

.secondary-button::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,0.18) 50%, transparent 62%);
  transform: translateX(-110%);
  transition: transform 0.55s ease;
}

.secondary-button:hover::after {
  transform: translateX(110%);
}

.header-cta:hover,
.primary-button:hover {
  transform: translateY(-2px);
  background: var(--mint);
  color: var(--leaf);
  box-shadow: 0 8px 28px rgba(11,77,51,0.22);
}

.secondary-button:hover {
  transform: translateY(-2px);
  background: #083c22;
  box-shadow: 0 10px 32px rgba(11,77,51,0.38);
}

.header-end {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-cta {
  padding: 0 18px;
  color: var(--leaf-dark);
  background: var(--white);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  color: var(--white);
  cursor: pointer;
  padding: 9px 10px;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ── Mobile nav overlay ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(8, 18, 12, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav-sheet {
  background: var(--offwhite);
  border-radius: 28px;
  padding: 26px 28px 32px;
  width: min(400px, 100%);
  display: flex;
  flex-direction: column;
  gap: 0;
  animation: navIn 0.32s cubic-bezier(0.34, 1.3, 0.64, 1) both;
}

@keyframes navIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.mobile-nav-logo {
  height: 20px;
  width: auto;
}

.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(10, 22, 18, 0.08);
  border: none;
  cursor: pointer;
  color: var(--ink);
  transition: background 0.18s ease;
}

.mobile-nav-close:hover {
  background: rgba(10, 22, 18, 0.14);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}

.mobile-nav-links a {
  display: block;
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.18s ease, padding-left 0.2s ease;
}

.mobile-nav-links a:first-child {
  border-top: 1px solid var(--line);
}

.mobile-nav-links a:hover {
  color: var(--leaf);
  padding-left: 6px;
}

.mobile-nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  background: var(--leaf);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: background 0.2s ease;
}

.mobile-nav-cta:hover {
  background: #083c22;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 148px 24px 72px;
  color: var(--white);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg {
  object-fit: cover;
  object-position: top center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 18, 14, 0.76), rgba(12, 18, 14, 0.3) 48%, rgba(12, 18, 14, 0.1)),
    linear-gradient(0deg, rgba(12, 18, 14, 0.5), rgba(12, 18, 14, 0));
}

.hero-content {
  position: relative;
  width: min(660px, 100%);
  margin: 0 auto;
  text-align: left;
  transform: translateX(calc((min(100vw, var(--max)) - min(100vw, 660px)) / -3));
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--clay);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(247, 245, 242, 0.78);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 660px;
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 500;
  line-height: 1.01;
  letter-spacing: -0.03em;
}

h3 {
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-content p:not(.eyebrow) {
  max-width: 570px;
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 2vw, 1.3rem);
  line-height: 1.55;
}

.primary-button {
  padding: 0 24px;
  color: var(--leaf-dark);
  background: var(--white);
}

.section-pad {
  padding: 118px 24px;
}

.section-heading,
.included-layout {
  width: min(100%, var(--max));
  margin-inline: auto;
}

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

.section-heading.compact {
  margin-bottom: 34px;
}

h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.1rem, 3.4vw, 3.35rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h2 span {
  color: var(--leaf);
}

.section-heading > p:not(.eyebrow) {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.included {
  background: var(--white);
  padding-top: 92px;
  padding-bottom: 56px;
}

.included-layout {
  display: grid;
  grid-template-columns: minmax(280px, 380px) minmax(0, 640px);
  gap: 40px;
  align-items: start;
  justify-content: center;
}

.included-left {
  padding-top: 0;
}

.included-product {
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
  object-position: center;
  background: var(--mint);
  border-radius: 48px;
}

.included-left h3 {
  margin: 32px 0 0;
  font-size: clamp(1.32rem, 2vw, 1.62rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.included-right {
  display: grid;
  gap: 34px;
}

.included-heading {
  margin-bottom: 0;
}

.included-heading .eyebrow {
  margin-bottom: 12px;
}

.included-heading h2 {
  max-width: 600px;
  font-size: clamp(2.25rem, 3.4vw, 3.55rem);
  line-height: 1.1;
}

.included-image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.included-image-row img {
  width: 100%;
  height: 452px;
  object-fit: cover;
  border-radius: 18px;
}

.included-photo-3 {
  margin-top: -46px;
}

.included-copy {
  max-width: 540px;
  padding-top: 0;
}

.included-copy h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.included-copy p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

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

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.35;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--leaf);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 0.47em;
  width: 6px;
  height: 10px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.secondary-button {
  padding: 0 38px;
  color: var(--white);
  background: var(--leaf);
}


.guidance {
  background: var(--white);
  padding-top: 48px;
  padding-bottom: 56px;
}

.guidance-inner {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.guidance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.guidance-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
  gap: 28px;
  padding: 24px;
  background: var(--paper);
  border-radius: 20px;
  overflow: hidden;
}

.guidance-card-img {
  width: 200px;
  height: 240px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}

.guidance-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.guidance-card-body h3 {
  margin: 0 0 14px;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.guidance-card-body h3 span {
  color: var(--leaf);
}

.guidance-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.guidance-legal {
  text-align: center;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
  margin: 0;
}

/* ── Section 4: About ── */
.about {
  background: var(--white);
  padding-top: 48px;
}

.about-wrap {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.about-head {
  margin-bottom: 48px;
  text-align: center;
}

.about-head h2 {
  margin-inline: auto;
}

.about-cols {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 24px;
  align-items: start;
  margin-bottom: 56px;
}

.about-photo {
  margin: 0;
  position: relative;
}

.about-photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
}

.about-float {
  position: absolute;
  bottom: 22px;
  left: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.about-float-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #0a1612;
  box-shadow: 0 2px 16px rgba(10, 22, 18, 0.13);
}

.about-float-dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0b4d33;
}

.about-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 460px;
}

.about-card {
  flex: 1;
  padding: 40px;
  background: var(--paper);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-card h3 {
  margin: 0 0 18px;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.about-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}


.about-badge {
  align-self: flex-end;
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin 14s linear infinite;
}

.badge-svg text {
  font-size: 10px;
  fill: var(--leaf);
  letter-spacing: 2.5px;
  font-weight: 500;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.badge-mark {
  position: relative;
  z-index: 1;
  width: 22px;
  height: auto;
  display: block;
}

.about-foot {
  padding-top: 40px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.about-foot p {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 500;
}

.about-foot strong {
  color: var(--muted);
  font-weight: 400;
  font-size: 1rem;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ── Testimonials ── */
.tc-section {
  overflow: hidden;
  background: #f7f5f2;
  padding: 96px 0 108px;
}

.tc-hd {
  width: min(100%, 1100px);
  margin: 0 auto 52px;
  padding: 0 24px;
  text-align: center;
}

.tc-hd h2 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.tc-subtitle {
  margin: 14px auto 0;
  max-width: 500px;
  color: rgba(16,36,28,0.65);
  font-size: 0.975rem;
  line-height: 1.65;
}

/* rows container */
.tc-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* each scrolling track — no gap, margin-right on cards for exact loop math */
.tc-row {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  will-change: transform;
}

.tc-fwd { animation: tc-scroll 58s linear infinite; }
.tc-rev { animation: tc-scroll 68s linear infinite reverse; }

@keyframes tc-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Photo card ─────────────────────
   width 218 + margin-right 12 = 230px unit
   ──────────────────────────────── */
.tc-ph {
  flex-shrink: 0;
  width: 218px;
  height: 355px;
  border-radius: 16px;
  overflow: hidden;
  margin-right: 12px;
}

.tc-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── Text card ───────────────────────
   width 258 + margin-right 12 = 270px unit
   4 pairs × (230 + 270) = 4 × 500 = 2000px per set
   total track = 4000px; -50% = -2000px ✓
   ──────────────────────────────── */
.tc-tx {
  flex-shrink: 0;
  width: 258px;
  height: 355px;
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 24px 26px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 16px rgba(10,22,18,0.07);
  margin-right: 12px;
}

.tc-st {
  display: block;
  color: #0b4d33;
  font-size: 0.75rem;
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 14px;
  flex-shrink: 0;
}

.tc-qu {
  flex: 1;
  margin: 0;
  font-size: 0.925rem;
  line-height: 1.68;
  color: rgba(16,36,28,0.70);
}

.tc-nm {
  flex-shrink: 0;
  margin-top: 18px;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0a1612;
}

/* ── Footer ── */
.site-footer {
  background: var(--white);
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.footer-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  width: min(100%, var(--max));
  margin-inline: auto;
}

.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 24px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
}

.footer-trust-item + .footer-trust-item {
  border-left: 1px solid var(--line);
}

.footer-trust-item svg {
  flex-shrink: 0;
  color: var(--ink);
}

.footer-main {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  width: min(100%, var(--max));
  margin-inline: auto;
}

.footer-brand {
  display: block;
  flex-shrink: 0;
}

.footer-logo {
  height: 28px;
  width: auto;
  display: block;
}

.footer-disclaimer {
  flex: 1;
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.55;
  color: rgba(16, 36, 28, 0.38);
  text-align: center;
}

.footer-pill-email {
  flex-shrink: 0;
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--paper);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  border: 1px solid var(--line);
}

.footer-pill-cta {
  background: var(--leaf);
  color: var(--white);
  border-color: transparent;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 16px 24px;
  border-top: 1px solid var(--line);
  width: min(100%, var(--max));
  margin-inline: auto;
}

.footer-legal a {
  font-size: 0.75rem;
  color: rgba(16, 36, 28, 0.45);
  transition: color 0.15s;
}

.footer-legal a:hover {
  color: var(--ink);
}

/* ── Logo ── */
.brand-logo {
  display: block;
  height: 28px;
  width: auto;
}


/* ── Mobile Nav ── */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(16, 36, 28, 0.42);
  backdrop-filter: blur(12px);
  display: flex;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-content {
  width: min(80vw, 400px);
  background: var(--paper);
  height: 100%;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.is-open .mobile-nav-content {
  transform: translateX(0);
}

.mobile-nav-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  color: var(--ink);
  cursor: pointer;
  padding: 8px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
}

.mobile-nav .primary-button {
  background: var(--leaf);
  color: var(--white);
  align-self: flex-start;
}

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  .badge-svg,
  .tc-fwd,
  .tc-rev {
    animation: none;
  }

  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .included-layout {
    grid-template-columns: 1fr;
  }

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

  .about-cols {
    grid-template-columns: 1fr;
  }

  .about-photo img {
    height: 380px;
  }

  .about-side {
    height: auto;
  }

  .footer-trust {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-trust-item:nth-child(3) {
    border-left: none;
  }

  .included-image-row img {
    height: 390px;
  }

}

@media (max-width: 620px) {
  /* ── Header ── */
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 10px 10px 10px 14px;
    gap: 10px;
  }

  .header-cta {
    display: none;
  }

  /* ── Hero ── */
  .hero {
    min-height: 100svh;
    padding: 118px 18px 54px;
  }

  h1 {
    max-width: 350px;
    margin: 0;
    font-size: clamp(2.35rem, 9.8vw, 2.62rem);
    line-height: 1.03;
    letter-spacing: -0.025em;
  }

  .hero-content {
    transform: none;
    text-align: left;
  }

  .hero-content p:not(.eyebrow) {
    margin-inline: 0;
  }

  /* ── Section spacing ── */
  .section-pad {
    padding: 64px 18px;
  }

  /* ── Included ── */
  .included-layout {
    gap: 32px;
  }

  .included-product {
    border-radius: 28px;
  }

  .included-heading h2 {
    font-size: clamp(2rem, 8.5vw, 2.75rem);
  }

  .included-image-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .included-photo-2 {
    display: none;
  }

  .included-image-row img {
    height: auto;
    aspect-ratio: 0.88;
  }

  .included-photo-3 {
    margin-top: 0;
  }

  /* ── Guidance cards: image on top, text below ── */
  .guidance-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .guidance-card-img {
    width: 100%;
    height: 300px;
  }

  .guidance-card-img img {
    object-position: center 25%;
  }

  /* ── About ── */
  .about-cols {
    grid-template-columns: 1fr;
  }

  .about-photo img {
    height: 300px;
  }

  .about-side {
    height: auto;
  }

  .about-badge {
    display: none;
  }

  .about-card {
    padding: 22px;
  }

  /* ── Footer trust ── */
  .footer-trust {
    grid-template-columns: 1fr 1fr;
  }

  .footer-trust-item {
    padding: 16px;
    font-size: 0.8rem;
  }

  .footer-trust-item:nth-child(3) {
    border-left: none;
  }

  /* ── Testimonials ──
     Mobile card units:
     photo: 148 + 9 = 157px unit
     text:  180 + 9 = 189px unit
     4 pairs × (157 + 189) = 4 × 346 = 1384px per set
     total = 2768px; -50% = -1384px ✓              */
  .tc-section {
    padding: 56px 0 68px;
  }

  .tc-hd {
    margin-bottom: 32px;
    padding: 0 18px;
  }

  .tc-rows {
    gap: 8px;
  }

  .tc-ph {
    width: 148px;
    height: 218px;
    border-radius: 12px;
    margin-right: 9px;
  }

  .tc-tx {
    width: 180px;
    height: 218px;
    border-radius: 12px;
    padding: 16px 15px 14px;
    margin-right: 9px;
  }

  .tc-st {
    font-size: 0.65rem;
    letter-spacing: 2px;
    margin-bottom: 9px;
  }

  .tc-qu {
    font-size: 0.8rem;
    line-height: 1.52;
  }

  .tc-nm {
    font-size: 0.75rem;
    margin-top: 10px;
  }

  /* ── Footer main: logo+cta / disclaimer / email ── */
  .footer-main {
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 10px;
    padding: 24px 18px;
  }

  .footer-brand {
    flex: 1;
    order: 1;
  }

  .footer-pill-cta {
    order: 2;
  }

  .footer-disclaimer {
    order: 3;
    flex: 0 0 100%;
    text-align: left;
  }

  .footer-pill-email {
    order: 4;
    margin-left: auto;
    margin-right: auto;
  }

}
