/* ============================================================
   GETSETTLE UK — "ELEVATE" PREMIUM LAYER
   Site-wide design system + motion hero + scroll storytelling
   Theme: Bright, hopeful journey · Teal → Gold
   Loads LAST so it refines every page. Accessible by default.
   ============================================================ */

/* ----------  1. EXTENDED TOKENS  ---------- */
:root {
  /* Brand gradients */
  --grad-brand: linear-gradient(120deg, #1E7F7F 0%, #2BA39A 45%, #D4AF37 100%);
  /* Accessible teal-only gradient for white text (WCAG AA safe) */
  --grad-teal: linear-gradient(120deg, #1E7F7F 0%, #176B6B 55%, #0E4F4F 100%);
  --grad-brand-soft: linear-gradient(120deg, #E0F3F3 0%, #F4FBF9 55%, #FBF3DA 100%);
  --grad-gold: linear-gradient(120deg, #D4AF37 0%, #F4D06A 100%);
  --grad-sky: linear-gradient(160deg, #0B3D3D 0%, #155C5C 35%, #1E7F7F 60%, #C9982E 100%);

  /* Aurora mesh (hero / section glows) */
  --mesh-teal: rgba(43, 163, 154, 0.45);
  --mesh-gold: rgba(212, 175, 55, 0.40);
  --mesh-deep: rgba(11, 61, 61, 0.55);

  /* Glass surfaces */
  --glass-bg: rgba(255, 255, 255, 0.62);
  --glass-border: rgba(255, 255, 255, 0.55);
  --glass-blur: saturate(180%) blur(18px);
  --glass-shadow: 0 12px 40px rgba(11, 61, 61, 0.14), 0 2px 8px rgba(11, 61, 61, 0.08);

  /* Elevated shadows */
  --shadow-float: 0 22px 60px -18px rgba(15, 80, 80, 0.35);
  --shadow-glow-teal: 0 0 0 1px rgba(30,127,127,0.12), 0 18px 50px -16px rgba(30,127,127,0.45);
  --shadow-glow-gold: 0 0 0 1px rgba(212,175,55,0.18), 0 18px 50px -16px rgba(212,175,55,0.5);

  /* Fluid type scale */
  --fs-hero: clamp(2.6rem, 6.2vw, 5rem);
  --fs-h2: clamp(1.9rem, 3.6vw, 3rem);
  --fs-h3: clamp(1.2rem, 1.8vw, 1.5rem);
  --fs-lead: clamp(1.05rem, 1.7vw, 1.4rem);

  /* Motion */
  --ease-out-soft: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --maxw: 1200px;
  scroll-behavior: smooth;
}

body.dark-mode {
  --glass-bg: rgba(20, 26, 26, 0.55);
  --glass-border: rgba(255, 255, 255, 0.10);
  --glass-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  --grad-brand-soft: linear-gradient(120deg, #0c2222 0%, #0a1818 55%, #1a1505 100%);
  --mesh-teal: rgba(43, 163, 154, 0.30);
  --mesh-gold: rgba(212, 175, 55, 0.28);
}

html { scroll-behavior: smooth; }

/* Better default rendering */
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ----------  2. SCROLL PROGRESS BAR  ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 4px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: var(--grad-gold);
  z-index: 2000;
  box-shadow: 0 1px 8px rgba(212, 175, 55, 0.6);
  will-change: transform;
}

/* ----------  3. GLASS NAVBAR REFINEMENT  ---------- */
.site-header {
  background: linear-gradient(135deg, rgba(21, 92, 92, 0.92) 0%, rgba(30, 127, 127, 0.9) 55%, rgba(38, 130, 120, 0.9) 100%) !important;
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: box-shadow .35s var(--ease-out-soft), background .35s ease, padding .35s ease;
}
.site-header.scrolled {
  box-shadow: 0 8px 30px rgba(11, 61, 61, 0.28) !important;
}
.brand-link img { transition: transform .5s var(--ease-spring); }
.brand-link:hover img { transform: rotate(-6deg) scale(1.06); }

/* ----------  4. PREMIUM BUTTONS  ---------- */
.btn {
  position: relative;
  border-radius: 999px !important;
  letter-spacing: .2px;
  transition: transform .25s var(--ease-spring), box-shadow .3s var(--ease-out-soft), background .3s ease !important;
  overflow: hidden;
  isolation: isolate;
}
.btn.primary {
  background: var(--grad-teal) !important;
  background-size: 160% 160% !important;
  border: none !important;
  color: #fff !important;
  box-shadow: var(--shadow-glow-teal);
}
.btn.primary:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 22px 48px -14px rgba(30,127,127,0.6) !important;
  background-position: 100% 50% !important;
}
.btn.premium, .btn.gold {
  background: var(--grad-gold) !important;
  color: #1A1A1A !important;
  border: none !important;
  box-shadow: var(--shadow-glow-gold);
}
.btn.premium:hover, .btn.gold:hover { transform: translateY(-3px) !important; }
/* Shine sweep */
.btn::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease-out-soft);
  z-index: -1;
}
.btn:hover::after { transform: translateX(120%); }
.btn.large { padding: 1rem 2.2rem !important; font-size: 1.08rem !important; }

/* ----------  5. SCROLL-REVEAL SYSTEM  ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .7s var(--ease-out-soft), transform .7s var(--ease-out-soft);
  will-change: opacity, transform;
}
[data-reveal="left"]  { transform: translateX(-40px); }
[data-reveal="right"] { transform: translateX(40px); }
[data-reveal="zoom"]  { transform: scale(.92); }
[data-reveal].in-view { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }
[data-reveal-delay="5"] { transition-delay: .40s; }

/* ----------  6. HERO (HOMEPAGE)  ---------- */
.hero.hero--cinematic {
  min-height: clamp(620px, 92vh, 920px);
  padding: 0;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--grad-sky);
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: -3;
  overflow: hidden;
}
.hero__video, .hero__canvas, .hero__poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__poster { z-index: -3; }
.hero__canvas { z-index: -2; opacity: .9; }
.hero__video {
  z-index: -2;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__video.is-ready { opacity: 1; }
/* readability scrim */
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(120% 90% at 50% 18%, rgba(6, 40, 40, 0.10) 0%, rgba(6, 40, 40, 0.55) 70%, rgba(5, 30, 30, 0.82) 100%),
    linear-gradient(180deg, rgba(6,40,40,.25) 0%, rgba(6,40,40,.15) 40%, rgba(5,28,28,.6) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 960px;
  padding: 7rem 1.25rem 5rem;
  margin: 0 auto;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .5rem 1.1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #fff;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .4px;
  margin-bottom: 1.6rem;
}
.hero__eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #6EE7B7;
  box-shadow: 0 0 0 0 rgba(110,231,183,.7);
  animation: pulseDot 2.2s infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(110,231,183,.7); }
  70% { box-shadow: 0 0 0 10px rgba(110,231,183,0); }
  100% { box-shadow: 0 0 0 0 rgba(110,231,183,0); }
}
.hero.hero--cinematic h1 {
  font-size: var(--fs-hero);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 1.3rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
  -webkit-text-fill-color: #fff;
}
.hero.hero--cinematic h1 .grad {
  background: linear-gradient(100deg, #8FE3D6 0%, #FCE9B4 55%, #F4D06A 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: gradient-shift 7s ease infinite;
}
.hero.hero--cinematic p.hero__lead {
  font-size: var(--fs-lead);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  max-width: 680px;
  margin: 0 auto 2.4rem;
  font-weight: 500;
  text-shadow: 0 2px 14px rgba(0,0,0,.3);
}
.hero__cta {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero.hero--cinematic .btn.secondary {
  background: rgba(255,255,255,0.10) !important;
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,0.55) !important;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.hero.hero--cinematic .btn.secondary:hover {
  background: rgba(255,255,255,0.2) !important;
}

/* Hero trust strip */
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 1.25rem 2.2rem;
  justify-content: center; align-items: center;
  color: rgba(255,255,255,.85);
  font-size: .9rem; font-weight: 500;
}
.hero__trust span { display: inline-flex; align-items: center; gap: .5rem; }

/* Scroll cue */
.hero__cue {
  position: absolute; left: 50%; bottom: 1.6rem;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.8);
  font-size: .72rem; letter-spacing: 2px; text-transform: uppercase;
}
.hero__cue .mouse {
  width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.6);
  border-radius: 14px; position: relative;
}
.hero__cue .mouse::after {
  content: ""; position: absolute; left: 50%; top: 7px;
  width: 4px; height: 7px; border-radius: 2px; background: #fff;
  transform: translateX(-50%);
  animation: cueScroll 1.8s infinite;
}
@keyframes cueScroll {
  0% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translate(-50%, 12px); }
  100% { opacity: 0; }
}

