/* =========================================================
   Tokens
   ========================================================= */
:root {
  /* Colours -- solid */
  --teal: #0d3f3e;
  --gold: #d29a49;
  --sage: #5a7d7b;
  --white: #ffffff;
  --bg: #ffffff;
  --bg-alt: #f2f5f4;
  --text: #1e2a29;
  --text-muted: #5a6867;
  --border: #e2e2dd;
  --green: #1c7a4d;
  --red: #b23b3b;

  /* Light text tints for content sitting on dark/photo backgrounds */
  --on-dark: #cfe0de;        /* footer body text/links on teal */
  --on-dark-alt: #d9e4e3;    /* cookie banner text on teal */
  --on-photo: #f0f0f0;       /* hero subtext on photo overlay */
  --on-photo-muted: #d9d9d9; /* hero note text on photo overlay */

  /* Colours -- RGB channels, for rgba() overlays/borders/shadows.
     CSS can't derive channels from a hex var(), so these mirror
     the solid tokens above. Keep both in sync if a brand colour changes. */
  --teal-rgb: 13,63,62;
  --gold-rgb: 210,154,73;
  --sage-rgb: 90,125,123;
  --bg-alt-rgb: 242,245,244;
  --white-rgb: 255,255,255;

  /* Fonts */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;

  /* Type scale -- reuse these instead of one-off rem values */
  --fs-h1: 2.6rem;
  --fs-h1-lg: 2.8rem;     /* hero-scale headline */
  --fs-h2: 2rem;
  --fs-h2-sm: 1.4rem;     /* in-article section heading (Blog/Guide body content) */
  --fs-h3-lg: 1.15rem;    /* default h3 fallback */
  --fs-h3: 1.05rem;       /* card / block heading */
  --fs-h4: 0.95rem;       /* micro-heading: footer columns, testimonial name */
  --fs-logo: 1.5rem;      /* text-fallback logo */
  --fs-body-lg: 1.1rem;   /* hero sub, emphasis copy */
  --fs-body: 1rem;
  --fs-body-sm: 0.9rem;   /* card body copy, quotes */
  --fs-xs: 0.85rem;       /* stars, notes, meta */
  --fs-tag: 0.68rem;      /* eyebrow, small tags */
  --fs-micro: 0.7rem;     /* tiny badges, social icons */

  --wrap-width: 1140px;
}

* { box-sizing: border-box; }

/* =========================================================
   Base
   ========================================================= */
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--teal);
  line-height: 1.25;
  margin: 0 0 0.6em;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3-lg); }
h2.center { text-align: center; }

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

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--gold); }
a[target="_blank"] { text-decoration: underline; text-underline-offset: 2px; }

/* =========================================================
   Layout
   ========================================================= */
.wrap {
  max-width: var(--wrap-width);
  margin: 0 auto;
  padding: 0 24px;
}

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  padding: 72px 0;
}
/* =========================================================
   Reusable components
   ========================================================= */
.btn {
  display: inline-block;
  padding: 0.85em 1.75em;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-body-sm);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--teal); color: var(--white); }
.btn-block { display: block; text-align: center; }

.link-arrow {
  display: inline-block;
  margin-top: 0.5em;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
}
.link-arrow:hover { color: var(--gold); }

.eyebrow {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-tag);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(var(--gold-rgb), 0.12);
  display: inline-block;
  padding: 0.35em 0.9em;
  border-radius: 20px;
  margin-bottom: 1em;
}
.eyebrow-center { display: block; text-align: center; width: fit-content; margin-left: auto; margin-right: auto; }
.eyebrow-light { background: rgba(var(--white-rgb), 0.15); color: var(--white); }

.section-intro {
  max-width: 720px;
  margin: 0 auto 2.5em;
  text-align: center;
}

/* Shared "lift + fill gold on hover" card treatment.
   Combine with a component's own class (e.g. .plate-item.card-hover)
   so background/border/layout stay component-specific. */
.card-hover {
  background: var(--white);
  border-radius: 8px;
  border: 2px solid rgba(var(--sage-rgb), 0.25);
  box-shadow: 0 2px 8px rgba(var(--teal-rgb), 0.06);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.card-hover:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(var(--gold-rgb), 0.3);
}
.card-hover:hover h3,
.card-hover:hover p,
.card-hover:hover .detail-price { color: var(--white); }
.card-hover:hover .stage-label { color: var(--white); background: rgba(var(--white-rgb), 0.25); }
.card-hover:hover p a { color: var(--white); text-decoration: underline; }
.card-hover:hover p a:hover { color: var(--teal); }

