/* ── Reset & base ──────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:      #1a2472;
  --periwinkle:#4a5fc1;
  --teal:      #2bc4c1;
  --white:     #ffffff;
  --border:    rgba(26, 36, 114, 0.07);
  --shadow:    rgba(26, 36, 114, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--navy);
  background: var(--white);
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── Shared button ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
  border: none;
}

.btn:hover {
  opacity: 0.88;
}

.btn--teal {
  background: var(--teal);
  color: var(--white);
}

/* ── Navbar ────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s, border-color 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 1px 20px var(--shadow);
  border-bottom-color: transparent;
}

.navbar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.navbar__logo img {
  height: 62px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Desktop links */
.navbar__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  transition: opacity 0.2s;
}

.navbar__links a:hover {
  opacity: 0.55;
}

/* Right-side actions */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Hamburger toggle */
.navbar__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.375rem;
  color: var(--navy);
}

.navbar__toggle-icon,
.navbar__toggle-icon::before,
.navbar__toggle-icon::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}

.navbar__toggle-icon {
  position: relative;
}

.navbar__toggle-icon::before,
.navbar__toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.navbar__toggle-icon::before { top: -7px; }
.navbar__toggle-icon::after  { top:  7px; }

/* Open state – cross */
.navbar__toggle[aria-expanded="true"] .navbar__toggle-icon {
  background: transparent;
}

.navbar__toggle[aria-expanded="true"] .navbar__toggle-icon::before {
  transform: translateY(7px) rotate(45deg);
}

.navbar__toggle[aria-expanded="true"] .navbar__toggle-icon::after {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.navbar__mobile {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--white);
}

.navbar__mobile a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
}

.navbar__mobile .btn {
  margin-top: 0.25rem;
  padding: 0.75rem 1.25rem;
}

/* ── Responsive ────────────────────────────────────────────── */

/* Hide mobile-only elements on desktop */
.navbar__toggle {
  display: none;
}

.navbar__mobile {
  display: none;
}

@media (max-width: 767px) {
  .navbar__links {
    display: none;
  }

  .navbar__cta {
    display: none;
  }

  .navbar__toggle {
    display: flex;
  }

  /* Only allow mobile menu to show on mobile, and only when not hidden */
  .navbar__mobile:not([hidden]) {
    display: flex;
  }
}

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  padding-top: 68px; /* navbar height */
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: #fff;
}

.hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

/* ── Copy ── */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero__eyebrow-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.hero__heading {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.hero__heading-accent {
  color: var(--teal);
}

.hero__body {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 2.25rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.btn--pill {
  border-radius: 9999px;
  padding: 0.875rem 1.75rem;
  font-size: 0.92rem;
  gap: 0.5rem;
}

.hero__link-secondary {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  transition: opacity 0.2s;
}

.hero__link-secondary:hover {
  opacity: 0.5;
}

/* ── Visual (desktop) ── */
.hero__visual {
  position: relative;
  height: 500px;
}

.hero__photo-wrap {
  position: absolute;
  inset: 0;
  border-radius: 9999px 9999px 48px 48px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(26, 36, 114, 0.13);
}

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

/* Floating badges */
.hero__badge {
  position: absolute;
  z-index: 4;
  background: #fff;
  border-radius: 9999px;
  padding: 7px 14px 7px 7px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 22px rgba(26, 36, 114, 0.13);
}

.hero__badge span {
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.hero__badge--top {
  top: 32px;
  right: -12px;
}

.hero__badge--bottom {
  bottom: 48px;
  left: -16px;
}

.hero__badge-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__badge-icon--teal {
  background: rgba(43, 196, 193, 0.15);
}

.hero__badge-icon--navy {
  background: rgba(26, 36, 114, 0.1);
}

/* ── Visual (mobile) ── */
.hero__visual-mobile {
  display: none;
  position: relative;
  height: 320px;
  border-radius: 1.5rem;
  overflow: hidden;
}

.hero__visual-mobile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 36, 114, 0.3) 0%, transparent 60%);
}

/* ── Hero responsive ── */
@media (max-width: 1023px) {
  .hero__inner {
    grid-template-columns: 1fr;
    padding: 4rem 1.5rem 3rem;
  }

  .hero__visual {
    display: none;
  }

  .hero__visual-mobile {
    display: block;
  }

  .hero__body {
    max-width: 100%;
  }
}

@media (max-width: 479px) {
  .hero__actions {
    flex-wrap: nowrap;
    gap: 0.875rem;
  }

  .btn--pill {
    padding: 0.7rem 1.1rem;
    font-size: 0.82rem;
  }

  .hero__link-secondary {
    font-size: 0.82rem;
    white-space: nowrap;
  }
}