/* ----------  7. STAT COUNTERS  ---------- */
.impact-band {
  position: relative;
  margin-top: -3.5rem;
  z-index: 5;
}
.impact-band .impact-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 2.2rem clamp(1.2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: var(--glass-bg);
  -webkit-backdrop-filter: var(--glass-blur);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  box-shadow: var(--glass-shadow);
}
.stat { text-align: center; padding: .4rem; }
.stat dt, .stat .num {
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 900;
  letter-spacing: -.02em;
  background: var(--grad-teal);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat dd, .stat .label {
  margin: .5rem 0 0;
  color: var(--text-muted);
  font-weight: 600;
  font-size: .95rem;
}

/* ----------  8. SECTION HEADERS + EYEBROWS  ---------- */
.eyebrow {
  display: inline-block;
  padding: .35rem .9rem;
  border-radius: 999px;
  background: var(--accent-teal-soft-bg);
  color: var(--color-brand-teal-dark);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: .9rem;
}
body.dark-mode .eyebrow { background: rgba(43,163,154,.16); color: #6FD8CC; }
.section-head h2, .feature-header h2 {
  font-size: var(--fs-h2);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.12;
}
.section-head p { font-size: var(--fs-lead); color: var(--text-muted); }

/* Section ambient glow */
.section { position: relative; }
.section.alt::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(60% 60% at 85% 0%, var(--mesh-gold) 0%, transparent 60%),
              radial-gradient(50% 50% at 0% 100%, var(--mesh-teal) 0%, transparent 60%);
  opacity: .5;
}
.section .container { position: relative; z-index: 1; }

/* ----------  9. PREMIUM CARDS  ---------- */
.feature-card, .service-card, .link-category {
  border-radius: 18px !important;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  transition: transform .4s var(--ease-out-soft), box-shadow .4s var(--ease-out-soft), border-color .4s ease !important;
  position: relative;
  overflow: hidden;
}
.feature-card::before, .service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-brand);
  transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .45s var(--ease-out-soft);
}
.feature-card:hover, .service-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: var(--shadow-float) !important;
  border-color: rgba(43,163,154,.4);
}
.feature-card:hover::before, .service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
  border-color: rgba(212,175,55,.55);
  box-shadow: var(--shadow-glow-gold);
}
.feature-icon, .service-icon {
  display: inline-grid; place-items: center;
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--grad-brand-soft);
  font-size: 1.9rem;
  box-shadow: inset 0 0 0 1px rgba(43,163,154,.15);
  transition: transform .5s var(--ease-spring);
}
.feature-card:hover .feature-icon, .service-card:hover .service-icon {
  transform: rotate(-8deg) scale(1.08);
}