/* =========================================================
   Header / Footer / Cookie consent (site-wide, every page)
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  will-change: transform;
  background: var(--bg);
  padding: 16px 0;
  border-bottom: 4px solid transparent;
  border-image: linear-gradient(to right, var(--teal), var(--gold)) 1;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { font-family: var(--font-heading); font-weight: 700; font-size: var(--fs-logo); color: var(--teal); display: inline-flex; align-items: center; }
.logo-img { height: 92px; width: auto; display: block; }
.footer-logo-img { height: 92px; }
.main-nav ul { list-style: none; display: flex; gap: 28px; margin: 0; padding: 0; }
.main-nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--teal);
  position: relative;
  padding-bottom: 4px;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.2s ease;
}
.main-nav a:hover { color: var(--teal); }
.main-nav a:hover::after { width: 100%; }
.header-cta { white-space: nowrap; }
.header-cta.is-invisible { visibility: hidden; pointer-events: none; }

.has-dropdown { position: relative; }
.main-nav ul.dropdown {
  display: block;
  list-style: none;
  margin: 0;
  padding: 8px;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  border-radius: 8px;
  border: 2px solid rgba(var(--sage-rgb), 0.25);
  box-shadow: 0 10px 24px rgba(var(--teal-rgb), 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li + li { margin-top: 2px; }
.dropdown a {
  display: block;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: var(--fs-xs);
  white-space: nowrap;
}
.dropdown a::after { display: none; }
.dropdown a:hover { background: rgba(var(--gold-rgb), 0.1); color: var(--gold); }


.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-footer { background: var(--teal); color: var(--on-dark); padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 0.9fr 0.9fr 0.9fr 1fr 1.3fr; gap: 32px; }
.footer-col h4 { color: var(--white); font-size: var(--fs-h4); margin-bottom: 12px; }
.footer-col h4 a { color: var(--white); }
.footer-col h4 a:hover { color: var(--gold); }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--on-dark); }
.footer-col a:hover { color: var(--gold); }
.footer-brand .logo { color: var(--white); }
.footer-tagline { color: var(--white); font-weight: 500; }
.footer-tagline a { color: var(--white); }
.footer-tagline a:hover { color: var(--gold); }
.footer-social { margin-top: 16px; display: flex; gap: 12px; }
.footer-social a {
  width: 32px; height: 32px;
  border: 1px solid rgba(var(--white-rgb), 0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.footer-social a svg { width: 16px; height: 16px; }
.footer-social a:hover { background: rgba(var(--white-rgb), 0.12); border-color: var(--white); color: var(--gold); }
.footer-legal {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 40px; padding-top: 20px;
  border-top: 1px solid rgba(var(--white-rgb), 0.15);
  font-size: var(--fs-xs); flex-wrap: wrap; gap: 12px;
}
.footer-legal p { color: var(--white); margin: 0; }
.footer-legal ul { list-style: none; display: flex; gap: 16px; margin: 0; padding: 0; flex-wrap: wrap; }
.footer-legal a { color: var(--on-dark); }
.footer-legal a:hover { color: var(--gold); }

.cookie-consent {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--white); color: var(--text); z-index: 999; padding: 16px 0;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
}
.cookie-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cookie-inner p { color: var(--text-muted); margin: 0; }
.cookie-inner a { color: var(--teal); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.cookie-consent .btn-outline {
  background: rgba(var(--sage-rgb), 0.12);
  color: var(--teal);
  border: 2px solid rgba(var(--sage-rgb), 0.3);
}
.cookie-consent .btn-outline:hover { background: rgba(var(--sage-rgb), 0.22); color: var(--teal); border-color: var(--sage); }

.cookie-settings { border-top: 1px solid var(--border); margin-top: 16px; padding-top: 16px; }
.cookie-settings-inner { display: grid; gap: 16px; }
.cookie-category-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 0.3em; }
.cookie-category p { color: var(--text-muted); font-size: var(--fs-body-sm); margin: 0; }
.cookie-toggle-label { font-size: var(--fs-xs); color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

.cookie-toggle { position: relative; display: inline-block; width: 42px; height: 24px; flex-shrink: 0; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-slider {
  position: absolute; inset: 0; cursor: pointer;
  background: var(--border);
  border-radius: 24px;
  transition: background-color 0.2s ease;
}
.cookie-toggle-slider::before {
  content: ""; position: absolute; height: 18px; width: 18px; left: 3px; bottom: 3px;
  background: var(--white); border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}
.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--gold); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(18px); }

/* =========================================================
   Homepage: Hero
   ========================================================= */