/* ── About ─────────────────────────────────────────────────── */
.about {
  padding: 6rem 0;
  background: #fff;
}

.about__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Photo */
.about__photo-wrap {
  display: flex;
  justify-content: flex-end;
}

.about__photo {
  width: 500px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 0.75rem;
}

/* Copy */
.about__eyebrow {
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.about__heading {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.about__body {
  color: #475569;
  font-size: 1rem;
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: 2rem;
}

/* Stats */
.about__stats {
  display: flex;
  align-items: stretch;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.about__stat {
  flex: 1;
  text-align: center;
  padding-right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about__stat--divider {
  border-left: 1px solid var(--teal);
  padding-left: 1.5rem;
}

.about__stat-number {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  color: var(--teal);
  font-size: 1.9rem;
  line-height: 1;
}

.about__stat-label {
  color: #94a3b8;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* Responsive */
@media (max-width: 1023px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about__photo-wrap {
    justify-content: center;
  }

  .about__photo {
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  .about__body {
    max-width: 100%;
  }
}

/* ── Services ───────────────────────────────────────────────── */
.services {
  padding: 6rem 0;
  background: #f7f8ff;
}

.services__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.services__header {
  text-align: center;
  margin-bottom: 4rem;
}

.services__eyebrow {
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.services__heading {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ── Desktop grid ── */
.services__carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ── Card ── */
.service-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 28px rgba(26, 36, 114, 0.07);
  display: flex;
  flex-direction: column;
}

.service-card__img-wrap {
  height: 240px;
  overflow: hidden;
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__img {
  transform: scale(1.05);
}

.service-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card__title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.service-card__desc {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  flex: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.88rem;
  transition: gap 0.2s;
}

.service-card__link:hover {
  gap: 0.625rem;
}

/* ── Mobile dots (hidden on desktop) ── */
.services__dots {
  display: none;
}

/* ── Mobile carousel ── */
@media (max-width: 767px) {
  .services__carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
  }

  .services__carousel::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    flex: 0 0 82vw;
    max-width: 320px;
    scroll-snap-align: start;
  }

  .services__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }

  .services__dot {
    height: 8px;
    width: 8px;
    border-radius: 9999px;
    border: none;
    padding: 0;
    background: rgba(26, 36, 114, 0.2);
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease;
  }

  .services__dot--active {
    width: 24px;
    background: var(--teal);
  }
}

/* ── Why Us ─────────────────────────────────────────────────── */
.why {
  padding: 6rem 0;
  background: #fff;
}

.why__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Photo */
.why__visual {
  order: 1;
}

.why__photo-wrap {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 580px;
}

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

.why__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 36, 114, 0.5) 0%, transparent 50%);
}

/* Service area card */
.why__areas {
  position: absolute;
  bottom: 1.5rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(26, 36, 114, 0.1);
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
}

.why__areas-label {
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.why__areas-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.why__tag {
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  background: rgba(43, 196, 193, 0.12);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(43, 196, 193, 0.25);
}

/* Copy */
.why__copy {
  order: 2;
}

.why__eyebrow {
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.why__heading {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.why__body {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

/* Reasons grid */
.why__reasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 2rem;
}

.why__reason {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.why__reason.visible {
  opacity: 1;
  transform: translateY(0);
}

.why__reason-header {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.5rem;
}

.why__check {
  flex-shrink: 0;
  margin-top: 1px;
}

.why__reason-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.98rem;
}

.why__reason-desc {
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.7;
  padding-left: 1.8125rem; /* aligns under title, past the icon */
}

/* Responsive */
@media (max-width: 1023px) {
  .why__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .why__visual {
    order: 2;
  }

  .why__copy {
    order: 1;
  }

  .why__body {
    max-width: 100%;
  }

  .why__photo-wrap {
    aspect-ratio: 4 / 3;
    max-height: none;
  }
}

@media (max-width: 479px) {
  .why__reasons {
    grid-template-columns: 1fr;
  }
}

/* ── CTA ────────────────────────────────────────────────────── */
.cta {
  padding: 7rem 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.cta__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta__blob--top {
  width: 24rem;
  height: 24rem;
  top: 0;
  right: 0;
  background: #4a5fc1;
  opacity: 0.15;
  transform: translateY(-50%) translateX(33%);
}

.cta__blob--bottom {
  width: 16rem;
  height: 16rem;
  bottom: 0;
  left: 0;
  background: #2bc4c1;
  opacity: 0.12;
  transform: translateY(50%) translateX(-25%);
}

.cta__inner {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.cta__eyebrow {
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.cta__heading {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.cta__body {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 2.75rem;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.cta__btn-outline,
.cta__btn-teal {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.98rem;
  font-weight: 600;
  transition: background 0.2s, opacity 0.2s;
}

.cta__btn-outline {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta__btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cta__btn-teal {
  background: var(--teal);
  color: #fff;
}

.cta__btn-teal:hover {
  opacity: 0.9;
}

@media (max-width: 479px) {
  .cta__actions {
    flex-direction: column;
  }

  .cta__btn-outline,
  .cta__btn-teal {
    width: 100%;
    justify-content: center;
  }
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: #0f1647;
  padding-top: 4rem;
  padding-bottom: 2.5rem;
}

.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

/* Brand column */
.footer__logo {
  height: 68px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 1rem;
}

.footer__desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 320px;
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.footer__social-link:hover {
  opacity: 0.7;
}

/* Nav columns */
.footer__col-heading {
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  transition: opacity 0.2s;
}

.footer__links a:hover {
  opacity: 0.75;
}

.footer__link-external {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

/* Contact column */
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  transition: opacity 0.2s;
}

a.footer__contact-item:hover {
  opacity: 0.75;
}

.footer__contact-item--static {
  align-items: flex-start;
  cursor: default;
}

.footer__contact-sub {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
}

/* Bottom bar */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__copy {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

.footer__legal {
  display: flex;
  gap: 1rem;
}

.footer__legal-link {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  transition: opacity 0.2s;
}

.footer__legal-link:hover {
  opacity: 0.65;
}

/* Responsive */
@media (max-width: 1023px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 479px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ── Legal pages (privacy-policy.html, terms-of-service.html) ── */
.legal-header {
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.legal-header__inner {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.legal-header__logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
}

.legal-header__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--periwinkle);
  font-size: 0.88rem;
  font-weight: 600;
  transition: opacity 0.2s;
}

.legal-header__back:hover {
  opacity: 0.6;
}

.legal-main {
  max-width: 48rem;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.legal-eyebrow {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.legal-heading {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.75rem);
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.legal-meta {
  color: #94a3b8;
  font-size: 0.85rem;
  margin-bottom: 3rem;
}

.legal-body {
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}

.legal-section {
  margin-bottom: 2.25rem;
}

.legal-section h2 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.legal-section p {
  color: #475569;
  line-height: 1.85;
  font-size: 0.95rem;
}

.legal-section a {
  color: var(--periwinkle);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-section a:hover {
  opacity: 0.7;
}

.legal-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  text-align: center;
}

.legal-footer p {
  color: #94a3b8;
  font-size: 0.8rem;
}

/* ISSA cert badge in Why Us */
.why__cert {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.875rem;
  border-radius: 9999px;
  border: 1px solid rgba(43, 196, 193, 0.35);
  background: rgba(43, 196, 193, 0.07);
  margin-bottom: 2rem;
}

.why__cert span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ISSA badge responsive text */
.why__cert-short { display: none; }

@media (max-width: 479px) {
  .why__cert-full  { display: none; }
  .why__cert-short { display: inline; }
}

/* ── Reviews ────────────────────────────────────────────────── */
.reviews {
  padding: 6rem 0;
  background: #f7f8ff;
}

.reviews__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.reviews__header {
  text-align: center;
  margin-bottom: 4rem;
}

.reviews__eyebrow {
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.reviews__heading {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* Desktop grid */
.reviews__carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Card */
.review-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 2px 28px rgba(26, 36, 114, 0.07);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.review-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.review-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.25rem;
}

.review-card__text {
  color: #475569;
  font-size: 0.93rem;
  line-height: 1.8;
  flex: 1;
  margin-bottom: 1.75rem;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(43, 196, 193, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  color: var(--teal);
  font-size: 0.85rem;
}

.review-card__name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.9rem;
}

.review-card__location {
  color: #94a3b8;
  font-size: 0.78rem;
  font-weight: 500;
}

/* Mobile dots (hidden on desktop) */
.reviews__dots {
  display: none;
}

/* Mobile carousel */
@media (max-width: 767px) {
  .reviews__carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
  }

  .reviews__carousel::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    flex: 0 0 82vw;
    max-width: 320px;
    scroll-snap-align: start;
    /* always visible on mobile — no fade-in */
    opacity: 1;
    transform: none;
    transition: none;
  }

  .reviews__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }

  .reviews__dot {
    height: 8px;
    width: 8px;
    border-radius: 9999px;
    border: none;
    padding: 0;
    background: rgba(26, 36, 114, 0.2);
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease;
  }

  .reviews__dot--active {
    width: 24px;
    background: var(--teal);
  }
}
