/* =====================================================
   Asra Circle — Main Stylesheet
   ===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&family=Public+Sans:wght@400;500;600;700&display=swap');

   :root {
  --sage: #7c9885;
  --sage-deep: #5f7a66;
  --sage-soft: #e6ede7;
  --sage-tint: #f2f6f2;
  --sand: #e8dfd3;
  --sand-deep: #d9c9b0;
  --sand-tint: #f7f2ea;
  --ink: #2c322d;
  --ink-soft: #5a625b;
  --ink-faint: #8a928b;
  --line: #e9e6df;
  --white: #fff;
  --cloud: #fbfaf7;
  --amber: #c98a3a;
  --r-sm: 14px;
  --r: 22px;
  --r-lg: 34px;
  --r-xl: 46px;
  --shadow:
    0 1px 2px rgba(44, 50, 45, 0.04), 0 12px 30px -12px rgba(44, 50, 45, 0.12);
  --shadow-lg:
    0 2px 6px rgba(44, 50, 45, 0.05), 0 30px 60px -22px rgba(44, 50, 45, 0.22);
  --serif: 'Lora', serif;
  --sans: 'Public Sans', sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Public Sans', sans-serif;
  color: var(--ink);
  background: var(--cloud);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
.app {
  max-width: 1280px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
}
.page {
  display: none;
  animation: fade 0.5s ease;
}
.page.active {
  display: block;
}
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.wrap {
  padding: 0 22px;
}
@media (min-width: 900px) {
  .wrap {
    padding: 20px 56px 0;
    margin: 0 auto;
  }
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(251, 250, 247, 0.85);
  border-bottom: 1px solid var(--line);
}
.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 22px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  cursor: pointer;
}
.logo .mark {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--sage), var(--sage-deep));
  position: relative;
  flex: none;
}
.logo .mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
}
.nav-links {
  display: none;
  gap: 26px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav-links a {
  cursor: pointer;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--sage-deep);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (min-width: 1040px) {
  .nav-links {
    display: flex;
  }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 100px;
  transition: 0.25s;
  line-height: 1;
}
.btn-primary {
  background: var(--sage-deep);
  color: #fff;
  box-shadow: 0 8px 20px -6px rgba(95, 122, 102, 0.5);
}
.btn-primary:hover {
  background: #54705c;
  transform: translateY(-2px);
}
.btn-ghost {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.btn-ghost:hover {
  border-color: var(--sage);
  color: var(--sage-deep);
  transform: translateY(-2px);
}
.btn-soft {
  background: var(--sage-soft);
  color: var(--sage-deep);
}
.btn-amber {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 8px 20px -6px rgba(201, 138, 58, 0.5);
}
.btn-amber:hover {
  transform: translateY(-2px);
  background: #bd7e30;
}
.btn-sm {
  padding: 10px 18px;
  font-size: 13.5px;
}
.btn-block {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* ── UTILITIES ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-deep);
  background: var(--sage-soft);
  padding: 7px 15px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow);
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 13px;
  border-radius: 100px;
  background: var(--sand-tint);
  color: var(--ink-soft);
  border: 1px solid var(--line);
}
.pad {
  padding: 64px 0;
}
@media (min-width: 900px) {
  .pad {
    padding: 66px 0;
  }
}
.sec-head {
  max-width: 1150px;
  margin-bottom: 40px;
}
.sec-head h2 {
  font-size: clamp(30px, 5vw, 46px);
}
.sec-head p {
  color: var(--ink-soft);
  font-size: 17px;
  margin-top: 14px;
}
.grid {
  display: grid;
  gap: 18px;
}
.center {
  text-align: center;
}
.mt {
  margin-top: 18px;
}
.mt2 {
  margin-top: 34px;
}
.muted {
  color: var(--ink-soft);
}
.flex {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sage-deep);
  margin-bottom: 20px;
  cursor: pointer;
}

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      1100px 600px at 78% -8%,
      rgba(124, 152, 133, 0.22),
      transparent 60%
    ),
    radial-gradient(
      900px 500px at 5% 10%,
      rgba(232, 223, 211, 0.55),
      transparent 55%
    );
}

.hero-in {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 36px;
  padding-top: 48px;
  padding-bottom: 30px;
}
@media (min-width: 900px) {
  .hero-in {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    padding-top: 76px;
    padding-bottom: 60px;
  }
}
.hero h1 {
  font-size: clamp(40px, 7vw, 68px);
  line-height: 1.02;
}
.hero h1 em {
  font-style: italic;
  color: var(--sage-deep);
}
.hero p.sub {
  font-size: 18px;
  color: var(--ink-soft);
  margin: 26px 0 32px;
  max-width: 540px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.rec-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}
.rec-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 4px var(--sage-soft);
}
.hero-art {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}
.blob {
  position: absolute;
  inset: 6%;
  border-radius: 46% 54% 58% 42%/52% 44% 56% 48%;
  background: linear-gradient(150deg, var(--sage-soft), var(--sand));
  animation: morph 14s ease-in-out infinite;
}
@keyframes morph {
  50% {
    border-radius: 54% 46% 42% 58%/44% 56% 48% 52%;
  }
}
.hero-art svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 13px 16px;
  font-size: 13px;
  display: flex;
  gap: 10px;
  align-items: center;
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  50% {
    transform: translateY(-10px);
  }
}
.float-card .ic {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--sage-soft);
  display: grid;
  place-items: center;
  font-size: 17px;
  flex: none;
}
.fc1 {
  top: 8%;
  left: -4%;
}
.fc2 {
  bottom: 12%;
  right: -6%;
  animation-delay: 1.5s;
}

/* ── POSITIONING BANNER ── */
.posbar {
  background: var(--ink);
  color: #eef1ee;
  text-align: center;
  padding: 18px 0;
}
.posbar b {
  font-family: var(--serif);
  font-style: italic;
  color: #bcd2c2;
  font-weight: 500;
}

