/* ============================================================
   AliMo Care — shared design system
   Warm · established · reassuring
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,500;0,6..72,600;1,6..72,400;1,6..72,500&family=Mulish:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  /* Brand colour */
  --ink:        #1d2522;
  --ink-soft:   #43504b;
  --ink-faint:  #6c7872;

  --teal-900:   #36213f;
  --teal-800:   #4d2f5d;
  --teal-700:   #6c4483;
  --teal-600:   #7e5596;
  --teal-500:   #9069a6;
  --sage:       #ded0f0;
  --sage-soft:  #efe9f8;

  --cream:      #faf7f2;
  --cream-2:    #fdfbf8;
  --paper:      #ffffff;

  --gold:       #b1873b;
  --gold-deep:  #936e2c;
  --gold-soft:  #ddc08a;
  --gold-wash:  #f3e8d2;

  --line:       rgba(29,37,34,0.12);
  --line-2:     rgba(29,37,34,0.07);
  --shadow-sm:  0 1px 2px rgba(40,22,68,.06), 0 2px 8px rgba(40,22,68,.05);
  --shadow-md:  0 6px 24px rgba(40,22,68,.10), 0 2px 6px rgba(40,22,68,.06);
  --shadow-lg:  0 24px 60px rgba(40,22,68,.16), 0 6px 18px rgba(40,22,68,.08);

  --serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --sans:  'Mulish', system-ui, -apple-system, sans-serif;

  --wrap: 1180px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 30px;

  --header-h: 74px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 .5em;
  text-wrap: balance;
}

p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--teal-700); text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
.wrap-narrow { max-width: 820px; }

.section { padding: 92px 0; }
.section-sm { padding: 64px 0; }

.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }

.h-display { font-size: clamp(2.5rem, 1.4rem + 3.6vw, 4.1rem); font-weight: 500; }
.h-section { font-size: clamp(1.95rem, 1.3rem + 2.2vw, 2.95rem); }
.lead { font-size: clamp(1.12rem, 1.05rem + .4vw, 1.32rem); color: var(--ink-soft); line-height: 1.6; }

.text-center { text-align: center; }
.muted { color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: .005em;
  padding: 15px 26px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-gold { background: var(--gold); color: #fff; box-shadow: 0 6px 16px rgba(177,135,59,.32); }
.btn-gold:hover { background: var(--gold-deep); box-shadow: 0 10px 24px rgba(177,135,59,.4); }

.btn-teal { background: var(--teal-700); color: #fff; box-shadow: 0 6px 16px rgba(56,33,96,.24); }
.btn-teal:hover { background: var(--teal-800); }

.btn-ghost { background: transparent; color: var(--teal-700); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--teal-600); background: var(--sage-soft); }

.btn-white { background: #fff; color: var(--teal-800); }
.btn-white:hover { background: var(--cream-2); }

.btn-lg { padding: 17px 32px; font-size: 1.04rem; }
.btn-block { width: 100%; }

.btn svg { width: 18px; height: 18px; }

/* ---------- Utility top bar ---------- */
.topbar {
  background: var(--teal-900);
  color: #ddd4ec;
  font-size: .85rem;
  font-weight: 500;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 42px; gap: 18px; }
.topbar a { color: #f1ecf9; }
.topbar-left { display: flex; align-items: center; gap: 22px; }
.topbar-item { display: inline-flex; align-items: center; gap: 8px; }
.topbar-item svg { width: 15px; height: 15px; color: var(--gold-soft); }
.topbar-right { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-soft); font-weight: 700; letter-spacing: .04em; text-transform: uppercase; font-size: .73rem; }
.topbar-right .dot { width: 7px; height: 7px; border-radius: 50%; background: #6fce9d; box-shadow: 0 0 0 3px rgba(111,206,157,.22); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(252,248,240,.86);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line-2);
  transition: box-shadow .25s ease, background .25s ease;
}
.header.scrolled { box-shadow: var(--shadow-sm); background: rgba(252,248,240,.96); }
.header .wrap { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 13px; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  background: #efe9f8 url('img/emblem.jpg') center/116% no-repeat;
  box-shadow: 0 1px 3px rgba(40,22,68,.22);
}
.brand-mark span { display: none; }
.brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name b { font-family: var(--serif); font-weight: 600; font-size: 1.32rem; color: var(--ink); letter-spacing: -.01em; }
.brand-name small { font-size: .64rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-weight: 600; font-size: .95rem; color: var(--ink-soft);
  padding: 9px 13px; border-radius: 9px; position: relative; transition: color .18s, background .18s;
}
.nav a:hover { color: var(--teal-800); background: var(--sage-soft); }
.nav a.active { color: var(--teal-800); }
.nav a.active::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 3px; height: 2px; background: var(--gold); border-radius: 2px;
}
.has-drop { position: relative; }
.drop {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 256px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-md); padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(6px); transition: all .2s ease; z-index: 70;
}
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a { display: block; padding: 11px 13px; border-radius: 9px; font-size: .92rem; color: var(--ink); }
.drop a:hover { background: var(--sage-soft); }
.drop a b { display: block; font-family: var(--sans); font-weight: 700; }
.drop a small { color: var(--ink-faint); font-weight: 500; font-size: .8rem; }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; color: var(--teal-800); font-size: 1.02rem; }
.header-phone svg { width: 17px; height: 17px; color: var(--gold-deep); }