.hero {
  position: relative;
  background-size: cover;
  background-position: center top;
  padding: clamp(64px, 12vw, 140px) 0 clamp(110px, 18vw, 160px);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(var(--teal-rgb),0.75) 0%, rgba(var(--teal-rgb),0.35) 60%, rgba(var(--teal-rgb),0.15) 100%);
}
.hero-inner { position: relative; z-index: 1; max-width: 640px; margin: 0; }
.hero-inner-center { max-width: 720px; margin: 0 auto; text-align: center; }
.hero h1 { color: var(--white); font-size: clamp(1.5rem, 4.5vw + 0.5rem, var(--fs-h1-lg)); line-height: 1.25; }
.hero-title { text-shadow: 4px 4px 0 var(--sage); }
.hero-sub { color: var(--on-photo); font-size: clamp(0.9rem, 1.2vw + 0.6rem, var(--fs-body-lg)); }
.hero-inner .hero-sub:last-child { margin-bottom: 0; }
.hero-note { color: var(--on-photo-muted); font-size: var(--fs-xs); margin-top: 14px; margin-bottom: 0; }
.hero-curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--bg-alt);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: scale(1.5);
}

/* =========================================================
   Homepage: Packages banner (gray bridge section)
   ========================================================= */
.packages-banner { background: var(--bg-alt); padding: 56px 0; text-align: center; }
.packages-inner { max-width: 640px; margin: 0 auto; }
.packages-title { color: var(--teal); text-shadow: 2px 2px 0 var(--sage); }
.packages-inner p { color: var(--text-muted); }

/* =========================================================
   Homepage: What You Get Off Your Plate
   ========================================================= */
.off-your-plate { padding: 72px 0; background: var(--bg); text-align: center; }
.off-your-plate .eyebrow { display: block; text-align: center; width: fit-content; margin-left: auto; margin-right: auto; }
.off-your-plate h2 { max-width: 560px; margin-left: auto; margin-right: auto; }
.section-intro-left { max-width: 640px; margin: 0 auto 2.5em; text-align: center; }
.plate-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.plate-cta { margin-top: 48px; display: inline-block; }
.plate-item { display: block; position: relative; padding: 44px 38px; text-align: left; }
.plate-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 14px;
  color: var(--sage);
  background: rgba(var(--sage-rgb), 0.1);
  border-radius: 50%;
  margin-bottom: 24px;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.plate-icon svg { width: 100%; height: 100%; }
.plate-item:hover .plate-icon { color: var(--white); background: rgba(var(--white-rgb), 0.15); }
.plate-item h3 { font-size: 1.35rem; margin-bottom: 0.6em; }
.plate-item p { font-size: var(--fs-body); margin-bottom: 0; }
.plate-arrow {
  position: absolute;
  bottom: 32px;
  right: 34px;
  color: var(--gold);
  font-size: 1.3rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, color 0.2s ease;
}
.plate-item:hover .plate-arrow { opacity: 1; transform: translateX(0); color: var(--white); }

/* =========================================================
   Homepage: Your RizFin Journey (process)
   ========================================================= */
.process { padding: 72px 0; background: var(--bg-alt); scroll-margin-top: 90px; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.process-card { padding: 20px 18px; }
.process-card h3 { font-size: var(--fs-h3); margin-bottom: 0.5em; }
.process-card p { font-size: var(--fs-body-sm); margin-bottom: 0; }
.process-card .step-num { width: 30px; height: 30px; font-size: var(--fs-xs); margin-bottom: 10px; }
.process-card:hover .step-num { background: var(--white); color: var(--gold); }
.step-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--fs-tag);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sage);
  background: rgba(var(--sage-rgb), 0.12);
  padding: 3px 8px;
  border-radius: 4px;
  margin: 0 0 8px;
}
.process-card:hover .step-tag { background: rgba(var(--white-rgb), 0.25); color: var(--white); }
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 14px;
  transition: background-color 0.2s ease;
}

/* =========================================================
   Homepage: Who We Support
   ========================================================= */
.who-we-support { padding: 72px 0; background: var(--bg); }
.support-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.support-intro .eyebrow { margin-bottom: 0.8em; }
.support-intro h2 { margin-bottom: 0.5em; }
.support-intro p { margin-bottom: 0; }
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.support-cell {
  padding: 20px 24px;
  border-left: 1px solid rgba(var(--gold-rgb), 0.4);
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.4);
}
.support-cell:nth-child(odd) { border-left: none; }
.support-cell:nth-child(1),
.support-cell:nth-child(2) { padding-top: 0; }
.support-cell:nth-child(3),
.support-cell:nth-child(4) { border-bottom: none; }
.support-cell h3 { font-size: var(--fs-h3); margin-bottom: 0.4em; }
.support-cell p { font-size: var(--fs-body-sm); margin-bottom: 0; }
.support-closer-section { padding: 0 0 72px; }
.support-closer-section .support-closer { margin: 0 auto; }
.support-closer {
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--white);
  background: var(--teal);
  max-width: 720px;
  margin: 48px auto 0;
  padding: 20px 32px;
  border-radius: 8px;
}

/* =========================================================
   Homepage: Who RizFin Is
   ========================================================= */
