/* ============================================================
   AlwaysReady — Main Stylesheet
   Version 1.0 — June 2026
   Brand: Teal #00b8a6 | Gold #ffd700 | Off-white #faf9f6 | Dark #1a1a1a
   WCAG AA compliant | No italics anywhere | No dark backgrounds
   ============================================================ */

/* TEMPORARY: Hide Start Free Trial buttons until CQC publishes new framework — remove this line to restore */
a[href="https://portal.alwaysready.uk/trial"] { display: none; }


/* ── FONT FALLBACK METRICS (prevents layout shift on Figtree swap-in) ──
   Computed via @capsizecss/core against Figtree Bold (700), matched
   against the actual system fallbacks in the heading font stack below. */
@font-face {
  font-family: "Figtree Fallback: Helvetica Neue";
  src: local('Helvetica Neue'), local('HelveticaNeue');
  ascent-override: 92.3326%;
  descent-override: 24.2981%;
  line-gap-override: 0%;
  size-adjust: 102.8889%;
}
@font-face {
  font-family: "Figtree Fallback: Segoe UI";
  src: local('Segoe UI'), local('SegoeUI');
  ascent-override: 90.9701%;
  descent-override: 23.9395%;
  size-adjust: 104.43%;
}
@font-face {
  font-family: "Figtree Fallback: Arial";
  src: local('Arial'), local('ArialMT');
  ascent-override: 91.471%;
  descent-override: 24.0713%;
  line-gap-override: 0%;
  size-adjust: 103.8581%;
}

:root {
  --font-heading: 'Figtree', 'Figtree Fallback: Helvetica Neue', 'Figtree Fallback: Segoe UI', 'Figtree Fallback: Arial', 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #1a1a1a;
  background-color: #faf9f6;
}

/* ── SKIP LINK (WCAG AA) ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: #007a6e;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0 0 4px 4px;
  font-weight: 700;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
}
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: #007a6e; text-decoration: underline; }
a:hover { color: #008f80; }
.link--bold { font-weight: 600; }
a:focus-visible {
  outline: 3px solid #ffd700;
  outline-offset: 2px;
  border-radius: 2px;
}

/* No italics anywhere */
em, i { font-style: normal; }

