/* ===========================================================
   Rebecca Hampson CBT — Modern Therapy Design System
   =========================================================== */

:root {
  /* Calming palette: warm cream, sage, deep forest, terracotta */
  --cream: #f7f3ec;
  --cream-2: #efe8dc;
  --sand: #e7dccb;
  --sage: #8aa191;
  --sage-deep: #5f7a68;
  --forest: #2f4438;
  --forest-2: #243730;
  --ink: #2b2a27;
  --muted: #6b6760;
  --terracotta: #c98a6b;
  --terracotta-deep: #b9755a;
  --white: #fffdf9;

  --radius: 22px;
  --radius-lg: 34px;
  --radius-pill: 999px;
  --shadow-sm: 0 6px 18px rgba(47, 68, 56, 0.08);
  --shadow: 0 22px 50px rgba(47, 68, 56, 0.14);
  --shadow-lg: 0 40px 80px rgba(36, 55, 48, 0.22);

  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
svg { width: 100%; height: 100%; fill: currentColor; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; line-height: 1.08; color: var(--forest); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.5rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.35rem; }
em { font-style: italic; color: var(--terracotta-deep); }

.section { padding: clamp(72px, 10vw, 130px) 0; }
.section--soft { background: var(--cream-2); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 18px;
}
.eyebrow--light { color: #c7d6cb; }

.section__head { max-width: 680px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.section__head p { color: var(--muted); font-size: 1.1rem; margin-top: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s, color 0.3s;
}
.btn--small { padding: 11px 22px; font-size: 0.9rem; }
.btn--block { width: 100%; }
.btn--primary { background: var(--forest); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--forest-2); transform: translateY(-3px); box-shadow: var(--shadow); }
.btn--ghost { background: transparent; color: var(--forest); border-color: rgba(47, 68, 56, 0.25); }
.btn--ghost:hover { border-color: var(--forest); transform: translateY(-3px); }
.btn--light { background: var(--cream); color: var(--forest); }
.btn--light:hover { background: var(--white); transform: translateY(-3px); box-shadow: var(--shadow); }

/* ---------- Topbar ---------- */
.topbar { background: var(--forest-2); color: #d9e4dc; font-size: 0.85rem; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; min-height: 42px; gap: 16px; }
.topbar__item { letter-spacing: 0.05em; opacity: 0.85; }
.topbar__contact { display: flex; align-items: center; gap: 6px; }
.topbar__contact a {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px; border-radius: var(--radius-pill);
  color: #d9e4dc; line-height: 1;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.topbar__contact a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.topbar__contact svg {
  width: 26px; height: 26px; padding: 6px; flex-shrink: 0;
  border-radius: 50%; background: rgba(255,255,255,0.12); color: #cde3d6;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.topbar__contact a:hover svg { background: rgba(255,255,255,0.2); }
.topbar__contact a:last-child svg { background: rgba(37,211,102,0.22); color: #4ee68b; }
.topbar__contact a:last-child:hover { background: rgba(37,211,102,0.16); color: #fff; }
.topbar__contact a:last-child:hover svg { background: rgba(37,211,102,0.32); color: #6bf3a1; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(247, 243, 236, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow-sm); border-color: rgba(47,68,56,0.06); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; min-height: 76px; }

.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-serif); font-size: 1.25rem; color: var(--forest); white-space: nowrap; flex-shrink: 0; }
.brand__mark {
  width: 42px; height: 42px; border-radius: 14px;
  background: linear-gradient(135deg, var(--sage), var(--sage-deep));
  color: var(--white); display: grid; place-items: center;
  font-size: 1rem; font-weight: 600; letter-spacing: 0.02em;
  box-shadow: var(--shadow-sm);
}
.brand__text { font-weight: 500; white-space: nowrap; }
.brand__text em { font-style: italic; color: var(--terracotta-deep); }
.brand--light, .brand--light .brand__text { color: var(--cream); }

.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__links a {
  padding: 9px 12px; border-radius: var(--radius-pill);
  font-weight: 500; font-size: 0.92rem; color: var(--ink); white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.nav__links a.btn { margin-left: 8px; }
.nav__links a:not(.btn):hover { background: rgba(138,161,145,0.18); color: var(--forest); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 26px; height: 2px; background: var(--forest); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(56px, 8vw, 96px) 0 clamp(72px, 9vw, 110px); }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.blob { position: absolute; border-radius: 50%; filter: blur(50px); opacity: 0.55; }
.blob--1 { width: 480px; height: 480px; background: #cfe0d3; top: -120px; right: -80px; }
.blob--2 { width: 360px; height: 360px; background: #f0d9c9; bottom: -120px; left: -60px; opacity: 0.5; }
.blob--3 { width: 280px; height: 280px; background: #dce6dd; top: 40%; left: 45%; opacity: 0.4; }

.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.hero__content { max-width: 600px; }
.hero h1 { margin-bottom: 22px; }
.lead { font-size: 1.18rem; color: var(--muted); max-width: 540px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 36px; }

.hero__trust { list-style: none; display: flex; gap: 30px; flex-wrap: wrap; padding-top: 26px; border-top: 1px solid rgba(47,68,56,0.12); }
.hero__trust li { display: flex; flex-direction: column; }
.hero__trust strong { font-family: var(--font-serif); font-size: 1.6rem; color: var(--forest); line-height: 1; }
.hero__trust span { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }

.hero__card { position: relative; }
.hero__portrait {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(47,68,56,0) 45%, rgba(47,68,56,0.28) 100%),
    url("assets/therapy-session.jpg") center top / cover no-repeat,
    linear-gradient(160deg, #9db5a4 0%, #5f7a68 55%, #3a5547 100%);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.hero__badge {
  position: absolute; left: -22px; bottom: 32px;
  background: var(--white); border-radius: 18px;
  padding: 16px 20px; display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow); max-width: 250px;
}
.hero__badge svg { width: 34px; height: 34px; color: var(--sage-deep); flex-shrink: 0; }
.hero__badge strong { display: block; font-family: var(--font-serif); color: var(--forest); font-size: 1.05rem; }
.hero__badge span { font-size: 0.82rem; color: var(--muted); }

/* ---------- Strip / marquee ---------- */
.strip { background: var(--forest); color: var(--cream); overflow: hidden; padding: 18px 0; }
.strip__track { display: flex; gap: 26px; white-space: nowrap; width: max-content; animation: scroll 32s linear infinite; }
.strip__track span { font-family: var(--font-serif); font-style: italic; font-size: 1.2rem; opacity: 0.92; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- About ---------- */
.about__inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.about__media { position: relative; }
.about__img {
  aspect-ratio: 5 / 6; border-radius: var(--radius-lg);
  background:
    url("assets/rebecca.jpg") center top / cover no-repeat,
    linear-gradient(150deg, #e7dccb 0%, #c98a6b 110%);
  box-shadow: var(--shadow);
}
.about__accred {
  position: absolute; right: -18px; bottom: -22px;
  background: var(--white); border-radius: 18px; padding: 18px;
  display: flex; align-items: center; gap: 14px; box-shadow: var(--shadow); max-width: 260px;
}
.about__accred-ring {
  width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; font-family: var(--font-serif);
  font-weight: 600; font-size: 0.95rem; color: var(--forest);
  border: 2px solid var(--sage); background: var(--cream);
}
.about__accred p { font-size: 0.9rem; color: var(--muted); }
.about__content p { color: var(--muted); margin-bottom: 16px; }

.ticks { list-style: none; margin: 26px 0 32px; display: grid; gap: 12px; }
.ticks li { position: relative; padding-left: 36px; color: var(--ink); }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 2px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--sage) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center / 14px no-repeat;
}

/* ---------- Explain ---------- */
.explain__head { max-width: 760px; margin: 0 auto clamp(40px, 6vw, 60px); text-align: center; }
.explain__head p { color: var(--muted); font-size: 1.1rem; margin-top: 14px; }
.explain__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mini {
  background: var(--white); border-radius: var(--radius); padding: 34px 30px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(47,68,56,0.05);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.mini:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.mini__num { font-family: var(--font-serif); font-size: 1rem; color: var(--terracotta-deep); font-weight: 600; }
.mini h3 { margin: 10px 0 8px; }
.mini p { color: var(--muted); font-size: 0.98rem; }

/* ---------- Services ---------- */
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card {
  background: var(--white); border-radius: var(--radius); padding: 32px 26px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(47,68,56,0.05);
  display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.card:hover .card__media img { transform: scale(1.05); }
.card__media {
  border-radius: 16px; overflow: hidden; margin-bottom: 20px;
  aspect-ratio: 16 / 9; background: linear-gradient(140deg, #dce6dd, #c5d6c9);
}
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.card__icon {
  width: 56px; height: 56px; border-radius: 16px; padding: 14px;
  background: linear-gradient(140deg, #dce6dd, #c5d6c9);
  color: var(--sage-deep); margin-bottom: 20px;
}
.card__media--icon { display: grid; place-items: center; }
.card__media--icon svg { width: 56px; height: 56px; color: var(--sage-deep); }
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 0.96rem; flex-grow: 1; }
.card__link { margin-top: 18px; font-weight: 600; color: var(--forest); font-size: 0.95rem; transition: color 0.2s, gap 0.2s; }
.card__link:hover { color: var(--terracotta-deep); }

/* ---------- Why CBT (dark) ---------- */
.section--dark { background: linear-gradient(160deg, var(--forest) 0%, var(--forest-2) 100%); color: var(--cream); }
.why__inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(36px, 6vw, 70px); align-items: center; }
.section--dark h2 { color: var(--cream); }
.why__content p { color: #cdd9d0; font-size: 1.08rem; }
.why__stats { display: flex; gap: 30px; flex-wrap: wrap; margin: 30px 0 34px; }
.why__stats strong { display: block; font-family: var(--font-serif); font-size: 1.5rem; color: var(--white); }
.why__stats span { font-size: 0.85rem; color: #b6c6bb; }
.why__quote {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 40px; position: relative;
}
.why__mark { width: 54px; height: 54px; color: var(--sage); opacity: 0.5; margin-bottom: 14px; }
.why__quote p { font-family: var(--font-serif); font-size: 1.3rem; line-height: 1.5; font-style: italic; color: var(--cream); }

/* ---------- Testimonials carousel ---------- */
.testimonials__carousel {
  overflow: hidden; padding: 18px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.testimonials__track {
  display: flex; gap: 24px; width: max-content; align-items: stretch;
  animation: ticker 75s linear infinite;
}
.testimonials__carousel:hover .testimonials__track,
.testimonials__carousel:focus-within .testimonials__track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }

.quote {
  width: 360px; flex-shrink: 0;
  background: var(--white); border-radius: var(--radius); padding: 34px 30px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(47,68,56,0.05);
  display: flex; flex-direction: column;
}
.quote__stars { color: #00b67a; letter-spacing: 3px; margin-bottom: 16px; }
.quote blockquote { font-size: 1.02rem; color: var(--ink); flex-grow: 1; }
.quote figcaption { margin-top: 20px; font-family: var(--font-serif); font-weight: 600; color: var(--forest); }

/* ---------- Contact ---------- */
.contact { background: var(--cream-2); }
.contact__inner { display: grid; grid-template-columns: 1fr; gap: clamp(36px, 6vw, 70px); justify-items: center; }
.contact__text { max-width: 640px; width: 100%; text-align: center; }
.contact__text p { color: var(--muted); font-size: 1.08rem; }
.contact__list { list-style: none; margin-top: 30px; display: grid; gap: 18px; text-align: left; }
.contact__list li { display: flex; align-items: center; gap: 16px; font-size: 1.05rem; }
.contact__ic { width: 46px; height: 46px; border-radius: 14px; padding: 12px; background: var(--white); color: var(--sage-deep); box-shadow: var(--shadow-sm); flex-shrink: 0; }
.contact__list a:hover { color: var(--terracotta-deep); }
.contact__note { font-size: 0.85rem; color: var(--muted); margin-top: 28px; }

.wa-cta {
  display: inline-flex; align-items: center; gap: 16px;
  margin-top: 28px; padding: 16px 26px 16px 18px;
  background: #25d366; color: #fff; border-radius: 999px;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  text-align: left;
}
.wa-cta:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(37, 211, 102, 0.45); color: #fff; }
.wa-cta__ic { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.18); display: grid; place-items: center; flex-shrink: 0; }
.wa-cta__ic svg { width: 26px; height: 26px; fill: #fff; }
.wa-cta__text { display: flex; flex-direction: column; line-height: 1.25; }
.wa-cta__text strong { font-size: 1.05rem; font-weight: 600; }
.wa-cta__text span { font-size: 0.85rem; opacity: 0.9; }

/* ---------- Footer ---------- */
.footer { background: var(--forest-2); color: #c4d1c8; padding: clamp(56px, 7vw, 80px) 0 30px; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer__brand p { margin-top: 18px; font-size: 0.95rem; max-width: 320px; color: #aebcb3; }
.footer__col h4 { color: var(--cream); font-size: 1.05rem; margin-bottom: 18px; }
.footer__col a, .footer__col span { display: block; font-size: 0.95rem; margin-bottom: 12px; color: #aebcb3; transition: color 0.2s; }
.footer__col a:hover { color: var(--cream); }
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  margin-top: 48px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem; color: #9aa9a0;
}
.footer__accred { letter-spacing: 0.08em; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  width: 60px; height: 60px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25d366; color: #fff;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.wa-float svg { width: 34px; height: 34px; position: relative; z-index: 1; }
.wa-float:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 16px 38px rgba(37, 211, 102, 0.55); }
.wa-float__pulse {
  position: absolute; inset: 0; border-radius: 50%;
  background: #25d366; opacity: 0.6; z-index: 0;
  animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.55; }
  70% { transform: scale(1.8); opacity: 0; }
  100% { opacity: 0; }
}
.contact__ic--wa { color: #25d366; }
.contact__ic--wa svg { width: 24px; height: 24px; }

/* ---------- Accordion (conditions) ---------- */
.accordion { max-width: 860px; margin: 0 auto; display: grid; gap: 14px; }
.accordion__item {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid rgba(47,68,56,0.06); box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.accordion__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 26px; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--font-serif); font-size: 1.15rem; color: var(--forest);
  transition: color 0.2s;
}
.accordion__btn:hover { color: var(--terracotta-deep); }
.accordion__icon { width: 22px; height: 22px; flex-shrink: 0; fill: none; stroke: var(--sage-deep); stroke-width: 2.2; stroke-linecap: round; transition: transform 0.35s var(--ease); }
.accordion__btn[aria-expanded="true"] .accordion__icon { transform: rotate(45deg); }
.accordion__panel { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.accordion__panel p { padding: 0 26px 24px; color: var(--muted); font-size: 0.99rem; }

/* ---------- Pricing ---------- */
.pricing__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.price {
  position: relative; background: var(--white); border-radius: var(--radius);
  padding: 34px 28px; box-shadow: var(--shadow-sm); border: 1px solid rgba(47,68,56,0.05);
  text-align: center; transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.price:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price--featured { border-color: var(--sage); box-shadow: var(--shadow); }
.price__tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--terracotta); color: var(--white); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 16px; border-radius: var(--radius-pill);
}
.price__name { font-size: 1.12rem; min-height: 2.6em; display: flex; align-items: center; justify-content: center; }
.price__amount { font-family: var(--font-serif); font-size: 2.2rem; color: var(--forest); margin: 12px 0 18px; }
.price__amount span { font-family: var(--font-sans); font-size: 0.9rem; color: var(--muted); font-weight: 500; }
.price__meta { list-style: none; display: grid; gap: 8px; }
.price__meta li { font-size: 0.9rem; color: var(--muted); }
.pricing__notes { max-width: 760px; margin: clamp(36px, 5vw, 56px) auto 0; text-align: center; }
.pricing__notes p { color: var(--muted); margin-bottom: 16px; }
.pricing__cancel { font-size: 0.9rem; font-style: italic; }
.pricing__notes .btn { margin-top: 10px; }

/* ---------- Corporate (dark) ---------- */
.corporate__inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 6vw, 70px); align-items: center; }
.corporate__content p { color: #cdd9d0; font-size: 1.06rem; margin-bottom: 16px; }
.corporate__benefits { list-style: none; display: grid; gap: 14px; }
.corporate__benefits li {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 18px 22px;
}
.corporate__benefits strong { display: block; font-family: var(--font-serif); color: var(--cream); font-size: 1.1rem; margin-bottom: 4px; }
.corporate__benefits span { font-size: 0.92rem; color: #b6c6bb; }

/* ---------- Accreditation ---------- */
.accred__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.accred__card {
  background: var(--white); border-radius: var(--radius); padding: 32px 28px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(47,68,56,0.05);
}
.accred__card h3 { margin-bottom: 12px; }
.accred__card p { color: var(--muted); font-size: 0.96rem; }
.accred__points {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
  margin-top: clamp(32px, 5vw, 48px);
}
.accred__points li {
  background: var(--white); border: 1px solid rgba(47,68,56,0.08); border-radius: var(--radius-pill);
  padding: 12px 24px; font-weight: 500; color: var(--forest); font-size: 0.95rem; box-shadow: var(--shadow-sm);
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner, .about__inner, .why__inner, .corporate__inner { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 460px; }
  .about__media { max-width: 460px; }
  .services__grid, .pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .accred__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .topbar__item { display: none; }
  .topbar__inner { justify-content: center; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 6px;
    background: var(--cream); padding: 18px 24px 26px;
    box-shadow: var(--shadow); border-bottom: 1px solid rgba(47,68,56,0.08);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }
  .nav__links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 12px 16px; }
  .nav__links .btn { margin-top: 6px; }
  .nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.open span:nth-child(2) { opacity: 0; }
  .nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 560px) {
  .explain__grid, .services__grid, .pricing__grid, .footer__inner { grid-template-columns: 1fr; }
  .hero__badge { left: 0; }
  .topbar__contact { gap: 16px; font-size: 0.8rem; }
  .price__name { min-height: 0; }
  .quote { width: 82vw; max-width: 340px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