.who-we-are { background: var(--bg-alt); scroll-margin-top: 90px; }
.who-we-are p { text-align: left; }
.photo-frame {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}
.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(var(--teal-rgb), 0.35), rgba(var(--gold-rgb), 0.12));
  pointer-events: none;
}
.who-we-are-image { min-height: 340px; }

/* =========================================================
   Homepage: Testimonials
   ========================================================= */
.testimonials { padding: 72px 0; background: var(--bg); }
.testimonials .section-intro { text-align: justify; }
.testimonial-carousel { position: relative; max-width: 640px; margin: 0 auto; }
.testimonial-carousel-wide { max-width: 100%; }
.testimonial-track { overflow: hidden; position: relative; }
.testimonial-slide {
  display: none;
  animation: fadeIn 0.35s ease;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-slide.is-active { display: grid; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(var(--sage-rgb), 0.25);
  background: var(--white);
  color: var(--teal);
  font-size: var(--fs-body-lg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.carousel-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.carousel-prev { left: -8px; }
.carousel-next { right: -8px; }
.testimonial-carousel-wide .carousel-prev { left: -56px; }
.testimonial-carousel-wide .carousel-next { right: -56px; }
.carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: 24px; }
.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(var(--sage-rgb), 0.3);
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.carousel-dot.is-active { background: var(--gold); transform: scale(1.2); }
.testimonial-card { padding: 28px 24px; text-align: left; }
.testimonial-card:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(var(--teal-rgb), 0.12); }
.testimonial-dark { background: var(--teal); border-color: var(--teal); }
.testimonial-dark .testimonial-quote,
.testimonial-dark .testimonial-name { color: var(--white); }
.testimonial-quote { font-size: var(--fs-body-sm); font-style: italic; line-height: 1.65; margin-bottom: 1.2em; }
.testimonial-stars { color: var(--gold); letter-spacing: 2px; font-size: var(--fs-xs); margin-bottom: 0.5em; }
.testimonial-name { font-family: var(--font-heading); font-size: var(--fs-h4); font-weight: 600; color: var(--teal); margin: 0; }

/* =========================================================
   Homepage: Closing CTA band
   ========================================================= */
.comparison-closer {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  padding: 80px 0;
}
@media (max-width: 900px) {
  /* Fixed backgrounds are unreliable on mobile browsers (esp. iOS Safari) */
  .comparison-closer { background-attachment: scroll; }
}
.comparison-closer-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(var(--teal-rgb), 0.14), transparent 60%),
    rgba(var(--bg-alt-rgb), 0.78);
}
.comparison-closer-content { position: relative; z-index: 1; }
.comparison-closer h2 { color: var(--teal); }
.closer-title { text-shadow: 1px 1px 0 var(--sage); }
.comparison-closer p { color: var(--text-muted); max-width: 640px; margin: 0 auto 1.6em; }

/* =========================================================
   Services page
   ========================================================= */
.page-hero { background: var(--teal); padding: 72px 0; text-align: center; }
.page-hero h1 { color: var(--white); max-width: 720px; margin-left: auto; margin-right: auto; }
.page-hero-sub { color: var(--on-dark); margin-bottom: 0; }
.back-link-wrap { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; padding: 0 0 40px; margin-top: -32px; }
.back-link { grid-column: 2; justify-self: center; }
.prev-link { grid-column: 1; justify-self: start; }
.next-link { grid-column: 3; justify-self: end; }
.back-link, .prev-link, .next-link { font-size: var(--fs-xs); font-weight: 600; color: var(--teal); }
.back-link:hover, .prev-link:hover, .next-link:hover { color: var(--gold); }

.tabs-wrap { display: flex; justify-content: center; margin: -28px 0 0; position: relative; z-index: 2; }
.tabs {
  display: inline-flex;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px;
  box-shadow: 0 8px 20px rgba(var(--teal-rgb), 0.12);
}
.tab-btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-body-sm);
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-radius: 5px;
  padding: 12px 28px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.tab-btn.is-active { background: var(--teal); color: var(--white); }
.tab-btn-both { cursor: default; }
.tab-btn:not(.is-active):hover { color: var(--gold); background: rgba(var(--gold-rgb), 0.08); }