/* ── TRUST BAR ── */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.trust-in {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 34px;
  align-items: center;
  padding: 22px 0;
  justify-content: center;
}
.trust-in span {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-faint);
  display: flex;
  align-items: center;
  gap: 9px;
}
.trust-in span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sand-deep);
}
.trust-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 700;
  width: 100%;
  text-align: center;
  margin-bottom: 6px;
}

/* ── WHY EXISTS ── */
.why-exist {
  background: linear-gradient(180deg, var(--sand-tint), var(--cloud));
}
.why-grid {
  display: grid;
  gap: 30px;
  align-items: center;
}
@media (min-width: 880px) {
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.why-lines {
  font-family: var(--serif);
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.35;
}
.why-lines .q {
  color: var(--ink);
  display: block;
  margin-bottom: 2px;
}
.why-lines .q.dim {
  color: var(--ink-faint);
  font-size: 0.7em;
  font-style: italic;
}
.why-note {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink-soft);
  margin-top: 24px;
  max-width: 420px;
}

/* ── WHO WE SUPPORT ── */
.who-grid {
  grid-template-columns: 1fr;
}
@media (min-width: 680px) {
  .who-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.who-card {
  padding: 30px;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: 0.3s;
}
.who-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.who-card .ic {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 25px;
  margin-bottom: 18px;
}
.who-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.who-card p {
  color: var(--ink-soft);
  font-size: 15px;
}

/* ── STEPS ── */
.steps {
  display: grid;
  gap: 18px;
  counter-reset: s;
}
@media (min-width: 880px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}
.step {
  padding: 28px 24px;
  background: var(--white);
  border-radius: var(--r);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.step .n {
  counter-increment: s;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sage-deep);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 19px;
  margin-bottom: 18px;
}
.step .n::after {
  content: counter(s);
}
.step h4 {
  font-size: 17px;
  margin-bottom: 8px;
}
.step p {
  font-size: 14.5px;
  color: var(--ink-soft);
}

/* ── SUPPORT AREAS ── */
.area-grid {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 680px) {
  .area-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 980px) {
  .area-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.area {
  padding: 22px 14px;
  border-radius: var(--r);
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: 0.25s;
}
.area:hover {
  transform: translateY(-4px);
  border-color: var(--sage);
  box-shadow: var(--shadow);
  background: var(--sage-tint);
}
.area .em {
  font-size: 28px;
  margin-bottom: 9px;
}
.area span {
  font-size: 13px;
  font-weight: 600;
  display: block;
  line-height: 1.3;
}

/* ── PRO CARDS ── */
.scroller {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 6px 22px 24px;
  scroll-snap-type: x mandatory;
}
@media (min-width: 900px) {
  .scroller {
    padding-left: 56px;
    padding-right: 56px;
  }
}
.scroller::-webkit-scrollbar {
  height: 7px;
}
.scroller::-webkit-scrollbar-thumb {
  background: var(--sand-deep);
  border-radius: 10px;
}
.pro {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.3s;
}
.pro:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.pro .ph {
  height: 160px;
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, var(--sage-soft), var(--sand));
}
.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.25);
  background: linear-gradient(140deg, var(--sage), var(--sand-deep));
}
.av-1 {
  background: linear-gradient(140deg, #a7c0ac, #e8dfd3);
}
.av-2 {
  background: linear-gradient(140deg, #c9b79a, #e6ede7);
}
.av-3 {
  background: linear-gradient(140deg, #94b09c, #f0e6d6);
}
.av-4 {
  background: linear-gradient(140deg, #d6c4a8, #dce8df);
}
.av-5 {
  background: linear-gradient(140deg, #8fae98, #ecdfcf);
}
.pro .body {
  padding: 20px;
}
.pro h4 {
  font-size: 20px;
}
.pro .spec {
  color: var(--sage-deep);
  font-weight: 600;
  font-size: 13.5px;
  margin: 4px 0 12px;
}
.pro .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.pro .bio {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 16px;
  min-height: 42px;
}

/* ── DOCTORS / QUOTES ── */
.docs {
  background: var(--sage-deep);
  color: #fff;
}
.docs .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: #eaf1ec;
}
.docs h2 {
  color: #fff;
}
.quote-grid {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}
@media (min-width: 820px) {
  .quote-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.quote {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r);
  padding: 26px;
  backdrop-filter: blur(6px);
}
.quote p {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 18px;
}
.quote .who {
  display: flex;
  align-items: center;
  gap: 12px;
}
.quote .who .a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex: none;
}
.quote .who b {
  display: block;
  font-size: 14px;
}
.quote .who small {
  font-size: 12.5px;
  opacity: 0.75;
}

/* ── SAFETY SECTION ── */
.safe-grid {
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .safe-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.safe {
  padding: 30px;
  border-radius: var(--r-lg);
  background: var(--sand-tint);
  border: 1px solid var(--line);
  text-align: center;
}
.safe .ic {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
  font-size: 26px;
  box-shadow: var(--shadow);
}
.safe h3 {
  font-size: 21px;
  margin-bottom: 8px;
}
.safe p {
  font-size: 15px;
  color: var(--ink-soft);
}

/* ── FINAL CTA ── */
.final {
  text-align: center;
  background: radial-gradient(
    700px 380px at 50% 0%,
    var(--sage-soft),
    transparent 70%
  );
}
.final-card {
  background: linear-gradient(150deg, var(--sage-deep), #4d6655);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 64px 28px;
  position: relative;
  overflow: hidden;
}
.final-card h2 {
  color: #fff;
  font-size: clamp(30px, 5vw, 48px);
  max-width: 660px;
  margin: 0 auto 12px;
}
.final-card p {
  opacity: 0.85;
  max-width: 480px;
  margin: 0 auto 30px;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.r1 {
  width: 300px;
  height: 300px;
  top: -120px;
  right: -80px;
}
.r2 {
  width: 200px;
  height: 200px;
  bottom: -90px;
  left: -50px;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: #cfd4cf;
  padding: 54px 0 110px;
}
@media (min-width: 900px) {
  footer {
    padding-bottom: 54px;
  }
}
.foot-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .foot-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}
footer h5 {
  color: #fff;
  font-family: var(--serif);
  font-size: 16px;
  margin-bottom: 14px;
  font-weight: 500;
}
footer a {
  display: block;
  font-size: 14px;
  color: #aab0aa;
  padding: 5px 0;
  cursor: pointer;
}
footer a:hover {
  color: #fff;
}
.foot-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: #bcd2c2;
  margin-bottom: 14px;
}
.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 24px;
  font-size: 13px;
  color: #8a908a;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

/* ── MOBILE NAV ── */
.mobnav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-around;
  padding: 9px 6px env(safe-area-inset-bottom);
}
@media (min-width: 1040px) {
  .mobnav {
    display: none;
  }
}
.mobnav button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 10.5px;
  color: var(--ink-faint);
  font-weight: 600;
  padding: 5px 8px;
  border-radius: 12px;
}
.mobnav button.on {
  color: var(--sage-deep);
}
.mobnav .mi {
  font-size: 19px;
}

/* ── SUBPAGE HEAD ── */
.ph-head {
  background: linear-gradient(180deg, var(--sand-tint), var(--cloud));
  padding: 48px 0 30px;
}
.ph-head h1 {
  font-size: clamp(32px, 5vw, 52px);
}
.ph-head p {
  color: var(--ink-soft);
  font-size: 17px;
  margin-top: 12px;
  max-width: 600px;
}

/* ── FIND / SEARCH ── */
.find-layout {
  display: grid;
  gap: 26px;
}
@media (min-width: 900px) {
  .find-layout {
    grid-template-columns: 225px 1fr;
    align-items: start;
  }
}
.searchbar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 14px 20px;
  box-shadow: var(--shadow);
  margin-bottom: 22px;
}
.searchbar input {
  border: none;
  outline: none;
  flex: 1;
  font-family: inherit;
  font-size: 15px;
  background: none;
  color: var(--ink);
}
.filters {
  position: sticky;
  top: 84px;
}
.filter-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px;
  box-shadow: var(--shadow);
}
.fg {
  margin-bottom: 20px;
}
.fg:last-child {
  margin-bottom: 0;
}
.fg label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 10px;
}
.fopts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.fopt {
  font-size: 13px;
  font-weight: 500;
  padding: 7px 13px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: var(--cloud);
  cursor: pointer;
  transition: 0.2s;
}
.fopt.on,
.fopt:hover {
  background: var(--sage-soft);
  border-color: var(--sage);
  color: var(--sage-deep);
}
.find-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 620px) {
  .find-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1140px) {
  .find-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.filter-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  margin-bottom: 18px;
}
@media (min-width: 900px) {
  .filter-toggle {
    display: none;
  }
}
@media (max-width: 899px) {
  .filters {
    display: none;
  }
  .filters.show {
    display: block;
    margin-bottom: 22px;
  }
}

