﻿html {
  scroll-behavior: smooth;
}
html,
body {
  font-family: "Lato", sans-serif;
  color: #2d2640;
  background: #fff;
}
.serif { font-family: "Lato", sans-serif; }

.hero-section,
.hero-section * {
  font-family: "El Messiri", sans-serif;
}

.nav-blur {
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(125,100,168,.08);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-toggle__icon--close {
  display: none;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__icon--open {
  display: none;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__icon--close {
  display: block;
}

.nav-mobile {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  border-top: 1px solid transparent;
  background: rgba(255, 255, 255, 0.98);
  transition:
    max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.25s ease,
    border-color 0.25s ease;
}
.nav-mobile.is-open {
  max-height: 28rem;
  opacity: 1;
  border-top-color: rgba(125, 100, 168, 0.1);
}

.nav-mobile__links {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 1.25rem 0;
}

.nav-mobile__link {
  display: block;
  padding: 0.875rem 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #475569;
  border-bottom: 1px solid #f1f5f9;
  transition: color 0.2s ease;
}
.nav-mobile__link:last-child {
  border-bottom: none;
}
.nav-mobile__link:hover {
  color: #7d64a8;
}

.nav-mobile__cta {
  display: block;
  margin: 0.75rem 1.25rem 1.25rem;
  border-radius: 9999px;
  background: #7d64a8;
  padding: 0.75rem 1.25rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 14px rgba(125, 100, 168, 0.25);
  transition: background-color 0.2s ease;
}
.nav-mobile__cta:hover {
  background: #6b5494;
}

body.nav-mobile-open {
  overflow: hidden;
}

@media (min-width: 1024px) {
  .nav-mobile,
  .nav-mobile.is-open {
    display: none;
    max-height: none;
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-mobile {
    transition: none;
  }
}

.brand-logo {
  height: 3.25rem;
  width: auto;
  max-width: min(210px, 48vw);
  object-fit: contain;
  object-position: left center;
}
@media (min-width: 640px) {
  .brand-logo { height: 3.75rem; max-width: 240px; }
}
.brand-logo--footer {
  height: 4.5rem;
  max-width: 220px;
  filter: brightness(1.08);
}

/* â”€â”€â”€ HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-section {
  position: relative;
  overflow: hidden;
  overflow-x: clip;
  background: linear-gradient(180deg, #faf8fd 0%, #f3f0f8 60%, #ebe4f5 100%);
}

/* Decorative rings — corners & center divide */
.hero-rings {
  position: absolute;
  z-index: 1;
  width: 380px;
  height: 380px;
  pointer-events: none;
}
.hero-rings--tr {
  top: 0;
  right: 0;
  transform: translate(32%, -28%);
}
.hero-rings--bl {
  bottom: 0;
  left: 0;
  transform: translate(-32%, 28%);
}
.hero-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.hero-ring--1 {
  width: 100%;
  height: 100%;
  background: rgba(221, 208, 239, .28);
  border: 2px solid rgba(155, 103, 213, .14);
}
.hero-ring--2 {
  width: 76%;
  height: 76%;
  background: transparent;
  border: 2px solid rgba(125, 100, 168, .2);
}
.hero-ring--3 {
  width: 52%;
  height: 52%;
  background: rgba(232, 223, 245, .45);
  border: 2px solid rgba(155, 103, 213, .12);
}
@media (min-width: 1024px) {
  .hero-rings {
    width: 440px;
    height: 440px;
  }
  .hero-rings--tr { transform: translate(30%, -26%); }
  .hero-rings--bl { transform: translate(-30%, 26%); }
}
@media (max-width: 1023px) {
  .hero-rings {
    width: 220px;
    height: 220px;
  }
  .hero-rings--tr {
    transform: translate(42%, -38%);
    opacity: 0.55;
  }
  .hero-rings--bl {
    display: none;
  }
}
@media (max-width: 639px) {
  .hero-section .dot-grid {
    display: none;
  }
  .hero-rings--tr {
    width: 160px;
    height: 160px;
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  min-height: clamp(420px, 58vh, 560px);
}
@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-copy-panel {
  display: flex;
  align-items: center;
  padding: 3rem 1.25rem;
}
@media (min-width: 640px) {
  .hero-copy-panel {
    padding: 3.5rem 1.5rem;
  }
}
@media (min-width: 1024px) {
  .hero-copy-panel {
    padding: 4rem 2.5rem 4rem 3rem;
  }
}

.hero-copy {
  width: 100%;
  max-width: 34rem;
}
@media (min-width: 1024px) {
  .hero-copy {
    margin-left: auto;
    padding-right: 1.5rem;
  }
}

.hero-media-panel {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 260px;
  padding: 0 1.25rem 1.75rem;
  overflow: visible;
}
@media (min-width: 1024px) {
  .hero-media-panel {
    min-height: auto;
    padding: 2rem 2.5rem 2rem 1.25rem;
  }
}

.hero-clip-svg {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.hero-media-inner {
  position: relative;
  flex: 1;
  overflow: hidden;
  min-height: 260px;
  border-radius: 1.75rem;
  background: #1a1428;
  filter: drop-shadow(0 16px 40px rgba(125, 100, 168, 0.18));
  clip-path: url(#hero-video-wave);
}
@media (min-width: 1024px) {
  .hero-media-inner {
    min-height: 100%;
    border-radius: 0 1.75rem 1.75rem 0;
    clip-path: url(#hero-video-wave-lg);
  }
}

.hero-video,
.hero-poster {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-poster {
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.hero-poster--visible,
.hero-video--static + .hero-poster {
  opacity: 1;
}

.hero-video {
  z-index: 2;
}

.hero-video--static {
  opacity: 0;
  pointer-events: none;
}

.dot-grid {
  background-image: radial-gradient(rgba(125,100,168,.22) 2px, transparent 2px);
  background-size: 14px 14px;
}
.dot-grid--sm { width: 70px; height: 88px; }

.hero-cta-group .hero-cta {
  width: 100%;
}
@media (min-width: 640px) {
  .hero-cta-group .hero-cta {
    width: auto;
  }
}

/* Hero entrance & ring motion */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroMediaIn {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes heroRingsIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes ringBreathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.045); }
}
@keyframes dotFadeIn {
  from { opacity: 0; }
  to { opacity: 0.9; }
}

/* Hold hero motion until JS marks assets as ready */
.hero-animate,
.hero-media-panel.hero-animate-img,
.hero-rings,
.hero-section .dot-grid,
.page-hero-animate {
  opacity: 0;
}

body.assets-ready .hero-animate {
  animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
body.assets-ready .hero-animate--1 { animation-delay: 0.04s; }
body.assets-ready .hero-animate--2 { animation-delay: 0.1s; }
body.assets-ready .hero-animate--3 { animation-delay: 0.16s; }
body.assets-ready .hero-animate--4 { animation-delay: 0.22s; }
body.assets-ready .hero-animate--5 { animation-delay: 0.28s; }

body.assets-ready .hero-media-panel.hero-animate-img {
  animation: heroMediaIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

body.assets-ready .hero-rings {
  animation: heroRingsIn 1.4s ease 0.15s forwards;
}
body.assets-ready .hero-rings--bl { animation-delay: 0.35s; }
body.assets-ready .hero-ring--1 { animation: ringBreathe 9s ease-in-out 0.6s infinite; }
body.assets-ready .hero-ring--2 { animation: ringBreathe 9s ease-in-out 1.4s infinite; }
body.assets-ready .hero-ring--3 { animation: ringBreathe 9s ease-in-out 2.2s infinite; }

body.assets-ready .hero-section .dot-grid {
  animation: dotFadeIn 1.2s ease 0.5s forwards;
}
body.assets-ready .hero-section .dot-grid:last-of-type {
  animation-delay: 0.7s;
  animation-fill-mode: forwards;
}

body.assets-ready .page-hero-animate {
  animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
body.assets-ready .page-hero-animate--1 { animation-delay: 0.1s; }
body.assets-ready .page-hero-animate--2 { animation-delay: 0.22s; }

body.assets-ready .page-hero .hero-rings {
  animation: heroRingsIn 1.4s ease 0.15s forwards;
}
body.assets-ready .page-hero .hero-rings--bl { animation-delay: 0.35s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  transform: translateX(-40px);
}
.reveal-left.is-visible {
  transform: translateX(0);
}
.reveal-right {
  transform: translateX(40px);
}
.reveal-right.is-visible {
  transform: translateX(0);
}
.reveal-scale {
  transform: translateY(24px) scale(0.96);
}
.reveal-scale.is-visible {
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body.assets-ready .hero-animate,
  body.assets-ready .hero-media-panel.hero-animate-img,
  body.assets-ready .hero-rings,
  body.assets-ready .hero-section .dot-grid,
  body.assets-ready .page-hero-animate,
  .hero-animate,
  .hero-media-panel.hero-animate-img,
  .hero-rings,
  .hero-section .dot-grid,
  .page-hero-animate {
    opacity: 1;
    animation: none;
  }
  .hero-ring--1,
  .hero-ring--2,
  .hero-ring--3 { animation: none; }
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.hero-wave {
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
  height: clamp(40px, 6vw, 88px);
  margin-top: -1px;
}
@media (min-width: 1024px) {
  .hero-wave {
    height: clamp(56px, 8vw, 88px);
  }
}

/* â”€â”€â”€ REST OF STYLES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.provider-photo {
  object-fit: cover;
  object-position: center top;
}

.section-kicker {
  color: #7d64a8;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  border-radius: 1.25rem;
  border: 1px solid rgba(125, 100, 168, .12);
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 8px 30px rgba(45, 38, 64, .06);
  transition:
    transform .25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow .25s ease,
    border-color .25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(155, 103, 213, .35);
  box-shadow: 0 20px 50px rgba(125, 100, 168, .16);
}
.service-card:focus-visible {
  outline: 2px solid #9b67d5;
  outline-offset: 3px;
}

.service-card__rings {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
  width: 11rem;
  height: 11rem;
  pointer-events: none;
  opacity: 0;
  transform: translate(38%, 38%) scale(0.85);
  transition:
    opacity .4s cubic-bezier(0.22, 1, 0.36, 1),
    transform .4s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card:hover .service-card__rings,
.service-card:focus-visible .service-card__rings {
  opacity: 1;
  transform: translate(28%, 28%) scale(1);
}
.service-card__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.service-card__ring--1 {
  width: 100%;
  height: 100%;
  background: rgba(221, 208, 239, .32);
  border: 2px solid rgba(155, 103, 213, .14);
}
.service-card__ring--2 {
  width: 76%;
  height: 76%;
  background: transparent;
  border: 2px solid rgba(125, 100, 168, .22);
}
.service-card__ring--3 {
  width: 52%;
  height: 52%;
  background: rgba(232, 223, 245, .5);
  border: 2px solid rgba(155, 103, 213, .12);
}

.service-card__icon,
.service-card__body,
.service-card__action {
  position: relative;
  z-index: 1;
}
.service-card__icon {
  width: 3.25rem;
  height: 3.25rem;
  flex-shrink: 0;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f3f0f8 0%, #e8dff5 100%);
  color: #7d64a8;
  transition: transform .25s ease, background .25s ease;
}
.service-card:hover .service-card__icon {
  transform: scale(1.05);
  background: linear-gradient(145deg, #ebe4f5 0%, #ddd0ef 100%);
}
.service-card__body {
  flex: 1;
  min-width: 0;
}
.service-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  color: #33204f;
}
.service-card__teaser {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #64748b;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-card__action {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #7d64a8;
  transition: gap .2s ease, color .2s ease;
}
.service-card:hover .service-card__action {
  gap: 0.55rem;
  color: #9b67d5;
}

@media (prefers-reduced-motion: reduce) {
  .service-card__rings {
    transition: none;
  }
  .service-card:hover .service-card__rings,
  .service-card:focus-visible .service-card__rings {
    transform: translate(28%, 28%) scale(1);
  }
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  pointer-events: none;
  visibility: hidden;
  transition: visibility .3s ease;
}
.service-modal.is-open {
  pointer-events: auto;
  visibility: visible;
}
@media (min-width: 640px) {
  .service-modal {
    align-items: center;
    padding: 1.5rem;
  }
}
.service-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(51, 32, 79, .45);
  opacity: 0;
  backdrop-filter: blur(4px);
  transition: opacity .3s ease;
}
.service-modal.is-open .service-modal__backdrop {
  opacity: 1;
}
.service-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 32rem;
  max-height: min(88vh, 640px);
  overflow-y: auto;
  border-radius: 1.5rem 1.5rem 0 0;
  background: #fff;
  padding: 2rem 1.5rem 1.75rem;
  box-shadow: 0 24px 80px rgba(45, 38, 64, .22);
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 640px) {
  .service-modal__panel {
    border-radius: 1.5rem;
    padding: 2.25rem 2rem 2rem;
    transform: translateY(24px) scale(0.96);
    opacity: 0;
    transition:
      transform .35s cubic-bezier(0.22, 1, 0.36, 1),
      opacity .3s ease;
  }
  .service-modal.is-open .service-modal__panel {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
.service-modal.is-open .service-modal__panel {
  transform: translateY(0);
}
.service-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(125, 100, 168, .15);
  background: #faf8fd;
  color: #7d64a8;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.service-modal__close:hover {
  background: #f3f0f8;
  color: #33204f;
  border-color: rgba(125, 100, 168, .28);
}
.service-modal__close:focus-visible {
  outline: 2px solid #9b67d5;
  outline-offset: 2px;
}
.service-modal__icon {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #f3f0f8 0%, #e8dff5 100%);
  color: #7d64a8;
}
.service-modal__icon svg {
  width: 2.25rem;
  height: 2.25rem;
}
.service-modal__title {
  margin-top: 1.25rem;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.25;
  color: #33204f;
}
.service-modal__text {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.75;
  color: #64748b;
}
.service-modal__cta {
  margin-top: 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: #7d64a8;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: background .2s ease;
}
.service-modal__cta:hover {
  background: #6b5494;
}

body.service-modal-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .service-modal,
  .service-modal__backdrop,
  .service-modal__panel {
    transition: none;
  }
  .service-modal__panel {
    transform: none;
    opacity: 1;
  }
}

.testimonial-card {
  transition: transform .2s ease, box-shadow .2s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(45,38,64,.1);
}

.purple-panel {
  background:
    radial-gradient(circle at 88% 15%, rgba(255,255,255,.12), transparent 28%),
    linear-gradient(145deg, #8b6fbd 0%, #7d64a8 45%, #5c4a82 100%);
}

details summary::-webkit-details-marker { display: none; }

/* ─── ABOUT PAGE ─────────────────────────────────────────── */
.about-hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 0;
  background: linear-gradient(180deg, #ebe4f5 0%, #e8dff5 55%, #ddd0ef 100%);
}

.about-hero .hero-rings {
  z-index: 1;
}

.about-hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 2rem;
}

.about-hero__wave {
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
  height: clamp(48px, 7vw, 96px);
  margin-top: -1px;
}

.about-sparkle {
  position: absolute;
  z-index: 2;
  color: #f5b82a;
  text-shadow: 0 0 12px rgba(245, 184, 42, 0.45);
  pointer-events: none;
  animation: aboutSparkle 4s ease-in-out infinite;
}
.about-sparkle--1 { top: 16%; left: 10%; font-size: 2.5rem; }
.about-sparkle--2 { top: 26%; right: 12%; font-size: 1.75rem; animation-delay: 0.8s; }
.about-sparkle--3 { top: 40%; left: 18%; font-size: 2.25rem; animation-delay: 1.4s; }
.about-sparkle--4 {
  top: -0.75rem;
  right: 0.5rem;
  font-size: 2rem;
  animation-delay: 0.5s;
}

@keyframes aboutSparkle {
  0%, 100% { opacity: 0.5; transform: translateY(0) rotate(0deg) scale(1); }
  50% { opacity: 1; transform: translateY(-10px) rotate(18deg) scale(1.08); }
}

.about-gallery {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-top: 1.5rem;
  padding-bottom: 3.5rem;
}
@media (min-width: 640px) {
  .about-gallery {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
    padding-bottom: 4.5rem;
  }
}

.about-gallery__item {
  overflow: hidden;
  border-radius: 1.25rem;
  border: 3px solid #fff;
  box-shadow: 0 16px 40px rgba(125, 100, 168, 0.2);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}
.about-gallery__item img {
  display: block;
  width: 100%;
  height: clamp(120px, 22vw, 200px);
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.about-gallery__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(125, 100, 168, 0.28);
}
.about-gallery__item:hover img {
  transform: scale(1.06);
}
.about-gallery__item--2 { transform: translateY(12px); }
.about-gallery__item--3 { transform: translateY(20px); }
.about-gallery__item--4 { transform: translateY(8px); }
@media (min-width: 640px) {
  .about-gallery__item--2 { transform: translateY(16px); }
  .about-gallery__item--3 { transform: translateY(28px); }
  .about-gallery__item--4 { transform: translateY(10px); }
}
.about-gallery__item--2:hover,
.about-gallery__item--3:hover,
.about-gallery__item--4:hover {
  transform: translateY(-4px);
}

.about-founder__visual {
  position: relative;
}

.about-founder__photo {
  display: block;
  width: 100%;
  height: clamp(320px, 52vw, 460px);
  border-radius: 1.5rem;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 20px 60px rgba(125, 100, 168, 0.2);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
}
.about-founder__visual:hover .about-founder__photo {
  transform: scale(1.01);
  box-shadow: 0 28px 70px rgba(125, 100, 168, 0.26);
}

.about-founder__quote-card {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: -1.25rem;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 12px 36px rgba(125, 100, 168, 0.18);
  border: 1px solid rgba(155, 103, 213, 0.12);
}

.about-blockquote {
  padding-left: 1.25rem;
  border-left: 4px solid #9b67d5;
  font-style: italic;
}

.about-feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 1.5rem;
  background: #fff;
  border: 1px solid rgba(125, 100, 168, 0.1);
  box-shadow: 0 8px 30px rgba(45, 38, 64, 0.06);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}
.about-feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(155, 103, 213, 0.28);
  box-shadow: 0 22px 50px rgba(125, 100, 168, 0.16);
}

.about-feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(145deg, #ebe4f5, #f8f5fc);
  color: #7d64a8;
  border: 2px solid rgba(155, 103, 213, 0.15);
  transition: transform 0.35s ease, background 0.35s ease;
}
.about-feature-card:hover .about-feature-card__icon {
  transform: scale(1.08);
  background: linear-gradient(145deg, #e8dff5, #f3f0f8);
}

.about-feature-card__title {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #33204f;
}

.about-feature-card__text {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #64748b;
}

body.assets-ready .about-hero .hero-rings {
  animation: heroRingsIn 1.4s ease 0.15s forwards;
}
body.assets-ready .about-hero .hero-rings--bl {
  animation-delay: 0.35s;
}

.about-testimonial-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.75rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(125, 100, 168, 0.1);
  background: #fff;
  box-shadow: 0 8px 30px rgba(45, 38, 64, 0.06);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.about-testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(155, 103, 213, 0.25);
  box-shadow: 0 20px 50px rgba(125, 100, 168, 0.14);
}

.about-testimonial-card__quote {
  font-family: "El Messiri", serif;
  font-size: 3rem;
  line-height: 1;
  color: #9b67d5;
  opacity: 0.85;
}

.about-testimonial-card__text {
  margin-top: 0.75rem;
  flex: 1;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #475569;
}

.about-testimonial-card__author {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #7d64a8;
}

@media (prefers-reduced-motion: reduce) {
  .about-sparkle { animation: none; }
  .about-gallery__item,
  .about-gallery__item img,
  .about-founder__photo,
  .about-feature-card,
  .about-feature-card__icon,
  .about-testimonial-card {
    transition: none;
  }
  .about-gallery__item:hover,
  .about-gallery__item:hover img,
  .about-founder__visual:hover .about-founder__photo,
  .about-feature-card:hover,
  .about-feature-card:hover .about-feature-card__icon,
  .about-testimonial-card:hover {
    transform: none;
  }
  .about-gallery__item--2,
  .about-gallery__item--3,
  .about-gallery__item--4 {
    transform: none;
  }
}

/* ─── SERVICE PAGE ───────────────────────────────────────── */
.service-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8f5fc 0%, #f3f0f8 100%);
}

.service-hero .hero-rings {
  z-index: 1;
}

.service-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .service-hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.service-hero__visual {
  display: flex;
  justify-content: center;
}
@media (min-width: 1024px) {
  .service-hero__visual {
    justify-content: flex-end;
  }
}

.service-hero__photo {
  display: block;
  width: 100%;
  max-width: 38rem;
  margin: 0 auto;
  border-radius: 1.75rem;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
@media (min-width: 1024px) {
  .service-hero__photo {
    max-width: none;
    width: 108%;
    margin: 0;
  }
}

.service-hero__stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #7d64a8;
  line-height: 1.2;
}

.service-hero__stat-label {
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
}

.service-panel {
  background: linear-gradient(145deg, #7d64a8 0%, #6b5494 50%, #5c4a82 100%);
}

.service-panel__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .service-panel__layout {
    grid-template-columns: minmax(220px, 1fr) 2fr;
    gap: 3rem;
  }
}

.service-panel__intro {
  position: sticky;
  top: 6rem;
}

.service-panel__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .service-panel__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .service-panel__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.service-page-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: 0 10px 32px rgba(45, 38, 64, 0.12);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}
.service-page-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(45, 38, 64, 0.18);
}

.service-page-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #ebe4f5, #f8f5fc);
  color: #7d64a8;
}

.service-page-card__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #33204f;
}

.service-page-card__text {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #64748b;
}

.service-benefits__photo {
  display: block;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  height: clamp(360px, 52vw, 480px);
  border-radius: 1.75rem;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 20px 60px rgba(125, 100, 168, 0.18);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
}
.service-benefits__visual:hover .service-benefits__photo {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(125, 100, 168, 0.24);
}

body.assets-ready .service-hero .hero-rings {
  animation: heroRingsIn 1.4s ease 0.15s forwards;
}
body.assets-ready .service-hero .hero-rings--bl {
  animation-delay: 0.35s;
}

body.assets-ready .service-hero .page-hero-animate {
  animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
body.assets-ready .service-hero .page-hero-animate--1 { animation-delay: 0.08s; }
body.assets-ready .service-hero .page-hero-animate--2 { animation-delay: 0.18s; }
body.assets-ready .service-hero .page-hero-animate--3 { animation-delay: 0.28s; }
body.assets-ready .service-hero .page-hero-animate--4 { animation-delay: 0.38s; }
body.assets-ready .service-hero .page-hero-animate--5 { animation-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  .service-page-card,
  .service-benefits__photo {
    transition: none;
  }
  .service-page-card:hover,
  .service-benefits__visual:hover .service-benefits__photo {
    transform: none;
  }
}

/* ─── CONTACT PAGE ───────────────────────────────────────── */
.contact-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f8f5fc 0%, #f3f0f8 100%);
}

.contact-hero .hero-rings {
  z-index: 1;
}

.contact-hero__content {
  position: relative;
  z-index: 2;
}

.contact-location-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid #e8dff5;
  background: #fff;
  box-shadow: 0 8px 24px rgba(45, 38, 64, 0.06);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.contact-location-card:hover {
  transform: translateY(-4px);
  border-color: #d4b5fb;
  box-shadow: 0 14px 36px rgba(125, 100, 168, 0.12);
}

.contact-location-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, #ebe4f5, #f8f5fc);
  color: #7d64a8;
}

.contact-location-card__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #33204f;
}

.contact-location-card__address {
  margin-top: 0.35rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: #64748b;
}

body.assets-ready .contact-hero .hero-rings {
  animation: heroRingsIn 1.4s ease 0.15s forwards;
}
body.assets-ready .contact-hero .hero-rings--bl {
  animation-delay: 0.35s;
}
body.assets-ready .contact-hero .page-hero-animate {
  animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
body.assets-ready .contact-hero .page-hero-animate--1 { animation-delay: 0.08s; }
body.assets-ready .contact-hero .page-hero-animate--2 { animation-delay: 0.18s; }

@media (prefers-reduced-motion: reduce) {
  .contact-location-card {
    transition: none;
  }
  .contact-location-card:hover {
    transform: none;
  }
}

/* ─── PAYMENT PAGE ───────────────────────────────────────── */
.payment-insurers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: center;
  justify-items: center;
}
@media (min-width: 640px) {
  .payment-insurers {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.payment-insurer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 5rem;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid #e8edf2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.payment-insurer:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(45, 38, 64, 0.08);
}

.payment-insurer__logo {
  display: block;
  max-width: 100%;
  max-height: 3.25rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (prefers-reduced-motion: reduce) {
  .payment-insurer {
    transition: none;
  }
  .payment-insurer:hover {
    transform: none;
  }
}
