/* ==========================================================================
   Claim Support Zone — Main Stylesheet
   Palette: Teal + Coral | Modern, rounded, soft-gradient
   ========================================================================== */

/* ---------- 1. Design Tokens ---------- */
:root {
  /* Brand */
  --teal-50:  #effcf9;
  --teal-100: #d6f5ee;
  --teal-200: #adebdd;
  --teal-300: #6fdcc7;
  --teal-400: #2cc3a8;
  --teal-500: #12a892;
  --teal-600: #0d8a79;
  --teal-700: #0e6e62;
  --teal-800: #10574f;
  --teal-900: #0d3f3a;

  --coral-50:  #fff3f0;
  --coral-100: #ffe2db;
  --coral-300: #ffab99;
  --coral-400: #ff8a72;
  --coral-500: #ff6b52;
  --coral-600: #ee4f34;

  --amber-400: #ffb020;

  /* Neutrals */
  --ink:       #0c1f1d;
  --ink-soft:  #1d3a36;
  --body:      #526b68;
  --muted:     #7f9793;
  --line:      #e3ecea;
  --line-soft: #eff5f4;
  --surface:   #ffffff;
  --canvas:    #f6fbfa;
  --canvas-2:  #eef7f5;

  /* Effects */
  --grad-brand: linear-gradient(135deg, var(--teal-500) 0%, var(--teal-700) 100%);
  --grad-coral: linear-gradient(135deg, var(--coral-400) 0%, var(--coral-600) 100%);
  --grad-soft:  linear-gradient(160deg, #f6fbfa 0%, #eaf6f3 100%);
  --grad-dark:  linear-gradient(150deg, #0d3f3a 0%, #082b28 60%, #0b3733 100%);

  --sh-xs: 0 1px 2px rgba(12, 31, 29, .06);
  --sh-sm: 0 4px 14px rgba(12, 31, 29, .06);
  --sh-md: 0 12px 30px rgba(12, 31, 29, .08);
  --sh-lg: 0 24px 55px rgba(12, 31, 29, .12);
  --sh-teal: 0 14px 30px rgba(13, 138, 121, .28);
  --sh-coral: 0 14px 30px rgba(255, 107, 82, .3);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  --ff-head: 'Plus Jakarta Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --ff-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --wrap: 1200px;
  --gutter: 24px;
  --header-h: 84px;

  --ease: cubic-bezier(.22, .78, .36, 1);
}

/* ---------- 2. Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
  /* clip (not hidden) so position:sticky keeps working */
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--body);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-head);
  color: var(--ink);
  line-height: 1.18;
  margin: 0 0 .6em;
  font-weight: 800;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
h4 { font-size: 1.16rem; }

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

a { color: var(--teal-600); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--coral-500); }

img { max-width: 100%; display: block; height: auto; }
ul, ol { margin: 0 0 1.1rem; padding-left: 1.15rem; }
li { margin-bottom: .45rem; }

strong, b { color: var(--ink-soft); font-weight: 700; }

:focus-visible {
  outline: 3px solid var(--teal-400);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--teal-200); color: var(--ink); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--teal-700); color: #fff; padding: 12px 22px;
  border-radius: 0 0 var(--r-sm) 0; font-weight: 700;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- 3. Layout Helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: 880px; }

.section { padding: clamp(64px, 8vw, 108px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 76px) 0; }
.section--canvas { background: var(--canvas); }
.section--soft { background: var(--grad-soft); }
.section--dark { background: var(--grad-dark); color: #cfe6e2; }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }

.grid { display: grid; gap: 30px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }

.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 1.4rem; }
.mt-3 { margin-top: 2rem; }