/* ── PROFILE & BOOKING ── */
.prof-layout {
  display: grid;
  gap: 30px;
}
@media (min-width: 980px) {
  .prof-layout {
    grid-template-columns: 1fr 340px;
    align-items: start;
  }
}
.prof-hero {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
}
.prof-hero .avatar {
  width: 120px;
  height: 120px;
  border-radius: 32px;
  flex: none;
}
.prof-hero h1 {
  font-size: 32px;
}
.prof-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px;
  box-shadow: var(--shadow);
  margin-top: 18px;
}
.prof-block h3 {
  font-size: 21px;
  margin-bottom: 14px;
}
.cal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}
.slot {
  padding: 11px;
  border-radius: 12px;
  border: 1px solid var(--line);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}
.slot:hover,
.slot.on {
  background: var(--sage-deep);
  color: #fff;
  border-color: var(--sage-deep);
}
.booking-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 980px) {
  .booking-card {
    position: sticky;
    top: 84px;
  }
}
.booking-card .price {
  font-family: var(--serif);
  font-size: 30px;
}
.testi {
  padding: 20px;
  background: var(--sand-tint);
  border-radius: var(--r);
  margin-bottom: 12px;
}
.testi p {
  font-size: 15px;
  font-style: italic;
  color: var(--ink-soft);
}
.stars {
  color: var(--amber);
  font-size: 14px;
  margin-bottom: 8px;
}
.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.detail-row span:first-child {
  color: var(--ink-soft);
}
.detail-row b {
  font-weight: 600;
}
.steps-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}
.sb {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-faint);
}
.sb .num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1.5px solid var(--line);
  font-size: 13px;
}
.sb.on .num {
  background: var(--sage-deep);
  color: #fff;
  border-color: var(--sage-deep);
}
.sb.on {
  color: var(--ink);
}
.sb-line {
  flex: 1;
  height: 1.5px;
  background: var(--line);
  min-width: 18px;
}
.bk-step {
  display: none;
}
.bk-step.active {
  display: block;
  animation: fade 0.4s;
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-family: inherit;
  font-size: 15px;
  background: var(--white);
  outline: none;
  color: var(--ink);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--sage);
}
.fmt-opts {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}
.fmt {
  padding: 18px;
  border: 1.5px solid var(--line);
  border-radius: var(--r);
  cursor: pointer;
  transition: 0.2s;
}
.fmt.on {
  border-color: var(--sage);
  background: var(--sage-tint);
}
.fmt .em {
  font-size: 22px;
}
.fmt b {
  display: block;
  margin: 8px 0 2px;
  font-size: 15px;
}
.fmt small {
  color: var(--ink-soft);
  font-size: 13px;
}
.confirm {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.confirm .badge {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--sage-soft);
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  animation: pop 0.6s cubic-bezier(0.2, 0.8, 0.3, 1.4);
}
@keyframes pop {
  from {
    transform: scale(0.4);
    opacity: 0;
  }
}