/* ----------  10. SCROLL STORYTELLING JOURNEY  ---------- */
.journey {
  position: relative;
  padding: 6rem 0;
  background:
    radial-gradient(60% 50% at 12% 8%, var(--mesh-teal) 0%, transparent 55%),
    radial-gradient(55% 50% at 90% 95%, var(--mesh-gold) 0%, transparent 55%),
    var(--bg-surface-muted);
  overflow: hidden;
}
.journey__head { text-align: center; max-width: 720px; margin: 0 auto 3.5rem; }
.journey__track {
  max-width: 940px;
  margin: 0 auto;
  position: relative;
}
.journey__line {
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 3px; transform: translateX(-50%);
  background: linear-gradient(180deg, var(--color-brand-teal), var(--color-brand-gold));
  border-radius: 3px;
  opacity: .25;
}
.journey__line-fill {
  position: absolute; left: 50%; top: 0;
  width: 3px; transform: translateX(-50%);
  height: 0;
  background: linear-gradient(180deg, var(--color-brand-teal), var(--color-brand-gold));
  border-radius: 3px;
  box-shadow: 0 0 16px rgba(43,163,154,.6);
  transition: height .2s linear;
}
.step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0;
}
.step__card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 18px;
  padding: 1.6rem 1.8rem;
  box-shadow: var(--shadow-soft);
}
.step:nth-child(even) .step__card { grid-column: 3; }
.step:nth-child(even) .step__spacer { grid-column: 1; }
.step__card h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.step__card p { color: var(--text-muted); line-height: 1.6; margin: 0; }
.step__node {
  grid-column: 2;
  justify-self: center;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.5rem; font-weight: 800;
  color: #fff;
  background: var(--grad-brand);
  box-shadow: 0 8px 24px rgba(30,127,127,.4), 0 0 0 6px var(--bg-surface-muted);
  z-index: 2;
  transition: transform .5s var(--ease-spring);
}
.step.in-view .step__node { transform: scale(1.12); }
.step__spacer { grid-column: 1; }
@media (max-width: 760px) {
  .journey__line, .journey__line-fill { left: 30px; }
  .step { grid-template-columns: 60px 1fr; gap: .9rem; }
  .step__node { grid-column: 1; }
  .step__card, .step:nth-child(even) .step__card { grid-column: 2; }
  .step__spacer { display: none; }
}