.guide-filter-section { margin-top: -24px; padding: 0 0 32px; }
.guide-filter-section .wrap { max-width: 900px; }
.guide-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.guide-filter[hidden] { display: none; }
.guide-filter .tab-btn {
  font-size: var(--fs-xs);
  padding: 0.5em 1.1em;
  border: 1px solid var(--border);
  border-radius: 20px;
}
.guide-subfilter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.guide-subfilter[hidden] { display: none; }
.guide-subfilter .tab-btn-sub {
  font-size: var(--fs-xs);
  padding: 0.4em 0.9em;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--bg-alt);
  color: var(--text-muted);
}
.guide-subfilter .tab-btn-sub.is-active { border-color: var(--gold); background: rgba(var(--gold-rgb), 0.12); color: var(--gold); }
.guide-subfilter .tab-btn-back { background: none; border-color: transparent; color: var(--teal); font-weight: 700; }
.guide-subfilter .tab-btn-back:hover { color: var(--gold); }
.guide-filter .tab-btn.is-active { border-color: var(--teal); }
.guide-filter .tab-btn:disabled { cursor: not-allowed; opacity: 0.4; }
.guide-filter .tab-btn:disabled:hover { color: var(--text-muted); background: transparent; }
.guide-subfilter .tab-btn-sub:disabled { cursor: not-allowed; opacity: 0.4; }
.guide-subfilter .tab-btn-sub:disabled:hover { color: var(--text-muted); background: var(--bg-alt); }
.filter-empty { text-align: center; color: var(--text-muted); padding: 40px 0 0; }
.filter-pagination { display: flex; justify-content: flex-end; gap: 8px; padding: 40px 0 0; }
.filter-pagination .page-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-xs);
  cursor: pointer;
}
.filter-pagination .page-btn:hover { border-color: var(--gold); color: var(--gold); }
.filter-pagination .page-btn.is-active { background: var(--teal); border-color: var(--teal); color: var(--white); }

.resource-thumb {
  display: block;
  width: calc(100% + 52px);
  height: auto;
  margin: -24px -26px 1em;
  border-radius: 6px 6px 0 0;
}
.resource-thumb-placeholder {
  height: 200px;
  background: repeating-linear-gradient(45deg, var(--bg-alt), var(--bg-alt) 10px, var(--white) 10px, var(--white) 20px);
  border-bottom: 1px solid var(--border);
}

.structure-panel { display: none; padding: 56px 0 72px; }
.structure-panel.is-active { display: block; }
.stage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stage-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.stage-grid-3 h3 {
  font-size: var(--fs-h4);
  line-height: 1.3em;
  min-height: 2.6em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.stage-grid-3 .stage-card > p {
  line-height: 1.5em;
  min-height: 4.5em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.stage-card { display: flex; flex-direction: column; padding: 24px 26px; }
.stage-card .service-list { flex: 1 1 auto; }
.stage-card > .get-started { margin-top: 1.2em; padding-top: 1em; border-top: 1px solid var(--border); }
.stage-card-closing { background: var(--bg-alt); }
.stage-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: var(--fs-tag);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(var(--gold-rgb), 0.12);
  padding: 0.35em 0.9em;
  border-radius: 20px;
  margin-bottom: 0.8em;
}
.stage-card h3 { font-size: var(--fs-h3); margin: 0 0 0.3em; }
.content-stage { display: block; font-family: var(--font-heading); font-size: var(--fs-xs); font-weight: 700; color: var(--teal); margin: 0 0 1em; }
.stage-card .detail-price { display: block; margin: 0 0 1em; }
.stage-card.is-highlighted,
.detail-card.is-highlighted { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(var(--gold-rgb), 0.25); }
.stage-card.is-highlighted h3,
.detail-card.is-highlighted h3 { color: var(--gold); }
.service-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.service-list li { border-top: 1px solid var(--border); padding-top: 18px; }
.service-list li:first-child { border-top: none; padding-top: 0; }
.service-list h4 { font-size: var(--fs-h4); margin: 0 0 0.3em; color: var(--teal); }
.service-list p { font-size: var(--fs-body-sm); margin: 0 0 0.6em; }
.get-started {
  font-family: var(--font-heading);
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--teal);
}
.get-started:hover { color: var(--gold); }

/* Service detail page (e.g. Setting Up Your Business) */
.detail-stack { display: grid; gap: 20px; max-width: 760px; margin: 0 auto; padding: 40px 0 0; }
.detail-stack.detail-stack-tight { padding-top: 16px; margin-top: 0; }
.detail-card { padding: 28px 32px; }
.detail-card-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 0.8em; }
.detail-card-head h3 { font-size: var(--fs-h3); margin: 0; }
.detail-price { font-family: var(--font-heading); font-size: var(--fs-xs); font-weight: 700; color: var(--gold); white-space: nowrap; }
.detail-label {
  font-family: var(--font-heading);
  font-size: var(--fs-tag);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 1.1em 0 0.3em;
}
.detail-card p:not(.detail-label) { font-size: var(--fs-body-sm); margin: 0 0 0.6em; }
.detail-card .get-started { display: inline-block; margin-top: 0.6em; }