/* ── CAREGIVER ── */
.cg-hero {
  position: relative;
  overflow: hidden;
}
.cg-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0;
}
.cg-roles .chip {
  background: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  color: var(--ink);
}
.init-card {
  background: linear-gradient(150deg, var(--amber), #b5762a);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 46px 32px;
  position: relative;
  overflow: hidden;
}
.caregiver-split{
    display:flex;
    gap:60px;
    align-items:center;
}

.cg-left,
.cg-right{
    flex:1;
    position:relative;
    z-index:2;
}

.cg-right{
    padding-left:40px;
    border-left:1px solid rgba(255,255,255,.18);
}

.cg-right h2{
    color:#fff;
    margin:18px 0 22px;
}

.cg-right p{
    color:rgba(255,255,255,.88);
    line-height:1.9;
    margin-bottom:18px;
}

.cg-last{
    font-weight:600;
    color:#fff;
}

@media(max-width:991px){

    .caregiver-split{
        flex-direction:column;
        gap:40px;
    }

    .cg-right{
        border-left:none;
        border-top:1px solid rgba(255,255,255,.15);
        padding-left:0;
        padding-top:40px;
    }

}
.init-card h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 14px;
}
.init-card p {
  opacity: 0.92;
  margin-bottom: 14px;
}
.init-perks {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  margin: 24px 0;
}
.caregiver-split .cg-left,
.caregiver-split .cg-right{
    flex: 0 0 calc(50% - 30px);
    max-width: calc(50% - 30px);
}

