/* ============================================================
   LIVERDECODED — Services Page Stylesheet
   Palette: Forest Green / Warm Amber / Off-White
   Fonts: Playfair Display (headings) + DM Sans (body) + JetBrains Mono (code)
   ============================================================ */

/* ── Design Tokens (identical to homepage) ─────────────────── */
:root {
  --green:         #1a4a35;
  --green-mid:     #2d6a4f;
  --green-light:   #e8f3ee;
  --green-faint:   #f2f8f5;
  --green-glow:    #74c69d;

  --amber:         #b8762a;
  --amber-dark:    #9a6020;
  --amber-light:   #fdf0dc;

  --teal:          #1d5f6e;
  --plum:          #4a2d6b;
  --slate:         #2b4363;

  --text:          #2d3748;
  --text-muted:    #64748b;
  --text-faint:    #94a3b8;

  --bg:            #faf8f3;
  --bg-card:       #ffffff;
  --border:        #e5e0d8;
  --border-light:  #ede9e1;

  --radius-sm:     8px;
  --radius:        12px;
  --radius-lg:     18px;

  --shadow-sm:     0 1px 4px rgba(0,0,0,0.06);
  --shadow:        0 3px 14px rgba(0,0,0,0.08);
  --shadow-lg:     0 8px 32px rgba(0,0,0,0.12);

  --max-w:         1120px;
  --nav-h:         60px;
}

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

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.22;
  letter-spacing: -0.2px;
}

a   { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Typography Helpers ────────────────────────────────────── */
.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--green);
  margin-bottom: 10px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 600px;
}

/* ── Buttons (identical to homepage) ──────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  text-decoration: none;
  border: none;
  white-space: nowrap;
}

.btn-sm { padding: 9px 18px; font-size: 13px; }

.btn-primary {
  background: var(--amber);
  color: #fff;
}
.btn-primary:hover {
  background: var(--amber-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184,118,42,0.35);
}

.btn-green {
  background: var(--green);
  color: #fff;
}
.btn-green:hover {
  background: var(--green-mid);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-outline:hover { background: var(--green-light); }

.btn-ghost {
  background: rgba(255,255,255,0.11);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.24);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); }

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ── Badge ─────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
}
.badge-green { background: var(--green-light); color: var(--green); }
.badge-amber { background: var(--amber-light); color: var(--amber-dark); }


/* ============================================================
   NAV (identical to homepage)
   ============================================================ */

/* ============================================================
   HERO (services variant — single-column, no right card)
   ============================================================ */
.hero {
  background: linear-gradient(135deg, #12352a 0%, var(--green) 45%, var(--teal) 100%);
  padding: 80px 24px 64px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 90% 20%, rgba(184,118,42,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 8%  80%, rgba(116,198,157,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.023) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.023) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero__content {
  max-width: 680px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.15);
  color: #9de0bc;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.4px;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--green-glow);
  border-radius: 50%;
  display: block;
}

.hero__h1 {
  font-size: clamp(32px, 5.2vw, 54px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.14;
}
.hero__h1 em {
  font-style: italic;
  color: var(--green-glow);
}

.hero__desc {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  line-height: 1.78;
  margin-bottom: 32px;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero__proof {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero__stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--green-glow);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat span {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.2px;
}


/* ============================================================
   SERVICE NAVIGATION STRIP
   ============================================================ */
.service-nav-strip {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
}

.service-nav-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.service-nav-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 7px 16px;
  transition: all 0.18s;
}
.service-nav-chip:hover {
  background: var(--green-light);
  color: var(--green);
  border-color: #b7ddc8;
}
.service-nav-chip--active {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.service-nav-chip--active:hover {
  background: var(--green-mid);
  color: #fff;
  border-color: var(--green-mid);
}

.service-nav-chip__icon {
  font-size: 14px;
}


/* ============================================================
   API SECTION
   ============================================================ */
.api-section {
  padding: 84px 24px;
  background: var(--bg);
}

.api-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.api-section__header {
  margin-bottom: 48px;
}

.api-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 48px;
}

/* Individual API card */
.api-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.api-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.api-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.api-card__icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: grid;
  place-items: center;
}
.api-card__icon-wrap--green { background: var(--green-light); color: var(--green); }
.api-card__icon-wrap--amber { background: var(--amber-light); color: var(--amber-dark); }
.api-card__icon-wrap--teal  { background: #e3f2f5; color: var(--teal); }

.api-card__badge {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-light);
  padding: 4px 10px;
  border-radius: 50px;
}

.api-card h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 10px;
  line-height: 1.3;
}