/* Long-form article content (Blog posts, Client Guides) */
.article-stack { display: grid; gap: 20px; max-width: 900px; margin: 0 auto; padding: 16px 0 0; }
.article-dates { font-size: var(--fs-xs); color: var(--text-muted); margin: 0 0 1.2em; }
.article-content { font-size: var(--fs-body-sm); line-height: 1.7; }
.article-content p { text-align: justify; margin: 0 0 1.2em; }
.article-content h2 { font-size: var(--fs-h2-sm); margin: 1.5em 0 0.5em; }
.article-content h3 { font-size: var(--fs-body-lg); margin: 1.2em 0 0.4em; }
.article-content h2:first-child, .article-content h3:first-child { margin-top: 0; }
.article-content ul, .article-content ol { margin: 0 0 1.2em; padding-left: 1.3em; }
.article-content li { margin-bottom: 0.4em; }
.article-content a { text-decoration: underline; }
.article-content .table-wrap {
  overflow-x: auto;
  margin: 1.5em 0;
}
.article-content table {
  width: 100%;
  min-width: 480px;
  table-layout: fixed;
  border-collapse: collapse;
  margin: 0;
  font-size: var(--fs-body-sm);
}
.article-content th, .article-content td {
  padding: 0.7em 1em;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  word-wrap: break-word;
}
.article-content th {
  background: var(--bg-alt);
  color: var(--teal);
  font-weight: 600;
  border-bottom: 2px solid var(--border);
}
.article-content tr:last-child td { border-bottom: none; }

.decision-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2em;
  margin: 1.5em 0;
}
@media (max-width: 700px) {
  .decision-compare { grid-template-columns: 1fr; }
}
.decision-option {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.2em 1.4em;
  background: var(--bg-alt);
}
.decision-option h4 {
  margin: 0 0 0.4em;
  font-size: var(--fs-body-lg);
  color: var(--teal);
}
.decision-badge {
  display: inline-block;
  font-size: var(--fs-tag);
  font-weight: 600;
  color: var(--gold);
  background: rgba(var(--gold-rgb), 0.12);
  border-radius: 999px;
  padding: 0.25em 0.8em;
  margin-bottom: 0.7em;
}
.decision-option ul { margin: 0; padding-left: 1.1em; }
.decision-option li { margin-bottom: 0.3em; font-size: var(--fs-body-sm); }

/* =========================================================
   Responsive
   ========================================================= */

/* Laptop / small desktop */
@media (max-width: 1100px) {
  .wrap { padding: 0 20px; }
  h1 { font-size: 2.2rem; }
  .hero h1 { font-size: 2.2rem; }
}

/* Tablet
   CASCADE ORDER GOTCHA: media queries don't add specificity, so a tie between
   this block's rule and an unconditional rule of equal specificity goes to
   whichever one is LATER in the file, not whichever is "more specific" to mobile.
   If you add a mobile override here and it doesn't visually apply, check whether
   a later unconditional (non-media-queried) rule elsewhere in the file is winning
   the tie. Fix: place the override in a NEW @media block physically positioned
   right after the conflicting unconditional rule, not here in this early block. */