.caregiver-split .cg-left h2,
.caregiver-split .cg-right h2{
    max-width:100%;
}

.caregiver-split .cg-left p,
.caregiver-split .cg-right p{
    max-width:100%;
}
@media (min-width: 680px) {
  .init-perks {
    grid-template-columns: repeat(2, 1fr);
  }
}
.perk {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 16px 18px;
  font-size: 14.5px;
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ── QR / REFERRAL ── */
.qr-box {
  display: grid;
  gap: 24px;
  align-items: center;
}
@media (min-width: 760px) {
  .qr-box {
    grid-template-columns: 200px 1fr;
  }
}
.qr {
  width: 180px;
  height: 180px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  margin: 0 auto;
}
.qr svg {
  width: 120px;
  height: 120px;
}

/* ── STORY SECTION ── */
.story {
  display: grid;
  gap: 28px;
  align-items: center;
}
@media (min-width: 880px) {
  .story {
    grid-template-columns: 1fr 1fr;
  }
  .story.rev > *:first-child {
    order: 2;
  }
}
.story-art {
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  background: linear-gradient(150deg, var(--sage-soft), var(--sand));
  position: relative;
  overflow: hidden;
}
.story h3 {
  font-size: 28px;
  margin-bottom: 14px;
}
.story p {
  color: var(--ink-soft);
  font-size: 16px;
  margin-bottom: 14px;
}

/* ── VISION / MISSION ── */
.vm-grid {
  display: grid;
  gap: 18px;
}
@media (min-width: 760px) {
  .vm-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.vm {
  padding: 34px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.vm.vision {
  background: var(--sage-deep);
  color: #fff;
}
.vm.vision h3 {
  color: #fff;
}
.vm.mission {
  background: var(--white);
}
.vm h3 {
  font-size: 24px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.vm p {
  font-size: 16px;
  line-height: 1.6;
}
.vm.vision p {
  opacity: 0.9;
}
.vm.mission p {
  color: var(--ink-soft);
}

/* ── RESOURCES ── */
.res-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 680px) {
  .res-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 980px) {
  .res-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.res {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: 0.3s;
}
.res:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.res .cover {
  height: 130px;
  display: grid;
  place-items: center;
  font-size: 38px;
}
.res .body {
  padding: 22px;
}
.res h4 {
  font-size: 18px;
  margin-bottom: 6px;
}
.res p {
  font-size: 14px;
  color: var(--ink-soft);
}
.res .read {
  font-size: 13px;
  font-weight: 600;
  color: var(--sage-deep);
  margin-top: 12px;
  display: inline-block;
}

/* ── FAQ / ALERTS / CONTACT ── */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.qa {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin-bottom: 12px;
  overflow: hidden;
}
.qa summary {
  padding: 20px 22px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.qa summary::-webkit-details-marker {
  display: none;
}
.qa summary::after {
  content: "+";
  font-size: 24px;
  color: var(--sage-deep);
  transition: 0.2s;
}
.qa[open] summary::after {
  transform: rotate(45deg);
}
.qa .ans {
  padding: 0 22px 22px;
  color: var(--ink-soft);
  font-size: 15px;
}
.alert {
  background: #fff4ec;
  border: 1.5px solid #f0c89b;
  border-radius: var(--r);
  padding: 24px;
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}
.alert .ic {
  font-size: 26px;
  flex: none;
}
.alert h3 {
  font-size: 19px;
  color: #a65a1e;
  margin-bottom: 6px;
}
.help-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin-bottom: 12px;
  gap: 14px;
  flex-wrap: wrap;
}
.help-row b {
  font-size: 16px;
}
.help-row p {
  font-size: 13.5px;
  color: var(--ink-soft);
}
.contact-grid {
  display: grid;
  gap: 26px;
}
@media (min-width: 880px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

/* ── DASHBOARDS ── */
.dash-layout {
  display: grid;
  gap: 22px;
}
@media (min-width: 900px) {
  .dash-layout {
    grid-template-columns: 240px 1fr;
    align-items: start;
  }
}
.side {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px;
  box-shadow: var(--shadow);
}
.side a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: 0.2s;
}
.side a.on,
.side a:hover {
  background: var(--sage-soft);
  color: var(--sage-deep);
}
.dash-grid {
  display: grid;
  gap: 18px;
}
@media (min-width: 680px) {
  .dash-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.dcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px;
  box-shadow: var(--shadow);
}
.dcard h4 {
  font-size: 18px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.sess {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.sess:last-child {
  border: none;
}
.sess .av {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  flex: none;
}
.sess b {
  font-size: 14.5px;
  display: block;
}
.sess small {
  font-size: 12.5px;
  color: var(--ink-soft);
}
.greet {
  font-family: var(--serif);
  font-size: 30px;
  margin-bottom: 6px;
}

/* ═══════════════════════════════════════════════════════
   SUPPORTING HEALTHCARE ORGANISATIONS — ASRA THEME
   ═══════════════════════════════════════════════════════ */

.org-section {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f9faf8 100%);
}

.org-section::before {
  content: "";
  position: absolute;
  top: -60px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle,
    rgba(95, 122, 102, 0.06) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.org-section::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(
    circle,
    rgba(201, 138, 58, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.org-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.org-content {
  padding-left: 10px;
}

.org-content .eyebrow {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(95, 122, 102, 0.1);
  color: #5f7a66;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 20px;
}

.org-content h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 700;
  color: #2c322d;
  line-height: 1.25;
  margin: 0 0 20px 0;
  max-width: 480px;
}

.org-lead {
  font-size: 16px;
  line-height: 1.75;
  color: #4a534c;
  margin: 0 0 32px 0;
  max-width: 520px;
}

.org-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.org-divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #e2e8e4, transparent);
}

.org-divider span:last-child {
  background: linear-gradient(90deg, transparent, #e2e8e4);
}

.org-divider p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: #5f7a66;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.org-benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.org-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(95, 122, 102, 0.08);
  box-shadow: 0 1px 6px rgba(44, 50, 45, 0.03);
  transition: all 0.3s ease;
}

.org-benefit:hover {
  transform: translateX(6px);
  border-color: rgba(95, 122, 102, 0.18);
  box-shadow: 0 4px 16px rgba(44, 50, 45, 0.06);
}

.org-check {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #5f7a66, #4a6352);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.org-check svg {
  width: 14px;
  height: 14px;
}

.org-benefit:hover .org-check {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(95, 122, 102, 0.3);
}

.org-benefit p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #3a423d;
}

.org-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, #5f7a66, #4a6352);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(95, 122, 102, 0.25);
}

.org-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(95, 122, 102, 0.35);
}

.org-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  position: relative;
}

.org-card-float {
  position: relative;
  width: 100%;
  max-width: 340px;
  height: 400px;
}

.org-card {
  position: absolute;
  background: #fff;
  border-radius: 18px;
  padding: 20px 22px;
  border: 1px solid rgba(95, 122, 102, 0.08);
  box-shadow: 0 4px 20px rgba(44, 50, 45, 0.06);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.4s ease;
  width: 260px;
}

.org-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(44, 50, 45, 0.1);
}

.org-card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.org-card-icon svg {
  width: 100%;
  height: 100%;
}

.org-card h5 {
  margin: 0 0 3px 0;
  font-size: 14px;
  font-weight: 700;
  color: #2c322d;
}

.org-card p {
  margin: 0;
  font-size: 12px;
  color: #6b756d;
}

.org-card-1 {
  top: 0;
  left: 0;
  animation: float-card-1 5s ease-in-out infinite;
}

.org-card-2 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float-card-2 6s ease-in-out infinite;
}