.api-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.api-card__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.api-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.api-card__check {
  width: 18px;
  height: 18px;
  background: var(--green-light);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Code blocks */
.api-card__code,
.api-card__response {
  background: #1a1e2e;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 12px;
}
.api-card__code:last-child,
.api-card__response:last-child {
  margin-bottom: 0;
}

.api-card__code-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.api-card__method {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  border-radius: 4px;
}
.api-card__method--post { background: #2d6a4f; color: #9de0bc; }
.api-card__method--get  { background: #1d5f6e; color: #9dd6e0; }

.api-card__resp-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(116,198,157,0.18);
  color: var(--green-glow);
}

.api-card__code code,
.api-card__response code {
  font-family: 'JetBrains Mono', monospace;
}

.api-card__code pre,
.api-card__response pre {
  padding: 14px;
  font-size: 11.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  overflow-x: auto;
  margin: 0;
}

/* CTA bar */
.api-section__cta-bar {
  background: linear-gradient(135deg, var(--green) 0%, var(--teal) 100%);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.api-section__cta-text h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 6px;
}
.api-section__cta-text p {
  font-size: 14.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  max-width: 480px;
}


/* ============================================================
   PERSONALIZED TESTING SECTION
   ============================================================ */
.testing-section {
  background: linear-gradient(135deg, var(--green) 0%, #1d5060 100%);
  padding: 84px 24px;
  position: relative;
  overflow: hidden;
}
.testing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 70% at 85% 40%, rgba(184,118,42,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.testing-section__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.testing-section__left .section-label { color: #9de0bc; }

.testing-section__left h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  color: #fff;
  margin-bottom: 14px;
}

.testing-section__left p {
  font-size: 15.5px;
  color: rgba(255,255,255,0.76);
  line-height: 1.78;
  margin-bottom: 20px;
}

.testing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.testing-features li {
  font-size: 14px;
  color: rgba(255,255,255,0.80);
  line-height: 1.6;
  padding-left: 28px;
  position: relative;
}
.testing-features li::before {
  content: '🧬';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
}
.testing-features li strong {
  color: #fff;
}

.testing-section__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.testing-section__actions .btn-outline {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.3);
}
.testing-section__actions .btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

/* Right: process card */
.testing-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.testing-card__label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 24px;
}

.testing-steps {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 24px;
}

.testing-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.testing-step__num {
  width: 32px;
  height: 32px;
  background: rgba(116,198,157,0.18);
  border: 1px solid rgba(116,198,157,0.32);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--green-glow);
  flex-shrink: 0;
}

.testing-step__content strong {
  display: block;
  font-size: 14px;
  color: #fff;
  margin-bottom: 4px;
}
.testing-step__content span {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

.testing-card__note {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}


/* ============================================================
   REPORT EXPLAINER SECTION
   ============================================================ */
.explainer-section {
  padding: 84px 24px;
  background: var(--bg);
}

.explainer-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.explainer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.explainer-feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.explainer-feature:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.explainer-feature__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 18px;
  margin-bottom: 16px;
}

.explainer-feature h4 {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 8px;
}

.explainer-feature p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.62;
}

.explainer-cta {
  text-align: center;
  margin-top: 12px;
}
.explainer-cta__note {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-faint);
  font-style: italic;
}


/* ============================================================
   BOOKS / GUIDES SECTION
   ============================================================ */
.books-section {
  padding: 84px 24px;
  background: var(--green-faint);
  border-top: 1px solid #d8ebe0;
  border-bottom: 1px solid #d8ebe0;
}

.books-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.books-section__header {
  margin-bottom: 40px;
}

.books-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 22px;
}

.books-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.books-info-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.books-info-card--highlight {
  border-color: #b7ddc8;
  background: linear-gradient(135deg, #fff 0%, var(--green-faint) 100%);
}

.books-info-card__label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: var(--amber);
}

.books-info-card h3 {
  font-size: 18px;
  color: var(--green);
  line-height: 1.3;
}

.books-info-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.62;
  flex: 1;
}