/* ── LAYOUT ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--text {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--narrow {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section--sm { padding: 3rem 0; }
.section--lg { padding: 7rem 0; }

/* ── SOFT SECTION TRANSITIONS ── */
.section--alt { background: #f0faf9; }
.section--white { background: #ffffff; }

/* Properly defined divider: previously unstyled, relying on browser
   <hr> defaults. A clean, minimal line rather than an extra gap. */
.divider {
  margin: 0;
  height: 1px;
  border: none;
  background: #e8e6e0;
}

/* The Problem section's cards sit directly above the Solution section's
   heading, separated only by a divider. Tightened specifically here so
   the combined gap (padding + divider + padding) roughly matches the
   section-header's own margin-bottom below the Solution heading, rather
   than looking like a much bigger gap than the one right underneath it. */
.problem-section { padding-bottom: 2rem; }
.solution-section { padding-top: 1.5rem; }

/* ── READING PROGRESS INDICATOR ── */
#ar-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: #00b8a6;
  z-index: 9999;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ── PULL QUOTE ── */
.pull-quote {
  border-left: 3px solid #00b8a6;
  padding: 0.75rem 0 0.75rem 1.5rem;
  margin: 2.5rem 0;
}
.pull-quote p {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.5;
  margin: 0;
}

/* ── NAVIGATION ── */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e8e6e0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 0.5rem;
}

.nav__desktop {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  justify-content: flex-end;
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo img { height: 36px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 0.25rem;
  flex-wrap: nowrap;
}

.nav__links a {
  display: block;
  padding: 0.5rem 0.75rem;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 4px;
  white-space: nowrap;
}
.nav__links a:hover { color: #007a6e; }
.nav__links a.active { color: #007a6e; }

.nav__links a:focus-visible {
  outline: 3px solid #ffd700;
  outline-offset: 2px;
}

.nav__login {
  color: #1a1a1a;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  white-space: nowrap;
}
.nav__login:hover { color: #007a6e; }

.nav__cta {
  display: inline-block;
  background: #ffd700;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, transform 0.1s;
  flex-shrink: 0;
}
.nav__cta:hover { background: #e6c200; color: #1a1a1a; }
.nav__cta:focus-visible { outline: 3px solid #00b8a6; outline-offset: 2px; }

/* Hamburger */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: all 0.25s;
}
.nav__toggle:focus-visible { outline: 3px solid #ffd700; outline-offset: 2px; border-radius: 4px; }

/* Mobile nav */
@media (max-width: 900px) {
  .nav__toggle { display: flex; }
  .nav__desktop { display: none; }
  .nav__desktop.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #faf9f6;
    border-bottom: 1px solid #e8e6e0;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.25rem;
    z-index: 99;
  }
  .nav__desktop.open .nav__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }
  .nav__desktop.open .nav__links a {
    padding: 0.75rem 0;
    width: 100%;
    border-bottom: 1px solid #e8e6e0;
    border-radius: 0;
  }
  .nav__desktop.open .nav__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
    width: 100%;
  }
  .nav__cta { text-align: center; }
  .site-header { position: sticky; top: 0; }
}

.nav__actions { display: flex; align-items: center; gap: 0.75rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.1s;
  line-height: 1.4;
}
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 3px solid #ffd700; outline-offset: 2px; }

.btn--primary {
  background: #ffd700;
  color: #1a1a1a;
  border-color: #ffd700;
}
.btn--primary:hover { background: #e6c200; border-color: #e6c200; color: #1a1a1a; }

.btn--outline {
  background: transparent;
  color: #1a1a1a;
  border-color: #1a1a1a;
}
.btn--outline:hover { background: #1a1a1a; color: #fff; }

.cta-band .btn--outline {
  background: #ffd700;
  color: #1a1a1a;
  border-color: #ffd700;
}
.cta-band .btn--outline:hover { background: #e6c200; border-color: #e6c200; color: #1a1a1a; }

.btn--lg { font-size: 1.0625rem; padding: 0.875rem 2rem; }
.btn--sm { font-size: 0.875rem; padding: 0.5rem 1.25rem; }

/* ── HERO ── */
.hero {
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  z-index: 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 26, 30, 0.60);
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .hero .container { min-height: 480px; }
}
.hero__eyebrow {
  display: inline-block;
  background: #e6f7f5;
  color: #005f57;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero__title {
  font-size: clamp(1.125rem, 4vw, 3.5rem);
  color: #ffffff;
  max-width: 820px;
  margin: 0 auto 1.25rem;
  line-height: 1.25;
}
.hero__title span { color: #ffffff; }
.hero__subtitle {
  font-size: clamp(0.9375rem, 2.5vw, 1.2rem);
  color: #ffffff;
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero .btn--outline {
  background: #ffd700;
  color: #1a1a1a;
  border-color: #ffd700;
}
.hero .btn--outline:hover { background: #e6c200; border-color: #e6c200; color: #1a1a1a; }

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p {
  font-size: 1.0625rem;
  color: #555;
  max-width: 780px;
  margin: 0 auto;
  text-wrap: balance;
}

/* ── CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}
.card-grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 900px) {
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .card-grid--3 { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid #e8e6e0;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); transform: translateY(-2px); }

.card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0;
  display: block;
}

.card__icon {
  width: 48px;
  height: 48px;
  background: #e6f7f5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.card__icon svg { width: 24px; height: 24px; color: #007a6e; }

.card__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #00b8a6;
  background: #e6f7f5;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.card h3 { margin-bottom: 0.6rem; font-size: 1.125rem; }
.card p { color: #444; font-size: 0.9375rem; margin-bottom: 1.25rem; }

.card__link {
  display: block;
  text-align: center;
  padding: 0.6rem 1rem;
  border: 1.5px solid #00b8a6;
  border-radius: 6px;
  color: #00b8a6;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.card__link:hover { background: #00b8a6; color: #fff; }

/* ── HOW IT WORKS STEPS ── */
.steps { padding: 5rem 0; }
.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
.step:last-child { margin-bottom: 0; }
.step--reverse .step__content { order: 2; }
.step--reverse .step__visual { order: 1; }

.step__number {
  font-size: 5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: #767676;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.step__title { font-size: 1.75rem; margin-bottom: 0.75rem; color: #1a1a1a; }
.step__text { color: #444; font-size: 1rem; line-height: 1.8; }

.step__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.step__icon-box {
  width: 160px;
  height: 160px;
  background: #e6f7f5;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-3deg);
}
.step--reverse .step__icon-box { transform: rotate(3deg); }
.step__icon-box svg { width: 72px; height: 72px; color: #007a6e; }

@media (max-width: 768px) {
  .step {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3.5rem;
  }
  .step--reverse .step__content { order: 2; }
  .step--reverse .step__visual { order: 1; }
  .step__icon-box { width: 120px; height: 120px; }
  .step__icon-box svg { width: 52px; height: 52px; }
}

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  border-left: 4px solid #00b8a6;
  background: #fff;
  border-radius: 0 12px 12px 0;
  padding: 2rem 2.5rem;
  margin: 2rem 0;
}
.highlight-box p { font-size: 1.0625rem; color: #1a1a1a; margin: 0; }
.highlight-box strong { color: #007a6e; }

/* ── STAT/CALLOUT BOX ── */
.callout {
  background: #f0faf9;
  border-radius: 12px;
  padding: 1.75rem 2rem;
  margin: 2rem 0;
}
.callout p { font-size: 1.0625rem; color: #1a1a1a; margin: 0; line-height: 1.7; }

/* ── CTA BAND ── */
.cta-band {
  background: #ffffff;
  border-radius: 16px;
  border: 3px solid #00b8a6;
  padding: 3.5rem 2rem;
  text-align: center;
  margin: 0 0 2rem;
}
.cta-band h2 { color: #1a1a1a; margin-bottom: 0.75rem; }
.cta-band p { color: #444; max-width: 520px; margin: 0 auto 2rem; font-size: 1.0625rem; }

/* ── FORMS ── */
.form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid #e8e6e0;
  max-width: 560px;
}

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #1a1a1a;
  margin-bottom: 0.4rem;
}
.form-group label .required { color: #c0392b; margin-left: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #d0cec8;
  border-radius: 6px;
  font-size: 1rem;
  color: #1a1a1a;
  background: #faf9f6;
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00b8a6;
  box-shadow: 0 0 0 3px rgba(0,184,166,0.15);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231a1a1a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* Checkbox */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 3px;
  accent-color: #00b8a6;
  cursor: pointer;
}
.form-check label {
  font-size: 0.9375rem;
  color: #444;
  cursor: pointer;
  font-weight: 400;
}

.form-note {
  font-size: 0.8125rem;
  color: #595959;
  margin-top: 0.75rem;
  line-height: 1.6;
}
.form-note a { color: #007a6e; }

.form-submit { width: 100%; margin-top: 0.5rem; }

/* Success message */
.form-success {
  display: none;
  background: #e6f7f5;
  border: 1.5px solid #00b8a6;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  color: #1a1a1a;
  font-weight: 600;
  text-align: center;
}

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e8e6e0;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); transform: translateY(-2px); }

.blog-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #e6f7f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card__img-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #e6f7f5 0%, #d0f0ec 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card__img-placeholder svg { width: 48px; height: 48px; color: #00b8a6; opacity: 0.5; }

.blog-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}
.blog-card__cat {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #00b8a6;
  background: #e6f7f5;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
}
.blog-card__date { font-size: 0.8125rem; color: #595959; }
.blog-card h3 { font-size: 1rem; margin-bottom: 0.6rem; line-height: 1.4; }
.blog-card h3 a { color: #1a1a1a; text-decoration: none; }
.blog-card h3 a:hover { color: #007a6e; }
.blog-card p { font-size: 0.9rem; color: #555; flex: 1; margin-bottom: 1.25rem; }
.blog-card__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #007a6e;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.blog-card__link:hover { color: #00524a; }

.load-more-wrap { text-align: center; margin-top: 3rem; }

/* Blog post page */
.post-header { padding: 3.5rem 0 2.5rem; }
.post-header__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.post-body { max-width: 720px; margin: 0 auto; padding: 2rem 0 4rem; }
.post-body h2 { margin: 2.5rem 0 1rem; }
.post-body h3 { margin: 2rem 0 0.75rem; }
.post-body p { margin-bottom: 1.25rem; }
.post-body ul, .post-body ol { margin: 0 0 1.25rem 1.5rem; }
.post-body li { margin-bottom: 0.5rem; }
.post-body blockquote {
  border-left: 4px solid #00b8a6;
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: #f0faf9;
  border-radius: 0 8px 8px 0;
}
.post-body blockquote p { margin: 0; font-size: 1.0625rem; color: #1a1a1a; }

/* ── FOOTER ── */
.site-footer {
  background: #f0faf9;
  color: #444;
  border-top: 3px solid #00b8a6;
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
}

.footer__brand img { height: 36px; margin-bottom: 1rem; }
.footer__tagline { font-size: 0.9rem; color: #555; line-height: 1.6; max-width: 240px; }

.footer__col h4,
.footer__heading {
  color: #1a1a1a;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 0.5rem; }
.footer__col ul a {
  color: #555;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.15s;
}
.footer__col ul a:hover { color: #007a6e; }

.footer__contact p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__contact a { color: #555; text-decoration: none; }
.footer__contact a:hover { color: #007a6e; }

.footer__social { display: flex; gap: 0.75rem; margin-top: 0.75rem; }
.footer__social-icon {
  width: 36px;
  height: 36px;
  background: #d0f0ec;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00b8a6;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.footer__social-icon:hover { background: #00b8a6; color: #fff; }
.footer__social-icon svg { width: 16px; height: 16px; }

.footer__bottom {
  border-top: 1px solid #c8ece8;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__legal { font-size: 0.8125rem; color: #666; line-height: 1.7; }
.footer__legal a { color: #555; text-decoration: none; }
.footer__legal a:hover { color: #007a6e; }
.footer__legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.8125rem;
}
.footer__legal-links a { color: #555; text-decoration: none; }
.footer__legal-links a:hover { color: #007a6e; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 4rem 0 3rem;
  text-align: center;
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p {
  font-size: 1.125rem;
  color: #555;
  max-width: 580px;
  margin: 0 auto;
}

/* ── INTERIOR PAGE HERO ── */
.interior-hero {
  background: #f0faf9;
  padding: 22px 0 20px;
  position: relative;
  overflow: hidden;
}
.interior-hero__shape-1 {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(0,184,166,0.09);
  pointer-events: none;
}
.interior-hero__shape-2 {
  position: absolute;
  bottom: -50px;
  right: 180px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(0,184,166,0.06);
  pointer-events: none;
}
.interior-hero__shape-3 {
  position: absolute;
  top: 30px;
  right: 240px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(0,184,166,0.07);
  pointer-events: none;
}
.interior-hero__ghost {
  position: absolute;
  top: 50%;
  right: 80px;
  transform: translateY(-50%);
  text-align: right;
  z-index: 1;
  pointer-events: none;
}
.interior-hero__inner {
  max-width: 600px;
  position: relative;
  z-index: 1;
}
.interior-hero__kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #007a6e;
  margin-bottom: 12px;
}
.interior-hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #1a1a1a;
  margin: 0;
}
.interior-hero h1 em {
  font-style: normal;
  color: #007a6e;
  display: block;
}
.interior-hero__rule {
  width: 40px;
  height: 3px;
  background: #00b8a6;
  border-radius: 2px;
  margin: 14px 0;
}
.interior-hero__sub {
  font-size: 0.9375rem;
  color: #2a2a2a;
  line-height: 1.7;
  margin: 0;
  max-width: 480px;
}
@media (max-width: 768px) {
  .interior-hero__ghost { display: none; }
  .interior-hero__shape-2 { display: none; }
  .interior-hero__shape-3 { display: none; }
  .interior-hero__shape-1 { width: 160px; height: 160px; right: -30px; }
}

/* ── ABOUT PAGE HERO (legacy — kept for fallback) ── */
.page-hero--about h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  max-width: 720px;
  margin: 0 auto 1rem;
}

/* ── UTILITIES ── */
.text-teal { color: #00b8a6; }
.text-center { text-align: center; }
.text-muted { color: #666; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── CARD INLINE HEADER ── */
.card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.card__header .card__icon { margin-bottom: 0; flex-shrink: 0; }
.card__header h3 { margin: 0; font-size: 1rem; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ── BLOG POST ── */
.post-hero {
  background: #f0faf9;
  padding: 22px 0 20px;
  position: relative;
  overflow: hidden;
}
.post-hero__shape-1 {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(0,184,166,0.09);
  pointer-events: none;
}
.post-hero__shape-2 {
  position: absolute;
  bottom: -50px;
  right: 180px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(0,184,166,0.06);
  pointer-events: none;
}
.post-hero__shape-3 {
  position: absolute;
  top: 30px;
  right: 240px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(0,184,166,0.07);
  pointer-events: none;
}
.post-hero__inner {
  max-width: 640px;
  position: relative;
  z-index: 1;
}
.post-hero__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 18px;
}
.post-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  color: #007a6e;
  text-decoration: none;
  font-weight: 500;
}
.post-hero__back:hover { text-decoration: underline; }
.post-hero__kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #007a6e;
  margin-bottom: 10px;
}
.post-hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #1a1a1a;
  margin: 0;
}
.post-hero h1 em {
  font-style: normal;
  color: #007a6e;
  display: block;
}
.post-hero__rule {
  width: 40px;
  height: 3px;
  background: #00b8a6;
  border-radius: 2px;
  margin: 14px 0;
}
.post-hero__excerpt {
  font-size: 0.9375rem;
  color: #2a2a2a;
  line-height: 1.7;
  margin: 0 0 12px;
  max-width: 520px;
}
.post-hero__byline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #2a2a2a;
}
.post-hero__separator { color: #6a6a6a; }
@media (max-width: 768px) {
    .post-hero__shape-2 { display: none; }
  .post-hero__shape-3 { display: none; }
  .post-hero__shape-1 { width: 160px; height: 160px; right: -30px; }
}
.post-body h2 {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  margin: 2.5rem 0 1rem;
  color: #1a1a1a;
}
.post-body p { margin-bottom: 1.25rem; line-height: 1.8; }
.post-body ul, .post-body ol {
  margin: 0 0 1.25rem 1.5rem;
  line-height: 1.8;
}
.post-body li { margin-bottom: 0.5rem; }
.post-body strong { font-weight: 600; color: #1a1a1a; }
.post-references {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #e8e6e0;
  padding-top: 1.5rem;
}
.post-references li {
  font-size: 0.875rem;
  color: #555;
  margin-bottom: 0.75rem;
  padding-left: 1rem;
  border-left: 2px solid #00b8a6;
}
.post-references a { color: #007a6e; }

/* ── BLOG HERO ── */
.blog-hero {
  background: #f0faf9;
  padding: 22px 0 20px;
  position: relative;
  overflow: hidden;
}
.blog-hero__shape-1 {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(0,184,166,0.08);
  pointer-events: none;
}
.blog-hero__shape-2 {
  position: absolute;
  bottom: -60px;
  right: 200px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(0,184,166,0.06);
  pointer-events: none;
}
.blog-hero__shape-3 {
  position: absolute;
  top: 40px;
  right: 260px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0,184,166,0.07);
  pointer-events: none;
}
.blog-hero__inner {
  max-width: 560px;
  position: relative;
  z-index: 1;
}
.blog-hero__kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #007a6e;
  margin-bottom: 12px;
}
.blog-hero__inner h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #1a1a1a;
  margin: 0;
}
.blog-hero__inner h1 em {
  font-style: normal;
  color: #007a6e;
  display: block;
}
.blog-hero__rule {
  width: 40px;
  height: 3px;
  background: #00b8a6;
  border-radius: 2px;
  margin: 16px 0;
}
.blog-hero__inner p {
  font-size: 0.9375rem;
  color: #4a4a4a;
  line-height: 1.7;
  margin: 0;
  max-width: 440px;
}
@media (max-width: 768px) {
  .blog-hero { padding: 24px 0 20px; }
    .blog-hero__shape-1 { width: 200px; height: 200px; right: -40px; }
  .blog-hero__shape-2 { display: none; }
  .blog-hero__shape-3 { display: none; }
}

/* ── BLOG INDEX ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.blog-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e8e6e0;
  overflow: hidden;
  transition: box-shadow 0.15s, transform 0.15s;
}
.blog-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.blog-card--hidden { display: none; }
.blog-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.blog-card__body { padding: 1.5rem; }
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.blog-card__date {
  font-size: 0.8125rem;
  color: #767676;
}
.blog-card__tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: #007a6e;
  background: #f0faf9;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.blog-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.blog-card__excerpt {
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}
.blog-pagination {
  text-align: center;
  margin-top: 1rem;
}
.blog-page-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.blog-page-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #e8e6e0;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  color: #1a1a1a;
}
.blog-page-nav__link--active {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
}
.blog-signup-form__name {
  max-width: 480px;
  margin: 1.5rem auto 0;
}
.blog-signup-form__name input[type="text"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #d4d0c8;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  box-sizing: border-box;
}
.blog-signup-form__name input[type="text"]:focus {
  outline: none;
  border-color: #007a6e;
  box-shadow: 0 0 0 3px rgba(0,184,166,0.15);
}
.blog-signup-form__row {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0.5rem auto 0.75rem;
}
.blog-signup-form__row input[type="email"] {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1.5px solid #d4d0c8;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}
.blog-signup-form__row input[type="email"]:focus {
  outline: none;
  border-color: #007a6e;
  box-shadow: 0 0 0 3px rgba(0,184,166,0.15);
}
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-signup-form__row { flex-direction: column; }
}

/* ── SECTION HEADING VARIANT ── */
.h2--section {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-form-wrap {
  max-width: 100%;
}
.contact-form-wrap h2,
.contact-info-wrap h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  margin-bottom: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.contact-info-wrap {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e8e6e0;
  padding: 2.5rem;
}
.contact-info__intro {
  color: #555;
  font-size: 0.9375rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.contact-info__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007a6e;
  border: 1px solid #d0ede9;
}
.contact-info__label {
  font-weight: 600;
  font-size: 0.875rem;
  color: #1a1a1a;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-success {
  background: #f0faf9;
  border: 1.5px solid #00b8a6;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  color: #1a1a1a;
  font-size: 1rem;
  line-height: 1.6;
}
.form-error {
  background: #fff5f5;
  border: 1.5px solid #e74c3c;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  color: #1a1a1a;
  font-size: 1rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── ABOUT PAGE ── */
.about__signature {
  margin-top: 2rem;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 1.0625rem;
  line-height: 1.6;
}
.about__signature span {
  font-weight: 400;
  color: #555;
  font-size: 0.9375rem;
}

/* ── RESPONSIVE HELPERS ── */
@media (max-width: 768px) {
  .section { padding: 3rem 0; }
  .hero { padding: 2rem 0; }
  .cta-band { padding: 2rem 1.5rem; }
  .form-wrap { padding: 1.75rem; }
  h1 { font-size: 1.125rem; }
  h2 { font-size: 1rem; }
  h3 { font-size: 0.9375rem; }
  .hero__title { font-size: 1.125rem; line-height: 1.3; }
  .hero__subtitle { font-size: 0.875rem; margin-bottom: 1.5rem; }
  .section-header { margin-bottom: 1.5rem; }
  .section-header h2 { font-size: 1rem; }
  .section-header p { font-size: 0.875rem; }
}

/* ── PRICING PAGE ── */
.pricing-card {
  max-width: 620px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  border: 2px solid #00b8a6;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,184,166,0.08);
}
.pricing-card__header h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.pricing-card__header p { color: #555; font-size: 1rem; margin-bottom: 1.5rem; }
.pricing-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.pricing-card__amount { font-size: 4rem; font-weight: 700; color: #1a1a1a; font-family: var(--font-heading); line-height: 1; }
.pricing-card__period { font-size: 1rem; color: #555; }
.pricing-card__note { font-size: 1.0625rem; color: #555; max-width: 480px; margin: 0 auto 1.25rem; line-height: 1.7; }
.pricing-card__vat { font-size: 0.875rem; color: #595959; margin: 0 auto 1.25rem; }
.pricing-card__charity { font-size: 1.0625rem; color: #555; margin: 0 auto 2rem; }
.pricing-card__charity a { color: #007a6e; font-weight: 600; text-decoration: none; }
.pricing-card__charity a:hover { text-decoration: underline; }

/* ── ENTERPRISE CARD ── */
.enterprise-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8e6e0;
  padding: 2.5rem 3rem;
  max-width: 780px;
  margin: 0 auto;
}
.enterprise-card__icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: #f0faf9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.enterprise-card__icon svg { width: 32px; height: 32px; color: #007a6e; }
.enterprise-card__content h2 { font-size: 1.375rem; margin-bottom: 0.5rem; }
.enterprise-card__content p { color: #555; font-size: 1.0625rem; margin-bottom: 1.25rem; line-height: 1.7; }
@media (max-width: 640px) {
  .pricing-card { padding: 2rem 1.5rem; }
  .pricing-card__amount { font-size: 3rem; }
  .enterprise-card { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
}

/* ── PRICING SPLIT ── */
.pricing-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}
.pricing-split__content p {
  font-size: 1.0625rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.pricing-split__content p:last-child { margin-bottom: 0; }
.pricing-split__graphic img { width: 100%; height: auto; }
@media (max-width: 768px) {
  .pricing-split { grid-template-columns: 1fr; gap: 2rem; }
  .pricing-split__graphic { order: -1; }
}

/* ── LEGAL PAGE ── */
.legal-nav {
  background: #fff;
  border: 1px solid #e8e6e0;
  border-radius: 12px;
  padding: 1.75rem 2rem;
  margin-bottom: 3rem;
  position: sticky;
  top: 80px;
}
.legal-nav h3 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888;
  margin-bottom: 1rem;
}
.legal-nav ul { list-style: none; }
.legal-nav ul li { margin-bottom: 0.5rem; }
.legal-nav ul a {
  color: #444;
  text-decoration: none;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0;
  border-radius: 4px;
  transition: color 0.15s;
}
.legal-nav ul a:hover { color: #007a6e; }
.legal-nav ul a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00b8a6;
  flex-shrink: 0;
}
.legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
}
.legal-section {
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid #e8e6e0;
}
.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.legal-section h2 {
  font-size: 1.75rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  padding-top: 1rem;
}
.legal-section .updated {
  font-size: 0.8125rem;
  color: #888;
  margin-bottom: 1.5rem;
}
.legal-section h3 {
  font-size: 1.0625rem;
  color: #1a1a1a;
  margin: 1.75rem 0 0.75rem;
}
.legal-section p {
  color: #444;
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.legal-section ul, .legal-section ol {
  margin: 0.75rem 0 1rem 1.5rem;
}
.legal-section li {
  color: #444;
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 0.4rem;
}
.legal-section a { color: #007a6e; }
.legal-section strong { color: #1a1a1a; }
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.9rem;
}
.legal-table th {
  background: #f0faf9;
  color: #1a1a1a;
  font-weight: 700;
  padding: 0.75rem 1rem;
  text-align: left;
  border: 1px solid #e8e6e0;
}
.legal-table td {
  padding: 0.75rem 1rem;
  border: 1px solid #e8e6e0;
  color: #444;
  vertical-align: top;
}
.legal-table tr:nth-child(even) td { background: #faf9f6; }
.notice-box {
  background: #e6f7f5;
  border-left: 4px solid #00b8a6;
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.notice-box p { margin: 0; font-size: 0.9375rem; color: #1a1a1a; }
@media (max-width: 768px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { position: static; }
}

/* ── POST BACK LINK ── */
.post-back-link {
  padding: 2rem 0 0;
  border-top: 1px solid #e8e6e0;
  margin-top: 2rem;
}

/* ── PRICING PAGE REDESIGN ── */
.pricing-reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.pricing-reason {
  background: #fff;
  border: 1px solid #e8e6e0;
  border-radius: 12px;
  padding: 2rem;
}
.pricing-reason__icon {
  width: 52px;
  height: 52px;
  background: #f0faf9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.pricing-reason h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}
.pricing-reason p {
  font-size: 0.9375rem;
  color: #444;
  line-height: 1.75;
  margin: 0;
}
@media (max-width: 900px) {
  .pricing-reasons { grid-template-columns: 1fr; }
}

/* ── RESOURCES PAGE ── */
.resource-tools {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.resource-tool {
  background: #fff;
  border: 1px solid #e8e6e0;
  border-radius: 12px;
  padding: 2.5rem;
}
.resource-tool__icon {
  width: 56px;
  height: 56px;
  background: #f0faf9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.resource-tool h2 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.resource-tool p {
  color: #444;
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .resource-tools { grid-template-columns: 1fr; }
}

/* ── Consent checkbox (waitlist blog opt-in) ── */
.form-group--consent {
  background: #f7f7f5;
  border-radius: 8px;
  padding: 1.35rem 1.5rem;
}
.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.65;
  color: #444;
}
.form-checkbox-label input[type="checkbox"] {
  margin-top: 0.25rem;
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  padding: 0;
  border: 1.5px solid #d0cec8;
  border-radius: 4px;
  background: #faf9f6;
  appearance: auto;
}

/* ── Everything Included: icon-led category cards ── */
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.included-card {
  background: #fff;
  border: 1px solid #e8e6e0;
  border-radius: 12px;
  padding: 2rem;
}
.included-card__icon {
  width: 56px;
  height: 56px;
  background: #f0faf9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007a6e;
  margin-bottom: 1.25rem;
}
.included-card__icon svg {
  width: 26px;
  height: 26px;
}
.included-card h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #444;
}
.check-list li:last-child { margin-bottom: 0; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f0faf9;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23007a6e' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 11px;
}
@media (max-width: 1024px) {
  .included-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .included-grid { grid-template-columns: 1fr; }
}

/* ── Everything Included: three-badge summary row ── */
.included-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.0625rem;
  color: #555;
}
.included-badges span:not(.included-badges__divider) {
  background: #f0faf9;
  color: #007a6e;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}
.included-badges__divider {
  color: #c8c4ba;
}
@media (max-width: 640px) {
  .included-badges span:not(.included-badges__divider) { white-space: normal; }
  .included-badges__divider { display: none; }
}

/* ── RECORD STACK (Start Free Trial hero visual) ── */
.record-stack {
  max-width: 420px;
  margin: 3rem auto 0;
  position: relative;
  height: 210px;
}
.record-card {
  position: absolute;
  left: 50%;
  width: 100%;
  background: #fff;
  border: 1px solid #e8e6e0;
  border-radius: 12px;
  padding: 1.1rem 1.4rem;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.record-card:nth-child(1) { transform: translateX(-50%) translateY(0) scale(0.94); top: 0; opacity: 0.55; }
.record-card:nth-child(2) { transform: translateX(-50%) translateY(44px) scale(0.97); top: 0; opacity: 0.8; }
.record-card:nth-child(3) { transform: translateX(-50%) translateY(88px) scale(1); top: 0; z-index: 2; border-color: #00b8a6; }
.record-line { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.4rem; }
.record-label { font-weight: 700; font-size: 0.9rem; color: #1a1a1a; }
.record-date { font-size: 0.78rem; color: #595959; }
.record-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: #e6f7f5;
  color: #007a6e;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
}
@media (max-width: 640px) { .record-stack { height: 190px; } }

/* ── READINESS MOCK (Start Free Trial) ── */
.readiness-mock { background: #fff; border-radius: 16px; border: 1px solid #e8e6e0; padding: 2rem; }
.kq-row { display: flex; align-items: center; gap: 1rem; padding: 0.85rem 0; border-bottom: 1px solid #e8e6e0; }
.kq-row:last-child { border-bottom: none; }
.kq-name { font-weight: 700; width: 110px; flex-shrink: 0; font-size: 0.9375rem; color: #1a1a1a; }
.kq-bar-track { flex: 1; height: 10px; background: #f0faf9; border-radius: 999px; overflow: hidden; }
.kq-bar-fill { height: 100%; background: #00b8a6; border-radius: 999px; }
.kq-status { font-size: 0.8125rem; font-weight: 700; width: 100px; text-align: right; flex-shrink: 0; }
.kq-status--ok { color: #007a6e; }
.kq-status--due { color: #a6790a; }
@media (max-width: 640px) { .kq-name { width: 84px; font-size: 0.8125rem; } .kq-status { width: 80px; font-size: 0.75rem; } }

/* ── FAQ ACCORDION (Start Free Trial) ── */
.faq-item { border-bottom: 1px solid #e8e6e0; padding: 1.4rem 0; }
.faq-item summary {
  font-weight: 700;
  font-size: 1.0625rem;
  color: #1a1a1a;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: #00b8a6;
  font-weight: 400;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin-top: 0.85rem; color: #555; font-size: 0.9375rem; max-width: 640px; line-height: 1.7; }

/* ── DEVICE ACCESS ── */
.device-access { margin-bottom: 3rem; padding: 2rem 2.5rem; background: #f0faf9; border: 1px solid #c8ece9; border-radius: 16px; }
.device-access__intro { text-align: left; color: #444; margin-bottom: 2rem; font-size: 1rem; }
.device-access__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.device-access__item { text-align: center; }
.device-access__icon { width: 52px; height: 52px; background: #00b8a6; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; color: #fff; padding: 11px; }
.device-access__item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.75rem; color: #1a1a1a; }
.device-access__item p { font-size: 0.9375rem; color: #555; line-height: 1.7; margin: 0 0 0.5rem; text-align: left; }
.device-access__note { font-size: 0.875rem !important; color: #888 !important; font-style: italic; }
@media (max-width: 768px) {
  .device-access { padding: 1.5rem; }
  .device-access__grid { grid-template-columns: 1fr; }
}

/* ── PWA FEATURE SECTION ── */
.pwa-bullets { max-width: 680px; margin: 0 auto 3rem; }
.pwa-install { background: #fff; border: 1px solid #e8e6e0; border-radius: 16px; padding: 2rem 2.5rem; margin-top: 2.5rem; }
.pwa-install h3 { font-size: 1.125rem; margin-bottom: 1.5rem; color: #1a1a1a; }
.pwa-install__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.pwa-install__item h4 { font-size: 0.9375rem; font-weight: 700; color: #1a1a1a; margin-bottom: 0.5rem; }
.pwa-install__item p { font-size: 0.9375rem; color: #555; line-height: 1.7; margin: 0 0 0.5rem; }
.pwa-install__note { font-size: 0.875rem; color: #888; font-style: italic; margin-top: 0.5rem; }
.pwa-closing { text-align: center; margin-top: 2.5rem; font-size: 1.0625rem; color: #444; font-style: italic; }
@media (max-width: 640px) {
  .pwa-install__grid { grid-template-columns: 1fr; }
  .pwa-install { padding: 1.5rem; }
}

/* ── FOUNDER CREDIBILITY BLOCK (Start Free Trial) ── */
.founder-block { text-align: center; max-width: 640px; margin: 0 auto; }
.founder-block h2 { margin-bottom: 0.75rem; }
.founder-block p { color: #555; font-size: 1.0625rem; line-height: 1.7; }