/* ----------  11. FOOTER POLISH  ---------- */
.site-footer {
  background: linear-gradient(160deg, #0B3D3D 0%, #0e2a2a 100%) !important;
  color: rgba(255,255,255,.82);
  position: relative;
}
.site-footer::before {
  content:""; position:absolute; top:0; left:0; right:0; height:1px;
  background: var(--grad-brand);
}
.site-footer h4 { color:#fff; }
.site-footer a { color: rgba(255,255,255,.78) !important; transition: color .25s ease; }
.site-footer a:hover { color: #F4D06A !important; }

/* ----------  12. ACCESSIBILITY + FOCUS  ---------- */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--color-brand-gold);
  outline-offset: 3px;
  border-radius: 6px;
}
.btn, .nav-link, .theme-toggle { min-height: 44px; }
.skip-to-main { background: var(--color-brand-teal-dark); }

/* ----------  13. REDUCED MOTION  ---------- */
@media (prefers-reduced-motion: reduce) {
  html, :root { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero__canvas, .hero__video { display: none !important; }
  .hero__cue { display: none; }
}

/* ----------  14. RESPONSIVE  ---------- */
@media (max-width: 760px) {
  .impact-band { margin-top: -2rem; }
  .impact-band .impact-inner { grid-template-columns: 1fr; gap: 1.6rem; padding: 1.8rem; }
  .hero__content { padding: 5.5rem 1.1rem 4.5rem; }
}

/* ============================================================
   15. PRO REFRESH (June 2026)
   Clean glass header · modern SVG icons · cinematic story.
   These rules load within elevate (site-wide) and override
   the earlier teal-header + emoji-icon styling.
   ============================================================ */

/* ----  15.1  HEADER — clean white glass, readable nav  ---- */
.site-header {
  background: rgba(255, 255, 255, 0.72) !important;
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(15, 80, 80, 0.08) !important;
}
body.dark-mode .site-header {
  background: rgba(12, 18, 18, 0.72) !important;
  border-bottom-color: rgba(255, 255, 255, 0.06) !important;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 6px 24px rgba(11, 61, 61, 0.10) !important;
}
body.dark-mode .site-header.scrolled { background: rgba(12, 18, 18, 0.92) !important; }
.main-nav { padding: 0.65rem 0; }

.nav-link {
  color: #0E4F4F !important;
  border: 1px solid transparent !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  border-radius: 999px !important;
  padding: 0.5rem 0.95rem !important;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease !important;
}
/* keep the nav on one row on desktop (premium-navbar.css narrowed it on some pages) */
#ev-header .nav-links { flex-wrap: nowrap; }
@media (max-width: 968px) { #ev-header .nav-links { flex-wrap: wrap; } }
body.dark-mode .nav-link { color: rgba(255, 255, 255, 0.82) !important; }
.nav-link:hover, .nav-link.active {
  color: #115C5C !important;
  background: rgba(30, 127, 127, 0.10) !important;
}
body.dark-mode .nav-link:hover, body.dark-mode .nav-link.active {
  color: #fff !important; background: rgba(255, 255, 255, 0.08) !important;
}

/* Theme toggle as a clean glass circle */
.theme-toggle {
  width: 42px; height: 42px;
  display: inline-grid !important; place-items: center;
  border-radius: 50% !important;
  background: rgba(30, 127, 127, 0.08) !important;
  border: 1px solid rgba(30, 127, 127, 0.16) !important;
  color: #115C5C !important;
  transition: background .2s ease, transform .2s ease;
}
.theme-toggle:hover { background: rgba(30, 127, 127, 0.16) !important; transform: translateY(-1px); }
.theme-toggle svg { width: 20px; height: 20px; }
body.dark-mode .theme-toggle {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.14) !important; color: #FCE9B4 !important;
}

/* ----  15.2  LOGO — SVG mark + wordmark  ---- */
.brand-link { gap: 10px !important; }
.brand-link:hover img, .brand-link:hover .brand-mark { transform: none !important; }
.brand-mark {
  width: 42px; height: 42px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 13px;
  background: var(--grad-teal);
  box-shadow: 0 6px 16px -5px rgba(30, 127, 127, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.brand-mark svg { width: 23px; height: 23px; }
.brand-word {
  font-size: 1.24rem; font-weight: 800; letter-spacing: -0.02em;
  color: #115C5C; line-height: 1; white-space: nowrap;
}
body.dark-mode .brand-word { color: #fff; }
.brand-word .brand-uk { color: #C8982E; margin-left: 4px; }
body.dark-mode .brand-word .brand-uk { color: #F4D06A; }

/* ----  15.3  PROFESSIONAL LINE ICONS (replace emoji)  ---- */
.feature-icon, .service-icon {
  font-size: 0 !important;
  width: 56px !important; height: 56px !important;
  border-radius: 15px !important;
  display: inline-grid !important; place-items: center !important;
  background: var(--grad-brand-soft) !important;
  box-shadow: inset 0 0 0 1px rgba(43, 163, 154, 0.16) !important;
}
.service-icon { margin: 0 auto 1.3rem !important; }
.feature-icon svg, .service-icon svg {
  width: 28px; height: 28px;
  stroke: #1E7F7F; stroke-width: 1.75; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}
body.dark-mode .feature-icon svg, body.dark-mode .service-icon svg { stroke: #5FD0C4; }
.feature-card:hover .feature-icon svg, .service-card:hover .service-icon svg { stroke: #0E4F4F; }

/* upload icon (document scanner) */
.upload-icon { font-size: 0 !important; }
.upload-icon svg { width: 46px; height: 46px; stroke: #1E7F7F; stroke-width: 1.6; fill: none; stroke-linecap: round; stroke-linejoin: round; }

/* ----  15.4  HERO CONTRAST FIX (gold→light, stronger scrim)  ---- */
.hero.hero--cinematic .hero__scrim {
  background:
    radial-gradient(120% 92% at 50% 30%, rgba(6, 40, 40, 0.32) 0%, rgba(6, 40, 40, 0.64) 64%, rgba(4, 24, 24, 0.9) 100%),
    linear-gradient(180deg, rgba(6, 40, 40, 0.4) 0%, rgba(6, 40, 40, 0.28) 42%, rgba(4, 22, 22, 0.74) 100%);
}
.hero.hero--cinematic h1 .grad {
  background: linear-gradient(100deg, #AEF2E6 0%, #FFFFFF 50%, #FFE6A3 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ----  15.5  CINEMATIC STORY (sticky scrollytelling)  ---- */
.story {
  position: relative;
  padding: 5rem 0 6rem;
  background:
    radial-gradient(60% 50% at 12% 8%, var(--mesh-teal) 0%, transparent 55%),
    radial-gradient(55% 50% at 90% 95%, var(--mesh-gold) 0%, transparent 55%),
    var(--bg-surface-muted);
  overflow: clip;
}
.story__head { text-align: center; max-width: 760px; margin: 0 auto 1.5rem; }
.story__grid {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start;
}

/* sticky device stage */
.story__stage { position: sticky; top: 12vh; height: 76vh; display: grid; place-items: center; }
.device {
  position: relative; width: min(320px, 80%); aspect-ratio: 320 / 660;
  background: #0A2727; border-radius: 42px; padding: 11px;
  box-shadow: 0 42px 80px -30px rgba(11, 61, 61, 0.6), 0 0 0 2px rgba(255, 255, 255, 0.06), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.device::before {
  content: ""; position: absolute; top: 11px; left: 50%; transform: translateX(-50%);
  width: 38%; height: 20px; background: #0A2727; border-radius: 0 0 14px 14px; z-index: 6;
}
.device__screen {
  position: relative; width: 100%; height: 100%; border-radius: 32px; overflow: hidden;
  background: linear-gradient(180deg, #F6FBFA 0%, #EAF4F2 100%);
}
body.dark-mode .device__screen { background: linear-gradient(180deg, #0f1a1a 0%, #0b1414 100%); }

.scene {
  position: absolute; inset: 0; padding: 30px 16px 18px;
  display: flex; flex-direction: column; gap: 10px;
  opacity: 0; transform: translateY(16px) scale(0.98);
  transition: opacity .55s var(--ease-out-soft), transform .55s var(--ease-out-soft);
  pointer-events: none;
}
.scene.is-active { opacity: 1; transform: none; }

/* in-screen UI primitives */
.app-bar { display: flex; align-items: center; gap: .5rem; font-weight: 800; font-size: .82rem; color: #115C5C; margin-bottom: 4px; }
body.dark-mode .app-bar { color: #cdeee9; }
.app-bar .logo-dot { width: 18px; height: 18px; border-radius: 6px; background: var(--grad-teal); flex-shrink: 0; }
.sc-h { font-size: .96rem; font-weight: 700; color: var(--text-main); margin: 2px 0 4px; }
.ui-card { background: #fff; border: 1px solid rgba(15, 80, 80, 0.09); border-radius: 13px; padding: 11px 13px; box-shadow: 0 6px 16px -10px rgba(11, 61, 61, 0.25); }
body.dark-mode .ui-card { background: #13201f; border-color: rgba(255, 255, 255, 0.07); }
.ui-label { font-size: .58rem; text-transform: uppercase; letter-spacing: .6px; color: var(--text-muted); font-weight: 700; display: block; margin-bottom: 3px; }
.ui-field { font-size: .82rem; font-weight: 700; color: var(--text-main); }
.sc-btn { margin-top: auto; text-align: center; padding: 11px; border-radius: 12px; background: var(--grad-teal); color: #fff; font-weight: 700; font-size: .85rem; box-shadow: 0 10px 22px -10px rgba(30, 127, 127, 0.7); }

.ui-task { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid rgba(15, 80, 80, 0.09); border-radius: 12px; padding: 10px 12px; }
body.dark-mode .ui-task { background: #13201f; border-color: rgba(255, 255, 255, 0.07); }
.ui-task b { font-size: .8rem; display: block; color: var(--text-main); }
.ui-task small { font-size: .66rem; color: var(--text-muted); }
.ui-task .tick, .ui-task .dot { width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; }
.ui-task .tick { background: var(--grad-teal); }
.ui-task .tick svg { width: 13px; height: 13px; stroke: #fff; stroke-width: 2.4; fill: none; }
.ui-task .dot { border: 2px solid rgba(30, 127, 127, .35); }
.ui-task.now .dot { border-color: #C8982E; box-shadow: 0 0 0 4px rgba(212, 175, 55, .18); }

.ui-doc { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid rgba(15, 80, 80, 0.09); border-radius: 12px; padding: 11px 12px; }
body.dark-mode .ui-doc { background: #13201f; border-color: rgba(255, 255, 255, 0.07); }
.ui-doc .fi { width: 30px; height: 30px; border-radius: 8px; background: var(--grad-brand-soft); display: grid; place-items: center; flex-shrink: 0; }
.ui-doc .fi svg { width: 16px; height: 16px; stroke: #1E7F7F; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.ui-doc b { font-size: .78rem; display: block; color: var(--text-main); }
.ui-doc small { font-size: .65rem; color: var(--text-muted); }
.ui-ok, .ui-warn { display: flex; align-items: center; gap: 8px; font-size: .74rem; font-weight: 600; padding: 8px 11px; border-radius: 10px; }
.ui-ok { background: rgba(30, 127, 127, .1); color: #0E5151; }
.ui-warn { background: rgba(212, 175, 55, .16); color: #8a6d12; }
body.dark-mode .ui-ok { background: rgba(95, 208, 196, .14); color: #9fe7dd; }
body.dark-mode .ui-warn { background: rgba(244, 208, 106, .14); color: #f4d06a; }
.ui-ok svg, .ui-warn svg { width: 15px; height: 15px; stroke-width: 2; fill: none; flex-shrink: 0; stroke-linecap: round; stroke-linejoin: round; }
.ui-ok svg { stroke: #1E7F7F; } .ui-warn svg { stroke: #b8860b; }

.bub { max-width: 84%; font-size: .78rem; line-height: 1.45; padding: 9px 12px; border-radius: 14px; }
.bub.user { align-self: flex-end; background: var(--grad-teal); color: #fff; border-bottom-right-radius: 4px; }
.bub.bot { align-self: flex-start; background: #fff; color: var(--text-main); border: 1px solid rgba(15, 80, 80, 0.09); border-bottom-left-radius: 4px; }
body.dark-mode .bub.bot { background: #13201f; border-color: rgba(255, 255, 255, 0.07); }
.lang-chips { margin-top: auto; display: flex; gap: 6px; justify-content: center; }
.lang-chips span { font-size: .66rem; font-weight: 700; padding: 5px 9px; border-radius: 999px; background: rgba(30, 127, 127, .1); color: #0E5151; }
body.dark-mode .lang-chips span { background: rgba(95, 208, 196, .14); color: #9fe7dd; }

.ring { margin: 14px auto 4px; position: relative; width: 132px; height: 132px; display: grid; place-items: center; }
.ring svg { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.ring .track { stroke: rgba(30, 127, 127, .15); stroke-width: 11; fill: none; }
.ring .prog { stroke: url(#ringgrad); stroke-width: 11; fill: none; stroke-linecap: round; stroke-dasharray: 339.292; stroke-dashoffset: 0; }
.ring b { font-size: 1.7rem; font-weight: 900; color: #115C5C; }
body.dark-mode .ring b { color: #9fe7dd; }
.sc-congrats { text-align: center; font-weight: 800; font-size: 1rem; color: var(--text-main); margin: 6px 0 2px; }

/* the scrolling narrative steps */
.story__steps { display: flex; flex-direction: column; }
.story__step { min-height: 72vh; display: flex; flex-direction: column; justify-content: center; opacity: .38; transition: opacity .45s ease; }
.story__step.is-active { opacity: 1; }
.story__step .step-num { display: inline-flex; align-items: center; gap: .55rem; font-weight: 800; font-size: .78rem; letter-spacing: .6px; text-transform: uppercase; color: var(--color-brand-teal, #1E7F7F); margin-bottom: .85rem; }
.story__step .step-num i { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--grad-brand); color: #fff; font-style: normal; font-size: .85rem; }
.story__step h3 { font-size: clamp(1.5rem, 2.6vw, 2.15rem); line-height: 1.12; letter-spacing: -.02em; margin: 0 0 .7rem; }
.story__step p { color: var(--text-muted); font-size: 1.08rem; line-height: 1.7; max-width: 46ch; margin: 0; }

@media (max-width: 860px) {
  .story__grid { grid-template-columns: 1fr; gap: 0.5rem; }
  .story__stage {
    position: sticky; top: 60px; height: 54vh; z-index: 1;
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  }
  .device { width: min(190px, 52%); }
  .story__steps { margin-top: .5rem; }
  .story__step { min-height: 60vh; text-align: center; align-items: center; }
  .story__step .step-num { justify-content: center; }
  .story__step p { margin: 0 auto; }
}
@media (prefers-reduced-motion: reduce) {
  .story__step { opacity: 1; }
  .scene { transition: none; }
}

/* ----  15.6  SHARED FOOTER (injected on every page)  ---- */
.site-footer { padding: 3.5rem 0 1.75rem; }
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.25rem;
}
.site-footer .footer-brand { max-width: 340px; }
.site-footer .footer-logo { margin-bottom: 1rem; gap: 10px; }
.site-footer .footer-logo .brand-word { color: #fff; font-size: 1.18rem; font-weight: 800; }
.site-footer .footer-logo .brand-uk { color: #F4D06A; }
.site-footer .footer-brand p { color: rgba(255, 255, 255, 0.7); line-height: 1.65; margin: 0 0 .6rem; font-size: .92rem; }
.site-footer .footer-note { font-size: .82rem; color: rgba(255, 255, 255, 0.55) !important; }
.site-footer h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .6px; margin-bottom: .9rem; color: #fff; }
.site-footer .footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.site-footer .footer-col ul a { font-size: .92rem; }
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.4rem; text-align: center;
}
.site-footer .footer-bottom p { color: rgba(255, 255, 255, 0.6); font-size: .85rem; margin: 0; }
@media (max-width: 760px) {
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.8rem; }
  .site-footer .footer-brand { grid-column: 1 / -1; max-width: none; }
}
@media (max-width: 460px) {
  .site-footer .footer-grid { grid-template-columns: 1fr; }
}

/* ----  15.7  INNER PAGE HERO (consistent banner)  ---- */
.page-hero {
  position: relative;
  text-align: center;
  padding: clamp(5.5rem, 11vw, 8rem) 1.25rem clamp(3rem, 6vw, 4.5rem);
  background: var(--grad-sky);
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
/* AI-generated brand banner (Higgsfield) + scrim for white-text contrast */
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(7, 42, 42, .55) 0%, rgba(7, 42, 42, .34) 48%, rgba(6, 34, 34, .72) 100%),
    url("https://d8j0ntlcm91z4.cloudfront.net/user_3EjmUH6vMKeo4QM2v2ELLQ3R6qj/hf_20260606_121134_5165b2ea-7ae3-4a2e-b411-c7e23da66312.png") center / cover no-repeat,
    var(--grad-sky);
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 900; letter-spacing: -.025em;
  margin: 0 0 .8rem; color: #fff; text-shadow: 0 3px 24px rgba(0, 0, 0, .3);
}
.page-hero .subtitle, .page-hero p {
  font-size: var(--fs-lead); color: rgba(255, 255, 255, .92);
  max-width: 640px; margin: 0 auto; line-height: 1.6;
}

/* ----  15.8  DASHBOARD HARMONISATION (SVG icons + brand colours)  ---- */
.dashboard-body .sidebar-header .brand-link { gap: 10px; }
.dashboard-body .sidebar-header .brand-word { color: #115C5C; font-size: 1.18rem; font-weight: 800; }
body.dark-mode .dashboard-body .sidebar-header .brand-word,
.dashboard-body.dark-mode .sidebar-header .brand-word { color: #fff; }
.dashboard-body .sidebar-header .brand-uk { color: #C8982E; }

.dashboard-body .nav-item .icon {
  font-size: 0; display: inline-grid; place-items: center;
  width: 22px; height: 22px; flex-shrink: 0;
}
.dashboard-body .nav-item .icon svg {
  width: 20px; height: 20px; stroke: currentColor; stroke-width: 1.8;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}
.dashboard-body .stat-icon { font-size: 0; }
.dashboard-body .stat-icon svg {
  width: 28px; height: 28px; stroke: currentColor; stroke-width: 1.8;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}
.dashboard-body .ai-icon { font-size: 0; display: inline-grid; place-items: center; }
.dashboard-body .ai-icon svg { width: 22px; height: 22px; }
.dashboard-body .btn.icon-only { display: inline-grid; place-items: center; }
.dashboard-body .btn.icon-only svg { width: 20px; height: 20px; }

/* Brand-aligned stat accents (replace off-brand blue/orange) */
.dashboard-body .stat-icon.progress { background: #E0F2F1; color: #0E7C7B; }
.dashboard-body .stat-icon.docs { background: #FBF3DA; color: #9A7B1A; }
.dashboard-body .stat-icon.action { background: #EEF2F6; color: #475569; }
.dashboard-body.dark-mode .stat-icon.docs,
body.dark-mode .dashboard-body .stat-icon.docs { background: rgba(212, 175, 55, 0.18); color: #F4D06A; }
.dashboard-body.dark-mode .stat-icon.action,
body.dark-mode .dashboard-body .stat-icon.action { background: rgba(148, 163, 184, 0.18); color: #cbd5e1; }

/* ----  15.9  RICH ABOUT / CONTACT CONTENT  ---- */
.narrow-prose { max-width: 760px; margin: 0 auto; }
.narrow-prose h2 { font-size: var(--fs-h2); font-weight: 800; letter-spacing: -.02em; margin: .4rem 0 1.1rem; }
.narrow-prose p { color: var(--text-muted); line-height: 1.8; font-size: 1.06rem; margin: 0 0 1.1rem; }
.narrow-prose a, .micro-note a, .contact-list a {
  color: #157070; font-weight: 600; text-decoration: underline; text-underline-offset: 2px;
  text-decoration-color: rgba(30, 127, 127, .35);
}
.narrow-prose a:hover, .micro-note a:hover, .contact-list a:hover { text-decoration-color: #157070; }
body.dark-mode .narrow-prose a, body.dark-mode .micro-note a, body.dark-mode .contact-list a { color: #6FD8CC; }
.micro-note { font-size: .9rem; color: var(--text-muted); margin: 1.2rem 0 0; }

/* clickable cards (internal links) */
a.linked-card { text-decoration: none; color: inherit; }
a.linked-card h3 { color: var(--text-main); }
.card-cta { display: inline-block; margin-top: .5rem; color: #157070; font-weight: 700; font-size: .92rem; }
body.dark-mode .card-cta { color: #6FD8CC; }
a.linked-card:hover .card-cta { text-decoration: underline; }

/* CTA block */
.cta-block { max-width: 720px; margin: 0 auto; }
.cta-block h2 { font-size: var(--fs-h2); font-weight: 800; letter-spacing: -.02em; }
.cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin: 1.6rem 0 1rem; }

/* contact details list */
.contact-list { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: 1.1rem; }
.contact-list li { display: flex; gap: .85rem; align-items: flex-start; }
.contact-list .ci-icon {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 11px;
  background: var(--grad-brand-soft); display: grid; place-items: center;
  box-shadow: inset 0 0 0 1px rgba(43, 163, 154, .16);
}
.contact-list .ci-icon svg { width: 20px; height: 20px; stroke: #1E7F7F; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
body.dark-mode .contact-list .ci-icon svg { stroke: #5FD0C4; }
.contact-list strong { color: var(--text-main); }

/* contact form */
.contact-form { display: grid; gap: 1.1rem; text-align: left; margin-top: .5rem; }
.contact-form .form-row { display: grid; gap: .4rem; }
.contact-form label { font-weight: 600; font-size: .9rem; color: var(--text-main); }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: .8rem .9rem; border: 1px solid var(--card-border);
  border-radius: 12px; font: inherit; background: var(--card-bg); color: var(--text-main);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: #1E7F7F; box-shadow: 0 0 0 3px rgba(30, 127, 127, .15);
}

/* official-resource link lists (about/contact/homepage) - readable in both modes */
.link-category .link-list a, .links-grid .link-list a {
  color: #157070; font-weight: 600; text-decoration: none;
}
.link-category .link-list a:hover, .links-grid .link-list a:hover { text-decoration: underline; }
body.dark-mode .link-category .link-list a, body.dark-mode .links-grid .link-list a { color: #6FD8CC; }
.link-category .link-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }

/* Inline links inside feature/value cards - readable in both modes */
.feature-card p a {
  color: #157070; font-weight: 600;
  text-decoration: underline; text-underline-offset: 2px;
  text-decoration-color: rgba(30, 127, 127, .35);
}
.feature-card p a:hover { text-decoration-color: #157070; }
body.dark-mode .feature-card p a { color: #6FD8CC; text-decoration-color: rgba(111, 216, 204, .4); }

/* "Sources we trust" / "Official help" hub - proper card spacing */
.link-hub .links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2.25rem;
}
.link-hub .link-category {
  padding: 1.6rem 1.7rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}
.link-hub .link-category h3 { margin: 0 0 1rem; font-size: 1.06rem; font-weight: 800; }
.link-hub .link-list { display: grid; gap: .7rem; margin: 0; padding: 0; list-style: none; }
.link-hub .link-list li { margin: 0; padding: 0; line-height: 1.45; }

/* ----  15.10  INNER-PAGE CONTENT ICONS (replace emoji)  ---- */
/* buddy avatars -> SVG */
.buddy-avatar { display: grid; place-items: center; color: #1E7F7F; overflow: hidden; }
.buddy-avatar svg { width: 56%; height: 56%; }
body.dark-mode .buddy-avatar { color: #5FD0C4; }

/* excluded plan-feature line (was a literal ✗ that clashed with the ✓ ::before) */
.plan-features li.is-no { color: var(--text-muted); opacity: .8; }
.plan-features li.is-no::before { content: "\2717"; color: var(--text-muted); }

/* generic check-list (benefits / product contents) without a literal glyph */
.become-buddy-benefits ul, .product-list, .premium-upsell ul { list-style: none; padding-left: 0; }
.become-buddy-benefits ul li, .product-list li, .premium-upsell ul li { position: relative; padding-left: 1.7rem; margin-bottom: .65rem; }
.become-buddy-benefits ul li::before, .product-list li::before, .premium-upsell ul li::before {
  content: "\2713"; position: absolute; left: 0; top: 0;
  color: #1E7F7F; font-weight: 800;
}
body.dark-mode .become-buddy-benefits ul li::before,
body.dark-mode .product-list li::before,
body.dark-mode .premium-upsell ul li::before { color: #5FD0C4; }

/* small inline status icons (replace ❌ / ✅ in text) */
.x-ico, .ok-ico {
  display: inline-grid; place-items: center;
  width: 1.15em; height: 1.15em; vertical-align: -0.18em; margin-right: .35rem;
}
.x-ico svg, .ok-ico svg { width: 100%; height: 100%; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.x-ico svg { stroke: #c0492f; }
.ok-ico svg { stroke: #1E7F7F; }
body.dark-mode .x-ico svg { stroke: #f0a08f; }
body.dark-mode .ok-ico svg { stroke: #5FD0C4; }

/* inline heading icon (replaces emoji inside a flex h3) */
.h-ico { display: inline-grid; place-items: center; width: 1.5em; height: 1.5em; flex-shrink: 0; color: #1E7F7F; }
.h-ico svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
body.dark-mode .h-ico { color: #5FD0C4; }

/* large feature illustration (replaces a big emoji) */
.big-ico { display: grid; place-items: center; margin-bottom: 1rem; color: #1E7F7F; }
.big-ico svg { width: 88px; height: 88px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
body.dark-mode .big-ico { color: #5FD0C4; }

/* ----  16. ARTICLE / BLOG PROSE  ---- */
.prose { max-width: 760px; margin: 0 auto; }
.article-meta { color: var(--text-muted); font-size: .9rem; margin: 0 0 1.6rem; display: flex; flex-wrap: wrap; gap: .35rem .75rem; align-items: center; }
.article-meta .tag { background: var(--accent-teal-soft-bg, #E0F3F3); color: #115C5C; font-weight: 700; padding: .2rem .7rem; border-radius: 999px; font-size: .78rem; }
body.dark-mode .article-meta .tag { background: rgba(43,163,154,.16); color: #6FD8CC; }
.prose > p:first-of-type { font-size: 1.15rem; color: var(--text-main); }
.prose h2 { font-size: clamp(1.45rem, 3vw, 2rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.2; margin: 2.4rem 0 .8rem; }
.prose h3 { font-size: 1.2rem; font-weight: 700; margin: 1.8rem 0 .5rem; }
.prose p { line-height: 1.8; color: var(--text-muted); margin: 0 0 1.1rem; font-size: 1.05rem; }
.prose ul, .prose ol { margin: 0 0 1.3rem; padding-left: 1.35rem; line-height: 1.8; color: var(--text-muted); font-size: 1.05rem; }
.prose li { margin-bottom: .55rem; }
.prose strong { color: var(--text-main); }
.prose a { color: #157070; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; text-decoration-color: rgba(30,127,127,.35); }
.prose a:hover { text-decoration-color: #157070; }
body.dark-mode .prose a { color: #6FD8CC; }
.callout {
  background: var(--grad-brand-soft); border: 1px solid var(--card-border);
  border-radius: 14px; padding: 1.1rem 1.35rem; margin: 1.6rem 0;
}
.callout p { margin: 0; color: var(--text-main); font-size: .98rem; }
.callout strong { color: #0E5151; }
body.dark-mode .callout strong { color: #6FD8CC; }
.article-cta {
  margin: 2.5rem auto 0; max-width: 760px; text-align: center;
  background: var(--grad-teal); color: #fff; border-radius: 20px; padding: 2.2rem 1.5rem;
}
.article-cta h3 { color: #fff; font-size: 1.4rem; margin: 0 0 .6rem; }
.article-cta p { color: rgba(255,255,255,.9); margin: 0 0 1.3rem; }
.article-cta .btn.primary { background: #fff !important; color: #0E5151 !important; }
.related-articles { max-width: 760px; margin: 3rem auto 0; }
.related-articles h2 { font-size: 1.3rem; margin-bottom: 1rem; }
.related-list { display: grid; gap: .7rem; list-style: none; padding: 0; margin: 0; }
.related-list a { color: #157070; font-weight: 600; }
body.dark-mode .related-list a { color: #6FD8CC; }

/* ----  17. CAMPAIGN LANDING PAGE  ---- */
.lp-hero { text-align: center; }
.lp-hero .rtl { direction: rtl; }
.lp-eyebrow {
  display: inline-block; padding: .4rem 1rem; border-radius: 999px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
  color: #fff; font-weight: 700; font-size: .85rem; margin-bottom: 1.2rem;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.lp-pains { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); gap: 1.2rem; margin-top: 2rem; }
.lp-pain { display: flex; gap: .8rem; align-items: flex-start; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 14px; padding: 1.1rem 1.3rem; }
.lp-pain .x-ico { margin-top: .15rem; }
.lp-pain b { display: block; color: var(--text-main); margin-bottom: .2rem; }
.lp-pain span.t { color: var(--text-muted); font-size: .95rem; }
.lp-quote { max-width: 640px; margin: 2rem auto 0; text-align: center; font-size: 1.15rem; line-height: 1.7; color: var(--text-main); font-style: italic; }
.lp-quote cite { display: block; margin-top: .8rem; font-style: normal; font-weight: 700; color: var(--text-muted); font-size: .95rem; }