.books-info-card__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

/* Bundle card (identical to homepage) */
.bundle-card {
  background: var(--amber-light);
  border: 1.5px solid #e8c080;
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.bundle-card__text h3 {
  font-size: 22px;
  color: var(--green);
  margin-bottom: 7px;
}
.bundle-card__text p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 560px;
}

.bundle-card__pricing {
  text-align: right;
  flex-shrink: 0;
}
.bundle-card__was {
  font-size: 14px;
  color: var(--text-faint);
  text-decoration: line-through;
  margin-bottom: 2px;
}
.bundle-card__price {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 12px;
}


/* ============================================================
   SECOND OPINION SECTION
   ============================================================ */
.opinion-section {
  padding: 84px 24px;
  background: var(--bg);
}

.opinion-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.opinion-section__left .section-label { color: var(--amber); }

.opinion-section__left h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--green);
  margin-bottom: 14px;
}

.opinion-section__left > p {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: 28px;
}

.opinion-who {
  margin-bottom: 28px;
}

.opinion-who h4 {
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 12px;
}

.opinion-who ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.opinion-who ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}
.opinion-who ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green-light);
  border: 1.5px solid var(--green-mid);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.opinion-pricing {
  background: var(--green-faint);
  border: 1px solid #d8ebe0;
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.opinion-pricing__amount {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
  flex-shrink: 0;
}
.opinion-pricing span {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Right: timeline process */
.opinion-process {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.opinion-process__label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 28px;
}

.opinion-step {
  display: flex;
  gap: 18px;
  margin-bottom: 6px;
}
.opinion-step:last-child { margin-bottom: 0; }

.opinion-step__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.opinion-step__dot {
  width: 14px;
  height: 14px;
  background: var(--green-light);
  border: 2.5px solid var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

.opinion-step__line {
  width: 2px;
  flex: 1;
  min-height: 40px;
  background: var(--border);
  margin: 4px 0;
}

.opinion-step__content {
  padding-bottom: 24px;
}
.opinion-step:last-child .opinion-step__content {
  padding-bottom: 0;
}

.opinion-step__content strong {
  display: block;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.opinion-step__content p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}


/* ============================================================
   TRANSPARENCY SECTION
   ============================================================ */
.transparency {
  padding: 84px 24px;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.transparency__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.transparency__inner .section-sub {
  margin-bottom: 40px;
}

.transparency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.transparency-card {
  border-radius: var(--radius-lg);
  padding: 28px;
}

.transparency-card h4 {
  font-size: 16px;
  margin-bottom: 18px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
}

.transparency-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.transparency-card ul li {
  font-size: 14px;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.transparency-card--do {
  background: var(--green-faint);
  border: 1px solid #d8ebe0;
}
.transparency-card--do h4 {
  color: var(--green);
}
.transparency-card--do ul li {
  color: var(--text);
}
.transparency-card--do ul li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: var(--green-light);
  border: 1px solid #b7ddc8;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
}

.transparency-card--dont {
  background: #fef8f3;
  border: 1px solid #f0e0ce;
}
.transparency-card--dont h4 {
  color: #8b4513;
}
.transparency-card--dont ul li {
  color: var(--text-muted);
}
.transparency-card--dont ul li::before {
  content: '✕';
  width: 20px;
  height: 20px;
  background: #fef0e3;
  border: 1px solid #f0d4b4;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  color: #b8762a;
  flex-shrink: 0;
  margin-top: 1px;
}


/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  padding: 84px 24px;
  background: var(--green-faint);
  border-top: 1px solid #d8ebe0;
}

.contact-section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-section__info .section-sub {
  margin-bottom: 32px;
}

.contact-email {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 32px;
}

.contact-email__icon {
  width: 42px;
  height: 42px;
  background: var(--green-light);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--green);
  flex-shrink: 0;
}

.contact-email__label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 2px;
}

.contact-email__addr {
  font-size: 16px;
  font-weight: 600;
  color: var(--green);
  transition: color 0.15s;
}
.contact-email__addr:hover {
  color: var(--amber);
}

.contact-services-hint h4 {
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 12px;
}

.contact-services-hint ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-services-hint ul li {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-services-hint ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green-light);
  border: 1.5px solid var(--green-mid);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Contact form card */
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
}