.burger { display: none; width: 46px; height: 46px; border-radius: 11px; border: 1px solid var(--line); background: #fff; cursor: pointer; align-items: center; justify-content: center; }
.burger svg { width: 22px; height: 22px; color: var(--ink); }

/* mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 90; visibility: hidden; }
.drawer.open { visibility: visible; }
.drawer-scrim { position: absolute; inset: 0; background: rgba(40,22,68,.46); opacity: 0; transition: opacity .25s; }
.drawer.open .drawer-scrim { opacity: 1; }
.drawer-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 360px);
  background: var(--cream-2); box-shadow: var(--shadow-lg); padding: 22px;
  transform: translateX(100%); transition: transform .28s cubic-bezier(.4,0,.1,1);
  display: flex; flex-direction: column; gap: 6px; overflow-y: auto;
}
.drawer.open .drawer-panel { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.drawer-close { width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--line); background: #fff; cursor: pointer; display: grid; place-items: center; }
.drawer a { padding: 13px 12px; border-radius: 10px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--line-2); }
.drawer a:hover { background: var(--sage-soft); }
.drawer .btn { margin-top: 14px; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--cream); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -20%; right: -10%; width: 60%; height: 140%;
  background: radial-gradient(closest-side, rgba(222,208,240,.7), transparent);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding: 76px 0 84px; position: relative; }
.hero-copy { max-width: 600px; }
.award-ribbon {
  display: inline-flex; align-items: center; gap: 11px; background: var(--gold-wash);
  border: 1px solid var(--gold-soft); color: var(--gold-deep); font-weight: 700;
  font-size: .82rem; padding: 8px 16px 8px 10px; border-radius: 100px; margin-bottom: 22px;
}
.award-ribbon .trophy { width: 26px; height: 26px; border-radius: 50%; background: var(--gold); display: grid; place-items: center; }
.award-ribbon .trophy svg { width: 15px; height: 15px; color: #fff; }
.hero h1 { margin-bottom: 20px; }
.hero h1 .accent { color: var(--teal-700); font-style: italic; }
.hero-lead { margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-reassure { display: flex; align-items: center; gap: 9px; margin-top: 22px; color: var(--ink-soft); font-size: .92rem; font-weight: 600; }
.hero-reassure svg { width: 18px; height: 18px; color: var(--teal-600); flex: none; }

.hero-media { position: relative; }
.hero-figure {
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5; border: 8px solid #fff;
}
.hero-badge-float {
  position: absolute; left: -26px; bottom: 34px; background: #fff; border-radius: var(--r-md);
  box-shadow: var(--shadow-md); padding: 16px 20px; display: flex; align-items: center; gap: 14px; max-width: 270px;
}
.hero-badge-float .ico { width: 46px; height: 46px; border-radius: 12px; background: var(--sage); display: grid; place-items: center; flex: none; }
.hero-badge-float .ico svg { width: 24px; height: 24px; color: var(--teal-700); }
.hero-badge-float b { font-family: var(--serif); font-size: 1.05rem; display: block; }
.hero-badge-float small { color: var(--ink-faint); font-size: .8rem; }

/* ---------- Image placeholder ---------- */
.ph {
  position: relative; width: 100%; height: 100%;
  background-color: var(--sage-soft);
  background-image: repeating-linear-gradient(135deg, rgba(74,45,122,.07) 0 12px, rgba(74,45,122,0) 12px 24px);
  display: grid; place-items: center; color: var(--teal-700);
}
.ph span {
  font-family: ui-monospace, 'SF Mono', Menlo, monospace; font-size: .76rem; letter-spacing: .02em;
  background: rgba(255,255,255,.78); padding: 7px 13px; border-radius: 100px; border: 1px solid rgba(74,45,122,.14);
  max-width: 84%; text-align: center; line-height: 1.35; color: var(--teal-700);
}

.real { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--teal-900); color: #f1ecf9; }
.trust-strip .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; padding: 26px 28px; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item .ti-ico { width: 44px; height: 44px; border-radius: 11px; background: rgba(221,192,138,.16); display: grid; place-items: center; flex: none; }
.trust-item .ti-ico svg { width: 23px; height: 23px; color: var(--gold-soft); }
.trust-item b { display: block; font-family: var(--serif); font-size: 1.04rem; color: #fff; line-height: 1.15; }
.trust-item small { font-size: .8rem; color: #b4a4d2; }

/* ---------- Section heading block ---------- */
.sec-head { max-width: 680px; margin-bottom: 52px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.s-card {
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease; display: flex; flex-direction: column;
}
.s-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.s-card .s-media { aspect-ratio: 16/10; overflow: hidden; }
.s-card .s-body { padding: 26px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.s-card .s-ico { width: 48px; height: 48px; border-radius: 13px; background: var(--sage); display: grid; place-items: center; margin: -50px 0 16px; position: relative; box-shadow: var(--shadow-sm); border: 3px solid #fff; }
.s-card .s-ico svg { width: 24px; height: 24px; color: var(--teal-700); }
.s-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.s-card p { color: var(--ink-soft); font-size: .98rem; margin-bottom: 18px; }
.s-link { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--teal-700); font-size: .94rem; }
.s-link svg { width: 16px; height: 16px; transition: transform .18s; }
.s-card:hover .s-link svg { transform: translateX(4px); }

/* compact icon-card (no image) */
.s-card.compact .s-body { padding-top: 26px; }
.s-card.compact .s-ico { margin-top: 0; }

/* ---------- Why / feature list ---------- */
.why { background: var(--cream-2); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature { display: flex; gap: 16px; margin-bottom: 26px; }
.feature:last-child { margin-bottom: 0; }
.feature .f-ico { width: 50px; height: 50px; border-radius: 13px; background: #fff; border: 1px solid var(--line); display: grid; place-items: center; flex: none; box-shadow: var(--shadow-sm); }
.feature .f-ico svg { width: 25px; height: 25px; color: var(--gold-deep); }
.feature h3 { font-size: 1.22rem; margin-bottom: 5px; }
.feature p { color: var(--ink-soft); font-size: .96rem; margin: 0; }

.why-figure { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 5/6; border: 8px solid #fff; }

/* ---------- Stats / credentials band ---------- */
.stats { background: var(--teal-800); color: #f1ecf9; position: relative; overflow: hidden; }
.stats::after { content:""; position:absolute; inset:0; background: radial-gradient(circle at 80% 10%, rgba(221,192,138,.13), transparent 45%); }
.stats .wrap { position: relative; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat .num { font-family: var(--serif); font-size: clamp(2.4rem, 1.6rem + 2.4vw, 3.4rem); color: var(--gold-soft); line-height: 1; margin-bottom: 8px; }
.stat .lbl { font-size: .92rem; color: #cabedf; font-weight: 500; }
.stat .lbl b { color: #fff; display: block; font-weight: 700; font-size: 1rem; margin-bottom: 2px; }

/* ---------- Awards / recognition ---------- */
.awards { background: var(--cream-2); }
.awards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.award-card {
  background: linear-gradient(160deg, #241544, var(--teal-900));
  border: 1px solid rgba(221,192,138,.28); border-radius: var(--r-lg);
  box-shadow: var(--shadow-md); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.award-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.award-media { aspect-ratio: 1/1; display: grid; place-items: center; padding: 22px; }
.award-media img { max-width: 100%; max-height: 100%; object-fit: contain; }
.award-cap { padding: 18px 20px 22px; border-top: 1px solid rgba(221,192,138,.18); text-align: center; }
.award-cap .ac-org { font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-soft); font-weight: 700; margin-bottom: 6px; }
.award-cap .ac-title { font-family: var(--serif); color: #fff; font-size: 1.04rem; line-height: 1.3; }

/* ---------- Testimonials ---------- */
.tst { background: var(--cream); }
.tst-track { position: relative; }
.tst-viewport { overflow: hidden; }
.tst-rail { display: flex; transition: transform .5s cubic-bezier(.4,0,.1,1); }
.tst-slide { min-width: 100%; padding: 4px; }
.tst-card { background: #fff; border-radius: var(--r-xl); box-shadow: var(--shadow-md); padding: 48px clamp(28px,5vw,64px); max-width: 880px; margin: 0 auto; text-align: center; position: relative; }
.tst-quote-mark { font-family: var(--serif); font-size: 5rem; color: var(--gold-soft); line-height: .6; height: 38px; }
.tst-card blockquote { font-family: var(--serif); font-size: clamp(1.25rem, 1.05rem + .9vw, 1.7rem); line-height: 1.45; color: var(--ink); margin: 0 0 26px; font-style: italic; }
.tst-stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 14px; }
.tst-stars svg { width: 20px; height: 20px; color: var(--gold); }
.tst-author { font-weight: 800; color: var(--teal-800); font-size: 1.02rem; }
.tst-role { color: var(--ink-faint); font-size: .88rem; }
.tst-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 30px; }
.tst-arrow { width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--line); background: #fff; cursor: pointer; display: grid; place-items: center; transition: all .18s; }
.tst-arrow:hover { background: var(--teal-700); border-color: var(--teal-700); }
.tst-arrow:hover svg { color: #fff; }
.tst-arrow svg { width: 20px; height: 20px; color: var(--teal-800); }
.tst-dots { display: flex; gap: 9px; }
.tst-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); border: none; cursor: pointer; padding: 0; transition: all .2s; }
.tst-dot.active { background: var(--gold); width: 26px; border-radius: 5px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; background: linear-gradient(135deg, var(--teal-800), var(--teal-900)); color: #fff; overflow: hidden; }
.cta-band::before { content:""; position:absolute; top:-40%; left:-10%; width:50%; height:180%; background: radial-gradient(closest-side, rgba(221,192,138,.16), transparent); }
.cta-band .wrap { position: relative; display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; padding: 70px 28px; }
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 1.3rem + 2vw, 2.8rem); }
.cta-band p { color: #dccff0; font-size: 1.1rem; margin: 0; }
.cta-actions { display: flex; flex-direction: column; gap: 14px; }
.cta-actions .btn { width: 100%; }
.cta-call-note { text-align: center; color: #b4a4d2; font-size: .86rem; margin-top: 2px; }

/* ---------- Mini CTA (inline) ---------- */
.inline-cta { background: var(--gold-wash); border: 1px solid var(--gold-soft); border-radius: var(--r-lg); padding: 34px 36px; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.inline-cta h3 { font-size: 1.5rem; margin: 0 0 6px; }
.inline-cta p { margin: 0; color: var(--ink-soft); }
.inline-cta .ic-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; padding: 24px 8px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-family: var(--serif); font-size: 1.22rem; font-weight: 500; color: var(--ink); }
.faq-q .faq-plus { width: 30px; height: 30px; flex: none; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; position: relative; transition: all .2s; }
.faq-q .faq-plus::before, .faq-q .faq-plus::after { content:""; position:absolute; background: var(--teal-700); border-radius: 2px; transition: transform .25s ease; }
.faq-q .faq-plus::before { width: 13px; height: 2px; }
.faq-q .faq-plus::after { width: 2px; height: 13px; }
.faq-item.open .faq-q .faq-plus { background: var(--teal-700); border-color: var(--teal-700); }
.faq-item.open .faq-q .faq-plus::before, .faq-item.open .faq-q .faq-plus::after { background: #fff; }
.faq-item.open .faq-q .faq-plus::after { transform: rotate(90deg) scaleX(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .32s ease; }
.faq-a-inner { padding: 0 8px 24px; color: var(--ink-soft); }

/* ---------- Page hero (interior) ---------- */
.page-hero { background: var(--teal-900); color: #fff; position: relative; overflow: hidden; }
.page-hero::before { content:""; position:absolute; top:-30%; right:-5%; width:46%; height:160%; background: radial-gradient(closest-side, rgba(93,60,145,.5), transparent); }
.page-hero .wrap { position: relative; padding: 60px 28px 64px; }
.crumbs { display: flex; align-items: center; gap: 9px; font-size: .84rem; color: #b4a4d2; margin-bottom: 22px; font-weight: 600; }
.crumbs a { color: #dccff0; }
.crumbs svg { width: 14px; height: 14px; opacity: .6; }
.page-hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 1.5rem + 2.6vw, 3.4rem); margin-bottom: 18px; }
.page-hero .lead { color: #ded0f0; }
.page-hero .hero-actions { margin-top: 28px; }
.page-hero-fig { border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4/3; border: 7px solid rgba(255,255,255,.1); box-shadow: var(--shadow-lg); }
.page-hero .ph { background-color: rgba(255,255,255,.06); }
.page-hero .ph span { background: rgba(40,22,68,.5); color: #dccff0; border-color: rgba(255,255,255,.16); }

/* ---------- Prose / rich text ---------- */
.prose { font-size: 1.08rem; color: var(--ink-soft); }
.prose h2 { color: var(--ink); margin-top: 1.6em; }
.prose h3 { color: var(--ink); font-size: 1.4rem; margin-top: 1.4em; }
.prose p { margin-bottom: 1.2em; }
.prose strong { color: var(--ink); font-weight: 700; }

/* ---------- Checklist ---------- */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.checklist.cols-2 { grid-template-columns: 1fr 1fr; gap: 12px 28px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; color: var(--ink-soft); }
.checklist li .ck { width: 26px; height: 26px; border-radius: 50%; background: var(--sage); display: grid; place-items: center; flex: none; margin-top: 1px; }
.checklist li .ck svg { width: 15px; height: 15px; color: var(--teal-700); }

/* ---------- Two-col content ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-fig { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; border: 8px solid #fff; }
.split.reverse .split-text { order: 2; }

/* ---------- Pill list (tasks) ---------- */
.pill-grid { display: flex; flex-wrap: wrap; gap: 11px; }
.pill { display: inline-flex; align-items: center; gap: 9px; background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: 10px 18px 10px 14px; font-weight: 600; font-size: .92rem; color: var(--ink); box-shadow: var(--shadow-sm); }
.pill .pdot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex: none; }

/* ---------- Form ---------- */
.form-card { background: #fff; border-radius: var(--r-xl); box-shadow: var(--shadow-lg); padding: 38px clamp(26px,4vw,44px); border: 1px solid var(--line-2); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: 7px; color: var(--ink); }
.field label .req { color: var(--gold-deep); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--ink);
  padding: 14px 16px; border-radius: var(--r-sm); border: 1.5px solid var(--line); background: var(--cream-2);
  transition: border-color .18s, box-shadow .18s, background .18s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal-600); background: #fff; box-shadow: 0 0 0 4px rgba(93,60,145,.12); }
.field textarea { resize: vertical; min-height: 120px; }
.field.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 0; }
.field.invalid input, .field.invalid select { border-color: #c0563f; background: #fdf4f1; }
.field .err { color: #c0563f; font-size: .82rem; margin-top: 6px; display: none; font-weight: 600; }
.field.invalid .err { display: block; }
.form-note { font-size: .84rem; color: var(--ink-faint); display: flex; align-items: flex-start; gap: 9px; margin-top: 6px; }
.form-note svg { width: 16px; height: 16px; color: var(--teal-600); flex: none; margin-top: 2px; }
.form-success { text-align: center; padding: 24px 8px; display: none; }
.form-success.show { display: block; }
.form-success .fs-ico { width: 64px; height: 64px; border-radius: 50%; background: var(--sage); display: grid; place-items: center; margin: 0 auto 18px; }
.form-success .fs-ico svg { width: 32px; height: 32px; color: var(--teal-700); }

.form-error { display: none; margin-top: 18px; padding: 16px 18px; border-radius: var(--r-sm); background: #fdf4f1; border: 1.5px solid #e6b9ad; color: #8f3a27; font-size: .95rem; }
.form-error.show { display: block; }
.form-error p { margin: 0; }
.form-error a { color: #8f3a27; text-decoration: underline; }

/* segmented radio (care type) */
.seg { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.seg label { display: flex; align-items: center; gap: 10px; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--r-sm); cursor: pointer; font-weight: 600; font-size: .93rem; transition: all .16s; background: var(--cream-2); margin: 0; }
.seg label:hover { border-color: var(--teal-500); }
.seg input { width: auto; }
.seg label:has(input:checked) { border-color: var(--teal-600); background: var(--sage-soft); box-shadow: 0 0 0 3px rgba(93,60,145,.1); }

/* ---------- Contact info cards ---------- */
.contact-cards { display: grid; gap: 16px; }
.contact-card { background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-md); padding: 22px; display: flex; gap: 16px; box-shadow: var(--shadow-sm); }
.contact-card .cc-ico { width: 48px; height: 48px; border-radius: 12px; background: var(--sage); display: grid; place-items: center; flex: none; }
.contact-card .cc-ico svg { width: 24px; height: 24px; color: var(--teal-700); }
.contact-card b { display: block; font-family: var(--serif); font-size: 1.1rem; margin-bottom: 3px; }
.contact-card p, .contact-card a { color: var(--ink-soft); margin: 0; font-size: .96rem; }
.contact-card a:hover { color: var(--teal-700); }

/* ---------- Footer ---------- */
.footer { background: var(--teal-900); color: #c4b6dd; font-size: .92rem; }
.footer a { color: #dccff0; }
.footer a:hover { color: #fff; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding: 64px 0 48px; }
.footer-brand .brand-name b { color: #fff; }
.footer-brand .brand-name small { color: var(--gold-soft); }
.footer-brand p { margin: 18px 0; max-width: 290px; color: #b4a4d2; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.07); display: grid; place-items: center; }
.footer-social a:hover { background: var(--gold); }
.footer-social svg { width: 19px; height: 19px; color: #dccff0; }
.footer-col h4 { font-family: var(--sans); font-weight: 800; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-contact-item { display: flex; gap: 11px; margin-bottom: 15px; }
.footer-contact-item svg { width: 17px; height: 17px; color: var(--gold-soft); flex: none; margin-top: 3px; }
.footer-contact-item b { color: #fff; }
.footer-bottom { 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: .82rem; color: #9d8cc0; }
.footer-bottom .fb-links { display: flex; gap: 18px; flex-wrap: wrap; }
.cqc-note { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.06); padding: 7px 14px; border-radius: 100px; color: #dccff0; font-weight: 600; font-size: .78rem; }
.cqc-note svg { width: 15px; height: 15px; color: var(--gold-soft); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .nav, .header-phone { display: none; }
  .burger { display: inline-flex; }
  .hero-grid, .why-grid, .page-hero-grid, .split, .cta-band .wrap { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-text { order: 0; }
  .hero-media { max-width: 460px; }
  .cards-4, .stats-grid, .trust-strip .wrap { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 620px) {
  .section { padding: 60px 0; }
  .wrap { padding: 0 20px; }
  .cards, .cards-4, .stats-grid, .checklist.cols-2, .field.row2, .seg, .trust-strip .wrap, .footer-top { grid-template-columns: 1fr; }
  .topbar-left .topbar-item.hide-sm { display: none; }
  .hero-grid { padding: 44px 0 56px; }
  .hero-badge-float { left: 12px; bottom: 12px; }
  .inline-cta { flex-direction: column; align-items: flex-start; }
  .tst-card { padding: 36px 22px; }
  .stats-grid { gap: 32px 20px; grid-template-columns: 1fr 1fr; }
}