.org-card-3 {
  bottom: 0;
  right: 0;
  animation: float-card-3 5.5s ease-in-out infinite;
}

@keyframes float-card-1 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes float-card-2 {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-10px);
  }
}

@keyframes float-card-3 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@media (max-width: 900px) {
  .org-section {
    padding: 60px 0;
  }
  .org-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .org-content {
    padding-left: 0;
    text-align: center;
  }
  .org-content h2 {
    margin: 0 auto 20px;
  }
  .org-lead {
    margin: 0 auto 32px;
  }
  .org-divider span {
    flex: 0 1 60px;
  }
  .org-benefits {
    max-width: 480px;
    margin: 0 auto 36px;
  }
  .org-benefit:hover {
    transform: translateX(0) translateY(-2px);
  }
  .org-visual {
    min-height: 340px;
    order: -1;
  }
  .org-card-float {
    max-width: 300px;
    height: 340px;
  }
  .org-card {
    width: 230px;
    padding: 16px 18px;
  }
  .org-card-icon {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 480px) {
  .org-card-float {
    max-width: 260px;
    height: 300px;
  }
  .org-card {
    width: 200px;
    padding: 14px 16px;
  }
  .org-card h5 {
    font-size: 13px;
  }
  .org-card p {
    font-size: 11px;
  }
  .org-benefit p {
    font-size: 14px;
  }
  .org-lead {
    font-size: 15px;
  }
}