.contact-form-card h3 {
  font-size: 20px;
  color: var(--green);
  margin-bottom: 24px;
}

.contact-form-group {
  margin-bottom: 18px;
}

.contact-form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.contact-optional {
  font-weight: 400;
  color: var(--text-faint);
  font-size: 12px;
}

.contact-required {
  color: #c0392b;
  font-weight: 700;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.18s, box-shadow 0.18s;
  outline: none;
}
.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
  color: var(--text-faint);
}
.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
}

.contact-form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2394a3b8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

.contact-form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-submit {
  margin-top: 6px;
}

.contact-form-note {
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--text-faint);
  text-align: center;
}

/* Loader */
.contact-loader {
  display: none;
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.92);
  border-radius: var(--radius-lg);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  z-index: 2;
}
.contact-loader.active {
  display: flex;
}

.contact-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: contactSpin 0.7s linear infinite;
}
@keyframes contactSpin {
  to { transform: rotate(360deg); }
}

.contact-loader p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Success */
.contact-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 40px 20px;
}
.contact-success.active {
  display: flex;
}
.contact-success svg {
  color: var(--green);
}
.contact-success h3 {
  font-size: 22px;
  color: var(--green);
  margin-bottom: 0;
}
.contact-success p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ============================================================
   NEWSLETTER (identical to homepage)
   ============================================================ */
.newsletter {
  background: var(--surface, #f7f4ef);
  padding: 72px 24px;
  text-align: center;
}
.newsletter__inner {
  max-width: 560px;
  margin: 0 auto;
}
.newsletter__inner h2 {
  margin: 10px 0 14px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}
.newsletter__inner p {
  color: var(--text-muted, #666);
  margin-bottom: 28px;
  font-size: 1rem;
  line-height: 1.65;
}
.newsletter__form {
  display: flex;
  justify-content: center;
}
.newsletter__form > div,
.newsletter__form form {
  width: 100% !important;
  max-width: 480px !important;
}


/* ============================================================
   DISCLAIMER (identical to homepage)
   ============================================================ */
.disclaimer {
  background: var(--amber-light);
  border-top: 1px solid #e8c080;
  padding: 16px 24px;
}

.disclaimer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #5a3a0a;
  line-height: 1.6;
}


/* ============================================================
   FOOTER (identical to homepage)
   ============================================================ */
footer {
  background: #0f2d1f;
  color: rgba(255,255,255,0.62);
  padding: 56px 24px 32px;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand p {
  font-size: 13.5px;
  line-height: 1.72;
  margin: 12px 0 18px;
}

.footer__socials {
  display: flex;
  gap: 10px;
}
.footer__social {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: background 0.18s, color 0.18s;
}
.footer__social:hover { background: rgba(255,255,255,0.14); color: #fff; }

.footer__col h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 16px;
}

.footer__col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col ul li a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.62);
  transition: color 0.15s;
}
.footer__col ul li a:hover { color: var(--green-glow); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
}


/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up              { animation: fadeUp 0.5s ease both; }
.fade-up--d1          { animation-delay: 0.08s; }
.fade-up--d2          { animation-delay: 0.16s; }
.fade-up--d3          { animation-delay: 0.24s; }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .api-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .testing-section__inner { grid-template-columns: 1fr; gap: 40px; }
  .opinion-section__inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-section__inner { grid-template-columns: 1fr; gap: 40px; }
  .transparency-grid      { grid-template-columns: 1fr; }
  .books-row              { grid-template-columns: 1fr; }
  .explainer-grid         { grid-template-columns: repeat(2, 1fr); }
  .footer__top            { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav__links a:not(.nav__cta) { display: none; }
  .nav__mobile-toggle    { display: block; }
  .explainer-grid        { grid-template-columns: 1fr; }
  .hero__actions         { flex-direction: column; }
  .hero__actions .btn    { justify-content: center; }
  .hero__proof           { gap: 20px; }
  .service-nav-strip__inner { gap: 8px; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
  .service-nav-chip      { flex-shrink: 0; }
  .bundle-card           { flex-direction: column; }
  .bundle-card__pricing  { text-align: left; }
  .opinion-pricing       { flex-direction: column; align-items: flex-start; }
  .api-section__cta-bar  { flex-direction: column; align-items: flex-start; }
  .footer__top           { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom        { flex-direction: column; text-align: center; }
}