@media (max-width: 900px) {
  /* .hero-curve (in any form) breaks sticky header positioning on mobile browsers.
     Confirmed via isolated A/B testing that image + overlay are safe, curve is not.
     Keep the photo + overlay on mobile, just drop the curve (flat bottom edge). */
  .hero-curve { display: none; }
  .hero { padding: clamp(64px, 12vw, 100px) 0; }
  .header-inner { flex-wrap: wrap; }
  .nav-toggle { display: flex; order: 2; }
  .header-cta { display: none; }
  .main-nav {
    order: 4;
    flex-basis: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .main-nav.is-open { max-height: 80vh; overflow-y: auto; }
  .main-nav ul { flex-direction: column; gap: 0; padding: 12px 0 0; }
  .main-nav ul > li { border-top: 1px solid var(--border); }
  .main-nav ul > li:first-child { border-top: none; }
  .main-nav a { display: block; padding: 14px 4px; text-align: center; }
  .main-nav a::after { display: none; }
  .main-nav ul.dropdown { display: none; }
  .two-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-col-collapsible { display: none; }
  .footer-brand .logo { display: none; }
  .back-link-wrap { padding-bottom: 56px; }
  .hero { text-align: center; }
  .hero-inner { max-width: 100%; margin: 0 auto; }
  .hero-overlay { background: rgba(var(--teal-rgb), 0.6); }
  .plate-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-carousel { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
  .testimonial-track { flex-basis: 100%; }
  .testimonial-slide.is-active { grid-template-columns: 1fr; }
  .carousel-arrow { position: static; transform: none; order: 1; }
  .carousel-dots { flex-basis: 100%; order: 2; }
  .support-layout { grid-template-columns: 1fr; }
  .support-cell:nth-child(1), .support-cell:nth-child(2) { padding-top: 20px; }
  .support-cell:nth-child(odd) { border-left: none; }
  .stage-grid, .stage-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================================
   About page
   ========================================================= */
.mission-band { padding: 72px 0; scroll-margin-top: 90px; }
.mission-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: stretch; margin-top: 2.5em; }
.mission-cards { display: grid; gap: 20px; }
.bordered-card { border-radius: 8px; border: 2px solid rgba(var(--sage-rgb), 0.25); padding: 28px 32px; }
.mission-card { background: var(--bg-alt); }
.mission-card h3 { font-size: var(--fs-h3); margin: 0 0 0.5em; }
.mission-card p { font-size: var(--fs-body-sm); margin: 0; }
.mission-card-dark { background: var(--teal); border-color: var(--teal); }
.mission-card-dark h3, .mission-card-dark p { color: var(--white); }
.mission-image { min-height: 280px; }

@media (max-width: 900px) {
  .mission-grid { grid-template-columns: 1fr; }
  .mission-image { display: none; }
}

.values { padding: 72px 0; background: var(--bg-alt); scroll-margin-top: 90px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 2.5em; }
.value-card { padding: 28px 26px; }
.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(var(--sage-rgb), 0.14);
  color: var(--teal);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.card-hover:hover .icon-circle { background: rgba(var(--white-rgb), 0.25); color: var(--white); }

.value-icon { width: 56px; height: 56px; margin-bottom: 1em; }
.value-icon svg { width: 26px; height: 26px; }
.value-card h3 { font-size: var(--fs-h3); margin: 0 0 0.5em; }
.value-card p { font-size: var(--fs-body-sm); margin: 0; }

.founder-section { padding: 72px 0; scroll-margin-top: 90px; }
.founder-title { color: var(--teal); font-size: var(--fs-h1); margin: 0.3em 0 1.2em; }
.founder-profile { display: grid; grid-template-columns: 3fr 2fr; gap: 24px; align-items: stretch; margin-top: 2em; }
.founder-photo {
  border-radius: 10px;
  padding: 5px;
  background: linear-gradient(135deg, var(--gold), var(--teal));
}
.founder-photo img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: 6px; }
.founder-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 1.5em; }
.founder-row .founder-card-title {
  text-align: center;
  padding-bottom: 0.6em;
  margin-bottom: 1em;
  border-bottom: 3px solid var(--gold);
}
.founder-row .founder-card p { text-align: left; }
.founder-card { background: var(--white); }
.founder-card-title { font-size: var(--fs-h3); color: var(--teal); margin: 0 0 0.8em; }
.founder-card p { font-size: var(--fs-body-sm); margin: 0 0 1em; text-align: justify; }
.founder-card p:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .founder-profile { grid-template-columns: 1fr; }
  .founder-photo { order: -1; width: 100%; max-width: 420px; aspect-ratio: 4 / 3; max-height: 320px; margin: 0 auto; }
  .founder-photo img { object-position: top center; }
  .founder-row { grid-template-columns: 1fr; }
}

.how-we-work-section { padding: 72px 0; background: var(--bg-alt); scroll-margin-top: 90px; }
.how-we-work-text { max-width: 720px; margin: 2em auto 0; }
.how-we-work-text p { font-size: var(--fs-body-sm); margin: 0 0 1em; }
.how-we-work-text p:last-child { margin-bottom: 0; }

.compliance-section { padding: 72px 0; scroll-margin-top: 90px; }

/* =========================================================
   Contact page
   ========================================================= */
.contact-form-section {
  padding: 72px 0;
  background: var(--bg-alt);
}
.contact-form-centered { max-width: 760px; margin: 0 auto; }
.contact-form-card {
  background: var(--white);
  border: 2px solid rgba(var(--sage-rgb), 0.25);
  border-radius: 8px;
  padding: 36px 40px;
}
.form-row { margin-bottom: 1.2em; }
.form-row label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-body-sm);
  color: var(--teal);
  margin-bottom: 0.4em;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.7em 0.9em;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
  color: var(--text);
  background: var(--white);
}
.form-row textarea { resize: vertical; }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.form-row-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.required-mark { color: var(--red); }
.phone-field { display: flex; gap: 10px; }
.phone-field .phone-code { flex: 0 0 70px; text-align: center; }
.phone-field .phone-number { flex: 1 1 auto; }
.form-note {
  margin: 0.9em 0 0;
  font-size: var(--fs-xs);
  color: var(--text-muted);
  text-align: center;
}
.form-note a { text-decoration: underline; }
.form-error { color: var(--red); font-weight: 600; }

/* =========================================================
   Legal pages (Privacy Policy, Cookie Policy, Terms, Accessibility)
   ========================================================= */
.legal-section { padding: 56px 0 80px; background: var(--bg); }
.legal-content { margin: 0 auto; }
.legal-content h2 { font-size: var(--fs-h3-lg); margin-top: 1.8em; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: var(--fs-h3); margin-top: 1.4em; }
.legal-content p { font-size: var(--fs-body-sm); text-align: justify; }
.legal-content ul { margin: 0 0 1em; padding-left: 1.3em; color: var(--text-muted); font-size: var(--fs-body-sm); }
.legal-content li { margin-bottom: 0.5em; text-align: justify; }
.legal-content a { text-decoration: underline; }
.legal-updated { margin-top: 2em; font-size: var(--fs-xs); color: var(--text-muted); font-style: italic; }