/* ---------- 4. Section Heading ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--teal-50); color: var(--teal-700);
  border: 1px solid var(--teal-200);
  padding: 7px 17px 7px 13px; border-radius: var(--r-pill);
  font-size: .78rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 18px;
  font-family: var(--ff-head);
}
.eyebrow::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--coral-500); box-shadow: 0 0 0 4px rgba(255,107,82,.18);
}
.eyebrow--light { background: rgba(255,255,255,.1); color: #a9ecdd; border-color: rgba(255,255,255,.2); }

.sec-head { max-width: 720px; margin: 0 auto clamp(38px, 5vw, 60px); text-align: center; }
.sec-head p { font-size: 1.06rem; color: var(--body); margin-bottom: 0; }
.sec-head--left { margin-inline: 0; text-align: left; }

.lead { font-size: 1.12rem; line-height: 1.8; color: var(--ink-soft); }

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--ff-head); font-weight: 700; font-size: .97rem;
  padding: 15px 30px; border-radius: var(--r-pill);
  border: 2px solid transparent; cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
              background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  text-align: center; line-height: 1.2; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform .3s var(--ease); }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn:hover svg.arw { transform: translateX(4px); }

.btn-primary { background: var(--grad-brand); color: #fff; box-shadow: var(--sh-teal); }
.btn-primary:hover { color: #fff; box-shadow: 0 20px 40px rgba(13,138,121,.36); }

.btn-coral { background: var(--grad-coral); color: #fff; box-shadow: var(--sh-coral); }
.btn-coral:hover { color: #fff; box-shadow: 0 20px 40px rgba(255,107,82,.4); }

.btn-ghost { background: #fff; color: var(--teal-700); border-color: var(--line); box-shadow: var(--sh-xs); }
.btn-ghost:hover { border-color: var(--teal-400); color: var(--teal-700); box-shadow: var(--sh-sm); }

.btn-outline-light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.35); backdrop-filter: blur(6px); }
.btn-outline-light:hover { background: #fff; color: var(--teal-800); border-color: #fff; }

.btn-sm { padding: 11px 22px; font-size: .88rem; }
.btn-lg { padding: 17px 38px; font-size: 1.02rem; }
.btn-block { width: 100%; }

.btn-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-head); font-weight: 700; color: var(--teal-600); font-size: .95rem;
}
.btn-link svg { width: 17px; height: 17px; transition: transform .3s var(--ease); }
.btn-link:hover svg { transform: translateX(4px); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- 6. Header ---------- */
.topbar {
  background: var(--teal-900); color: #a9cfc9;
  font-size: .84rem; padding: 9px 0;
}
.topbar__in { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.topbar__list { display: flex; gap: 24px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.topbar__list li { margin: 0; display: flex; align-items: center; gap: 7px; }
.topbar__list svg { width: 14px; height: 14px; color: var(--teal-300); }
.topbar a { color: #a9cfc9; }
.topbar a:hover { color: #fff; }
.topbar__social { display: flex; gap: 8px; }
.topbar__social a {
  width: 27px; height: 27px; display: grid; place-items: center;
  border-radius: 50%; background: rgba(255,255,255,.08); transition: .25s var(--ease);
}
.topbar__social a:hover { background: var(--coral-500); transform: translateY(-2px); }
.topbar__social svg { width: 13px; height: 13px; }

.header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.header.is-stuck { box-shadow: var(--sh-md); background: rgba(255,255,255,.97); }
.header__in { display: flex; align-items: center; justify-content: space-between; gap: 22px; min-height: var(--header-h); }

.logo { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo__mark {
  width: 44px; height: 44px; border-radius: 13px;
  background: var(--grad-brand); display: grid; place-items: center;
  box-shadow: var(--sh-teal); flex-shrink: 0;
}
.logo__mark svg { width: 23px; height: 23px; color: #fff; }
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__name { font-family: var(--ff-head); font-weight: 800; font-size: 1.24rem; color: var(--ink); letter-spacing: -.03em; }
.logo__name span { color: var(--teal-500); }
.logo__tag { font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav > li { margin: 0; position: relative; }
.nav > li > a {
  display: flex; align-items: center; gap: 6px;
  font-family: var(--ff-head); font-weight: 600; font-size: .95rem;
  color: var(--ink-soft); padding: 11px 15px; border-radius: var(--r-pill);
  transition: .25s var(--ease);
}
.nav > li > a:hover, .nav > li.is-open > a { background: var(--teal-50); color: var(--teal-700); }
.nav > li.current > a { color: var(--teal-600); background: var(--teal-50); }
.caret { width: 13px; height: 13px; flex-shrink: 0; }
.nav .caret { width: 13px; height: 13px; transition: transform .3s var(--ease); }
.nav li.is-open .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 260px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--sh-lg);
  padding: 10px; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transition: .3s var(--ease); z-index: 50;
}
.nav li.is-open .dropdown, .nav li:hover .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown li { margin: 0; }
.dropdown a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 13px; border-radius: var(--r-sm);
  font-size: .93rem; font-weight: 600; color: var(--ink-soft);
  font-family: var(--ff-head); transition: .2s var(--ease);
}
.dropdown a:hover { background: var(--teal-50); color: var(--teal-700); transform: translateX(3px); }
.dropdown .di {
  width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center;
  background: var(--teal-50); color: var(--teal-600); flex-shrink: 0;
}
.dropdown .di svg { width: 17px; height: 17px; }

.header__cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.burger {
  display: none; width: 46px; height: 46px; border-radius: 12px;
  background: var(--teal-50); border: 1px solid var(--teal-100);
  cursor: pointer; padding: 0; place-items: center;
}
.burger span {
  display: block; width: 20px; height: 2px; background: var(--teal-700);
  border-radius: 2px; margin: 4px auto; transition: .3s var(--ease);
}
.burger.is-active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.is-active span:nth-child(2) { opacity: 0; }
.burger.is-active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-backdrop {
  position: fixed; inset: 0; background: rgba(9,32,29,.5);
  backdrop-filter: blur(3px); opacity: 0; visibility: hidden;
  transition: .3s var(--ease); z-index: 190;
}
.nav-backdrop.is-active { opacity: 1; visibility: visible; }

/* ---------- 7. Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--grad-soft);
  padding: clamp(56px, 7vw, 96px) 0 clamp(72px, 8vw, 110px);
}
.hero::before, .hero::after {
  content: ''; position: absolute; border-radius: 50%; filter: blur(70px); z-index: 0;
}
.hero::before { width: 460px; height: 460px; background: rgba(44,195,168,.2); top: -160px; right: -110px; }
.hero::after  { width: 380px; height: 380px; background: rgba(255,138,114,.16); bottom: -170px; left: -130px; }

.hero__in {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(34px, 5vw, 64px); align-items: center;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 .hl { position: relative; color: var(--teal-600); white-space: nowrap; }
.hero h1 .hl::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 4px; height: 12px;
  background: rgba(255,176,32,.35); border-radius: 6px; z-index: -1;
}
.hero__sub { font-size: 1.12rem; max-width: 540px; margin-bottom: 30px; }

.hero__trust { display: flex; align-items: center; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.avatars { display: flex; }
.avatars img {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  border: 3px solid #fff; margin-left: -13px; box-shadow: var(--sh-sm);
}
.avatars img:first-child { margin-left: 0; }
.hero__trust-txt { font-size: .9rem; line-height: 1.5; }
.hero__trust-txt strong { display: block; color: var(--ink); font-family: var(--ff-head); }
.stars { color: var(--amber-400); letter-spacing: 2px; font-size: .9rem; }

.hero__media { position: relative; }
.hero__media img.main {
  width: 100%; border-radius: var(--r-xl); box-shadow: var(--sh-lg);
  aspect-ratio: 5 / 4.4; object-fit: cover;
}
.hero__media::before {
  content: ''; position: absolute; inset: 18px -18px -18px 18px;
  border: 2px dashed rgba(44,195,168,.4); border-radius: var(--r-xl); z-index: -1;
}

.float-card {
  position: absolute; background: rgba(255,255,255,.97); backdrop-filter: blur(8px);
  border-radius: var(--r-md); box-shadow: var(--sh-lg); padding: 15px 19px;
  display: flex; align-items: center; gap: 13px; z-index: 3;
  animation: floaty 5s ease-in-out infinite;
}
.float-card__ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; flex-shrink: 0; }
.float-card__ico svg { width: 21px; height: 21px; }
.float-card b { display: block; font-family: var(--ff-head); font-size: 1.16rem; color: var(--ink); line-height: 1.1; }
.float-card span { font-size: .78rem; color: var(--muted); }
.float-card--a { top: 8%; left: -34px; }
.float-card--a .float-card__ico { background: var(--teal-50); color: var(--teal-600); }
.float-card--b { bottom: 9%; right: -26px; animation-delay: 1.6s; }
.float-card--b .float-card__ico { background: var(--coral-50); color: var(--coral-500); }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-13px); }
}

/* ---------- 8. Page Banner ---------- */
.pagehead {
  position: relative; padding: clamp(58px, 7vw, 92px) 0; overflow: hidden;
  background: var(--grad-dark); text-align: center;
}
.pagehead::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.09) 1px, transparent 1px);
  background-size: 26px 26px; opacity: .6;
}
.pagehead::after {
  content: ''; position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: rgba(44,195,168,.22); filter: blur(90px); top: -180px; right: -100px;
}
.pagehead__in { position: relative; z-index: 2; }
.pagehead h1 { color: #fff; margin-bottom: 14px; }
.pagehead p { color: #b6d9d3; max-width: 640px; margin: 0 auto; font-size: 1.05rem; }

.crumbs {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  list-style: none; margin: 20px 0 0; padding: 0; font-size: .89rem; flex-wrap: wrap;
}
.crumbs li { margin: 0; color: #7fb8b0; display: flex; align-items: center; gap: 9px; }
.crumbs a { color: #d6f0eb; font-weight: 600; }
.crumbs a:hover { color: var(--coral-400); }
.crumbs li + li::before { content: '/'; color: rgba(255,255,255,.3); }
.crumbs .active { color: var(--teal-300); font-weight: 600; }

/* ---------- 9. Cards: Service ---------- */
/* Simplified card: image + heading + description + button only. */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }

.svc {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  position: relative;
  scroll-margin-top: calc(var(--header-h) + 30px);   /* for #home, #auto ... anchors */
}
.svc::after {
  content: ''; position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: var(--grad-brand); transform: scaleX(0); transform-origin: left;
  transition: transform .45s var(--ease); z-index: 4;
}
.svc:hover { transform: translateY(-10px); box-shadow: var(--sh-lg); border-color: var(--teal-200); }
.svc:hover::after { transform: scaleX(1); }

/* brief highlight when arrived at via an anchor link */
.svc:target { border-color: var(--teal-400); box-shadow: var(--sh-lg); }
.svc:target::after { transform: scaleX(1); }

.svc__imgwrap { position: relative; overflow: hidden; aspect-ratio: 16 / 10.5; }
.svc__imgwrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.svc:hover .svc__imgwrap img { transform: scale(1.09); }
.svc__imgwrap::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(10,45,41,.42) 0%, rgba(10,45,41,0) 55%);
}

.svc__body { padding: 26px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.svc__body h3 { margin-bottom: 12px; font-size: 1.3rem; }
.svc__body > p { font-size: .95rem; margin-bottom: 22px; }

.svc__foot { margin-top: auto; }
.svc__foot .btn { width: 100%; }

/* ---------- 10. Feature / Why Choose ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 66px); align-items: center; }
.split--rev .split__media { order: 2; }

.media-stack { position: relative; }
.media-stack img.a {
  width: 100%; border-radius: var(--r-xl); box-shadow: var(--sh-lg);
  aspect-ratio: 4 / 3.5; object-fit: cover;
}
.media-stack img.b {
  position: absolute; bottom: -34px; right: -26px; width: 46%;
  border-radius: var(--r-lg); border: 6px solid #fff; box-shadow: var(--sh-lg);
  aspect-ratio: 1; object-fit: cover;
}
.media-stack .dots {
  position: absolute; top: -26px; left: -26px; width: 108px; height: 108px; z-index: -1;
  background-image: radial-gradient(var(--teal-300) 2px, transparent 2px);
  background-size: 15px 15px; opacity: .55; border-radius: 8px;
}

.exp-badge {
  position: absolute; top: 22px; left: 22px; z-index: 4;
  background: var(--grad-coral); color: #fff; border-radius: var(--r-md);
  padding: 15px 20px; box-shadow: var(--sh-coral); text-align: center;
}
.exp-badge b { display: block; font-family: var(--ff-head); font-size: 2rem; line-height: 1; }
.exp-badge span { font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; opacity: .95; }

.check-list { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 13px; }
.check-list li { display: flex; align-items: flex-start; gap: 13px; margin: 0; }
.check-list .ck {
  width: 25px; height: 25px; border-radius: 50%; background: var(--teal-50);
  border: 1px solid var(--teal-200); display: grid; place-items: center; flex-shrink: 0; margin-top: 3px;
}
.check-list .ck svg { width: 13px; height: 13px; color: var(--teal-600); }
.check-list strong { display: block; font-family: var(--ff-head); color: var(--ink); font-size: 1rem; margin-bottom: 2px; }
.check-list p { font-size: .93rem; margin: 0; }

/* Why-choose feature tiles */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.why-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 24px 22px; transition: .35s var(--ease); position: relative; overflow: hidden;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: var(--teal-200); }
.why-card__ico {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: var(--teal-50); color: var(--teal-600); margin-bottom: 15px; transition: .35s var(--ease);
}
.why-card:hover .why-card__ico { background: var(--grad-brand); color: #fff; }
.why-card__ico svg { width: 23px; height: 23px; }
.why-card h4 { margin-bottom: 7px; font-size: 1.06rem; }
.why-card p { font-size: .9rem; margin: 0; }

/* ---------- 11. Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat {
  text-align: center; padding: 30px 18px; border-radius: var(--r-lg);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13);
  transition: .35s var(--ease);
}
.stat:hover { background: rgba(255,255,255,.12); transform: translateY(-6px); }
.stat__n {
  font-family: var(--ff-head); font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 800; color: #fff; line-height: 1; margin-bottom: 8px; letter-spacing: -.03em;
}
.stat__n .suf { color: var(--teal-300); }
.stat p { font-size: .9rem; color: #a5cbc5; margin: 0; }

.stats--light .stat { background: #fff; border-color: var(--line); box-shadow: var(--sh-sm); }
.stats--light .stat__n { color: var(--teal-600); }
.stats--light .stat p { color: var(--body); }

/* ---------- 12. Testimonials ---------- */
.tslider { position: relative; overflow: hidden; padding: 6px 4px 4px; }
.ttrack { display: flex; transition: transform .6s var(--ease); }
.tslide { min-width: 100%; padding: 0 10px; }
@media (min-width: 768px) { .tslide { min-width: 50%; } }
@media (min-width: 1080px) { .tslide { min-width: 33.3333%; } }

.tcard {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 26px 26px; height: 100%; position: relative;
  display: flex; flex-direction: column; transition: .35s var(--ease);
}
.tcard:hover { box-shadow: var(--sh-md); border-color: var(--teal-200); transform: translateY(-4px); }
.tcard__q {
  position: absolute; top: 20px; right: 24px;
  font-family: Georgia, serif; font-size: 4.6rem; line-height: 1;
  color: var(--teal-100); pointer-events: none; user-select: none;
}
.tcard .stars { margin-bottom: 14px; font-size: 1rem; }
.tcard blockquote { margin: 0 0 22px; font-size: .97rem; color: var(--ink-soft); line-height: 1.8; position: relative; z-index: 1; }
.tcard__who { display: flex; align-items: center; gap: 13px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.tcard__who img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--teal-100); }
.tcard__who b { display: block; font-family: var(--ff-head); color: var(--ink); font-size: .98rem; }
.tcard__who span { font-size: .82rem; color: var(--muted); }
.tcard__tag {
  margin-left: auto; background: var(--teal-50); color: var(--teal-700);
  font-size: .7rem; font-weight: 800; padding: 5px 11px; border-radius: var(--r-pill);
  text-transform: uppercase; letter-spacing: .05em; font-family: var(--ff-head);
}

.slider-nav { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 34px; }
.sbtn {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; color: var(--teal-700); display: grid; place-items: center;
  cursor: pointer; transition: .3s var(--ease); box-shadow: var(--sh-xs);
}
.sbtn:hover { background: var(--grad-brand); color: #fff; border-color: transparent; box-shadow: var(--sh-teal); transform: translateY(-2px); }
.sbtn svg { width: 18px; height: 18px; }
.sdots { display: flex; gap: 8px; }
.sdot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--teal-200);
  border: 0; padding: 0; cursor: pointer; transition: .3s var(--ease);
}
.sdot.is-active { width: 30px; border-radius: 6px; background: var(--teal-500); }

/* ---------- 13. FAQ ---------- */
.faq { display: grid; gap: 14px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden; transition: .3s var(--ease);
}
.faq-item.is-open { border-color: var(--teal-300); box-shadow: var(--sh-md); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 21px 60px 21px 24px; position: relative;
  font-family: var(--ff-head); font-weight: 700; font-size: 1.03rem; color: var(--ink);
  line-height: 1.5; transition: color .25s var(--ease);
}
.faq-q:hover { color: var(--teal-600); }
.faq-q .ind {
  position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
  width: 30px; height: 30px; border-radius: 50%; background: var(--teal-50);
  display: grid; place-items: center; transition: .35s var(--ease); color: var(--teal-600);
}
.faq-item.is-open .faq-q .ind { background: var(--grad-brand); color: #fff; transform: translateY(-50%) rotate(180deg); }
.faq-q .ind svg { width: 15px; height: 15px; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a__in { padding: 0 24px 22px; font-size: .96rem; }
.faq-a__in p:last-child { margin-bottom: 0; }

/* ---------- 14. Blog ---------- */
.post {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.post:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: var(--teal-200); }
.post__media { position: relative; overflow: hidden; aspect-ratio: 16 / 10; }
.post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.post:hover .post__media img { transform: scale(1.08); }
.post__cat {
  position: absolute; top: 14px; left: 14px;
  background: var(--grad-coral); color: #fff; font-family: var(--ff-head);
  font-size: .71rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  padding: 6px 13px; border-radius: var(--r-pill); box-shadow: var(--sh-sm);
}
.post__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.post__meta {
  display: flex; align-items: center; gap: 15px; flex-wrap: wrap;
  font-size: .8rem; color: var(--muted); margin-bottom: 12px;
}
.post__meta span { display: flex; align-items: center; gap: 6px; }
.post__meta svg { width: 14px; height: 14px; color: var(--teal-400); }
.post__body h3 { font-size: 1.16rem; margin-bottom: 10px; line-height: 1.4; }
.post__body h3 a { color: inherit; }
.post__body h3 a:hover { color: var(--teal-600); }
.post__body p { font-size: .92rem; margin-bottom: 18px; }
.post__body .btn-link { margin-top: auto; }

/* Blog article body */
.article { font-size: 1.03rem; }
.article > img, .article figure img { border-radius: var(--r-lg); box-shadow: var(--sh-md); margin: 8px 0 26px; width: 100%; }
.article h2 { margin-top: 2.1em; font-size: 1.72rem; }
.article h3 { margin-top: 1.7em; font-size: 1.3rem; }
.article ul, .article ol { margin-bottom: 1.4rem; }
.article li { margin-bottom: .6rem; }
.article blockquote {
  margin: 30px 0; padding: 24px 28px; border-left: 4px solid var(--teal-500);
  background: var(--teal-50); border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: 1.06rem; color: var(--ink-soft); font-style: italic;
}
.article blockquote p:last-child { margin-bottom: 0; }

.callout {
  background: var(--grad-soft); border: 1px solid var(--teal-200);
  border-radius: var(--r-md); padding: 24px 26px; margin: 28px 0;
}
.callout h4 { margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.callout h4 svg { width: 20px; height: 20px; color: var(--teal-600); }

.tags { display: flex; flex-wrap: wrap; gap: 9px; list-style: none; padding: 0; margin: 0; }
.tags li { margin: 0; }
.tags a {
  display: inline-block; padding: 7px 15px; border-radius: var(--r-pill);
  background: var(--canvas-2); color: var(--teal-700); font-size: .83rem; font-weight: 600;
  border: 1px solid var(--line); transition: .25s var(--ease);
}
.tags a:hover { background: var(--grad-brand); color: #fff; border-color: transparent; }

.sidebar { display: grid; gap: 24px; align-content: start; position: sticky; top: calc(var(--header-h) + 24px); }
.widget { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px 22px; }
.widget h4 { margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--line-soft); font-size: 1.08rem; }
.mini-post { display: flex; gap: 13px; padding: 12px 0; border-bottom: 1px dashed var(--line); }
.mini-post:last-child { border-bottom: 0; padding-bottom: 0; }
.mini-post img { width: 72px; height: 62px; border-radius: var(--r-sm); object-fit: cover; flex-shrink: 0; }
.mini-post b { font-family: var(--ff-head); font-size: .91rem; line-height: 1.4; display: block; margin-bottom: 4px; }
.mini-post b a { color: var(--ink); }
.mini-post b a:hover { color: var(--teal-600); }
.mini-post span { font-size: .77rem; color: var(--muted); }
.cat-list { list-style: none; padding: 0; margin: 0; }
.cat-list li { margin: 0; border-bottom: 1px dashed var(--line); }
.cat-list li:last-child { border-bottom: 0; }
.cat-list a { display: flex; justify-content: space-between; padding: 11px 0; font-size: .93rem; font-weight: 600; color: var(--ink-soft); }
.cat-list a:hover { color: var(--teal-600); padding-left: 6px; }
.cat-list .n { color: var(--muted); font-size: .82rem; }

/* ---------- 15. CTA ---------- */
.cta {
  position: relative; overflow: hidden; border-radius: var(--r-xl);
  background: var(--grad-dark); padding: clamp(40px, 5.5vw, 66px);
  display: grid; grid-template-columns: 1.25fr .75fr; gap: 40px; align-items: center;
}
.cta::before {
  content: ''; position: absolute; inset: 0; opacity: .16; z-index: 0;
  background: url('../img/misc/cta-family.jpg') center/cover no-repeat;
}
.cta::after {
  content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: rgba(44,195,168,.28); filter: blur(90px); right: -120px; bottom: -160px; z-index: 0;
}
.cta > * { position: relative; z-index: 2; }
.cta h2 { color: #fff; margin-bottom: 14px; }
.cta p { color: #b8dbd5; margin-bottom: 0; font-size: 1.05rem; }
.cta__actions { display: flex; flex-direction: column; gap: 13px; }
.cta__call {
  display: flex; align-items: center; gap: 13px; color: #fff;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-md); padding: 14px 18px; backdrop-filter: blur(6px);
}
.cta__call .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--grad-coral); display: grid; place-items: center; flex-shrink: 0; }
.cta__call .ic svg { width: 20px; height: 20px; color: #fff; }
.cta__call span { display: block; font-size: .78rem; color: #a5cbc5; }
.cta__call b { font-family: var(--ff-head); font-size: 1.14rem; color: #fff; }
.cta__call:hover { color: #fff; }

/* ---------- 16. Forms ---------- */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: clamp(26px, 3.4vw, 42px); box-shadow: var(--sh-md);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field--full { grid-column: 1 / -1; }

.field label {
  font-family: var(--ff-head); font-weight: 700; font-size: .88rem; color: var(--ink-soft);
  display: flex; align-items: center; gap: 5px;
}
.field label .req { color: var(--coral-500); }

.field input[type="text"], .field input[type="email"], .field input[type="tel"],
.field input[type="date"], .field input[type="number"], .field select, .field textarea {
  width: 100%; font-family: var(--ff-body); font-size: .96rem; color: var(--ink);
  background: var(--canvas); border: 1.5px solid var(--line);
  border-radius: var(--r-sm); padding: 13px 15px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.field textarea { resize: vertical; min-height: 128px; line-height: 1.7; }
.field select {
  appearance: none; cursor: pointer; padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23526b68' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 17px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; background: #fff; border-color: var(--teal-400);
  box-shadow: 0 0 0 4px rgba(44,195,168,.16);
}
.field input::placeholder, .field textarea::placeholder { color: #a8b9b6; }

.field.has-error input, .field.has-error select, .field.has-error textarea {
  border-color: var(--coral-500); background: var(--coral-50);
}
.field.has-error input:focus, .field.has-error select:focus, .field.has-error textarea:focus {
  box-shadow: 0 0 0 4px rgba(255,107,82,.15);
}
.err {
  font-size: .81rem; color: var(--coral-600); font-weight: 600;
  display: none; align-items: center; gap: 5px;
}
.err svg { width: 13px; height: 13px; flex-shrink: 0; }
.field.has-error .err { display: flex; animation: shakeIn .35s var(--ease); }

@keyframes shakeIn {
  0% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  55% { transform: translateX(4px); }
  100% { transform: translateX(0); }
}

.hint { font-size: .8rem; color: var(--muted); }
.hint svg { width: 14px; height: 14px; vertical-align: -2px; margin-right: 3px; }

/* Defensive: any inline icon dropped into flowing text stays icon-sized */
p > svg, li > svg, span > svg, label > svg, h4 > svg, h3 > svg, td > svg {
  width: 1em; height: 1em; vertical-align: -.125em; flex-shrink: 0;
}
.callout h4 > svg { width: 20px; height: 20px; vertical-align: -3px; }

/* Checkbox / radio */
.check {
  display: flex; align-items: flex-start; gap: 11px; cursor: pointer;
  font-size: .91rem; line-height: 1.6; margin-bottom: 11px; user-select: none;
  position: relative;
}
/* input kept invisible but overlaying its visual box: hit-testable + keyboard accessible */
.check input {
  position: absolute; left: 0; top: 3px; width: 21px; height: 21px;
  margin: 0; opacity: 0; cursor: pointer; z-index: 1;
}
.check .box {
  width: 21px; height: 21px; border-radius: 6px; border: 1.5px solid var(--line);
  background: var(--canvas); flex-shrink: 0; margin-top: 3px;
  display: grid; place-items: center; transition: .22s var(--ease);
}
.check .box svg { width: 13px; height: 13px; color: #fff; opacity: 0; transform: scale(.5); transition: .22s var(--ease); }
.check input:checked + .box { background: var(--grad-brand); border-color: var(--teal-600); }
.check input:checked + .box svg { opacity: 1; transform: scale(1); }
.check input:focus-visible + .box { box-shadow: 0 0 0 4px rgba(44,195,168,.2); }
.check.radio .box { border-radius: 50%; }
.check.radio .box svg { display: none; }
.check.radio .box::after {
  content: ''; width: 9px; height: 9px; border-radius: 50%; background: #fff;
  opacity: 0; transform: scale(.4); transition: .22s var(--ease);
}
.check.radio input:checked + .box::after { opacity: 1; transform: scale(1); }
.check-group.has-error .box { border-color: var(--coral-500); }

/* Interest chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { position: relative; display: inline-flex; }
.chip input {
  position: absolute; inset: 0; width: 100%; height: 100%;
  margin: 0; opacity: 0; cursor: pointer; z-index: 1;
}
.chip span {
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  padding: 10px 18px; border-radius: var(--r-pill);
  border: 1.5px solid var(--line); background: var(--canvas);
  font-size: .89rem; font-weight: 600; font-family: var(--ff-head);
  color: var(--ink-soft); transition: .25s var(--ease);
}
.chip span svg { width: 15px; height: 15px; }
.chip:hover span { border-color: var(--teal-300); color: var(--teal-700); }
.chip input:checked + span {
  background: var(--grad-brand); color: #fff; border-color: transparent; box-shadow: var(--sh-teal);
}
.chip input:focus-visible + span { box-shadow: 0 0 0 4px rgba(44,195,168,.25); }

/* Alerts / confirmation */
.alert {
  display: none; gap: 15px; padding: 20px 22px; border-radius: var(--r-md);
  margin-bottom: 24px; align-items: flex-start; border: 1px solid;
}
.alert.is-visible { display: flex; animation: popIn .45s var(--ease); }
.alert__ico { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; flex-shrink: 0; }
.alert__ico svg { width: 21px; height: 21px; color: #fff; }
.alert b { display: block; font-family: var(--ff-head); font-size: 1.04rem; margin-bottom: 3px; }
.alert p { margin: 0; font-size: .93rem; }
.alert__close {
  margin-left: auto; background: none; border: 0; cursor: pointer; color: inherit;
  opacity: .5; padding: 2px; line-height: 0; transition: opacity .2s;
}
.alert__close:hover { opacity: 1; }
.alert__close svg { width: 17px; height: 17px; }

.alert--success { background: var(--teal-50); border-color: var(--teal-200); color: var(--teal-800); }
.alert--success .alert__ico { background: var(--grad-brand); }
.alert--success b { color: var(--teal-800); }
.alert--error { background: var(--coral-50); border-color: var(--coral-100); color: #8c2f1b; }
.alert--error .alert__ico { background: var(--grad-coral); }
.alert--error b { color: #8c2f1b; }
.alert--info { background: #eff6ff; border-color: #d7e6fd; color: #1c3f74; }
.alert--info .alert__ico { background: linear-gradient(135deg,#4f95f0,#2563cf); }
.alert--info b { color: #1c3f74; }

@keyframes popIn {
  0% { opacity: 0; transform: translateY(-12px) scale(.97); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Loading state on submit */
.btn.is-loading { pointer-events: none; opacity: .82; }
.btn.is-loading .btn-txt { opacity: .65; }
.spinner {
  display: none; width: 17px; height: 17px; border-radius: 50%;
  border: 2.5px solid rgba(255,255,255,.35); border-top-color: #fff;
  animation: spin .7s linear infinite;
}
.btn.is-loading .spinner { display: block; }
.btn.is-loading svg.arw { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Success panel (full replace) */
.success-panel {
  display: none; text-align: center; padding: clamp(30px, 4vw, 48px) 24px;
  animation: popIn .5s var(--ease);
}
.success-panel.is-visible { display: block; }
.success-panel__ico {
  width: 82px; height: 82px; margin: 0 auto 22px; border-radius: 50%;
  background: var(--grad-brand); display: grid; place-items: center; box-shadow: var(--sh-teal);
  animation: pulseRing 2.2s ease-out infinite;
}
.success-panel__ico svg { width: 40px; height: 40px; color: #fff; }
.success-panel h3 { margin-bottom: 10px; }
.success-panel p { max-width: 460px; margin-inline: auto; }
@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(18,168,146,.45); }
  70% { box-shadow: 0 0 0 22px rgba(18,168,146,0); }
  100% { box-shadow: 0 0 0 0 rgba(18,168,146,0); }
}

/* Contact info tiles */
.info-tile {
  display: flex; gap: 16px; padding: 22px; border-radius: var(--r-md);
  background: #fff; border: 1px solid var(--line); transition: .35s var(--ease);
}
.info-tile:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: var(--teal-200); }
.info-tile__ico {
  width: 50px; height: 50px; border-radius: 14px; flex-shrink: 0;
  background: var(--teal-50); color: var(--teal-600); display: grid; place-items: center; transition: .35s var(--ease);
}
.info-tile:hover .info-tile__ico { background: var(--grad-brand); color: #fff; }
.info-tile__ico svg { width: 23px; height: 23px; }
.info-tile h4 { margin-bottom: 5px; font-size: 1.02rem; }
.info-tile p { margin: 0; font-size: .93rem; }
.info-tile a { font-weight: 600; }

.map-embed {
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--sh-sm); line-height: 0; background: var(--canvas-2);
}
.map-embed iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- 17. Legal pages ---------- */
.legal { font-size: 1rem; }
.legal h2 { font-size: 1.55rem; margin-top: 2.2em; padding-top: .3em; }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: 1.16rem; margin-top: 1.6em; }
.legal ul { margin-bottom: 1.3rem; }
.legal li { margin-bottom: .55rem; }

.toc {
  background: var(--canvas); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 28px; margin-bottom: 40px;
}
.toc h4 { margin-bottom: 14px; }
.toc ol { columns: 2; column-gap: 30px; margin: 0; padding-left: 1.2rem; }
.toc li { margin-bottom: .5rem; font-size: .93rem; break-inside: avoid; }

.updated-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--teal-50); border: 1px solid var(--teal-200); color: var(--teal-700);
  padding: 9px 18px; border-radius: var(--r-pill); font-size: .87rem; font-weight: 600;
}
.updated-pill svg { width: 16px; height: 16px; }

/* ---------- 18. Team ---------- */
.member { text-align: center; }
.member__media {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  margin-bottom: 16px; aspect-ratio: 1; box-shadow: var(--sh-sm);
}
.member__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.member:hover .member__media img { transform: scale(1.07); }
.member__media::after {
  content: ''; position: absolute; inset: 0; opacity: 0; transition: .4s var(--ease);
  background: linear-gradient(to top, rgba(13,63,58,.75), transparent 60%);
}
.member:hover .member__media::after { opacity: 1; }
.member h4 { margin-bottom: 2px; }
.member span { font-size: .87rem; color: var(--teal-600); font-weight: 600; }

/* ---------- 19. Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 34px; left: 12%; right: 12%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--teal-200) 0 9px, transparent 9px 18px);
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step__n {
  width: 68px; height: 68px; margin: 0 auto 18px; border-radius: 50%;
  background: #fff; border: 2px solid var(--teal-200); color: var(--teal-600);
  display: grid; place-items: center; font-family: var(--ff-head); font-weight: 800;
  font-size: 1.35rem; transition: .35s var(--ease); box-shadow: var(--sh-sm);
}
.step:hover .step__n { background: var(--grad-brand); color: #fff; border-color: transparent; transform: translateY(-6px); box-shadow: var(--sh-teal); }
.step h4 { margin-bottom: 7px; font-size: 1.05rem; }
.step p { font-size: .91rem; margin: 0; }

/* ---------- 20. Footer ---------- */
.footer { background: var(--grad-dark); color: #9fc4be; padding-top: clamp(56px, 7vw, 84px); position: relative; overflow: hidden; }
.footer::before {
  content: ''; position: absolute; width: 480px; height: 480px; border-radius: 50%;
  background: rgba(44,195,168,.13); filter: blur(100px); top: -220px; left: -140px;
}
.footer__in { position: relative; z-index: 2; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 42px; padding-bottom: 46px; }
.footer h4 { color: #fff; font-size: 1.06rem; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer h4::after {
  content: ''; position: absolute; left: 0; bottom: 0; width: 36px; height: 3px;
  background: var(--grad-coral); border-radius: 3px;
}
.footer p { font-size: .93rem; }
.footer .logo__name { color: #fff; }
.footer .logo__tag { color: #6fa39c; }
.fmenu { list-style: none; padding: 0; margin: 0; }
.fmenu li { margin-bottom: 11px; }
.fmenu a { color: #9fc4be; font-size: .93rem; display: inline-flex; align-items: center; gap: 8px; transition: .25s var(--ease); }
.fmenu a::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--teal-400); opacity: .6; transition: .25s var(--ease); }
.fmenu a:hover { color: #fff; transform: translateX(5px); }
.fmenu a:hover::before { background: var(--coral-400); opacity: 1; }

.fcontact { list-style: none; padding: 0; margin: 0 0 22px; }
.fcontact li { display: flex; gap: 12px; margin-bottom: 14px; font-size: .92rem; }
.fcontact .fi {
  width: 34px; height: 34px; border-radius: 10px; background: rgba(255,255,255,.08);
  display: grid; place-items: center; flex-shrink: 0; color: var(--teal-300);
}
.fcontact .fi svg { width: 16px; height: 16px; }
.fcontact a { color: #9fc4be; }
.fcontact a:hover { color: #fff; }

.fnews { display: flex; gap: 9px; margin-top: 14px; }
.fnews input {
  flex: 1; min-width: 0; background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.14);
  border-radius: var(--r-pill); padding: 12px 18px; color: #fff; font-family: var(--ff-body); font-size: .9rem;
  transition: .25s var(--ease);
}
.fnews input::placeholder { color: #83aaa4; }
.fnews input:focus { outline: none; border-color: var(--teal-400); background: rgba(255,255,255,.13); }
.fnews button {
  width: 48px; height: 48px; border-radius: 50%; border: 0; cursor: pointer; flex-shrink: 0;
  background: var(--grad-coral); color: #fff; display: grid; place-items: center;
  transition: .3s var(--ease); box-shadow: var(--sh-coral);
}
.fnews button:hover { transform: translateY(-3px) scale(1.05); }
.fnews button svg { width: 18px; height: 18px; }
.fnews-msg { font-size: .85rem; margin-top: 11px; display: none; align-items: center; gap: 7px; color: var(--teal-300); font-weight: 600; }
.fnews-msg.is-visible { display: flex; animation: popIn .4s var(--ease); }
.fnews-msg svg { width: 15px; height: 15px; flex-shrink: 0; }
.fnews-msg.is-err { color: var(--coral-300); }

.fsocial { display: flex; gap: 10px; margin-top: 20px; }
.fsocial a {
  width: 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,.08);
  display: grid; place-items: center; color: #9fc4be; transition: .3s var(--ease);
}
.fsocial a:hover { background: var(--grad-brand); color: #fff; transform: translateY(-4px); }
.fsocial svg { width: 17px; height: 17px; }

.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.badges span {
  display: inline-flex; align-items: center; gap: 7px; font-size: .76rem; font-weight: 600;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  padding: 7px 13px; border-radius: var(--r-pill); color: #b3d4cf;
}
.badges svg { width: 13px; height: 13px; color: var(--teal-300); }

.footer__bot {
  border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: .87rem;
}
.footer__bot ul { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.footer__bot li { margin: 0; }

.disclaimer {
  font-size: .78rem; color: #6d9a94; line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,.07); padding: 18px 0 26px;
}

/* ---------- 21. Back to top ---------- */
.totop {
  position: fixed; right: 24px; bottom: 24px; z-index: 150;
  width: 50px; height: 50px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--grad-brand); color: #fff; display: grid; place-items: center;
  box-shadow: var(--sh-teal); opacity: 0; visibility: hidden; transform: translateY(16px);
  transition: .35s var(--ease);
}
.totop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.totop:hover { transform: translateY(-4px) scale(1.06); }
.totop svg { width: 20px; height: 20px; }

/* ---------- 22. Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .09s; }
.reveal[data-d="2"] { transition-delay: .18s; }
.reveal[data-d="3"] { transition-delay: .27s; }
.reveal[data-d="4"] { transition-delay: .36s; }
.reveal[data-d="5"] { transition-delay: .45s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- 23. Responsive ---------- */
@media (max-width: 1080px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 38px; }
  .steps::before { display: none; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .g-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
  :root { --header-h: 74px; }

  .burger { display: grid; }
  .header__cta .btn { display: none; }

  /* IMPORTANT: backdrop-filter on an ancestor makes it the containing block for
     position:fixed children, which would trap the off-canvas .nav inside the header.
     Drop the blur on mobile and use a solid background instead. */
  .header { backdrop-filter: none; -webkit-backdrop-filter: none; background: #fff; }
  .header.is-stuck { background: #fff; }

  .nav {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(340px, 86vw);
    background: #fff; flex-direction: column; align-items: stretch; gap: 2px;
    padding: 92px 20px 32px; overflow-y: auto; z-index: 195;
    transform: translateX(105%); transition: transform .4s var(--ease), visibility .4s;
    box-shadow: -14px 0 44px rgba(12,31,29,.16);
    visibility: hidden;   /* keeps closed menu out of tab order & off the scroll box */
  }
  .nav.is-open { transform: translateX(0); visibility: visible; }
  .nav > li > a { padding: 13px 16px; border-radius: var(--r-sm); font-size: 1rem; justify-content: space-between; }

  .dropdown {
    position: static; transform: none; opacity: 1; visibility: visible;
    box-shadow: none; border: 0; border-left: 2px solid var(--teal-100);
    border-radius: 0; margin: 2px 0 6px 16px; padding: 0 0 0 8px;
    min-width: 0; max-height: 0; overflow: hidden; transition: max-height .4s var(--ease);
  }
  /* cancel the desktop translateX(-50%) that the open/hover rules re-apply */
  .nav li:hover .dropdown,
  .nav li.is-open .dropdown { transform: none; opacity: 1; }
  .nav li.is-open .dropdown { max-height: 520px; }
  .dropdown a { padding: 9px 10px; }
  .dropdown .di { width: 30px; height: 30px; }

  .hero__in, .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .hero__media { max-width: 560px; margin-inline: auto; }
  .hero__sub { margin-inline: auto; }
  .hero__in > div:first-child { text-align: center; }
  .hero .btn-row, .hero__trust { justify-content: center; }
  .hero__media::before { display: none; }
  .float-card--a { left: -10px; }
  .float-card--b { right: -10px; }

  .cta { grid-template-columns: 1fr; text-align: center; }
  .cta__actions { max-width: 380px; margin-inline: auto; width: 100%; }

  .media-stack { max-width: 560px; margin: 0 auto 44px; }
  .sidebar { position: static; }
  .topbar__list { gap: 16px; font-size: .8rem; }
}

@media (max-width: 767px) {
  body { font-size: 16px; }
  .g-2, .g-3, .g-4, .svc-grid, .why-grid, .stats { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .toc ol { columns: 1; }
  .footer__top { grid-template-columns: 1fr; gap: 34px; }
  .footer__bot { flex-direction: column; text-align: center; }
  .topbar__in { justify-content: center; text-align: center; }
  .topbar__list { justify-content: center; }
  .media-stack img.b { width: 40%; right: -8px; bottom: -22px; }
  .steps { grid-template-columns: 1fr; }
  .float-card { padding: 11px 14px; }
  .float-card b { font-size: 1rem; }
  .float-card--a { left: 4px; top: 4%; }
  .float-card--b { right: 4px; bottom: 4%; }
  .avatars img { width: 38px; height: 38px; }
  .article blockquote { padding: 18px 20px; }
  .cta { padding: 34px 22px; }
}

@media (max-width: 420px) {
  :root { --gutter: 16px; }
  .btn { padding: 13px 22px; font-size: .92rem; }
  .btn-lg { padding: 15px 26px; font-size: .96rem; }
  .btn-row { flex-direction: column; }
  .btn-row .btn { width: 100%; }
  .svc__foot .btn { width: 100%; }
  .float-card { display: none; }
}

/* ---------- 24. Print ---------- */
@media print {
  .header, .topbar, .footer, .totop, .cta, .burger, .nav-backdrop { display: none !important; }
  body { color: #000; font-size: 12pt; }
  .section { padding: 18px 0; }
  a { color: #000; text-decoration: underline; }
}