/* =========================================================
   Resources: landing, FAQs, glossary, coming soon
   ========================================================= */
.resources-section { padding: 72px 0; }
.resources-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; max-width: 900px; margin: 0 auto; }
.resource-card { display: flex; flex-direction: column; flex: 0 1 280px; padding: 24px 22px; text-align: left; }
.resource-card h3 { font-size: var(--fs-h3); margin: 0.6em 0 0.4em; }
.resource-card p { font-size: var(--fs-body-sm); margin: 0; }
.resource-icon { width: 48px; height: 48px; flex-shrink: 0; }
.resource-icon svg { width: 22px; height: 22px; }

@media (max-width: 900px) {
  .resource-card { flex-basis: 100%; }
}

.faq-section { padding: 56px 0 80px; background: var(--bg-alt); }
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 48px 18px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--teal);
  cursor: pointer;
  list-style: none;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 18px;
  font-size: 1.2em;
  color: var(--gold);
  transition: transform 0.2s ease;
}
.faq-item[open] summary {
  background: var(--teal);
  color: var(--white);
}
.faq-item[open] summary::after { color: var(--white); transform: rotate(45deg); }
.faq-item p { font-size: var(--fs-body-sm); padding: 18px 24px; margin: 0; }

.glossary-section { padding: 56px 0 80px; }
.glossary-group-title { font-size: var(--fs-h2); margin-top: 2em; }
.glossary-group-title:first-child { margin-top: 0; }
.glossary-subgroup-title { font-size: var(--fs-h4); text-transform: uppercase; letter-spacing: 0.05em; color: var(--gold); margin-top: 1.6em; }
.glossary-list { display: grid; gap: 14px; margin: 1em 0 0; }
.glossary-item { border-top: 1px solid var(--border); padding-top: 14px; display: grid; grid-template-columns: 220px 1fr; gap: 20px; }
.glossary-item dt { font-family: var(--font-heading); font-weight: 600; color: var(--teal); }
.glossary-item dd { margin: 0; font-size: var(--fs-body-sm); color: var(--text-muted); }

@media (max-width: 900px) {
  .glossary-item { grid-template-columns: 1fr; gap: 4px; }
}

.coming-soon-section { padding: 56px 0 100px; text-align: center; }
.coming-soon-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-tag);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6em;
}

.thank-you-section { padding: 56px 0 100px; text-align: center; }
.thank-you-section p { max-width: 560px; margin: 0 auto 2em; }
.thank-you-actions { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }

/* Mobile */
@media (max-width: 560px) {
  h1, .hero h1 { font-size: 1.5rem; line-height: 1.3; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.05rem; }
  .wrap { padding: 0 40px; }
  .header-inner { flex-wrap: wrap; justify-content: center; text-align: center; }
  .logo-img { height: 56px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand .logo { display: none; }
  .footer-legal { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; text-align: center; padding: 0.75em 1.5em; }
  .eyebrow { font-size: 0.62rem; }

  /* Hero heading/padding now scale fluidly via clamp() — see .hero rules above */
  .hero-note { font-size: 0.72rem; }
  .page-hero { padding: 40px 0 32px; }

  /* Every content section: reduce vertical rhythm so mobile isn't a shrunk desktop */
  .off-your-plate,
  .process,
  .who-we-support,
  .testimonials,
  .mission-band,
  .values,
  .founder-section,
  .how-we-work-section,
  .compliance-section,
  .resources-section,
  .contact-form-section,
  .comparison-closer { padding: 44px 0; }
  .packages-banner { padding: 40px 0; }
  .legal-section, .faq-section, .glossary-section { padding: 32px 0 48px; }
  .coming-soon-section, .thank-you-section { padding: 32px 0 48px; }
  .structure-panel { padding: 32px 0 40px; }
  .section-intro, .section-intro-left { margin-bottom: 1.6em; }
  .contact-form-card, .detail-card, .mission-card, .founder-card { padding: 22px 20px; }
  .founder-title { font-size: 1.3rem; margin: 0.3em 0 0.8em; text-align: center; }
  .founder-section .eyebrow { text-align: center; }
  .founder-card p, .who-we-are p, .legal-content p, .legal-content li { text-align: left; }

  .plate-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .support-cell { border-left: none !important; padding-top: 20px !important; }
  .stage-grid, .stage-grid-3 { grid-template-columns: 1fr; }
  .tabs { width: 100%; }
  .tab-btn { flex: 1; padding: 12px 8px; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row-pair { grid-template-columns: 1fr; }
  .resource-card { flex-basis: 100%; }
}
