:root {
  --teal: #0f8f87;
  --teal-dark: #08615d;
  --sky: #dff5fb;
  --blue: #3e8fbd;
  --yellow: #f7d774;
  --pink: #f8dce3;
  --cream: #fbf9f4;
  --white: #ffffff;
  --ink: #15313b;
  --muted: #5f7580;
  --line: #dce8e9;
  --shadow: 0 20px 55px rgba(18, 68, 75, 0.12);
  --radius: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Fustat", Georgia, "Times New Roman", serif;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 740px;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 7vw, 5.25rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

p {
  color: var(--muted);
}

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.section {
  padding: 104px 0;
}

.section-tight {
  padding: 34px 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 100;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 32px, 1180px);
  min-height: 78px;
  margin: 0 auto;
  padding: 10px 18px;
  gap: 28px;
  border: 1px solid rgba(15, 143, 135, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: inset 0 4px 4px rgba(255, 255, 255, 0.35), 0 18px 40px rgba(62, 143, 189, 0.12);
  backdrop-filter: blur(24px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
}

.brand strong,
.footer-brand span {
  display: block;
  font-family: "Fustat", Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-menu a {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration: none;
}

.site-menu a:not(.button):hover,
.site-menu a:not(.button).is-active,
.text-link:hover,
.service-card a:hover {
  color: var(--teal);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(15, 143, 135, 0.2);
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--teal-dark);
  box-shadow: 0 18px 34px rgba(15, 143, 135, 0.24);
}

.button-secondary {
  border: 1px solid rgba(15, 143, 135, 0.25);
  background: var(--white);
  color: var(--teal-dark);
  box-shadow: none;
}

.button-secondary:hover {
  background: var(--sky);
  color: var(--teal-dark);
}

.button-small {
  min-height: 42px;
  padding: 10px 18px;
  color: var(--white) !important;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 52px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, #f8fcfd 100%);
}

.hero::after,
.corner-band::before {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(15, 143, 135, 0.14);
  border-radius: 50%;
}

.hero::after {
  right: -160px;
  bottom: -220px;
  width: 520px;
  height: 520px;
}

.hero-bg-glow {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.75;
  pointer-events: none;
}

.hero-bg-glow-one {
  top: -40px;
  left: -70px;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(223, 245, 251, 0.9) 0%, rgba(223, 245, 251, 0.25) 55%, transparent 75%);
}

.hero-bg-glow-two {
  right: 4%;
  top: 16%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(248, 220, 227, 0.7) 0%, rgba(62, 143, 189, 0.15) 52%, transparent 72%);
}

.hero-wrapper {
  position: relative;
  z-index: 1;
}

.hero-grid,
.split-grid,
.corner-grid,
.concerns-grid,
.boundary-grid,
.promise-grid,
.faq-grid,
.contact-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.86fr;
  gap: 64px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 36px;
}

.hero-copy {
  width: min(100%, 700px);
}

.hero-copy h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 5.3vw, 4.05rem);
}

.hero-text {
  max-width: 680px;
  margin-bottom: 30px;
  font-size: 1.08rem;
  line-height: 1.72;
}


.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li,
.value-list span {
  border: 1px solid rgba(15, 143, 135, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero-points li {
  padding: 8px 12px;
}

.hero-visual {
  position: relative;
}

.glass-button {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(62, 143, 189, 0.18);
  color: var(--ink);
  box-shadow: inset 0 2px 8px rgba(255,255,255,0.45), 0 10px 24px rgba(62,143,189,0.08);
}

.hero-actions .button {
  min-height: 56px;
  padding-inline: 24px;
}

.hero-actions .button:first-child span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-left: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.globe-stage {
  position: relative;
  width: min(100%, 560px);
  aspect-ratio: 1;
  margin-inline: auto;
}

.liquid-globe {
  position: absolute;
  inset: 10% 10% 16% 10%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,0.95), rgba(255,255,255,0.35) 18%, transparent 28%),
    radial-gradient(circle at 70% 78%, rgba(248,220,227,0.35), transparent 30%),
    radial-gradient(circle at 52% 48%, rgba(255,255,255,0.18), transparent 54%),
    linear-gradient(140deg, rgba(223,245,251,0.96) 0%, rgba(179,222,241,0.9) 24%, rgba(160,205,230,0.8) 50%, rgba(246,250,252,0.74) 100%);
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow:
    inset -18px -24px 40px rgba(255,255,255,0.42),
    inset 20px 18px 34px rgba(62,143,189,0.18),
    0 24px 70px rgba(62, 143, 189, 0.18);
  overflow: hidden;
  animation: globeFloat 8s ease-in-out infinite;
}

.globe-glow,
.globe-grid,
.globe-continent,
.globe-shine {
  position: absolute;
  inset: 0;
}

.globe-glow {
  background: radial-gradient(circle at center, rgba(255,255,255,0.15), rgba(255,255,255,0) 62%);
}

.globe-grid-horizontal {
  background:
    repeating-linear-gradient(to bottom,
      rgba(255,255,255,0.6) 0,
      rgba(255,255,255,0.6) 2px,
      transparent 2px,
      transparent 16%);
  mask-image: radial-gradient(circle at center, #000 62%, transparent 72%);
  opacity: 0.42;
}

.globe-grid-vertical {
  inset: -4% 12%;
  border-radius: 50%;
  background:
    repeating-linear-gradient(to right,
      rgba(255,255,255,0.5) 0,
      rgba(255,255,255,0.5) 2px,
      transparent 2px,
      transparent 14%);
  transform: rotate(10deg);
  opacity: 0.36;
  animation: globeSpin 20s linear infinite;
}

.globe-continent {
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  filter: blur(0.5px);
}

.continent-one {
  inset: 24% auto auto 22%;
  width: 34%;
  height: 22%;
  border-radius: 44% 56% 48% 52% / 40% 56% 44% 60%;
  transform: rotate(-10deg);
}

.continent-two {
  inset: 44% 20% auto auto;
  width: 28%;
  height: 18%;
  border-radius: 50% 40% 52% 48% / 48% 54% 46% 52%;
}

.continent-three {
  inset: auto auto 20% 30%;
  width: 18%;
  height: 12%;
  border-radius: 58% 42% 54% 46% / 44% 54% 46% 56%;
}

.globe-shine {
  background:
    linear-gradient(110deg, transparent 20%, rgba(255,255,255,0.14) 38%, rgba(255,255,255,0.52) 46%, transparent 55%);
  transform: translateX(-32%);
  animation: sheenMove 7s ease-in-out infinite;
}

.globe-orbit {
  position: absolute;
  border: 1px solid rgba(62, 143, 189, 0.18);
  border-radius: 50%;
}

.orbit-one {
  inset: 8% 10%;
  transform: rotate(12deg);
}

.orbit-two {
  inset: 15% 4%;
  border-color: rgba(15, 143, 135, 0.14);
  transform: rotate(-18deg);
}

.globe-shadow {
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 6%;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62, 143, 189, 0.24) 0%, rgba(62,143,189,0.08) 45%, transparent 74%);
  filter: blur(18px);
}


@keyframes globeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes globeSpin {
  from { transform: rotate(10deg) translateX(0); }
  to { transform: rotate(10deg) translateX(-40px); }
}

@keyframes sheenMove {
  0%, 100% { transform: translateX(-34%); }
  50% { transform: translateX(34%); }
}

.hero-visual img,
.image-stack img {
  width: 100%;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.care-card,
.soft-note {
  position: absolute;
  right: -22px;
  bottom: 28px;
  width: min(280px, 78%);
  padding: 20px;
  border: 1px solid rgba(220, 232, 233, 0.9);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.care-card strong,
.care-card span {
  display: block;
}

.care-card span,
.soft-note {
  color: var(--muted);
}

.trust-image-section {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #eef8fb;
  overflow: hidden;
}

.trust-image-scroll {
  width: 100%;
  margin: 0;
  padding: 0;
}

.trust-image-section img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}


/* Hero refresh: premium globe background inspired by the reference while keeping website content */
.hero {
  padding-top: 56px;
  background:
    radial-gradient(circle at 0% 0%, rgba(96, 177, 255, 0.34), transparent 32%),
    radial-gradient(circle at 84% 18%, rgba(96, 177, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 62%, #f8fbfd 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -110px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96, 177, 255, 0.32) 0%, rgba(49, 154, 255, 0.16) 30%, rgba(96, 177, 255, 0.04) 52%, transparent 72%);
  filter: blur(36px);
  animation: heroGlowDrift 14s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero::after {
  right: -180px;
  bottom: -210px;
  width: 500px;
  height: 500px;
  border-color: rgba(96, 177, 255, 0.14);
}

.hero-bg-glow {
  filter: blur(84px);
  opacity: 0.8;
}

.hero-bg-glow-one {
  top: -30px;
  left: -40px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(96, 177, 255, 0.3) 0%, rgba(49, 154, 255, 0.16) 36%, rgba(96, 177, 255, 0.06) 58%, transparent 76%);
  animation: heroGlowFloat 13s ease-in-out infinite;
}

.hero-bg-glow-two {
  top: 22%;
  right: 5%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(96, 177, 255, 0.18) 0%, rgba(49, 154, 255, 0.08) 45%, transparent 72%);
  animation: heroGlowFloat 16s ease-in-out infinite reverse;
}

.hero-grid {
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: 24px;
}

.hero-copy {
  width: min(100%, 660px);
  padding-block: 14px;
}

.hero-copy h1 {
  max-width: 640px;
  margin-bottom: 20px;
  font-size: clamp(2.55rem, 5vw, 4rem);
  line-height: 1.02;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 28px;
  font-size: 1.06rem;
  line-height: 1.72;
}

.hero-actions {
  margin-bottom: 24px;
}

.hero-points li {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 20px rgba(49, 154, 255, 0.08);
}

.hero-visual {
  min-height: 580px;
}

.globe-stage {
  width: min(100%, 720px);
  height: min(78vw, 640px);
  aspect-ratio: auto;
}

.globe-stage-image {
  position: relative;
  display: block;
  overflow: visible;
  background: transparent;
}

.globe-ambient-glow {
  position: absolute;
  inset: 4% 6% 11% 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(96, 177, 255, 0.22) 0%, rgba(96, 177, 255, 0.1) 34%, rgba(96, 177, 255, 0.03) 60%, transparent 74%);
  filter: blur(22px);
  animation: globePulse 8s ease-in-out infinite;
}

.globe-backdrop-ring {
  position: absolute;
  inset: 2% 7% 10% 11%;
  border-radius: 50%;
  border: 1px solid rgba(96, 177, 255, 0.08);
  box-shadow: none;
  opacity: 0.35;
}

.globe-orbit {
  border-color: rgba(96, 177, 255, 0.18);
}

.orbit-one {
  inset: 4% 8% 10% 8%;
}

.orbit-two {
  inset: 10% 2% 16% 2%;
  border-color: rgba(96, 177, 255, 0.1);
}

.hero-globe-image,
.hero-globe-video {
  inset: 3% 4% 8% 10%;
  width: 88%;
  height: 86%;
  object-fit: contain;
  filter: saturate(1.14) brightness(1.03) contrast(1.05) drop-shadow(0 28px 58px rgba(49, 154, 255, 0.18));
  transform-origin: 50% 50%;
  animation: globeMotion 18s ease-in-out infinite;
}

.hero-globe-video {
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  background: transparent;
  clip-path: circle(48% at 50% 50%);
  opacity: 0.96;
  filter: saturate(1.22) brightness(0.98) contrast(1.14) drop-shadow(0 28px 58px rgba(49, 154, 255, 0.18));
  mix-blend-mode: multiply;
}

.hero-globe-fallback {
  display: none;
}

.globe-shine-overlay {
  inset: 7% 9% 13% 14%;
  background: linear-gradient(115deg, rgba(255,255,255,0) 18%, rgba(255,255,255,0.18) 34%, rgba(255,255,255,0.5) 45%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0) 62%);
  opacity: 0.28;
  animation: sheenMove 7s ease-in-out infinite;
}

.globe-shadow {
  left: 20%;
  right: 13%;
  bottom: 4%;
  height: 52px;
  background: radial-gradient(circle, rgba(49, 154, 255, 0.32) 0%, rgba(96,177,255,0.16) 36%, rgba(96,177,255,0.04) 62%, transparent 78%);
  filter: blur(20px);
  animation: shadowPulse 8s ease-in-out infinite;
}

@keyframes heroGlowDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(20px, 14px, 0) scale(1.06); }
}

@keyframes heroGlowFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(18px, 12px, 0); }
}

@keyframes globeMotion {
  0%, 100% { transform: translateY(0) rotate(-1.2deg) scale(1); }
  25% { transform: translateY(-10px) rotate(-0.3deg) scale(1.01); }
  50% { transform: translateY(-6px) rotate(0.9deg) scale(1.015); }
  75% { transform: translateY(-12px) rotate(0.1deg) scale(1.005); }
}

@keyframes globePulse {
  0%, 100% { opacity: 0.7; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.02); }
}

@keyframes shadowPulse {
  0%, 100% { opacity: 0.8; transform: scaleX(0.96); }
  50% { opacity: 1; transform: scaleX(1.03); }
}

.about-image-section {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #f7fbfb;
  overflow: hidden;
}

.about-image-scroll {
  width: 100%;
  margin: 0;
  padding: 0;
}

.about-image-section img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}


.trust-grid,
.services-grid,
.feature-grid,
.process-grid {
  display: grid;
  gap: 20px;
}

.image-stack {
  position: relative;
}

.image-stack img {
  aspect-ratio: 1.08;
}

.soft-note {
  right: auto;
  bottom: 24px;
  left: -22px;
  font-weight: 800;
}

.section-copy p {
  max-width: 640px;
}

.concerns-section {
  background: var(--white);
}

.concerns-grid {
  align-items: start;
  grid-template-columns: 0.82fr 1fr;
}

.concern-list {
  display: grid;
  gap: 14px;
}

.concern-list span {
  display: flex;
  align-items: center;
  min-height: 60px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(223, 245, 251, 0.72), rgba(255, 255, 255, 0.96));
  color: var(--ink);
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(18, 68, 75, 0.05);
}

.value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0;
}

.value-list span {
  padding: 9px 14px;
}

.text-link,
.service-card a {
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: none;
}

.text-link::after,
.service-card a::after {
  content: " ->";
}

.tinted {
  background: #eef9f7;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.feature-card,
.process-step,
.boundary-card,
.best-for,
.contact-form {
  border: 1px solid rgba(220, 232, 233, 0.9);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(18, 68, 75, 0.08);
}

.service-card,
.feature-card,
.process-step,
.boundary-card,
.best-for {
  padding: 28px;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 34px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--sky);
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card p,
.feature-card p,
.process-step p {
  margin-bottom: 18px;
}

.corner-band {
  position: relative;
  overflow: hidden;
  min-height: clamp(520px, 58vw, 760px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(4, 42, 43, 0.86) 0%, rgba(4, 42, 43, 0.58) 38%, rgba(4, 42, 43, 0.16) 68%, rgba(4, 42, 43, 0.08) 100%),
    url("assets/first-cta-background.webp") center center / cover no-repeat;
  color: var(--white);
}

.corner-band::before {
  top: -200px;
  right: -160px;
  width: 460px;
  height: 460px;
  border-color: rgba(255, 255, 255, 0.22);
  z-index: 1;
}

.corner-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 48%, rgba(255,255,255,0.13), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0));
}

.corner-band .corner-grid {
  position: relative;
  z-index: 2;
}

.corner-band .section-copy,
.corner-band .best-for {
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 28px;
  background: rgba(4, 47, 48, 0.42);
  box-shadow: 0 24px 70px rgba(3, 34, 38, 0.22);
  backdrop-filter: blur(12px);
}

.corner-band h2 {
  color: #ffffff;
  text-shadow: 0 4px 22px rgba(0,0,0,0.2);
}

.corner-band .eyebrow,
.corner-band p,
.corner-band li {
  color: rgba(255, 255, 255, 0.9);
}

.corner-band .button {
  background: var(--white);
  color: var(--teal-dark);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.best-for {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
}

.best-for ul,
.boundary-card ul {
  margin: 0;
  padding-left: 20px;
}

.best-for li,
.boundary-card li {
  margin-bottom: 10px;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
  counter-reset: step;
}

.process-step {
  position: relative;
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
}

.boundary-grid,
.contact-grid {
  grid-template-columns: 0.85fr 1fr;
}

.boundary-lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.boundary-card {
  border-color: rgba(15, 143, 135, 0.16);
}

.boundary-card.warning {
  background: #fff8f9;
  border-color: rgba(248, 220, 227, 0.9);
}

.area-band {
  background:
    linear-gradient(rgba(21, 49, 59, 0.72), rgba(21, 49, 59, 0.72)),
    url("https://images.unsplash.com/photo-1484318571209-661cf29a69d8?auto=format&fit=crop&w=1600&q=78") center/cover;
  color: var(--white);
}

.area-content {
  max-width: 820px;
  text-align: center;
}

.area-content .eyebrow,
.area-content p {
  color: rgba(255, 255, 255, 0.88);
}

.promise-section {
  background:
    radial-gradient(circle at 92% 14%, rgba(248, 220, 227, 0.78), transparent 28%),
    linear-gradient(180deg, var(--cream) 0%, #ffffff 100%);
}

.promise-grid {
  align-items: stretch;
  grid-template-columns: 0.9fr 1fr;
}

.promise-card {
  padding: 38px;
  border-radius: 28px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.promise-card .eyebrow,
.promise-card p {
  color: rgba(255, 255, 255, 0.78);
}

.promise-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.mini-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(18, 68, 75, 0.07);
}

.mini-card span {
  display: block;
  width: 34px;
  height: 8px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--yellow));
}

.mini-card p {
  margin-bottom: 0;
}

.faq-grid {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(18, 68, 75, 0.06);
}

summary {
  padding: 22px 24px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 24px 22px;
}

.final-cta {
  background: linear-gradient(180deg, #eef9f7 0%, var(--cream) 100%);
}

.contact-copy h2 {
  max-width: 620px;
}

.contact-options {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  color: var(--teal-dark);
  font-weight: 900;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 28px;
}

.contact-form label,
.contact-form .full-field,
.contact-method,
.contact-form button,
.form-note {
  grid-column: span 2;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.contact-form > label:not(.full-field) {
  grid-column: span 1;
}

.contact-method {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfefe;
}

.contact-method legend {
  padding: 0 6px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.contact-method label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.contact-method input {
  width: auto;
  min-height: auto;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfefe;
  color: var(--ink);
  font: inherit;
}

input,
select {
  min-height: 48px;
  padding: 0 14px;
}

textarea {
  resize: vertical;
  padding: 14px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(15, 143, 135, 0.16);
  border-color: var(--teal);
}

.form-note {
  margin: -4px 0 0;
  font-size: 0.9rem;
}

.site-footer {
  padding: 64px 0 28px;
  background: #102f38;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
}

.footer-brand {
  color: var(--white);
}

.footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

.site-footer h2 {
  margin-bottom: 16px;
  font-family: "Nunito Sans", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}



.globe-stage {
  position: relative;
  width: min(128%, 1120px);
  aspect-ratio: 1;
  margin-inline: -14% auto;
}

.globe-stage-image {
  display: grid;
  place-items: center;
  overflow: visible;
  background: transparent;
}

.hero-globe-image,
.hero-globe-video {
  position: absolute;
  inset: -18% -18% -10% -18%;
  width: 136%;
  height: 128%;
  object-fit: contain;
  border-radius: 50%;
  filter: saturate(1.15) brightness(1.04) contrast(1.04) drop-shadow(0 26px 52px rgba(62, 143, 189, 0.18));
  animation: globeFloat 8s ease-in-out infinite;
}

.hero-globe-video {
  background: transparent;
  clip-path: circle(48% at 50% 50%);
  opacity: 0.96;
  filter: saturate(1.22) brightness(0.98) contrast(1.14) drop-shadow(0 28px 58px rgba(49, 154, 255, 0.18));
  mix-blend-mode: multiply;
}

.globe-shine-overlay {
  position: absolute;
  inset: 11% 12% 17% 12%;
  border-radius: 50%;
  background: linear-gradient(115deg, rgba(255,255,255,0) 20%, rgba(255,255,255,0.18) 38%, rgba(255,255,255,0.5) 46%, rgba(255,255,255,0) 58%);
  transform: translateX(-32%);
  opacity: 0.28;
  mix-blend-mode: screen;
  pointer-events: none;
  animation: sheenMove 7s ease-in-out infinite;
}

.globe-shadow {
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 10%;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62, 143, 189, 0.22) 0%, rgba(62,143,189,0.08) 45%, transparent 74%);
  filter: blur(18px);
}

@media (max-width: 1020px) {
  .site-menu {
    gap: 14px;
  }

  .hero-grid,
  .split-grid,
  .corner-grid,
  .concerns-grid,
  .boundary-grid,
  .promise-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 12px;
  }

  .hero-copy {
    width: 100%;
    max-width: 760px;
  }

  .hero-visual {
    min-height: 0;
    max-width: 820px;
    margin-inline: auto;
  }

  .trust-grid,
  .services-grid,
  .feature-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer {
    padding-bottom: 132px;
  }

  .site-footer,
  .site-footer .footer-brand {
    text-align: center;
  }

  .site-footer .footer-brand {
    justify-content: center;
  }

  .site-footer .footer-brand img {
    margin-left: auto;
    margin-right: auto;
  }

  .site-footer a,
  .site-footer span {
    margin-left: auto;
    margin-right: auto;
  }
}


@media (max-width: 780px) {
  .trust-image-section {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .trust-image-section img {
    width: max(100%, 760px);
  }

  .about-image-section {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .about-image-section img {
    width: max(100%, 860px);
  }

  body {
    padding-bottom: 72px;
  }

  .container {
    width: min(100% - 28px, var(--max));
  }

  .section {
    padding: 72px 0;
  }

  .nav-shell {
    min-height: 72px;
  }

  .brand small {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-menu {
    position: fixed;
    inset: 96px 12px auto;
    display: none;
    align-items: stretch;
    flex-direction: column;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-menu.is-open {
    display: flex;
  }

  .site-menu a {
    padding: 10px 4px;
  }

  .site-menu .button {
    width: 100%;
    margin-top: 4px;
  }

  h1 {
    font-size: clamp(2.3rem, 13vw, 3.45rem);
  }

  .hero {
    padding-top: 36px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-text,
  .hero-copy h1 {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-points,

  .globe-stage {
    width: min(126%, 650px);
    margin-inline: -13% auto;
  }

  .care-card,
  .soft-note {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .boundary-lists,
  .promise-points,
  .contact-form,
  .contact-form > label:not(.full-field) {
    grid-template-columns: 1fr;
    grid-column: span 1;
  }

  .contact-form .full-field,
  .contact-method,
  .contact-form button,
  .form-note {
    grid-column: span 1;
  }

  .footer-bottom {
    display: block;
    margin-top: 38px;
    padding-bottom: calc(56px + env(safe-area-inset-bottom));
    text-align: center;
  }

  .mobile-cta {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 999px;
    background: var(--teal);
    color: var(--white);
    box-shadow: 0 18px 34px rgba(15, 143, 135, 0.28);
    font-weight: 900;
    text-decoration: none;
  }
}

@media (max-width: 560px) {
  .brand strong {
    max-width: 170px;
    font-size: 0.94rem;
  }

  .globe-stage {
    width: min(130%, 560px);
    height: 470px;
    margin-inline: -15% auto;
  }

  .trust-grid,
  .services-grid,
  .feature-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid article,
  .section-heading {
    text-align: left;
  }

  .service-card,
  .feature-card,
  .process-step,
  .boundary-card,
  .best-for,
  .promise-card,
  .mini-card,
  .contact-form {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-globe-video {
    display: none;
  }

  .hero-globe-fallback {
    display: block;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


.faq-image-section {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #fbfcfb;
  overflow: hidden;
}

.faq-image-link {
  display: block;
  width: 100%;
  text-decoration: none;
  cursor: pointer;
}

.faq-image-link img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  transition: transform 700ms ease, filter 700ms ease;
}

.faq-image-link:hover img {
  transform: scale(1.012);
  filter: brightness(1.015);
}

.service-card,
.feature-card,
.process-step,
.boundary-card,
.mini-card,
.contact-form,
details {
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.service-card:hover,
.feature-card:hover,
.process-step:hover,
.boundary-card:hover,
.mini-card:hover,
details:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(18, 68, 75, 0.12);
}

.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 120;
  display: grid;
  gap: 12px;
}

.floating-button {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(15, 143, 135, 0.26);
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, opacity 220ms ease;
}

.floating-button:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 20px 40px rgba(15, 143, 135, 0.34);
}

.whatsapp-button {
  background: #25d366;
}

.whatsapp-button svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.scroll-top-button {
  background: var(--teal);
  font-size: 1.5rem;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
}

.scroll-top-button.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.legal-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
}

.legal-content {
  max-width: 920px;
  padding: 70px 0 90px;
}

.legal-content h1 {
  max-width: 820px;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.legal-content h2 {
  margin-top: 36px;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

@media (max-width: 780px) {
  .faq-image-section {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .faq-image-link img {
    width: max(100%, 860px);
  }

  .floating-actions {
    right: 14px;
    bottom: 18px;
    gap: 10px;
  }

  .floating-button {
    width: 48px;
    height: 48px;
  }

  .mobile-cta {
    display: none !important;
  }

  body {
    padding-bottom: 20px;
  }
}


/* Support services section refresh */
.support-services-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fffdfa 0%, #fbfffd 52%, #f6fcfb 100%);
}

.support-services-shell {
  position: relative;
  padding-block: clamp(72px, 8vw, 100px);
}

.support-wave,
.support-orb,
.support-dots {
  position: absolute;
  pointer-events: none;
}

.support-wave {
  opacity: 0.55;
}

.support-wave::before {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.9;
}

.support-wave-left {
  left: -160px;
  top: 100px;
  width: 360px;
  height: 240px;
  animation: supportWaveDrift 18s ease-in-out infinite;
}

.support-wave-left::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 360 240' fill='none'%3E%3Cpath d='M2 40c64 0 64 46 128 46S194 40 258 40s64 46 128 46' stroke='%23b7dfe6' stroke-width='2'/%3E%3Cpath d='M2 65c64 0 64 46 128 46S194 65 258 65s64 46 128 46' stroke='%23b7dfe6' stroke-width='2'/%3E%3Cpath d='M2 90c64 0 64 46 128 46S194 90 258 90s64 46 128 46' stroke='%23b7dfe6' stroke-width='2'/%3E%3Cpath d='M2 115c64 0 64 46 128 46s64-46 128-46 64 46 128 46' stroke='%23b7dfe6' stroke-width='2'/%3E%3Cpath d='M2 140c64 0 64 46 128 46s64-46 128-46 64 46 128 46' stroke='%23b7dfe6' stroke-width='2'/%3E%3C/svg%3E");
}

.support-wave-right {
  right: -110px;
  top: 35px;
  width: 300px;
  height: 300px;
  animation: supportWaveDrift 22s ease-in-out infinite reverse;
}

.support-wave-right::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 300' fill='none'%3E%3Cpath d='M298 20C226 20 226 84 154 84S82 20 10 20' stroke='%23d5ebe8' stroke-width='2'/%3E%3Cpath d='M298 45C226 45 226 109 154 109S82 45 10 45' stroke='%23d5ebe8' stroke-width='2'/%3E%3Cpath d='M298 70C226 70 226 134 154 134S82 70 10 70' stroke='%23d5ebe8' stroke-width='2'/%3E%3Cpath d='M298 95C226 95 226 159 154 159S82 95 10 95' stroke='%23d5ebe8' stroke-width='2'/%3E%3Cpath d='M298 120C226 120 226 184 154 184S82 120 10 120' stroke='%23d5ebe8' stroke-width='2'/%3E%3C/svg%3E");
}

.support-orb {
  border-radius: 50%;
  filter: blur(4px);
}

.support-orb-left {
  left: -60px;
  bottom: -60px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(219, 238, 214, 0.75) 0%, rgba(219, 238, 214, 0.26) 52%, transparent 76%);
  animation: supportFloat 14s ease-in-out infinite;
}

.support-orb-center {
  left: 32%;
  bottom: 40px;
  width: 360px;
  height: 180px;
  background: radial-gradient(circle, rgba(223, 245, 251, 0.95) 0%, rgba(223, 245, 251, 0.4) 46%, transparent 72%);
  animation: supportFloat 16s ease-in-out infinite reverse;
}

.support-dots {
  width: 68px;
  height: 68px;
  background-image: radial-gradient(circle, rgba(15, 143, 135, 0.35) 1.5px, transparent 1.5px);
  background-size: 17px 17px;
  opacity: 0.55;
  animation: supportDotsPulse 8s ease-in-out infinite;
}

.support-dots-top {
  left: 22px;
  top: 22px;
}

.support-dots-bottom {
  left: 360px;
  bottom: 62px;
}

.support-heading {
  max-width: 940px;
  margin-bottom: 38px;
}

.support-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(215, 239, 233, 0.9), rgba(229, 245, 241, 0.95));
  color: var(--teal-dark);
}

.support-heading h2 {
  max-width: 980px;
  color: #0f4654;
}

.support-heading p:last-child {
  max-width: 780px;
  margin-inline: auto;
  font-size: 1.03rem;
}

.support-services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.support-service-card {
  position: relative;
  padding: 22px 22px 24px;
  border: 1px solid rgba(213, 229, 230, 0.95);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(18, 68, 75, 0.07);
  overflow: hidden;
  isolation: isolate;
}

.support-service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #61c9b8 0%, #38b49f 100%);
}

.support-service-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 245, 251, 0.55) 0%, transparent 70%);
  z-index: -1;
}

.support-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.support-icon-wrap {
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(180deg, #edf8f5 0%, #e4f3ef 100%);
  color: var(--teal);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 10px 20px rgba(15, 143, 135, 0.06);
  animation: supportIconFloat 7s ease-in-out infinite;
}

.support-icon-wrap svg,
.support-cta-icon svg,
.support-cta-phone svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 38px;
  padding: 0 10px;
  border-radius: 10px;
  background: linear-gradient(180deg, #eef8f6 0%, #e7f4f2 100%);
  color: #0f4654;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.support-service-card h3 {
  margin-bottom: 12px;
  color: #103847;
  font-size: clamp(1.48rem, 2.4vw, 1.7rem);
}

.support-service-card p {
  margin-bottom: 24px;
  color: #5f7580;
  font-size: 1rem;
  line-height: 1.7;
}

.support-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: none;
}

.support-link span {
  display: inline-block;
  transition: transform 220ms ease;
}

.support-link:hover span,
.support-link:focus-visible span {
  transform: translateX(5px);
}

.support-link:focus-visible,
.support-cta-button:focus-visible {
  outline: 2px solid rgba(15, 143, 135, 0.4);
  outline-offset: 3px;
}

.support-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(120, 205, 191, 0.95);
  box-shadow: 0 24px 48px rgba(18, 68, 75, 0.12);
}

.support-service-card:hover .support-icon-wrap {
  transform: translateY(-2px) scale(1.03);
}

.support-service-card:hover .support-number {
  background: linear-gradient(180deg, #dff4ee 0%, #e9f7f4 100%);
}

.support-cta-banner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-top: 34px;
  padding: 28px 34px;
  border: 1px solid rgba(220, 232, 233, 0.95);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(242, 250, 248, 0.98), rgba(250, 255, 253, 0.98));
  box-shadow: 0 14px 32px rgba(18, 68, 75, 0.06);
}

.support-cta-banner::before {
  content: "";
  position: absolute;
  inset: auto 20px -30px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 245, 251, 0.8) 0%, transparent 70%);
  pointer-events: none;
}

.support-cta-copy {
  display: flex;
  align-items: center;
  gap: 20px;
}

.support-cta-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(180deg, #c7efe6 0%, #a9e3d4 100%);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.45), 0 14px 24px rgba(15, 143, 135, 0.12);
}

.support-cta-copy h3 {
  margin-bottom: 4px;
  font-size: clamp(1.65rem, 2.8vw, 2rem);
  color: #113543;
}

.support-cta-copy p {
  margin-bottom: 0;
  font-size: 1.02rem;
}

.support-cta-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 246px;
  justify-content: center;
  padding-inline: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f8f87 0%, #1cb39f 100%);
  box-shadow: 0 18px 30px rgba(15, 143, 135, 0.22);
}

.support-cta-button:hover,
.support-cta-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 34px rgba(15, 143, 135, 0.28);
}

.support-cta-phone {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  transition: transform 220ms ease;
}

.support-cta-phone svg {
  width: 18px;
  height: 18px;
}

.support-cta-button:hover .support-cta-phone,
.support-cta-button:focus-visible .support-cta-phone {
  transform: translateX(3px);
}

@keyframes supportFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(10px, -8px, 0); }
}

@keyframes supportWaveDrift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(12px, 10px, 0); }
}

@keyframes supportDotsPulse {
  0%, 100% { opacity: 0.38; transform: scale(1); }
  50% { opacity: 0.68; transform: scale(1.05); }
}

@keyframes supportIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@media (max-width: 1020px) {
  .support-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-cta-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .support-cta-button {
    min-width: 0;
  }
}

@media (max-width: 760px) {
  .support-services-shell {
    padding-block: 58px 70px;
  }

  .support-heading {
    margin-bottom: 28px;
  }

  .support-heading h2 {
    max-width: 660px;
  }

  .support-services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .support-service-card {
    padding: 20px 18px 22px;
    border-radius: 22px;
  }

  .support-cta-banner {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .support-cta-copy {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .support-cta-button {
    width: 100%;
  }

  .support-dots-bottom {
    left: auto;
    right: 18px;
    bottom: 28px;
  }

  .support-orb-center {
    left: auto;
    right: -40px;
    bottom: 120px;
    width: 220px;
    height: 140px;
  }
}


/* Premium gallery cards section */
.care-gallery {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 7vw, 112px) 0;
  background:
    radial-gradient(circle at 50% 5%, rgba(255, 248, 239, 0.95), transparent 28%),
    radial-gradient(circle at 96% 7%, rgba(255, 229, 232, 0.72), transparent 20%),
    linear-gradient(180deg, #fffdf8 0%, #fbfffc 100%);
}

.care-gallery::before,
.care-gallery::after,
.gallery-soft-blob,
.gallery-leaf,
.gallery-heading-glow {
  position: absolute;
  pointer-events: none;
}

.care-gallery::before {
  content: "";
  right: -94px;
  top: -76px;
  width: 238px;
  height: 238px;
  border-radius: 50%;
  background: rgba(255, 214, 221, 0.7);
  filter: blur(1px);
  animation: galleryFloat 16s ease-in-out infinite;
}

.care-gallery::after {
  content: "";
  left: 7%;
  bottom: 56px;
  width: 142px;
  height: 142px;
  border-radius: 50%;
  background: rgba(226, 246, 242, 0.62);
  filter: blur(10px);
  animation: galleryPulse 8s ease-in-out infinite;
}

.gallery-soft-blob-pink {
  top: 0;
  right: 0;
  width: 260px;
  height: 260px;
  border-radius: 42% 58% 52% 48%;
  background: rgba(255, 229, 232, 0.6);
  animation: galleryFloat 18s ease-in-out infinite reverse;
}

.gallery-soft-blob-mint {
  left: -100px;
  bottom: -120px;
  width: 260px;
  height: 230px;
  border-radius: 56% 44% 36% 64%;
  background: rgba(225, 246, 240, 0.72);
  animation: galleryFloat 20s ease-in-out infinite;
}

.gallery-heading-glow {
  top: 34px;
  left: 50%;
  width: 480px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.92), transparent 72%);
  filter: blur(22px);
  transform: translateX(-50%);
  opacity: 0.8;
  animation: galleryPulse 9s ease-in-out infinite;
}

.gallery-leaf {
  z-index: 0;
  opacity: 0.5;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 170 170' fill='none'%3E%3Cpath d='M26 146c28-58 61-92 108-121' stroke='%2370b7ad' stroke-width='2.5' stroke-linecap='round'/%3E%3Cpath d='M46 116c-18-8-30-27-31-50 24 4 41 17 48 39' fill='%238fd0c8' fill-opacity='.35'/%3E%3Cpath d='M76 95c-16-9-24-25-24-46 22 4 37 17 43 38' fill='%2381c6bb' fill-opacity='.32'/%3E%3Cpath d='M106 72c-15-8-23-24-22-43 20 4 34 16 39 35' fill='%2377bbb0' fill-opacity='.28'/%3E%3Cpath d='M54 139c13-18 32-26 58-24-8 24-28 38-57 39' fill='%238ed0c6' fill-opacity='.34'/%3E%3C/svg%3E");
  animation: galleryLeafDrift 12s ease-in-out infinite;
}

.gallery-leaf-top {
  top: 46px;
  right: 58px;
  width: 150px;
  height: 150px;
  transform: rotate(20deg);
}

.gallery-leaf-bottom {
  bottom: 32px;
  left: 58px;
  width: 128px;
  height: 128px;
  transform: rotate(-8deg);
  animation-direction: reverse;
}

.gallery-container {
  position: relative;
  z-index: 1;
}

.gallery-heading {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto 42px;
  text-align: center;
}

.gallery-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 16px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 236, 235, 0.9);
  color: #06464a;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-pill span {
  color: #f3a5ad;
  font-size: 1rem;
}

.gallery-heading h2 {
  margin: 0;
  color: #06464a;
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.7rem, 5.2vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.gallery-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 21px auto 20px;
  color: #f3a5ad;
}

.gallery-divider span {
  width: 58px;
  height: 3px;
  border-radius: 999px;
  background: rgba(108, 190, 180, 0.55);
}

.gallery-divider i {
  font-style: normal;
  line-height: 1;
}

.gallery-heading > p:not(.gallery-pill) {
  max-width: 780px;
  margin: 0 auto;
  color: #5f687a;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.62;
}

.gallery-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
}

.gallery-support-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 326px;
  border-radius: 16px;
  border: 1px solid rgba(8, 70, 74, 0.06);
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(20, 40, 70, 0.08);
  color: inherit;
  text-decoration: none;
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}

.gallery-card-image {
  display: block;
  height: 230px;
  overflow: hidden;
  background: #eef8f5;
}

.gallery-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 700ms ease, filter 700ms ease;
}

.gallery-card-content {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 96px;
  padding: 16px 16px 18px;
  background: rgba(255,255,255,0.96);
}

.gallery-card-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #dff3ee;
  color: #06464a;
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.gallery-card-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-card-text {
  min-width: 0;
}

.gallery-card-text strong,
.gallery-card-text em {
  display: block;
}

.gallery-card-text strong {
  margin-bottom: 6px;
  color: #06464a;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.15;
}

.gallery-card-text em {
  color: #5f687a;
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.45;
}

.gallery-card-number {
  align-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #dff3ee;
  color: #06464a;
  font-size: 0.86rem;
  font-weight: 900;
  transition: transform 320ms ease, box-shadow 320ms ease, background 320ms ease;
}

.gallery-support-card:hover,
.gallery-support-card:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(8, 70, 74, 0.15);
  box-shadow: 0 28px 70px rgba(20, 40, 70, 0.13);
  outline: none;
}

.gallery-support-card:hover .gallery-card-image img,
.gallery-support-card:focus-visible .gallery-card-image img {
  transform: scale(1.055);
  filter: saturate(1.05) brightness(1.03);
}

.gallery-support-card:hover .gallery-card-icon,
.gallery-support-card:focus-visible .gallery-card-icon {
  transform: scale(1.08);
  box-shadow: 0 12px 24px rgba(8, 70, 74, 0.1);
}

.gallery-support-card:hover .gallery-card-number,
.gallery-support-card:focus-visible .gallery-card-number {
  transform: translateY(-3px);
  background: #d5f1eb;
  box-shadow: 0 10px 20px rgba(8, 70, 74, 0.09);
}

.gallery-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-top: 34px;
  padding: clamp(22px, 3vw, 28px) clamp(22px, 4vw, 44px);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(230, 247, 243, 0.95), rgba(247, 252, 251, 0.95));
  box-shadow: 0 18px 45px rgba(20, 40, 70, 0.08);
}

.gallery-cta-copy {
  display: flex;
  align-items: center;
  gap: 22px;
}

.gallery-cta-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(223, 243, 238, 0.95);
  box-shadow: inset 0 0 0 3px rgba(255,255,255,0.9);
  color: #06464a;
}

.gallery-cta-icon svg {
  width: 39px;
  height: 39px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-cta-copy h3 {
  margin: 0 0 6px;
  color: #06464a;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.2;
}

.gallery-cta-copy p {
  margin: 0;
  color: #5f687a;
  font-size: 1.05rem;
}

.gallery-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 248px;
  min-height: 64px;
  padding: 16px 34px;
  border-radius: 999px;
  background: #00675f;
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(0, 103, 95, 0.24);
  font-size: 1.02rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 280ms ease, box-shadow 280ms ease, background 280ms ease;
}

.gallery-cta-button span {
  font-size: 1.55rem;
  transition: transform 280ms ease;
}

.gallery-cta-button:hover,
.gallery-cta-button:focus-visible {
  transform: translateY(-4px);
  background: #08766d;
  box-shadow: 0 24px 44px rgba(0, 103, 95, 0.31);
  outline: none;
}

.gallery-cta-button:hover span,
.gallery-cta-button:focus-visible span {
  transform: translateX(6px);
}

@keyframes galleryFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(14px, -16px, 0); }
}

@keyframes galleryPulse {
  0%, 100% { opacity: 0.62; transform: scale(1); }
  50% { opacity: 0.88; transform: scale(1.04); }
}

@keyframes galleryLeafDrift {
  0%, 100% { transform: rotate(0deg) translateY(0); }
  50% { transform: rotate(4deg) translateY(-9px); }
}

@media (max-width: 1120px) {
  .gallery-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .gallery-card-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card-image {
    height: 220px;
  }

  .gallery-cta-banner,
  .gallery-cta-copy {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-cta-button {
    width: 100%;
    min-width: 0;
  }

  .gallery-leaf-top,
  .gallery-soft-blob-pink {
    opacity: 0.3;
  }
}

/* Premium coded About the Service section */
.about-service-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 13% 18%, rgba(247, 215, 116, 0.36), transparent 22%),
    radial-gradient(circle at 31% 14%, rgba(223, 245, 251, 0.88), transparent 26%),
    radial-gradient(circle at 88% 26%, rgba(224, 243, 231, 0.82), transparent 28%),
    linear-gradient(105deg, #fffdf7 0%, #fbf9f4 46%, #f6fbfb 100%);
  isolation: isolate;
}

.about-service-section::before,
.about-service-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.about-service-section::before {
  width: 560px;
  height: 560px;
  left: -240px;
  bottom: -180px;
  border-radius: 48% 52% 42% 58%;
  background: rgba(135, 204, 190, 0.22);
  animation: aboutBlobFloat 18s ease-in-out infinite;
}

.about-service-section::after {
  width: 460px;
  height: 460px;
  right: -160px;
  top: -210px;
  border-radius: 50%;
  border: 1px solid rgba(15, 143, 135, 0.1);
  background: repeating-radial-gradient(circle, rgba(15, 143, 135, 0.08) 0 1px, transparent 2px 18px);
  opacity: 0.7;
  animation: aboutSlowSpin 36s linear infinite;
}

.about-service-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(42px, 7vw, 92px);
}

.about-service-visual {
  position: relative;
  min-height: 100%;
  animation: aboutImageFloat 7s ease-in-out infinite;
}

.about-service-photo-wrap {
  position: relative;
  z-index: 3;
  overflow: hidden;
  width: min(100%, 600px);
  height: calc(100% - 78px);
  min-height: 520px;
  margin-inline: auto;
  border: 8px solid rgba(255, 255, 255, 0.94);
  border-radius: 64px 64px 64px 22px;
  background: var(--white);
  box-shadow: 0 30px 75px rgba(18, 68, 75, 0.16);
}

.about-service-photo-wrap img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.about-service-note {
  position: absolute;
  z-index: 5;
  left: max(0px, calc(50% - 300px));
  bottom: 22px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: start;
  gap: 18px;
  max-width: 410px;
  padding: 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 52px rgba(18, 68, 75, 0.16);
  backdrop-filter: blur(16px);
  animation: aboutCardFloat 6.5s ease-in-out infinite;
}

.about-service-note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 245, 246, 0.98), rgba(248, 220, 227, 0.72));
  box-shadow: 0 14px 26px rgba(217, 102, 128, 0.16);
}

.about-service-note-icon svg,
.about-value-badge svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-service-note-icon svg {
  color: #ef8fa4;
}

.about-service-note p {
  margin: 0;
  color: #173050;
  font-family: "Fustat", Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.about-service-blob,
.about-service-shape,
.about-service-lines,
.about-service-dots,
.about-service-leaf {
  position: absolute;
  pointer-events: none;
}

.about-service-blob {
  z-index: 1;
  border-radius: 999px;
  filter: blur(0.2px);
}

.about-service-blob-yellow {
  width: 250px;
  height: 250px;
  left: 10px;
  top: -30px;
  background: rgba(247, 215, 116, 0.38);
  animation: aboutBlobFloat 16s ease-in-out infinite;
}

.about-service-blob-blue {
  width: 340px;
  height: 340px;
  right: -30px;
  top: -50px;
  background: rgba(223, 245, 251, 0.92);
  animation: aboutBlobFloat 18s ease-in-out infinite reverse;
}

.about-service-blob-green {
  width: 300px;
  height: 360px;
  left: -50px;
  bottom: 10px;
  border-radius: 45% 55% 52% 48%;
  background: rgba(190, 226, 204, 0.52);
  animation: aboutBlobFloat 20s ease-in-out infinite;
}

.about-service-shape-one {
  right: 2.8%;
  top: 26%;
  width: 84px;
  height: 84px;
  border-radius: 20px;
  background: rgba(196, 228, 188, 0.76);
  filter: blur(0.2px);
  transform: rotate(15deg);
  animation: aboutShapeDrift 11s ease-in-out infinite;
}

.about-service-shape-two {
  right: -18px;
  top: 58%;
  width: 94px;
  height: 94px;
  border-radius: 20px;
  background: rgba(210, 237, 252, 0.76);
  transform: rotate(7deg);
  animation: aboutShapeDrift 12s ease-in-out infinite reverse;
}

.about-service-lines-one {
  left: 35%;
  top: 8%;
  width: 370px;
  height: 170px;
  border-top: 1px solid rgba(62, 143, 189, 0.18);
  border-radius: 50%;
  transform: rotate(-2deg);
  opacity: 0.9;
  animation: aboutLineDrift 15s ease-in-out infinite;
}

.about-service-lines-one::before,
.about-service-lines-one::after {
  content: "";
  position: absolute;
  inset: 12px -12px auto 16px;
  height: 130px;
  border-top: 1px solid rgba(62, 143, 189, 0.13);
  border-radius: 50%;
}

.about-service-lines-one::after {
  inset: 26px -24px auto 30px;
  border-color: rgba(62, 143, 189, 0.1);
}

.about-service-dots {
  width: 64px;
  height: 64px;
  background-image: radial-gradient(circle, rgba(62, 143, 189, 0.32) 2px, transparent 2.5px);
  background-size: 16px 16px;
  opacity: 0.72;
  animation: aboutShapeDrift 13s ease-in-out infinite;
}

.about-service-dots-one {
  left: 42px;
  top: 72px;
  background-image: radial-gradient(circle, rgba(247, 215, 116, 0.6) 2px, transparent 2.5px);
}

.about-service-dots-two {
  right: 70px;
  bottom: 118px;
}

.about-service-leaf-one,
.about-service-leaf-two {
  width: 190px;
  height: 160px;
  opacity: 0.74;
  background:
    radial-gradient(ellipse at 18% 58%, rgba(73, 137, 99, 0.55) 0 12%, transparent 13%),
    radial-gradient(ellipse at 36% 45%, rgba(73, 137, 99, 0.48) 0 11%, transparent 12%),
    radial-gradient(ellipse at 54% 32%, rgba(73, 137, 99, 0.42) 0 10%, transparent 11%),
    linear-gradient(62deg, transparent 49%, rgba(73, 137, 99, 0.45) 50%, transparent 52%);
  filter: blur(0.15px);
  animation: aboutLeafDrift 10s ease-in-out infinite;
}

.about-service-leaf-one {
  left: 12px;
  bottom: 118px;
  transform: rotate(-18deg);
}

.about-service-leaf-two {
  right: 48px;
  top: 16px;
  transform: rotate(18deg) scale(0.9);
  animation-delay: -3s;
}

.about-service-copy {
  max-width: 690px;
}

.about-service-eyebrow {
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--teal-dark);
  font-size: 0.98rem;
  letter-spacing: 0.08em;
}

.about-service-eyebrow::after {
  content: "";
  width: 48px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), rgba(15, 143, 135, 0.12));
}

.about-service-copy h2 {
  max-width: 690px;
  margin-bottom: 26px;
  color: #102b4f;
  font-size: clamp(3.1rem, 5.35vw, 5.95rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.about-service-copy p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 24px;
  color: #1d3659;
  font-size: clamp(1.02rem, 1.34vw, 1.22rem);
  line-height: 1.7;
}

.about-value-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0 34px;
}

.about-value-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 20px;
  border: 1px solid currentColor;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 10px 24px rgba(18, 68, 75, 0.06);
  font-weight: 850;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.about-value-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(18, 68, 75, 0.11);
  background: rgba(255, 255, 255, 0.86);
}

.badge-caring { color: #158269; }
.badge-reliable { color: #2f78bb; }
.badge-observant { color: #af7815; }
.badge-respectful { color: #cf6479; }

.about-service-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 0 9px;
  color: #102b4f;
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  font-weight: 900;
  text-decoration: none;
}

.about-service-cta::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), rgba(247, 215, 116, 0.8), transparent);
  transform-origin: left;
  transition: transform 240ms ease;
}

.about-service-cta span {
  display: inline-block;
  transition: transform 240ms ease;
}

.about-service-cta:hover span,
.about-service-cta:focus-visible span {
  transform: translateX(6px);
}

.about-service-cta:hover::after,
.about-service-cta:focus-visible::after {
  transform: scaleX(1.08);
}

@keyframes aboutBlobFloat {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(18px, -14px, 0) scale(1.04); }
}

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

@keyframes aboutCardFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(8px, -7px, 0); }
}

@keyframes aboutShapeDrift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(10deg); }
  50% { transform: translate3d(-10px, 12px, 0) rotate(16deg); }
}

@keyframes aboutLineDrift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-2deg); }
  50% { transform: translate3d(18px, 8px, 0) rotate(-4deg); }
}

@keyframes aboutLeafDrift {
  0%, 100% { translate: 0 0; }
  50% { translate: 9px -10px; }
}

@keyframes aboutSlowSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 1080px) {
  .about-service-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .about-service-visual {
    min-height: auto;
    max-width: 720px;
    margin-inline: auto;
    padding-bottom: 76px;
  }

  .about-service-photo-wrap {
    height: auto;
    min-height: 0;
  }

  .about-service-photo-wrap img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.12;
  }

  .about-service-copy {
    max-width: 800px;
    margin-inline: auto;
  }

  .about-service-copy h2 {
    max-width: 760px;
  }
}

@media (max-width: 700px) {
  .about-service-section {
    padding: 76px 0;
  }

  .about-service-photo-wrap {
    border-width: 6px;
    border-radius: 36px 36px 36px 18px;
  }

  .about-service-visual {
    padding-bottom: 112px;
  }

  .about-service-note {
    right: 14px;
    left: 14px;
    bottom: 0;
    grid-template-columns: 48px 1fr;
    max-width: none;
    padding: 18px;
    border-radius: 22px;
  }

  .about-service-note-icon {
    width: 46px;
    height: 46px;
  }

  .about-service-copy h2 {
    font-size: clamp(2.55rem, 13vw, 3.75rem);
  }

  .about-value-badges {
    gap: 10px;
  }

  .about-value-badge {
    flex: 1 1 calc(50% - 10px);
    justify-content: center;
    min-width: 138px;
    padding: 11px 14px;
  }

  .about-service-leaf-two,
  .about-service-shape-one,
  .about-service-lines-one {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-service-section::before,
  .about-service-section::after,
  .about-service-visual,
  .about-service-note,
  .about-service-blob,
  .about-service-shape,
  .about-service-lines,
  .about-service-dots,
  .about-service-leaf {
    animation: none !important;
  }
}


/* Family concerns premium question section */
.family-wonder-section {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 8vw, 122px) 0;
  background:
    radial-gradient(circle at 11% 82%, rgba(210, 236, 208, 0.78), transparent 20%),
    radial-gradient(circle at 51% 90%, rgba(220, 244, 250, 0.82), transparent 22%),
    linear-gradient(180deg, #fffdf8 0%, #fffefa 100%);
}

.family-wonder-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: clamp(44px, 7vw, 98px);
  align-items: center;
}

.family-wonder-copy {
  max-width: 590px;
}

.family-wonder-label {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 22px;
  color: #5b8a47;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  font-weight: 900;
  letter-spacing: -0.01em;
}

.family-wonder-label span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #628c55;
  font-size: 2.25rem;
  line-height: 1;
  transform: rotate(-18deg);
}

.family-wonder-copy h2 {
  max-width: 680px;
  margin-bottom: 8px;
  color: #06183d;
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.7rem, 5.35vw, 5.05rem);
  line-height: 0.99;
  letter-spacing: -0.045em;
}

.family-wonder-title-line {
  display: flex;
  align-items: center;
  max-width: 430px;
  margin: 0 0 30px;
  color: rgba(132, 188, 132, 0.72);
}

.family-wonder-title-line span {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(132, 188, 132, 0.72), transparent);
}

.family-wonder-title-line i {
  margin: 0 6px;
  color: rgba(132, 188, 132, 0.88);
  font-style: normal;
  font-size: 1.34rem;
  line-height: 1;
}

.family-wonder-copy p:not(.family-wonder-label) {
  max-width: 620px;
  margin-bottom: 30px;
  color: #5f687a;
  font-size: clamp(1.05rem, 1.8vw, 1.38rem);
  line-height: 1.68;
  letter-spacing: 0.01em;
}

.family-wonder-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 15px 29px;
  border-radius: 11px;
  background: linear-gradient(135deg, #0f8c5f 0%, #35a76d 100%);
  color: #ffffff;
  box-shadow: 0 20px 42px rgba(15, 140, 95, 0.24), inset 0 1px 0 rgba(255,255,255,0.24);
  font-size: 1.03rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 260ms ease, box-shadow 260ms ease, filter 260ms ease;
}

.family-wonder-button-icon {
  font-size: 1.5rem;
  line-height: 1;
  transform: rotate(-18deg);
}

.family-wonder-button-arrow {
  font-size: 1.4rem;
  transition: transform 260ms ease;
}

.family-wonder-button:hover,
.family-wonder-button:focus-visible {
  transform: translateY(-4px);
  filter: brightness(1.04);
  box-shadow: 0 28px 58px rgba(15, 140, 95, 0.31), inset 0 1px 0 rgba(255,255,255,0.28);
  outline: none;
}

.family-wonder-button:hover .family-wonder-button-arrow,
.family-wonder-button:focus-visible .family-wonder-button-arrow {
  transform: translateX(5px);
}

.family-question-list {
  display: grid;
  gap: 16px;
}

.family-question-card {
  --card-accent: #54ad70;
  --card-soft: #dff3e6;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 86px 1fr 86px;
  align-items: center;
  min-height: 112px;
  padding: 20px 26px 20px 38px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px rgba(20, 40, 70, 0.08);
  color: #06183d;
  text-decoration: none;
  backdrop-filter: blur(12px);
  will-change: transform;
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease, filter 320ms ease;
}

.family-question-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--card-accent), color-mix(in srgb, var(--card-accent), #ffffff 55%));
  box-shadow: 0 0 28px color-mix(in srgb, var(--card-accent), transparent 72%);
  z-index: -1;
}

.family-question-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -55px;
  width: 178px;
  height: 100px;
  border-radius: 60% 40% 35% 65%;
  background: var(--card-soft);
  opacity: 0.55;
  transform: rotate(-18deg);
  z-index: -2;
  transition: transform 320ms ease, opacity 320ms ease;
}

.family-question-card strong {
  position: relative;
  z-index: 1;
  color: #06183d;
  font-size: clamp(1.02rem, 1.45vw, 1.31rem);
  line-height: 1.28;
  letter-spacing: -0.025em;
  transition: transform 280ms ease;
}

.question-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffffff 0%, var(--card-soft) 62%, color-mix(in srgb, var(--card-soft), var(--card-accent) 16%) 100%);
  box-shadow: 0 12px 28px rgba(20, 40, 70, 0.08);
  color: var(--card-accent);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.question-icon svg {
  width: 39px;
  height: 39px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.question-dots {
  justify-self: center;
  width: 44px;
  height: 28px;
  opacity: 0.72;
  background-image: radial-gradient(var(--card-accent) 1.45px, transparent 1.45px);
  background-size: 13px 13px;
  transition: transform 280ms ease, opacity 280ms ease;
}

.question-green { --card-accent: #54ad70; --card-soft: #dff3e6; }
.question-blue { --card-accent: #55aee8; --card-soft: #e4f4ff; }
.question-gold { --card-accent: #d8a438; --card-soft: #fff2cf; }
.question-pink { --card-accent: #ef8f9d; --card-soft: #ffe7eb; }
.question-teal { --card-accent: #2fb7a5; --card-soft: #dff7f3; }

.family-question-card:hover,
.family-question-card:focus-visible {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--card-accent), #ffffff 58%);
  box-shadow: 0 28px 70px rgba(20, 40, 70, 0.13);
  outline: none;
}

.family-question-card:hover .question-icon,
.family-question-card:focus-visible .question-icon {
  transform: scale(1.06);
  box-shadow: 0 16px 34px rgba(20, 40, 70, 0.12);
}

.family-question-card:hover strong,
.family-question-card:focus-visible strong {
  transform: translateX(6px);
}

.family-question-card:hover .question-dots,
.family-question-card:focus-visible .question-dots {
  opacity: 1;
  transform: translateX(-4px);
}

.family-question-card:hover::after,
.family-question-card:focus-visible::after {
  opacity: 0.72;
  transform: rotate(-12deg) translate(-8px, -4px);
}

.family-wonder-bg,
.family-wonder-arc,
.family-wonder-dots,
.family-wonder-leaves {
  position: absolute;
  pointer-events: none;
}

.family-wonder-bg-green {
  left: -70px;
  bottom: -110px;
  width: 390px;
  height: 320px;
  border-radius: 45% 55% 65% 35%;
  background: rgba(216, 238, 207, 0.78);
  filter: blur(1px);
  animation: familyFloat 14s ease-in-out infinite;
}

.family-wonder-bg-blue {
  left: 42%;
  bottom: -130px;
  width: 420px;
  height: 280px;
  border-radius: 60% 40% 42% 58%;
  background: rgba(220, 244, 250, 0.84);
  animation: familyFloat 17s ease-in-out infinite reverse;
}

.family-wonder-arc {
  top: -170px;
  left: 39%;
  width: 460px;
  height: 310px;
  border-top: 1px solid rgba(239, 198, 94, 0.52);
  border-left: 1px solid rgba(239, 198, 94, 0.3);
  border-radius: 50%;
  transform: rotate(14deg);
  animation: familyDrift 18s ease-in-out infinite;
}

.family-wonder-dots {
  width: 58px;
  height: 72px;
  opacity: 0.55;
  background-image: radial-gradient(#7bbf82 1.4px, transparent 1.4px);
  background-size: 15px 15px;
  animation: familyFloat 13s ease-in-out infinite;
}

.family-wonder-dots-top {
  top: 34px;
  left: 5.3%;
}

.family-wonder-dots-bottom {
  bottom: 96px;
  left: 24.2%;
  background-image: radial-gradient(#5fc1b1 1.4px, transparent 1.4px);
  animation-delay: -4s;
}

.family-wonder-leaves-left {
  left: 0;
  bottom: 28px;
  width: 120px;
  height: 185px;
  opacity: 0.34;
  background:
    radial-gradient(ellipse at 42% 24%, transparent 0 48%, #7bae76 50% 56%, transparent 58%),
    radial-gradient(ellipse at 66% 48%, transparent 0 48%, #7bae76 50% 56%, transparent 58%),
    radial-gradient(ellipse at 35% 62%, transparent 0 48%, #7bae76 50% 56%, transparent 58%);
  transform: rotate(-24deg);
  animation: leafSway 8s ease-in-out infinite;
}

.family-wonder-leaves-right {
  right: 3.2%;
  top: 130px;
  width: 84px;
  height: 110px;
  opacity: 0.16;
  background:
    radial-gradient(ellipse at 35% 28%, transparent 0 48%, #79aa73 50% 56%, transparent 58%),
    radial-gradient(ellipse at 65% 50%, transparent 0 48%, #79aa73 50% 56%, transparent 58%);
  transform: rotate(24deg);
  animation: leafSway 10s ease-in-out infinite reverse;
}

@keyframes familyFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(12px, -16px, 0); }
}

@keyframes familyDrift {
  0%, 100% { transform: rotate(14deg) translate3d(0, 0, 0); }
  50% { transform: rotate(17deg) translate3d(18px, 10px, 0); }
}

@keyframes leafSway {
  0%, 100% { transform: rotate(-24deg) translateY(0); }
  50% { transform: rotate(-18deg) translateY(-10px); }
}

@media (max-width: 1020px) {
  .family-wonder-grid {
    grid-template-columns: 1fr;
  }

  .family-wonder-copy {
    max-width: 760px;
  }

  .family-question-card {
    grid-template-columns: 82px 1fr 70px;
  }
}

@media (max-width: 640px) {
  .family-wonder-section {
    padding: 72px 0;
  }

  .family-wonder-copy h2 {
    font-size: clamp(2.55rem, 14vw, 3.65rem);
  }

  .family-wonder-title-line {
    max-width: 100%;
  }

  .family-wonder-button {
    width: 100%;
    min-height: 58px;
  }

  .family-question-list {
    gap: 14px;
  }

  .family-question-card {
    grid-template-columns: 62px 1fr;
    min-height: auto;
    padding: 19px 20px 19px 23px;
    border-radius: 18px;
  }

  .question-icon {
    width: 52px;
    height: 52px;
  }

  .question-icon svg {
    width: 31px;
    height: 31px;
  }

  .question-dots {
    display: none;
  }

  .family-wonder-bg-blue,
  .family-wonder-arc,
  .family-wonder-leaves-right {
    display: none;
  }
}


/* Support values section */
.support-values-section {
  position: relative;
  overflow: hidden;
  padding: clamp(68px, 7vw, 102px) 0;
  background:
    radial-gradient(circle at 19% 16%, rgba(255, 253, 242, 0.94), transparent 24%),
    radial-gradient(circle at 12% 20%, rgba(222, 241, 235, 0.82), transparent 30%),
    radial-gradient(circle at 84% 26%, rgba(230, 243, 255, 0.86), transparent 31%),
    linear-gradient(180deg, #f6fbfc 0%, #f7fcfd 100%);
}

.support-values-bg,
.support-values-glow,
.support-values-arc,
.support-values-dots,
.support-values-heart,
.support-values-leaves {
  position: absolute;
  pointer-events: none;
}

.support-values-bg {
  border-radius: 50%;
  filter: blur(1px);
}

.support-values-bg-green {
  top: -140px;
  left: -150px;
  width: 520px;
  height: 420px;
  background: radial-gradient(circle at 56% 48%, rgba(210, 235, 224, 0.95), rgba(227, 242, 233, 0.62) 58%, transparent 74%);
  animation: supportValuesFloat 18s ease-in-out infinite;
}

.support-values-bg-blue {
  right: -120px;
  bottom: -130px;
  width: 480px;
  height: 380px;
  background: radial-gradient(circle at 45% 40%, rgba(219, 239, 255, 0.9), rgba(232, 245, 255, 0.52) 58%, transparent 78%);
  animation: supportValuesFloat 21s ease-in-out infinite reverse;
}

.support-values-glow {
  inset: auto 18% 56px 18%;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.92), rgba(255,255,255,0.12) 70%, transparent 82%);
  filter: blur(22px);
  opacity: 0.88;
}

.support-values-arc {
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.62);
  opacity: 0.56;
}

.support-values-arc-one {
  left: -60px;
  top: 96px;
  width: 300px;
  height: 520px;
  transform: rotate(16deg);
  animation: supportValuesSway 16s ease-in-out infinite;
}

.support-values-arc-two {
  left: 66%;
  bottom: -84px;
  width: 240px;
  height: 190px;
  transform: rotate(-10deg);
  opacity: 0.44;
  animation: supportValuesSway 18s ease-in-out infinite reverse;
}

.support-values-dots {
  top: 28px;
  right: 3.7%;
  width: 92px;
  height: 68px;
  opacity: 0.42;
  background-image: radial-gradient(#aecfe9 1.65px, transparent 1.65px);
  background-size: 18px 18px;
  animation: supportValuesFloat 14s ease-in-out infinite;
}

.support-values-heart {
  top: 132px;
  right: 9%;
  color: rgba(241, 180, 196, 0.56);
  font-size: 5rem;
  line-height: 1;
  transform: rotate(12deg);
  animation: supportValuesSway 12s ease-in-out infinite;
}

.support-values-leaves {
  left: -8px;
  bottom: 6px;
  width: 160px;
  height: 230px;
  opacity: 0.48;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 240' fill='none'%3E%3Cpath d='M34 222c22-52 52-96 88-131' stroke='%2372b686' stroke-width='3' stroke-linecap='round'/%3E%3Cpath d='M36 192c-19-11-27-35-23-64 28 9 43 28 44 56' fill='%23a9d9b3' fill-opacity='.44'/%3E%3Cpath d='M71 183c-15-12-20-32-16-57 24 6 39 21 43 46' fill='%2398cfaa' fill-opacity='.40'/%3E%3Cpath d='M104 154c-14-11-18-29-14-51 22 6 36 18 40 39' fill='%2388c39e' fill-opacity='.38'/%3E%3Cpath d='M84 219c11-24 34-37 67-39-4 33-25 53-60 60' fill='%238bc49f' fill-opacity='.42'/%3E%3Cpath d='M120 131c8-20 26-32 54-35-2 27-18 44-46 51' fill='%2392cea4' fill-opacity='.36'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  animation: supportValuesLeaf 11s ease-in-out infinite;
}

.support-values-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 30px);
  align-items: stretch;
}

.support-value-card {
  --card-accent: #6fc975;
  --card-soft: #e7f7e8;
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 392px;
  padding: 40px 34px 34px;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255,255,255,0.76);
  box-shadow: 0 24px 60px rgba(20, 60, 80, 0.10);
  color: inherit;
  text-decoration: none;
  backdrop-filter: blur(12px);
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.js-enabled .support-value-card.is-visible,
html:not(.js-enabled) .support-value-card {
  animation: supportValueCardFloat 8.8s ease-in-out infinite;
}

.support-value-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 10px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--card-accent), #ffffff 18%), color-mix(in srgb, var(--card-accent), #ffffff 48%));
  opacity: 0.82;
  transition: transform 280ms ease, opacity 280ms ease;
}

.support-value-card::after {
  content: "";
  position: absolute;
  inset: auto -22px -50px auto;
  width: 180px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--card-soft), #ffffff 26%), transparent 68%);
  opacity: 0.55;
  z-index: -1;
}

.support-value-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 26px;
}

.support-value-icon {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffffff 0%, var(--card-soft) 62%, color-mix(in srgb, var(--card-soft), var(--card-accent) 12%) 100%);
  color: var(--card-accent);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.88), 0 16px 36px rgba(20, 60, 80, 0.08);
  will-change: transform;
  transition: transform 320ms ease, box-shadow 320ms ease, filter 320ms ease;
}

.js-enabled .support-value-card.is-visible .support-value-icon,
html:not(.js-enabled) .support-value-card .support-value-icon {
  animation: supportValueIconFloat 6.8s ease-in-out infinite;
}

.support-value-icon svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-value-badge {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  min-height: 66px;
  padding: 10px 18px;
  border-radius: 0 18px 0 28px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--card-accent), #ffffff 12%), color-mix(in srgb, var(--card-accent), #ffffff 24%));
  color: #ffffff;
  box-shadow: 0 16px 30px color-mix(in srgb, var(--card-accent), transparent 74%);
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  transition: transform 320ms ease, box-shadow 320ms ease, filter 320ms ease;
}

.js-enabled .support-value-card.is-visible .support-value-badge,
html:not(.js-enabled) .support-value-card .support-value-badge {
  animation: supportValueBadgeFloat 5.8s ease-in-out infinite;
}

.support-value-badge::after {
  content: "";
  position: absolute;
  top: -55%;
  bottom: -55%;
  left: -75%;
  width: 48%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.48), transparent);
  transform: rotate(18deg);
  transition: left 520ms ease;
}

.support-value-card h3 {
  margin: 0;
  color: #06183d;
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 2.1vw, 2.42rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.support-value-underline {
  width: 42px;
  height: 3px;
  margin: 20px 0 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--card-accent), color-mix(in srgb, var(--card-accent), #ffffff 32%));
  transition: width 280ms ease, transform 280ms ease, opacity 280ms ease;
}

.support-value-card p {
  max-width: 17ch;
  margin: 0;
  color: #5f687a;
  font-size: 1.05rem;
  line-height: 1.58;
  transition: color 280ms ease, transform 280ms ease;
}

.support-value-green { --card-accent: #6cc46d; --card-soft: #e8f6e6; animation-delay: 0s; }
.support-value-blue { --card-accent: #5aa0de; --card-soft: #e7f3ff; animation-delay: -1.6s; }
.support-value-gold { --card-accent: #efc03b; --card-soft: #fff5d9; animation-delay: -3.1s; }
.support-value-pink { --card-accent: #ef95a6; --card-soft: #ffe9ee; animation-delay: -4.7s; }

.support-value-blue .support-value-icon { animation-delay: -1.1s; }
.support-value-gold .support-value-icon { animation-delay: -2.2s; }
.support-value-pink .support-value-icon { animation-delay: -3.3s; }

.support-value-blue .support-value-badge { animation-delay: -0.9s; }
.support-value-gold .support-value-badge { animation-delay: -1.8s; }
.support-value-pink .support-value-badge { animation-delay: -2.7s; }

.support-value-card:hover,
.support-value-card:focus-visible {
  animation: none;
  transform: translateY(-16px) scale(1.015);
  border-color: color-mix(in srgb, var(--card-accent), #ffffff 50%);
  box-shadow: 0 38px 88px rgba(20, 60, 80, 0.18), 0 0 0 1px color-mix(in srgb, var(--card-accent), transparent 78%);
  filter: brightness(1.01);
  outline: none;
}

.support-value-card:hover .support-value-icon,
.support-value-card:focus-visible .support-value-icon {
  animation: none;
  transform: scale(1.1) rotate(-2deg) translateY(-5px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.92), 0 24px 46px rgba(20, 60, 80, 0.14), 0 0 28px color-mix(in srgb, var(--card-accent), transparent 76%);
}

.support-value-card:hover .support-value-badge,
.support-value-card:focus-visible .support-value-badge {
  animation: none;
  transform: translateY(-7px) scale(1.03);
  filter: brightness(1.06);
  box-shadow: 0 22px 42px color-mix(in srgb, var(--card-accent), transparent 64%);
}

.support-value-card:hover .support-value-badge::after,
.support-value-card:focus-visible .support-value-badge::after {
  left: 132%;
}

.support-value-card:hover p,
.support-value-card:focus-visible p {
  color: #43506a;
  transform: translateY(-2px);
}

.support-value-card:hover::before,
.support-value-card:focus-visible::before {
  transform: translateY(-2px);
  opacity: 1;
}

.support-value-card:hover .support-value-underline,
.support-value-card:focus-visible .support-value-underline {
  width: 60px;
  transform: translateX(2px);
}

@keyframes supportValueCardFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

@keyframes supportValueIconFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(0, -5px, 0) rotate(1.5deg); }
}

@keyframes supportValueBadgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes supportValuesFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(14px, -16px, 0); }
}

@keyframes supportValuesSway {
  0%, 100% { transform: rotate(12deg) translate3d(0, 0, 0); }
  50% { transform: rotate(16deg) translate3d(10px, -10px, 0); }
}

@keyframes supportValuesLeaf {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(2deg) translateY(-10px); }
}

@media (max-width: 1180px) {
  .support-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .support-values-section {
    padding: 72px 0;
  }

  .support-values-grid {
    grid-template-columns: 1fr;
  }

  .support-value-card {
    min-height: 0;
    padding: 28px 24px 28px;
    border-radius: 24px;
  }

  .support-value-icon {
    width: 86px;
    height: 86px;
  }

  .support-value-icon svg {
    width: 42px;
    height: 42px;
  }

  .support-value-badge {
    min-width: 64px;
    min-height: 56px;
    font-size: 1.45rem;
  }

  .support-value-card h3 {
    font-size: 2.05rem;
  }

  .support-values-heart,
  .support-values-arc-two {
    display: none;
  }
}


/* Guiding approach section */
.guiding-approach-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 16%, rgba(247, 248, 240, 0.92), transparent 24%),
    linear-gradient(180deg, #fffdf8 0%, #fffbf6 100%);
}

.guiding-approach-section::before,
.guiding-approach-section::after,
.approach-soft-blob,
.approach-heading-glow,
.approach-leaf {
  position: absolute;
  pointer-events: none;
}

.guiding-approach-section::before {
  content: "";
  inset: auto auto 8% -8%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 243, 238, 0.56) 0%, rgba(223, 243, 238, 0) 72%);
  animation: approachFloat 18s ease-in-out infinite;
}

.guiding-approach-section::after {
  content: "";
  inset: 8% 10% auto auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 229, 232, 0.72) 0%, rgba(255, 229, 232, 0) 72%);
  animation: approachFloat 21s ease-in-out infinite reverse;
}

.approach-soft-blob-green {
  left: -80px;
  top: 20%;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 243, 238, 0.58) 0%, rgba(223, 243, 238, 0) 74%);
  animation: approachFloat 16s ease-in-out infinite;
}

.approach-soft-blob-pink {
  right: -36px;
  top: -48px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 229, 232, 0.68) 0%, rgba(255, 229, 232, 0) 74%);
  animation: approachFloat 18s ease-in-out infinite reverse;
}

.approach-heading-glow {
  top: 52px;
  left: 50%;
  width: min(78vw, 760px);
  height: 220px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 248, 239, 0.92) 0%, rgba(255, 248, 239, 0) 72%);
  filter: blur(10px);
  animation: approachPulse 10s ease-in-out infinite;
}

.approach-leaf {
  width: 170px;
  height: 280px;
  opacity: 0.42;
  background-repeat: no-repeat;
  background-size: contain;
  animation: approachLeafDrift 15s ease-in-out infinite;
}

.approach-leaf-left {
  left: -10px;
  top: 150px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 290'%3E%3Cg fill='none' stroke='%2397b7aa' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' opacity='0.95'%3E%3Cpath d='M34 272c18-34 28-79 28-132C62 82 55 44 45 18'/%3E%3Cpath d='M60 92c-28 18-45 43-50 77 32-3 57-15 78-37'/%3E%3Cpath d='M64 138c-26 17-41 41-45 69 28-3 50-14 69-34'/%3E%3Cpath d='M69 193c-22 13-34 33-38 56 23-3 41-12 58-27'/%3E%3Cpath d='M58 73c18-2 36-13 54-33-4 28-18 49-41 63'/%3E%3Cpath d='M66 126c20 0 41-11 60-30-4 24-16 43-37 55'/%3E%3Cpath d='M72 181c17-1 34-11 49-27-3 19-13 34-30 43'/%3E%3C/g%3E%3C/svg%3E");
}

.approach-leaf-right {
  right: 0;
  top: 148px;
  width: 150px;
  height: 250px;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 270'%3E%3Cg fill='none' stroke='%2397b7aa' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M121 248c-14-31-23-71-23-118 0-51 7-87 17-112'/%3E%3Cpath d='M96 87c25 16 40 38 45 67-29-3-50-14-67-34'/%3E%3Cpath d='M93 133c22 15 35 35 38 59-24-2-42-12-57-29'/%3E%3Cpath d='M87 182c18 11 28 28 31 47-20-2-35-10-48-23'/%3E%3Cpath d='M101 68c-16-2-32-12-47-29 4 24 16 42 36 54'/%3E%3Cpath d='M95 117c-17 0-34-9-50-26 3 21 13 37 31 48'/%3E%3Cpath d='M89 166c-14-1-28-9-40-23 3 16 11 29 24 37'/%3E%3C/g%3E%3C/svg%3E");
  animation-delay: -4s;
}

.approach-container {
  position: relative;
  z-index: 1;
}

.approach-heading {
  max-width: 860px;
  margin: 0 auto 56px;
  text-align: center;
}

.approach-label {
  margin-bottom: 16px;
  color: #0b746d;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.approach-divider,
.approach-mini-divider {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.approach-divider {
  margin-bottom: 24px;
}

.approach-divider span,
.approach-mini-divider span {
  width: 98px;
  height: 2px;
  border-radius: 999px;
  background: rgba(15, 143, 135, 0.35);
}

.approach-divider i,
.approach-mini-divider i {
  font-style: normal;
  color: #f38f95;
  font-size: 1.35rem;
  line-height: 1;
}

.approach-heading h2 {
  max-width: 760px;
  margin: 0 auto 22px;
  color: #083b56;
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  line-height: 1.05;
  text-wrap: balance;
}

.approach-intro {
  max-width: 780px;
  margin: 0 auto;
  color: #576c79;
  font-size: clamp(1.02rem, 1.35vw, 1.3rem);
  line-height: 1.72;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
}

.approach-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  min-height: 410px;
  padding: 34px 30px 36px;
  border-radius: 22px;
  border: 1px solid rgba(8, 70, 74, 0.06);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 55px rgba(20, 40, 70, 0.08);
  text-align: center;
  text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  backdrop-filter: blur(12px);
}

.approach-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: #dff3ee;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.approach-icon-circle svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: #0b6970;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.approach-card strong {
  display: block;
  margin-bottom: 18px;
  color: #0a425d;
  font-family: "Fustat", Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2vw, 1.95rem);
  line-height: 1.1;
}

.approach-mini-divider {
  margin-bottom: 24px;
  transition: filter 0.35s ease, transform 0.35s ease;
}

.approach-mini-divider span {
  width: 56px;
}

.approach-mini-divider i {
  font-size: 1.15rem;
}

.approach-card p {
  margin: 0;
  color: #5e7280;
  font-size: 1rem;
  line-height: 1.72;
}

.approach-card:hover,
.approach-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: 0 30px 75px rgba(20, 40, 70, 0.13);
  border-color: rgba(15, 143, 135, 0.16);
}

.approach-card:hover .approach-icon-circle,
.approach-card:focus-visible .approach-icon-circle {
  transform: scale(1.06);
  box-shadow: 0 14px 28px rgba(15, 143, 135, 0.12);
}

.approach-card:hover .approach-mini-divider,
.approach-card:focus-visible .approach-mini-divider {
  transform: translateY(-1px);
  filter: drop-shadow(0 6px 16px rgba(243, 143, 149, 0.28));
}

.approach-card:focus-visible {
  outline: 3px solid rgba(15, 143, 135, 0.24);
  outline-offset: 4px;
}

@keyframes approachFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -18px, 0); }
}

@keyframes approachPulse {
  0%, 100% { opacity: 0.72; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.04); }
}

@keyframes approachLeafDrift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(0, -10px, 0) rotate(1.5deg); }
}

@media (max-width: 1120px) {
  .approach-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .approach-heading {
    margin-bottom: 44px;
  }

  .approach-divider span {
    width: 82px;
  }

  .approach-leaf-right,
  .approach-leaf-left {
    opacity: 0.22;
  }
}

@media (max-width: 720px) {
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .approach-card {
    min-height: auto;
    padding: 30px 22px 32px;
  }

  .approach-icon-circle {
    width: 84px;
    height: 84px;
    margin-bottom: 22px;
  }

  .approach-divider span {
    width: 62px;
  }

  .approach-mini-divider span {
    width: 44px;
  }

  .approach-leaf-right,
  .approach-soft-blob-pink {
    display: none;
  }

  .approach-leaf-left {
    width: 120px;
    height: 200px;
    left: -18px;
    top: auto;
    bottom: 110px;
  }
}

/* Final exact gallery reference refinements */
.care-gallery {
  padding: clamp(62px, 6vw, 88px) 0 clamp(72px, 7vw, 96px);
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 248, 239, 0.98), transparent 30%),
    radial-gradient(circle at 96% 7%, rgba(255, 229, 232, 0.76), transparent 19%),
    linear-gradient(180deg, #fffdf8 0%, #fffdf8 58%, #fbfffc 100%);
}

.care-gallery .gallery-container {
  width: min(100% - 128px, 1400px);
  max-width: 1400px;
}

.gallery-heading {
  margin-bottom: 28px;
}

.gallery-heading h2 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  color: #06464a;
  text-shadow: 0 8px 24px rgba(6, 70, 74, 0.06);
}

.gallery-pill {
  margin-bottom: 12px;
  padding: 7px 17px;
  animation: gallerySoftLift 5.8s ease-in-out infinite;
}

.gallery-divider {
  margin: 18px auto 18px;
}

.gallery-heading > p:not(.gallery-pill) {
  max-width: 820px;
}

.gallery-card-grid {
  gap: 20px;
}

.gallery-support-card {
  min-height: 302px;
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(20, 40, 70, 0.08);
  animation: galleryCardGlow 6s ease-in-out infinite;
}

.gallery-support-card:nth-child(2n) { animation-delay: -1.4s; }
.gallery-support-card:nth-child(3n) { animation-delay: -2.2s; }
.gallery-support-card:nth-child(4n) { animation-delay: -3.1s; }

.gallery-card-image {
  height: 202px;
}

.gallery-card-image img {
  transform: scale(1.015);
  animation: galleryImageBreathe 12s ease-in-out infinite;
}

.gallery-card-content {
  grid-template-columns: 58px minmax(0, 1fr) auto;
  min-height: 100px;
  padding: 14px 14px 16px;
}

.gallery-card-icon {
  width: 54px;
  height: 54px;
  animation: galleryIconFloat 5.2s ease-in-out infinite;
}

.gallery-card-number {
  animation: galleryNumberGlow 4.8s ease-in-out infinite;
}

.gallery-support-card:hover,
.gallery-support-card:focus-visible {
  transform: translateY(-9px);
  box-shadow: 0 28px 72px rgba(20, 40, 70, 0.14);
}

.gallery-support-card:focus-visible,
.gallery-cta-button:focus-visible {
  outline: 3px solid rgba(6, 70, 74, 0.22);
  outline-offset: 4px;
}

.gallery-cta-banner {
  margin-top: 30px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(226, 246, 242, 0.98), rgba(248, 252, 251, 0.98));
  animation: galleryCtaFloat 7s ease-in-out infinite;
}

.gallery-cta-icon {
  animation: galleryIconFloat 5.6s ease-in-out infinite;
}

.gallery-cta-button {
  min-width: 246px;
  min-height: 64px;
  background: #00675f;
}

.gallery-leaf-top,
.gallery-leaf-bottom,
.gallery-soft-blob-pink,
.gallery-soft-blob-mint,
.gallery-heading-glow {
  will-change: transform, opacity;
}

@keyframes gallerySoftLift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes galleryCardGlow {
  0%, 100% { box-shadow: 0 18px 44px rgba(20, 40, 70, 0.08); }
  50% { box-shadow: 0 22px 54px rgba(20, 40, 70, 0.105); }
}

@keyframes galleryImageBreathe {
  0%, 100% { transform: scale(1.015); }
  50% { transform: scale(1.045); }
}

@keyframes galleryIconFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.025); }
}

@keyframes galleryNumberGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(6, 70, 74, 0); }
  50% { box-shadow: 0 8px 18px rgba(6, 70, 74, 0.08); }
}

@keyframes galleryCtaFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@media (max-width: 1180px) {
  .care-gallery .gallery-container {
    width: min(100% - 48px, 1400px);
  }
}

@media (max-width: 720px) {
  .care-gallery .gallery-container {
    width: min(100% - 28px, 1400px);
  }

  .gallery-card-image {
    height: 220px;
  }
}


/* Premium How It Works section */
.premium-process-section {
  position: relative;
  overflow: hidden;
  padding: clamp(84px, 8vw, 118px) 0 clamp(82px, 8vw, 112px);
  background:
    radial-gradient(circle at 11% 80%, rgba(219, 247, 242, 0.72), transparent 23%),
    radial-gradient(circle at 91% 9%, rgba(255, 228, 234, 0.72), transparent 21%),
    linear-gradient(180deg, #f8fffd 0%, #fffdf8 100%);
}

.process-bg,
.process-line,
.process-dots,
.process-leaf {
  position: absolute;
  pointer-events: none;
}

.process-bg {
  border-radius: 50%;
  filter: blur(1px);
}

.process-bg-mint {
  top: -155px;
  right: 15%;
  width: 360px;
  height: 300px;
  background: radial-gradient(circle, rgba(209, 244, 237, 0.72), transparent 74%);
  animation: processFloat 18s ease-in-out infinite;
}

.process-bg-pink {
  top: 34px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 224, 232, 0.78), transparent 72%);
  animation: processFloat 20s ease-in-out infinite reverse;
}

.process-bg-gold {
  left: -120px;
  bottom: -120px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 238, 198, 0.72), transparent 72%);
  animation: processFloat 22s ease-in-out infinite;
}

.process-line-top,
.process-line-bottom {
  width: 430px;
  height: 260px;
  border: 2px solid rgba(116, 190, 188, 0.18);
  border-bottom: 0;
  border-left: 0;
  border-radius: 50%;
  animation: processDrift 24s ease-in-out infinite;
}

.process-line-top {
  top: -100px;
  left: 8%;
  transform: rotate(-16deg);
}

.process-line-bottom {
  right: 26%;
  bottom: -150px;
  transform: rotate(8deg);
}

.process-dots {
  width: 92px;
  height: 92px;
  opacity: 0.42;
  background-image: radial-gradient(#8ccdc3 1.6px, transparent 1.6px);
  background-size: 15px 15px;
  animation: processFloat 14s ease-in-out infinite;
}

.process-dots-top {
  top: 10px;
  left: 9%;
}

.process-dots-bottom {
  right: 16%;
  bottom: 16px;
}

.process-leaf {
  width: 190px;
  height: 290px;
  opacity: 0.42;
  background-repeat: no-repeat;
  background-size: contain;
  animation: processLeaf 15s ease-in-out infinite;
}

.process-leaf-left {
  top: 52px;
  left: -8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 190 290' fill='none'%3E%3Cg stroke='%2394beb1' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round' opacity='.86'%3E%3Cpath d='M26 270c20-49 38-97 46-146 7-43 5-78-7-104'/%3E%3Cpath d='M70 104C38 116 16 141 6 176c40 2 72-13 97-43'/%3E%3Cpath d='M70 142c-28 12-46 35-53 68 34 1 61-11 83-37'/%3E%3Cpath d='M77 94c23-2 45-16 67-43-4 34-23 60-56 78'/%3E%3Cpath d='M80 143c25-3 47-16 68-41-6 31-24 54-53 70'/%3E%3Cpath d='M61 203c-23 9-38 27-45 54 28 1 51-8 70-28'/%3E%3C/g%3E%3C/svg%3E");
}

.process-leaf-right {
  right: -22px;
  bottom: 28px;
  width: 170px;
  height: 250px;
  opacity: 0.34;
  transform: scaleX(-1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 190 290' fill='none'%3E%3Cg stroke='%2394beb1' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round' opacity='.86'%3E%3Cpath d='M26 270c20-49 38-97 46-146 7-43 5-78-7-104'/%3E%3Cpath d='M70 104C38 116 16 141 6 176c40 2 72-13 97-43'/%3E%3Cpath d='M70 142c-28 12-46 35-53 68 34 1 61-11 83-37'/%3E%3Cpath d='M77 94c23-2 45-16 67-43-4 34-23 60-56 78'/%3E%3Cpath d='M80 143c25-3 47-16 68-41-6 31-24 54-53 70'/%3E%3Cpath d='M61 203c-23 9-38 27-45 54 28 1 51-8 70-28'/%3E%3C/g%3E%3C/svg%3E");
  animation-delay: -4s;
}

.process-premium-container {
  position: relative;
  z-index: 2;
}

.process-premium-heading {
  max-width: 980px;
  margin: 0 auto 54px;
  text-align: center;
}

.process-label {
  margin: 0 0 12px;
  color: #0b746d;
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.process-heading-divider,
.process-mini-divider {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.process-heading-divider {
  margin-bottom: 20px;
}

.process-heading-divider span,
.process-mini-divider span {
  width: 74px;
  height: 2px;
  border-radius: 999px;
  background: rgba(15, 143, 135, 0.34);
}

.process-heading-divider i,
.process-mini-divider i {
  color: #f38f95;
  font-style: normal;
  font-size: 1.36rem;
  line-height: 1;
}

.process-premium-heading h2 {
  margin-bottom: 18px;
  color: #06183d;
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.9rem, 6.6vw, 5.55rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.process-premium-heading p:not(.process-label) {
  max-width: 870px;
  margin: 0 auto;
  color: #53697c;
  font-size: clamp(1.05rem, 1.45vw, 1.32rem);
}

.premium-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 34px);
}

.premium-process-card {
  --step-accent: #26b7a8;
  --step-soft: #dff7f3;
  position: relative;
  isolation: isolate;
  min-height: 438px;
  padding: 36px 30px 38px;
  overflow: visible;
  border: 1px solid color-mix(in srgb, var(--step-accent), #ffffff 70%);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 62px rgba(20, 40, 70, 0.09);
  color: inherit;
  text-align: center;
  text-decoration: none;
  backdrop-filter: blur(14px);
  transition: transform 340ms ease, box-shadow 340ms ease, border-color 340ms ease;
}

.premium-process-card::before {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 130px;
  height: 120px;
  border-radius: 0 100% 0 26px;
  background: radial-gradient(circle at 20% 100%, var(--step-soft), transparent 78%);
  opacity: 0.7;
  z-index: -1;
}

.premium-process-card::after {
  content: "";
  position: absolute;
  right: 26px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  opacity: 0.38;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80' fill='none'%3E%3Cg stroke='%2385bca8' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M16 70c12-25 25-43 46-58'/%3E%3Cpath d='M29 49c-10-2-17-10-21-24 15 1 25 8 29 21'/%3E%3Cpath d='M43 37c-8-1-14-8-17-19 12 1 20 7 23 17'/%3E%3Cpath d='M47 53c9-3 17-10 24-22-13 1-22 7-28 18'/%3E%3Cpath d='M58 28c8-3 14-9 19-18-11 1-18 6-22 15'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 340ms ease, opacity 340ms ease;
}

.process-card-teal { --step-accent: #25b8aa; --step-soft: #dff7f3; }
.process-card-blue { --step-accent: #5aa0de; --step-soft: #e5f3ff; }
.process-card-gold { --step-accent: #efbd3e; --step-soft: #fff1cc; }
.process-card-pink { --step-accent: #ef8aa0; --step-soft: #ffe6ec; }

.process-step-number {
  position: absolute;
  top: 34px;
  left: 34px;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #ffffff, var(--step-soft) 70%);
  color: #06183d;
  box-shadow: 0 12px 26px rgba(20, 40, 70, 0.08);
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
}

.process-icon-circle {
  display: grid;
  place-items: center;
  width: 142px;
  height: 142px;
  margin: 30px auto 25px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #ffffff 0%, var(--step-soft) 66%, color-mix(in srgb, var(--step-soft), var(--step-accent) 8%) 100%);
  color: var(--step-accent);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 16px 34px rgba(20, 40, 70, 0.08);
  transition: transform 340ms ease, box-shadow 340ms ease;
}

.process-icon-circle svg {
  width: 78px;
  height: 78px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-mini-divider {
  margin-bottom: 20px;
}

.process-mini-divider span {
  width: 44px;
  background: color-mix(in srgb, var(--step-accent), #ffffff 32%);
}

.process-mini-divider i {
  color: color-mix(in srgb, var(--step-accent), #f38f95 45%);
  font-size: 1.1rem;
}

.premium-process-card h3 {
  margin-bottom: 18px;
  color: #06183d;
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 2vw, 2.05rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.premium-process-card p {
  max-width: 250px;
  margin: 0 auto;
  color: #567087;
  font-size: 1.02rem;
  line-height: 1.62;
}

.process-arrow {
  position: absolute;
  top: 50%;
  right: -21px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid color-mix(in srgb, var(--step-accent), #ffffff 18%);
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: var(--step-accent);
  box-shadow: 0 10px 26px rgba(20, 40, 70, 0.08);
  font-size: 1.5rem;
  font-weight: 900;
  transform: translateY(-50%);
  transition: transform 340ms ease, box-shadow 340ms ease;
  z-index: 4;
}

.process-arrow::before {
  content: "";
  position: absolute;
  right: 43px;
  top: 50%;
  width: 42px;
  height: 2px;
  background-image: linear-gradient(90deg, transparent 0 25%, var(--step-accent) 25% 45%, transparent 45% 58%, var(--step-accent) 58% 78%, transparent 78% 100%);
  opacity: 0.6;
}

.premium-process-card:hover,
.premium-process-card:focus-visible {
  transform: translateY(-10px);
  border-color: color-mix(in srgb, var(--step-accent), #ffffff 34%);
  box-shadow: 0 34px 82px rgba(20, 40, 70, 0.15);
  outline: none;
}

.premium-process-card:hover .process-icon-circle,
.premium-process-card:focus-visible .process-icon-circle {
  transform: scale(1.06) translateY(-3px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.94), 0 22px 42px rgba(20, 40, 70, 0.13);
}

.premium-process-card:hover .process-arrow,
.premium-process-card:focus-visible .process-arrow {
  transform: translate(5px, -50%);
  box-shadow: 0 14px 34px rgba(20, 40, 70, 0.13);
}

.premium-process-card:hover::after,
.premium-process-card:focus-visible::after {
  opacity: 0.6;
  transform: translateY(-8px) rotate(4deg);
}

.premium-process-card:focus-visible {
  outline: 3px solid rgba(15, 143, 135, 0.22);
  outline-offset: 4px;
}

@keyframes processFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(14px, -18px, 0); }
}

@keyframes processDrift {
  0%, 100% { transform: rotate(-16deg) translate3d(0, 0, 0); }
  50% { transform: rotate(-12deg) translate3d(16px, -12px, 0); }
}

@keyframes processLeaf {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(2deg); }
}

@media (max-width: 1120px) {
  .premium-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-arrow {
    display: none;
  }
}

@media (max-width: 720px) {
  .premium-process-section {
    padding: 74px 0;
  }

  .process-premium-heading {
    margin-bottom: 38px;
  }

  .process-premium-heading h2 {
    font-size: clamp(2.45rem, 13vw, 3.55rem);
  }

  .premium-process-grid {
    grid-template-columns: 1fr;
  }

  .premium-process-card {
    min-height: auto;
    padding: 28px 22px 32px;
  }

  .process-icon-circle {
    width: 112px;
    height: 112px;
    margin-top: 24px;
  }

  .process-icon-circle svg {
    width: 62px;
    height: 62px;
  }

  .process-step-number {
    top: 24px;
    left: 24px;
    width: 44px;
    height: 44px;
    font-size: 1.35rem;
  }

  .process-leaf-left,
  .process-leaf-right,
  .process-dots-top {
    opacity: 0.18;
  }
}


/* Premium FAQ accordion section */
.premium-faq-section {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 8vw, 118px) 0;
  background:
    radial-gradient(circle at 9% 68%, rgba(223, 243, 238, 0.75), transparent 23%),
    radial-gradient(circle at 90% 86%, rgba(255, 231, 235, 0.48), transparent 22%),
    linear-gradient(180deg, #fffdf8 0%, #fbfffd 100%);
}

.premium-faq-blob,
.premium-faq-arc,
.premium-faq-dots,
.premium-faq-leaf {
  position: absolute;
  pointer-events: none;
}

.premium-faq-blob {
  border-radius: 50%;
  filter: blur(0.4px);
}

.premium-faq-blob-mint {
  left: -120px;
  bottom: -130px;
  width: 520px;
  height: 360px;
  background: radial-gradient(circle, rgba(212, 239, 232, 0.9), rgba(212, 239, 232, 0) 72%);
  animation: premiumFaqFloat 18s ease-in-out infinite;
}

.premium-faq-blob-pink-left {
  left: 24px;
  bottom: -118px;
  width: 260px;
  height: 230px;
  background: radial-gradient(circle, rgba(255, 231, 235, 0.82), rgba(255, 231, 235, 0) 72%);
  animation: premiumFaqFloat 20s ease-in-out infinite reverse;
}

.premium-faq-blob-pink-right {
  right: -90px;
  bottom: -80px;
  width: 290px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 231, 235, 0.62), rgba(255, 231, 235, 0) 72%);
  animation: premiumFaqFloat 22s ease-in-out infinite;
}

.premium-faq-arc {
  border-radius: 50%;
  border: 1.5px solid rgba(224, 188, 91, 0.44);
}

.premium-faq-arc-top {
  top: -188px;
  left: -70px;
  width: 390px;
  height: 340px;
  border-bottom-color: transparent;
  border-right-color: transparent;
  animation: premiumFaqArc 22s ease-in-out infinite;
}

.premium-faq-arc-bottom {
  right: -120px;
  bottom: -150px;
  width: 440px;
  height: 340px;
  border-top-color: transparent;
  border-left-color: transparent;
  animation: premiumFaqArc 24s ease-in-out infinite reverse;
}

.premium-faq-dots {
  width: 104px;
  height: 92px;
  opacity: 0.45;
  background-image: radial-gradient(#6fc6ba 1.6px, transparent 1.6px);
  background-size: 16px 16px;
  animation: premiumFaqFloat 16s ease-in-out infinite;
}

.premium-faq-dots-left {
  left: 9%;
  top: 10px;
}

.premium-faq-dots-right {
  right: 8.2%;
  bottom: 22px;
  background-image: radial-gradient(#f0a8b4 1.5px, transparent 1.5px);
  animation-delay: -6s;
}

.premium-faq-leaf {
  opacity: 0.36;
  background-repeat: no-repeat;
  background-size: contain;
  animation: premiumFaqLeaf 13s ease-in-out infinite;
}

.premium-faq-leaf-top {
  left: 0;
  top: 20px;
  width: 150px;
  height: 230px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 170 240' fill='none'%3E%3Cpath d='M10 208c42-35 64-84 78-152' stroke='%2385b9ad' stroke-width='2.4' stroke-linecap='round'/%3E%3Cpath d='M69 92C39 81 18 61 5 32c35 2 60 18 74 47' fill='%239fcabe' fill-opacity='.35'/%3E%3Cpath d='M50 135c-26-6-45-23-57-50 31 1 55 13 72 38' fill='%239fcabe' fill-opacity='.32'/%3E%3Cpath d='M86 70c23-6 42-22 58-49-30-1-54 9-72 31' fill='%239fcabe' fill-opacity='.32'/%3E%3Cpath d='M74 119c22-2 43-15 62-39-28-3-52 4-71 22' fill='%239fcabe' fill-opacity='.28'/%3E%3C/svg%3E");
}

.premium-faq-leaf-bottom-left {
  left: 22px;
  bottom: 42px;
  width: 140px;
  height: 230px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 230' fill='none'%3E%3Cpath d='M40 212c4-49 22-101 62-162' stroke='%2385b9ad' stroke-width='2.4' stroke-linecap='round'/%3E%3Cpath d='M53 152c-24-15-39-38-43-70 31 9 50 29 58 60' fill='%239fcabe' fill-opacity='.36'/%3E%3Cpath d='M64 109c-19-16-29-37-30-63 26 9 42 27 49 53' fill='%239fcabe' fill-opacity='.31'/%3E%3Cpath d='M72 185c23-10 47-9 72 3-22 18-46 25-72 19' fill='%239fcabe' fill-opacity='.31'/%3E%3Cpath d='M96 84c22-5 42-20 59-44-30-1-53 8-70 29' fill='%239fcabe' fill-opacity='.28'/%3E%3C/svg%3E");
  animation-delay: -4s;
}

.premium-faq-leaf-right {
  right: 4px;
  bottom: 62px;
  width: 150px;
  height: 250px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 170 260' fill='none'%3E%3Cpath d='M134 242c-34-46-48-98-45-158' stroke='%2385b9ad' stroke-width='2.4' stroke-linecap='round'/%3E%3Cpath d='M92 148c30-8 53-26 69-53-34-2-60 10-78 37' fill='%239fcabe' fill-opacity='.34'/%3E%3Cpath d='M85 100c27-6 48-22 63-48-32-2-56 8-73 32' fill='%239fcabe' fill-opacity='.30'/%3E%3Cpath d='M105 189c24 2 44 14 60 34-28 5-52-1-72-17' fill='%239fcabe' fill-opacity='.30'/%3E%3Cpath d='M78 63c-21-11-35-29-42-55 28 5 48 20 59 44' fill='%239fcabe' fill-opacity='.26'/%3E%3C/svg%3E");
  animation-delay: -7s;
}

.premium-faq-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(540px, 1.18fr);
  gap: clamp(48px, 7vw, 98px);
  align-items: center;
}

.premium-faq-copy {
  max-width: 560px;
}

.premium-faq-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: #0c7c75;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.premium-faq-label span {
  color: #66b9ae;
  font-size: 1.45rem;
  letter-spacing: 0;
}

.premium-faq-copy h2 {
  max-width: 600px;
  margin-bottom: 28px;
  color: #06183d;
  font-size: clamp(3rem, 6vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.premium-faq-divider {
  display: flex;
  align-items: center;
  gap: 22px;
  max-width: 360px;
  margin: 0 0 28px;
  color: #66b9ae;
}

.premium-faq-divider span {
  height: 2px;
  flex: 1;
  border-radius: 999px;
  background: rgba(102, 185, 174, 0.55);
}

.premium-faq-divider i {
  color: #66b9ae;
  font-style: normal;
  font-size: 1.45rem;
  line-height: 1;
}

.premium-faq-intro {
  max-width: 560px;
  margin: 0;
  color: #5f687a;
  font-size: clamp(1.06rem, 1.55vw, 1.38rem);
  line-height: 1.72;
}

.premium-faq-list {
  display: grid;
  gap: 18px;
}

.premium-faq-item {
  --faq-accent: #66b9ae;
  --faq-soft: #dff3ee;
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--faq-accent), #ffffff 55%);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 45px rgba(20, 40, 70, 0.08);
  backdrop-filter: blur(12px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.premium-faq-item::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 18px;
  width: 96px;
  height: 72px;
  opacity: 0.34;
  background-image: radial-gradient(var(--faq-accent) 1.25px, transparent 1.25px);
  background-size: 12px 12px;
  pointer-events: none;
}

.premium-faq-item::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 10px;
  width: 150px;
  height: 110px;
  opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 150 110' fill='none'%3E%3Cpath d='M8 96c38-5 72-29 103-72' stroke='%2385b9ad' stroke-width='2' stroke-linecap='round'/%3E%3Cpath d='M78 58c25 2 47-8 66-31-28-3-52 4-72 22' fill='%239fcabe' fill-opacity='.36'/%3E%3Cpath d='M58 73c-21-4-38-17-49-39 26 1 46 12 60 31' fill='%239fcabe' fill-opacity='.30'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.premium-faq-item h3 {
  margin: 0;
  font-family: inherit;
}

.premium-faq-trigger {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 74px 30px 1fr 46px;
  align-items: center;
  width: 100%;
  min-height: 104px;
  gap: 18px;
  padding: 22px 28px;
  border: 0;
  background: transparent;
  color: #06183d;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.premium-faq-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffffff 0%, var(--faq-soft) 66%, color-mix(in srgb, var(--faq-soft), var(--faq-accent) 16%) 100%);
  color: var(--faq-accent);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.premium-faq-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.premium-faq-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #29415c;
  font-size: 2rem;
  line-height: 1;
  transform-origin: center;
  transition: transform 0.35s ease, color 0.35s ease;
}

.premium-faq-question {
  color: #06183d;
  font-size: clamp(1.05rem, 1.5vw, 1.45rem);
  font-weight: 900;
  line-height: 1.24;
  letter-spacing: -0.025em;
}

.premium-faq-heart {
  justify-self: center;
  color: var(--faq-accent);
  font-size: 1.85rem;
  line-height: 1;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.premium-faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.38s ease, opacity 0.28s ease;
}

.premium-faq-answer p {
  max-width: 560px;
  margin: -4px 84px 34px 190px;
  color: #4d5d72;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.7;
}

.premium-faq-item:hover,
.premium-faq-item:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(20, 40, 70, 0.12);
}

.premium-faq-item.is-open {
  border-color: color-mix(in srgb, var(--faq-accent), #ffffff 25%);
  box-shadow: 0 30px 80px rgba(20, 90, 85, 0.13);
}

.premium-faq-item.is-open::after {
  opacity: 0.6;
  transform: translateY(-6px);
}

.premium-faq-item.is-open .premium-faq-answer {
  max-height: 260px;
  opacity: 1;
}

.premium-faq-item.is-open .premium-faq-chevron {
  color: var(--faq-accent);
  transform: rotate(180deg);
}

.premium-faq-item:hover .premium-faq-icon,
.premium-faq-item:focus-within .premium-faq-icon,
.premium-faq-item.is-open .premium-faq-icon {
  transform: scale(1.06);
  box-shadow: 0 14px 30px rgba(20, 40, 70, 0.09);
}

.premium-faq-item:hover .premium-faq-heart,
.premium-faq-item:focus-within .premium-faq-heart {
  transform: scale(1.08);
  filter: drop-shadow(0 8px 14px color-mix(in srgb, var(--faq-accent), transparent 70%));
}

.premium-faq-trigger:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--faq-accent), transparent 70%);
  outline-offset: -6px;
  border-radius: 18px;
}

.faq-teal { --faq-accent: #66b9ae; --faq-soft: #dff3ee; }
.faq-blue { --faq-accent: #6caee6; --faq-soft: #e8f3ff; }
.faq-gold { --faq-accent: #e4b344; --faq-soft: #fff3d7; }
.faq-pink { --faq-accent: #ef8fa0; --faq-soft: #ffe7eb; }
.faq-lavender { --faq-accent: #8d96dc; --faq-soft: #eef0ff; }

@keyframes premiumFaqFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(14px, -18px, 0); }
}

@keyframes premiumFaqArc {
  0%, 100% { transform: rotate(0deg) translate3d(0, 0, 0); }
  50% { transform: rotate(4deg) translate3d(10px, -8px, 0); }
}

@keyframes premiumFaqLeaf {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1.5deg); }
}

@media (max-width: 1080px) {
  .premium-faq-grid {
    grid-template-columns: 1fr;
  }

  .premium-faq-copy {
    max-width: 760px;
  }

  .premium-faq-answer p {
    margin-right: 36px;
  }
}

@media (max-width: 680px) {
  .premium-faq-section {
    padding: 72px 0;
  }

  .premium-faq-copy h2 {
    font-size: clamp(2.55rem, 14vw, 3.65rem);
  }

  .premium-faq-divider {
    max-width: 100%;
    gap: 14px;
  }

  .premium-faq-trigger {
    grid-template-columns: 56px 22px 1fr 28px;
    min-height: 84px;
    gap: 12px;
    padding: 18px 16px;
  }

  .premium-faq-icon {
    width: 50px;
    height: 50px;
  }

  .premium-faq-icon svg {
    width: 28px;
    height: 28px;
  }

  .premium-faq-chevron {
    font-size: 1.6rem;
  }

  .premium-faq-heart {
    font-size: 1.25rem;
  }

  .premium-faq-answer p {
    margin: -2px 20px 24px 86px;
    font-size: 0.98rem;
  }

  .premium-faq-leaf-top,
  .premium-faq-leaf-right,
  .premium-faq-arc-top {
    display: none;
  }
}


/* Premium care contact section */
.care-contact-section {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 8vw, 128px) 0;
  background:
    radial-gradient(circle at 13% 5%, rgba(223, 243, 238, 0.76), transparent 24%),
    radial-gradient(circle at 91% 6%, rgba(255, 229, 232, 0.78), transparent 22%),
    radial-gradient(circle at 0% 68%, rgba(232, 243, 255, 0.70), transparent 20%),
    linear-gradient(180deg, #fffdf8 0%, #fffbf7 100%);
}

.care-contact-section .contact-bg,
.care-contact-section .contact-dots,
.care-contact-section .contact-heart-outline,
.care-contact-section .contact-leaf,
.care-contact-section .contact-line {
  position: absolute;
  pointer-events: none;
}

.contact-bg-mint {
  left: -90px;
  top: -90px;
  width: 390px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223, 243, 238, 0.82), transparent 72%);
  animation: contactFloat 18s ease-in-out infinite;
}

.contact-bg-pink {
  right: -100px;
  top: -20px;
  width: 300px;
  height: 420px;
  border-radius: 46% 0 0 56%;
  background: radial-gradient(circle, rgba(255, 229, 232, 0.88), transparent 74%);
  animation: contactFloat 22s ease-in-out infinite reverse;
}

.contact-bg-blue {
  right: -80px;
  top: 38%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 243, 255, 0.82), transparent 70%);
  animation: contactFloat 20s ease-in-out infinite;
}

.contact-dots-top {
  top: 98px;
  left: 36%;
  width: 88px;
  height: 70px;
  opacity: 0.45;
  background-image: radial-gradient(#b7d9dd 1.7px, transparent 1.7px);
  background-size: 18px 18px;
  animation: contactFloat 14s ease-in-out infinite reverse;
}

.contact-heart-outline {
  left: 36%;
  top: 34%;
  color: rgba(248, 170, 181, 0.52);
  font-size: 4.3rem;
  line-height: 1;
  transform: rotate(-8deg);
  animation: contactSway 12s ease-in-out infinite;
}

.contact-line-one {
  left: -120px;
  bottom: 8px;
  width: 320px;
  height: 180px;
  border: 1px solid rgba(102, 178, 199, 0.18);
  border-left: 0;
  border-radius: 50%;
  transform: rotate(-12deg);
}

.contact-leaf {
  width: 168px;
  height: 260px;
  opacity: 0.42;
  background-repeat: no-repeat;
  background-size: contain;
  animation: contactLeafDrift 14s ease-in-out infinite;
}

.contact-leaf-left {
  left: -8px;
  top: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 280'%3E%3Cg fill='none' stroke='%2389ab98' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' opacity='.85'%3E%3Cpath d='M29 244c24-46 48-92 91-135'/%3E%3Cpath d='M52 156C25 143 12 120 10 89c34 7 57 24 70 52'/%3E%3Cpath d='M85 127c-22-17-29-40-23-70 30 12 47 31 52 58'/%3E%3Cpath d='M109 103c-13-20-13-42 0-67 20 19 28 40 22 64'/%3E%3Cpath d='M68 196c-25 1-47-10-67-32 30-10 56-6 78 12'/%3E%3Cpath d='M99 166c25-6 48-21 69-45-2 32-19 57-51 75'/%3E%3C/g%3E%3C/svg%3E");
}

.contact-leaf-right {
  right: -6px;
  bottom: 10px;
  width: 190px;
  height: 280px;
  opacity: 0.48;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 190 280'%3E%3Cg fill='none' stroke='%2389ab98' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' opacity='.85'%3E%3Cpath d='M156 250c-27-56-60-104-103-145'/%3E%3Cpath d='M130 175c31-17 48-41 51-75-39 8-65 28-80 59'/%3E%3Cpath d='M94 144c27-22 36-50 29-86-37 15-58 39-65 73'/%3E%3Cpath d='M65 112c16-24 17-51 1-81-25 24-34 50-26 79'/%3E%3Cpath d='M118 220c31 1 59-13 83-40-37-12-68-7-95 15'/%3E%3Cpath d='M80 184c-31-8-60-27-86-57 3 39 24 70 63 92'/%3E%3C/g%3E%3C/svg%3E");
  animation-delay: -5s;
}

.care-contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(46px, 7vw, 98px);
  align-items: center;
}

.care-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 30px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(223, 243, 238, 0.82);
  color: #2f7768;
  font-weight: 900;
  font-size: 1rem;
  box-shadow: 0 12px 28px rgba(20, 70, 74, 0.05);
}

.care-contact-copy h2 {
  max-width: 560px;
  margin-bottom: 18px;
  color: #15545a;
  font-family: "Fustat", Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 5.2vw, 4.55rem);
  line-height: 1.09;
  letter-spacing: -0.04em;
}

.care-contact-gold-line {
  display: block;
  width: 88px;
  height: 3px;
  margin: 26px 0 26px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(244, 215, 139, 0.95), rgba(244, 215, 139, 0.18));
}

.care-contact-intro {
  max-width: 560px;
  margin-bottom: 30px;
  color: #60707f;
  font-size: 1.08rem;
  line-height: 1.72;
}

.care-contact-cards {
  display: grid;
  gap: 12px;
  max-width: 470px;
}

.care-contact-card,
.care-response-note {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 78px;
  padding: 12px 18px;
  border-radius: 16px;
  border: 1px solid rgba(8, 70, 74, 0.09);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(20, 40, 70, 0.07);
  color: inherit;
  text-decoration: none;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
  backdrop-filter: blur(10px);
}

.care-contact-card:hover,
.care-contact-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(15, 143, 135, 0.2);
  box-shadow: 0 22px 48px rgba(20, 40, 70, 0.11);
  outline: none;
}

.care-contact-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #dff3ee;
  color: #2c8b63;
  transition: transform 0.32s ease;
}

.care-contact-card:hover .care-contact-icon,
.care-contact-card:focus-visible .care-contact-icon {
  transform: scale(1.08);
}

.care-contact-icon svg,
.care-response-note svg,
.form-hand-heart svg,
.input-wrap svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.care-contact-icon svg { width: 27px; height: 27px; }
.care-contact-icon.whatsapp { background: #e1f8d9; color: #299b45; }
.care-contact-icon.email { background: #e4f4ff; color: #2c8aaf; }
.care-contact-icon.location { background: #ffe9eb; color: #d45966; }

.care-contact-card small {
  display: block;
  color: #536a74;
  font-weight: 800;
  line-height: 1.1;
}

.care-contact-card strong {
  display: block;
  color: #174d59;
  font-size: clamp(1.05rem, 1.35vw, 1.38rem);
  line-height: 1.2;
}

.care-response-note {
  max-width: 470px;
  margin-top: 20px;
  background: rgba(255, 248, 239, 0.86);
  color: #6a7780;
}

.care-response-note span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff3d7;
  color: #d29218;
}

.care-response-note svg { width: 25px; height: 25px; }
.care-response-note p { margin: 0; color: #6a7780; }

.care-enquiry-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 28px;
  padding: clamp(30px, 4vw, 48px);
  border-radius: 28px;
  border: 1px solid rgba(8, 70, 74, 0.10);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 80px rgba(20, 40, 70, 0.10);
  backdrop-filter: blur(12px);
}

.form-hand-heart {
  position: absolute;
  top: -42px;
  right: -36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  border: 1px solid rgba(226, 121, 130, 0.22);
  background: radial-gradient(circle at 35% 24%, #fff8f8, #ffe5e8 74%);
  color: #3d6170;
  box-shadow: 0 22px 48px rgba(226, 121, 130, 0.15);
  animation: contactSway 13s ease-in-out infinite;
}

.form-hand-heart svg { width: 52px; height: 52px; }

.care-field,
.care-enquiry-form .full-field,
.care-contact-method,
.care-submit-button,
.care-form-note {
  grid-column: span 2;
}

.care-field:not(.full-field),
.care-field-narrow {
  grid-column: span 1;
}

.care-field {
  display: grid;
  gap: 9px;
  color: #274b58;
  font-size: 0.94rem;
  font-weight: 900;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrap svg {
  position: absolute;
  left: 16px;
  width: 22px;
  height: 22px;
  color: #438361;
  pointer-events: none;
  transition: color 0.25s ease, transform 0.25s ease;
}

.input-wrap input,
.input-wrap select,
.input-wrap textarea {
  width: 100%;
  min-height: 58px;
  padding: 0 18px 0 52px;
  border: 1px solid rgba(56, 84, 94, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  color: #15313b;
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.input-wrap textarea {
  min-height: 128px;
  padding-top: 18px;
  resize: vertical;
}

.input-wrap:focus-within svg {
  color: #1c8b5a;
  transform: scale(1.04);
}

.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
  outline: none;
  border-color: rgba(28, 139, 90, 0.56);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(28, 139, 90, 0.12);
}

.care-contact-method {
  margin: 0;
  padding: 0;
  border: 0;
}

.care-contact-method legend {
  margin-bottom: 10px;
  color: #274b58;
  font-size: 0.94rem;
  font-weight: 900;
}

.care-radio-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(56, 84, 94, 0.18);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,0.88);
}

.care-radio-row label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  cursor: pointer;
  color: #38515e;
  font-weight: 850;
  border-right: 1px solid rgba(56, 84, 94, 0.14);
}

.care-radio-row label:last-child { border-right: 0; }

.care-radio-row input {
  appearance: none;
  width: 22px;
  height: 22px;
  margin: 0;
  border: 1px solid rgba(56, 84, 94, 0.32);
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 5px #fff;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.care-radio-row input:checked {
  border-color: rgba(28, 139, 90, 0.72);
  background: #438361;
}

.care-submit-button {
  position: relative;
  isolation: isolate;
  min-height: 66px;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #2d8b5b 0%, #4f9260 100%);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(28, 139, 90, 0.24);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.care-submit-button::before {
  content: "";
  position: absolute;
  left: 22px;
  bottom: -28px;
  width: 105px;
  height: 82px;
  opacity: 0.28;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 90' fill='none'%3E%3Cpath d='M8 82c22-24 47-44 78-60' stroke='%23ffffff' stroke-width='4' stroke-linecap='round'/%3E%3Cpath d='M45 55c-18-8-28-22-31-43 23 5 39 17 48 35' fill='%23ffffff' fill-opacity='.7'/%3E%3Cpath d='M72 37c-8-16-7-32 4-49 17 17 23 34 16 52' fill='%23ffffff' fill-opacity='.55'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}

.care-submit-button:hover,
.care-submit-button:focus-visible {
  transform: translateY(-4px);
  filter: brightness(1.04);
  box-shadow: 0 26px 58px rgba(28, 139, 90, 0.32);
  outline: none;
}

.care-form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  color: #74818a;
  font-size: 1rem;
  text-align: center;
}

.care-form-note span {
  color: #f38f95;
  font-size: 1.35rem;
}

@keyframes contactFloat {
  0%, 100% { transform: translate3d(0,0,0); }
  50% { transform: translate3d(12px,-18px,0); }
}

@keyframes contactSway {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(-3deg) translateY(-8px); }
}

@keyframes contactLeafDrift {
  0%, 100% { transform: translate3d(0,0,0) rotate(0deg); }
  50% { transform: translate3d(0,-12px,0) rotate(2deg); }
}

@media (max-width: 1100px) {
  .care-contact-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .care-contact-copy,
  .care-contact-copy h2,
  .care-contact-intro,
  .care-contact-cards,
  .care-response-note {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .care-contact-section { padding: 82px 0; }
  .care-enquiry-form { grid-template-columns: 1fr; padding: 28px 20px; }
  .care-field,
  .care-field:not(.full-field),
  .care-field-narrow,
  .care-enquiry-form .full-field,
  .care-contact-method,
  .care-submit-button,
  .care-form-note { grid-column: span 1; }
  .care-radio-row { grid-template-columns: 1fr; }
  .care-radio-row label { justify-content: flex-start; padding-inline: 18px; border-right: 0; border-bottom: 1px solid rgba(56,84,94,0.12); }
  .care-radio-row label:last-child { border-bottom: 0; }
  .form-hand-heart { width: 78px; height: 78px; top: -34px; right: 10px; }
  .form-hand-heart svg { width: 40px; height: 40px; }
  .contact-heart-outline, .contact-dots-top { display: none; }
  .contact-leaf-left { opacity: 0.2; }
  .contact-leaf-right { opacity: 0.24; width: 130px; height: 205px; }
}

.care-form-note.is-success {
  color: #1f7c5a;
  font-weight: 850;
}

@media (max-width: 760px) {
  .corner-band {
    min-height: auto;
    background-position: 64% center;
  }

  .corner-band .section-copy,
  .corner-band .best-for {
    padding: 24px;
    border-radius: 22px;
    background: rgba(4, 47, 48, 0.66);
  }
}


/* First CTA background update */
.corner-band .corner-grid {
  grid-template-columns: minmax(300px, 560px);
  justify-content: start;
}

.corner-band .section-copy {
  max-width: 560px;
}

@media (max-width: 720px) {
  .corner-band {
    background-position: 60% center;
  }

  .corner-band .corner-grid {
    grid-template-columns: 1fr;
  }
}


/* Integrated CTA and legal page image updates */
.support-cta-banner-image,
.gallery-cta-banner-image {
  position: relative;
  overflow: hidden;
  align-items: stretch;
  isolation: isolate;
  padding: clamp(16px, 2.3vw, 24px);
  border-color: rgba(0, 63, 70, 0.14);
  background:
    radial-gradient(circle at 18% 16%, rgba(217, 182, 111, 0.20), transparent 30%),
    linear-gradient(135deg, rgba(255, 252, 245, 0.97), rgba(240, 250, 247, 0.98));
}

.support-cta-media,
.gallery-cta-media {
  position: relative;
  flex: 1 1 48%;
  min-height: clamp(250px, 30vw, 390px);
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(0, 63, 70, 0.14);
  background: rgba(255, 255, 255, 0.5);
}

.support-cta-media::after,
.gallery-cta-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,0.04), rgba(255,255,255,0));
}

.support-cta-media img,
.gallery-cta-media img,
.legal-hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.support-cta-content,
.gallery-cta-content {
  position: relative;
  z-index: 1;
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  min-width: 280px;
  padding: clamp(12px, 2vw, 28px);
}

.gallery-cta-banner-image {
  margin-top: clamp(34px, 5vw, 58px);
}

.gallery-cta-banner-image .gallery-cta-copy,
.support-cta-banner-image .support-cta-copy {
  align-items: flex-start;
}

.gallery-cta-banner-image .gallery-cta-button,
.support-cta-banner-image .support-cta-button,
.legal-content .button {
  background: linear-gradient(135deg, var(--teal-dark, #003f46), var(--teal, #0f8f87));
  color: #fff;
  box-shadow: 0 18px 34px rgba(0, 63, 70, 0.20);
}

.gallery-cta-banner-image .gallery-cta-button:hover,
.gallery-cta-banner-image .gallery-cta-button:focus-visible,
.support-cta-banner-image .support-cta-button:hover,
.support-cta-banner-image .support-cta-button:focus-visible,
.legal-content .button:hover,
.legal-content .button:focus-visible {
  background: linear-gradient(135deg, var(--teal, #0f8f87), var(--teal-dark, #003f46));
  box-shadow: 0 22px 42px rgba(0, 63, 70, 0.25);
}

.legal-section-with-image {
  padding-top: clamp(120px, 11vw, 168px);
  background:
    radial-gradient(circle at 15% 8%, rgba(217, 182, 111, 0.18), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(15, 143, 135, 0.13), transparent 30%),
    linear-gradient(180deg, #fffaf1 0%, #ffffff 44%);
}

.legal-hero-wrap {
  margin-bottom: clamp(32px, 5vw, 58px);
}

.legal-hero-image {
  max-height: min(62vw, 650px);
  border-radius: clamp(20px, 3vw, 34px);
  aspect-ratio: 16 / 9;
  object-position: center center;
  box-shadow: 0 28px 70px rgba(0, 63, 70, 0.15);
  border: 1px solid rgba(0, 63, 70, 0.10);
}

.legal-content {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(0, 63, 70, 0.10);
  box-shadow: 0 22px 60px rgba(0, 63, 70, 0.08);
}

.legal-content::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--teal-dark, #003f46), var(--gold, #d9b66f));
}

.legal-content h1,
.legal-content h2 {
  color: var(--teal-dark, #003f46);
}

.legal-content .eyebrow {
  color: var(--teal, #0f8f87);
}

@media (prefers-reduced-motion: no-preference) {
  .support-cta-media img,
  .gallery-cta-media img {
    animation: ctaImageFloat 9s ease-in-out infinite;
    transform-origin: center;
  }

  .legal-hero-image {
    animation: legalImageLift 900ms ease both;
  }
}

@keyframes ctaImageFloat {
  0%, 100% { transform: scale(1.01) translate3d(0,0,0); }
  50% { transform: scale(1.035) translate3d(0,-6px,0); }
}

@keyframes legalImageLift {
  from { opacity: 0; transform: translate3d(0, 18px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@media (max-width: 920px) {
  .support-cta-banner-image,
  .gallery-cta-banner-image {
    flex-direction: column;
  }

  .support-cta-media,
  .gallery-cta-media {
    flex-basis: auto;
    width: 100%;
    min-height: auto;
    aspect-ratio: 16 / 9;
  }

  .support-cta-content,
  .gallery-cta-content {
    width: 100%;
    align-items: stretch;
    padding: clamp(10px, 2vw, 18px) 4px 4px;
  }

  .support-cta-banner-image .support-cta-copy,
  .gallery-cta-banner-image .gallery-cta-copy {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .support-cta-media,
  .gallery-cta-media {
    aspect-ratio: 4 / 3;
  }

  .support-cta-media img,
  .gallery-cta-media img {
    object-position: center center;
  }

  .legal-section-with-image {
    padding-top: 110px;
  }

  .legal-hero-image {
    aspect-ratio: 4 / 3;
    max-height: 420px;
    object-fit: cover;
  }
}

/* Premium Our Promise section */
.premium-promise-section {
  --promise-bg: #fffdf8;
  --promise-navy: #06183d;
  --promise-teal: #06464a;
  --promise-muted: #5f687a;
  --promise-mint: #dff3ee;
  --promise-blue: #e8f3ff;
  --promise-pink: #ffe7eb;
  --promise-gold-soft: #fff1c9;
  --promise-gold: #d9a93e;
  --promise-heart: #ee8fa4;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 16%, rgba(223, 243, 238, 0.9), transparent 24%),
    radial-gradient(circle at 90% 9%, rgba(255, 231, 235, 0.72), transparent 22%),
    linear-gradient(180deg, var(--promise-bg) 0%, #ffffff 100%);
  padding-block: clamp(70px, 7vw, 120px);
}

.premium-promise-section::before,
.premium-promise-section::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.7;
}

.premium-promise-section::before {
  width: 340px;
  height: 340px;
  left: -140px;
  bottom: 10%;
  background: rgba(232, 243, 255, 0.65);
  filter: blur(25px);
  animation: promiseFloat 11s ease-in-out infinite;
}

.premium-promise-section::after {
  width: 270px;
  height: 270px;
  right: -110px;
  bottom: 6%;
  background: rgba(255, 241, 201, 0.65);
  filter: blur(22px);
  animation: promiseFloat 13s ease-in-out infinite reverse;
}

.promise-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(35px);
  opacity: 0.55;
  pointer-events: none;
}

.promise-bg-glow-pink {
  width: 260px;
  height: 260px;
  top: 9%;
  right: 34%;
  background: var(--promise-pink);
}

.promise-bg-glow-mint {
  width: 330px;
  height: 330px;
  left: 3%;
  bottom: 9%;
  background: var(--promise-mint);
}

.promise-floating-heart {
  position: absolute;
  z-index: 0;
  font-size: clamp(48px, 5vw, 86px);
  color: rgba(116, 164, 136, 0.18);
  line-height: 1;
  pointer-events: none;
  animation: promiseHeartFloat 9s ease-in-out infinite;
}

.promise-floating-heart-one {
  right: 10%;
  top: 12%;
}

.promise-floating-heart-two {
  left: 6%;
  top: 48%;
  animation-delay: -3s;
  color: rgba(238, 143, 164, 0.16);
}

.premium-promise-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(26px, 3vw, 46px);
  max-width: 1500px;
}

.promise-feature-card,
.promise-value-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(8, 70, 74, 0.06);
  box-shadow: 0 22px 60px rgba(20, 40, 70, 0.08);
  isolation: isolate;
}

.promise-feature-card {
  min-height: 100%;
  padding: clamp(38px, 4.2vw, 66px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, 0.75), transparent 20%),
    linear-gradient(145deg, rgba(244, 253, 250, 0.98), rgba(232, 243, 255, 0.82));
}

.promise-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  color: var(--promise-heart);
  font-family: Inter, Poppins, Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.promise-label::after {
  content: "";
  display: block;
  width: 102px;
  height: 2px;
  background: var(--promise-heart);
  opacity: 0.62;
}

.promise-label span {
  font-size: 2rem;
  line-height: 0;
}

.promise-feature-card h2,
.promise-value-card h3 {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  color: var(--promise-navy);
  letter-spacing: -0.035em;
}

.promise-feature-card h2 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(2.6rem, 4.4vw, 5rem);
  line-height: 1.08;
}

.promise-highlight-green {
  color: #78a88a;
}

.promise-highlight-gold {
  color: var(--promise-gold);
}

.promise-divider,
.promise-card-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0 24px;
  color: var(--promise-heart);
}

.promise-divider span,
.promise-card-divider span {
  display: block;
  height: 2px;
  width: 74px;
  background: rgba(108, 158, 130, 0.58);
}

.promise-divider i,
.promise-card-divider i {
  font-style: normal;
  font-size: 1.05rem;
  animation: promisePulse 2.8s ease-in-out infinite;
}

.promise-feature-text {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 0;
  color: var(--promise-navy);
  font-size: clamp(1rem, 1.12vw, 1.23rem);
  line-height: 1.72;
}

.promise-deco-heart-outline {
  position: absolute;
  right: 66px;
  top: 56px;
  z-index: 0;
  color: rgba(111, 161, 134, 0.24);
  font-size: 82px;
  line-height: 1;
  transform: rotate(-18deg);
  animation: promiseHeartFloat 8s ease-in-out infinite;
}

.promise-deco-heart-outline-small {
  right: 32px;
  top: 83px;
  font-size: 48px;
  animation-delay: -2.4s;
}

.promise-wave {
  position: absolute;
  z-index: -1;
  left: -6%;
  right: -6%;
  bottom: -1px;
  height: 88px;
  background: var(--promise-blue);
  opacity: 0.86;
  clip-path: ellipse(68% 44% at 52% 100%);
  transition: transform 0.45s ease;
  animation: promiseWaveDrift 8s ease-in-out infinite;
}

.promise-feature-wave {
  height: 118px;
  background: linear-gradient(90deg, rgba(223, 243, 238, 0.9), rgba(232, 243, 255, 0.9));
}

.promise-dots {
  position: absolute;
  width: 112px;
  height: 92px;
  opacity: 0.78;
  background-image: radial-gradient(currentColor 2.6px, transparent 2.6px);
  background-size: 18px 18px;
  pointer-events: none;
  animation: promiseDotsFloat 10s ease-in-out infinite;
}

.promise-feature-dots {
  right: 48px;
  bottom: 42px;
  color: var(--promise-heart);
}

.promise-leaf-cluster {
  position: absolute;
  left: -28px;
  bottom: 0;
  z-index: 0;
  width: 260px;
  height: 180px;
  opacity: 0.48;
  pointer-events: none;
  animation: promiseLeafSway 7s ease-in-out infinite;
}

.promise-leaf-cluster::before {
  content: "";
  position: absolute;
  left: 12px;
  bottom: 28px;
  width: 210px;
  height: 2px;
  background: rgba(88, 133, 109, 0.72);
  transform: rotate(16deg);
  transform-origin: left center;
}

.promise-leaf-cluster span {
  position: absolute;
  width: 34px;
  height: 72px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(135deg, rgba(136, 174, 151, 0.58), rgba(223, 243, 238, 0.92));
  border: 1px solid rgba(71, 119, 91, 0.14);
}

.promise-leaf-cluster span:nth-child(1) { left: 26px; bottom: 68px; transform: rotate(-38deg); }
.promise-leaf-cluster span:nth-child(2) { left: 78px; bottom: 55px; transform: rotate(42deg); }
.promise-leaf-cluster span:nth-child(3) { left: 122px; bottom: 37px; transform: rotate(-30deg); }
.promise-leaf-cluster span:nth-child(4) { left: 166px; bottom: 21px; transform: rotate(38deg); }
.promise-leaf-cluster span:nth-child(5) { left: 56px; bottom: 14px; transform: rotate(-58deg); }

.promise-values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 2.1vw, 34px);
}

.promise-value-card {
  display: block;
  min-height: 342px;
  padding: clamp(32px, 3vw, 48px) clamp(28px, 2.7vw, 42px);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--promise-muted);
  text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.promise-value-card:hover,
.promise-value-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(20, 40, 70, 0.13);
  border-color: rgba(8, 70, 74, 0.14);
}

.promise-value-card:focus-visible {
  outline: 3px solid rgba(238, 143, 164, 0.34);
  outline-offset: 5px;
}

.promise-value-card:hover .promise-icon,
.promise-value-card:focus-visible .promise-icon {
  transform: scale(1.06) rotate(-2deg);
}

.promise-value-card:hover .promise-number,
.promise-value-card:focus-visible .promise-number {
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.72), 0 14px 30px rgba(20, 40, 70, 0.08);
}

.promise-value-card:hover .promise-card-wave,
.promise-value-card:focus-visible .promise-card-wave {
  transform: translateX(16px) translateY(-2px);
}

.promise-icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  transition: transform 0.35s ease;
}

.promise-icon svg {
  width: 56px;
  height: 56px;
  fill: none;
  stroke: var(--promise-teal);
  stroke-width: 3.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.promise-number {
  position: absolute;
  top: 34px;
  right: 34px;
  z-index: 2;
  padding: 10px 15px;
  border-radius: 10px;
  font-family: Inter, Poppins, Arial, sans-serif;
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: 0.05em;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.promise-value-card h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(1.65rem, 2vw, 2.1rem);
  line-height: 1.14;
}

.promise-card-divider {
  position: relative;
  z-index: 2;
  margin: 20px 0 20px;
  gap: 14px;
}

.promise-card-divider span {
  width: 70px;
  height: 1px;
  opacity: 0.8;
}

.promise-value-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 330px;
  color: var(--promise-muted);
  font-size: clamp(1rem, 1.1vw, 1.18rem);
  line-height: 1.55;
}

.promise-card-dots {
  right: 26px;
  bottom: 22px;
  width: 82px;
  height: 72px;
}

.promise-card-wave {
  height: 62px;
}

.promise-card-pink .promise-icon,
.promise-card-pink .promise-number,
.promise-card-pink .promise-card-wave { background: var(--promise-pink); }
.promise-card-pink .promise-number,
.promise-card-pink .promise-card-divider i,
.promise-card-pink .promise-card-dots { color: var(--promise-heart); }
.promise-card-pink .promise-card-divider span { background: rgba(238, 143, 164, 0.48); }

.promise-card-blue .promise-icon,
.promise-card-blue .promise-number,
.promise-card-blue .promise-card-wave { background: var(--promise-blue); }
.promise-card-blue .promise-number,
.promise-card-blue .promise-card-divider i,
.promise-card-blue .promise-card-dots { color: #66b5c9; }
.promise-card-blue .promise-card-divider span { background: rgba(102, 181, 201, 0.44); }

.promise-card-gold .promise-icon,
.promise-card-gold .promise-number,
.promise-card-gold .promise-card-wave { background: var(--promise-gold-soft); }
.promise-card-gold .promise-number,
.promise-card-gold .promise-card-divider i,
.promise-card-gold .promise-card-dots { color: var(--promise-gold); }
.promise-card-gold .promise-card-divider span { background: rgba(217, 169, 62, 0.44); }

.promise-card-green .promise-icon,
.promise-card-green .promise-number,
.promise-card-green .promise-card-wave { background: var(--promise-mint); }
.promise-card-green .promise-number,
.promise-card-green .promise-card-divider i,
.promise-card-green .promise-card-dots { color: #72a883; }
.promise-card-green .promise-card-divider span { background: rgba(114, 168, 131, 0.44); }

.promise-card-blue .promise-icon,
.promise-card-gold .promise-icon,
.promise-card-green .promise-icon,
.promise-card-pink .promise-icon {
  background-image: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.45), transparent 36%);
}

@keyframes promiseFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(14px, -18px, 0); }
}

@keyframes promiseHeartFloat {
  0%, 100% { transform: translateY(0) rotate(-12deg); }
  50% { transform: translateY(-12px) rotate(-5deg); }
}

@keyframes promisePulse {
  0%, 100% { transform: scale(1); opacity: 0.72; }
  50% { transform: scale(1.22); opacity: 1; }
}

@keyframes promiseWaveDrift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(22px); }
}

@keyframes promiseDotsFloat {
  0%, 100% { transform: translateY(0); opacity: 0.56; }
  50% { transform: translateY(-10px); opacity: 0.88; }
}

@keyframes promiseLeafSway {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(2deg) translateY(-8px); }
}

@media (max-width: 1180px) {
  .premium-promise-grid {
    grid-template-columns: 1fr;
  }

  .promise-feature-card {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .premium-promise-section {
    padding-block: 56px;
  }

  .premium-promise-grid {
    gap: 20px;
  }

  .promise-values-grid {
    grid-template-columns: 1fr;
  }

  .promise-feature-card,
  .promise-value-card {
    border-radius: 22px;
  }

  .promise-feature-card {
    padding: 34px 24px 120px;
  }

  .promise-feature-card h2 {
    font-size: clamp(2.3rem, 12vw, 3.45rem);
  }

  .promise-label {
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.76rem;
    letter-spacing: 0.18em;
  }

  .promise-label::after {
    width: 82px;
  }

  .promise-divider span,
  .promise-card-divider span {
    width: 52px;
  }

  .promise-value-card {
    min-height: 310px;
    padding: 30px 24px 88px;
  }

  .promise-icon {
    width: 82px;
    height: 82px;
    margin-bottom: 22px;
  }

  .promise-icon svg {
    width: 48px;
    height: 48px;
  }

  .promise-number {
    top: 24px;
    right: 24px;
  }

  .promise-deco-heart-outline {
    right: 30px;
    top: 40px;
    font-size: 54px;
  }

  .promise-deco-heart-outline-small {
    right: 14px;
    top: 64px;
    font-size: 34px;
  }

  .promise-leaf-cluster {
    transform: scale(0.82);
    transform-origin: left bottom;
  }
}

@media (prefers-reduced-motion: reduce) {
  .premium-promise-section::before,
  .premium-promise-section::after,
  .promise-floating-heart,
  .promise-deco-heart-outline,
  .promise-wave,
  .promise-dots,
  .promise-leaf-cluster,
  .promise-divider i,
  .promise-card-divider i {
    animation: none !important;
  }
}

/* Refined why families choose us section */
.support-values-section {
  padding: clamp(86px, 8vw, 126px) 0 clamp(78px, 7vw, 106px);
  background:
    radial-gradient(circle at 12% 46%, rgba(223, 243, 234, 0.78), transparent 19%),
    radial-gradient(circle at 92% 2%, rgba(253, 231, 234, 0.82), transparent 22%),
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.9), transparent 30%),
    linear-gradient(180deg, #fffcf8 0%, #fffdf9 100%);
}

.support-values-section .container {
  position: relative;
  z-index: 2;
}

.support-values-bg-green {
  top: 58px;
  left: -130px;
  width: 430px;
  height: 460px;
  background: radial-gradient(circle at 45% 45%, rgba(210, 235, 224, 0.82), rgba(229, 244, 238, 0.48) 58%, transparent 76%);
}

.support-values-bg-pink {
  top: -120px;
  right: -120px;
  width: 520px;
  height: 300px;
  border-radius: 44% 0 0 62%;
  background: radial-gradient(circle at 60% 48%, rgba(253, 231, 234, 0.9), rgba(255, 242, 239, 0.52) 60%, transparent 78%);
  animation: supportValuesFloat 20s ease-in-out infinite reverse;
}

.support-values-glow {
  top: 86px;
  left: 28%;
  right: 28%;
  bottom: auto;
  height: 150px;
  background: radial-gradient(circle, rgba(255,255,255,0.96), rgba(255,255,255,0.14) 70%, transparent 82%);
}

.support-values-arc {
  border-color: rgba(224, 190, 98, 0.36);
}

.support-values-arc-one {
  left: -70px;
  top: 235px;
  width: 370px;
  height: 230px;
  transform: rotate(-12deg);
}

.support-values-arc-two {
  right: -54px;
  left: auto;
  top: -58px;
  bottom: auto;
  width: 320px;
  height: 440px;
  transform: rotate(-13deg);
  opacity: 0.55;
}

.support-values-dots-left,
.support-values-dots-right {
  width: 110px;
  height: 86px;
  opacity: 0.58;
  background-image: radial-gradient(#e0be62 2px, transparent 2px);
  background-size: 20px 20px;
  animation: supportValuesFloat 15s ease-in-out infinite;
}

.support-values-dots-left {
  top: 205px;
  left: 12%;
}

.support-values-dots-right {
  top: 162px;
  right: 10.5%;
  animation-delay: -4s;
}

.support-values-heart {
  display: none;
}

.support-values-leaves {
  width: 250px;
  height: 230px;
  opacity: 0.46;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 250 230' fill='none'%3E%3Cpath d='M10 212C50 128 112 63 226 12' stroke='%2383b690' stroke-width='3' stroke-linecap='round' opacity='.5'/%3E%3Cpath d='M47 155C19 140 10 105 21 66c39 14 57 42 55 79' fill='%23a9d9b3' fill-opacity='.42'/%3E%3Cpath d='M92 121c-22-18-26-48-10-82 34 15 47 40 40 70' fill='%2398cfaa' fill-opacity='.36'/%3E%3Cpath d='M137 86c-14-24-10-52 15-78 25 25 30 51 12 76' fill='%2388c39e' fill-opacity='.32'/%3E%3Cpath d='M72 197c26-30 60-39 105-28-20 36-54 53-101 45' fill='%238bc49f' fill-opacity='.34'/%3E%3Cpath d='M147 62c24-24 57-31 99-20-19 32-49 47-91 37' fill='%2392cea4' fill-opacity='.31'/%3E%3C/svg%3E");
}

.support-values-leaves-left {
  top: 16px;
  left: -16px;
  bottom: auto;
}

.support-values-leaves-right {
  right: -28px;
  left: auto;
  top: 390px;
  transform: rotate(178deg);
  animation-delay: -3s;
}

.support-values-header {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto clamp(34px, 4vw, 52px);
  text-align: center;
}

.support-values-label {
  margin: 0 0 18px;
  color: #d9878e;
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.support-values-divider,
.support-value-divider {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: #eba0a5;
}

.support-values-divider span,
.support-value-divider span {
  display: block;
  width: 42px;
  height: 1px;
  background: currentColor;
  opacity: 0.52;
}

.support-values-divider i,
.support-value-divider i {
  font-style: normal;
  font-size: 1rem;
  line-height: 1;
}

.support-values-header h2 {
  margin: 18px 0 8px;
  color: #081b43;
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.2rem, 5.75vw, 6.25rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.support-values-flourish {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 2px 0 14px;
  color: rgba(235, 160, 165, 0.66);
  font-size: 1.45rem;
}

.support-values-flourish i {
  color: rgba(235, 160, 165, 0.7);
  font-size: 0.8rem;
  font-style: normal;
}

.support-values-header p:last-child {
  max-width: 900px;
  margin: 0 auto;
  color: #5d6677;
  font-size: clamp(1.05rem, 1.35vw, 1.34rem);
  line-height: 1.55;
}

.support-values-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 2vw, 32px);
}

.support-value-card {
  align-items: center;
  min-height: 430px;
  padding: 40px 34px 38px;
  border-radius: 24px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(8, 70, 74, 0.05);
  box-shadow: 0 18px 50px rgba(20, 40, 70, 0.08);
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.support-value-card::before {
  height: 8px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--card-accent), #ffffff 32%), color-mix(in srgb, var(--card-accent), #ffffff 5%), color-mix(in srgb, var(--card-accent), #ffffff 32%));
  opacity: 0.62;
}

.support-value-card::after {
  inset: auto -36px -58px auto;
  width: 190px;
  height: 125px;
  background: radial-gradient(circle, var(--card-soft), transparent 70%);
  opacity: 0.38;
}

.support-value-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  right: auto;
  min-width: 52px;
  min-height: 52px;
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 50%;
  background: var(--card-soft);
  color: var(--card-accent);
  box-shadow: 0 10px 28px color-mix(in srgb, var(--card-accent), transparent 84%);
  font-family: "Inter", "Poppins", Arial, sans-serif;
  font-size: 1.18rem;
  letter-spacing: 0;
}

.support-value-badge::after {
  display: none;
}

.support-value-icon {
  width: 114px;
  height: 114px;
  margin: 0 auto 34px;
  color: var(--card-accent);
  background: radial-gradient(circle at 35% 25%, #ffffff 0%, var(--card-soft) 58%, color-mix(in srgb, var(--card-soft), var(--card-accent) 14%) 100%);
}

.support-value-icon svg {
  width: 62px;
  height: 62px;
  stroke-width: 2;
}

.support-value-divider {
  width: min(100%, 200px);
  margin: 0 auto 21px;
  color: var(--card-accent);
}

.support-value-divider span {
  flex: 1 1 70px;
  max-width: 82px;
}

.support-value-card h3 {
  margin: 0 0 18px;
  font-size: clamp(1.55rem, 1.75vw, 2.05rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.support-value-card p {
  max-width: 22ch;
  margin: 0 auto;
  color: #5d6677;
  font-size: clamp(1rem, 1.05vw, 1.16rem);
  line-height: 1.58;
}

.support-value-green { --card-accent: #5db983; --card-soft: #dff3ea; }
.support-value-blue { --card-accent: #5aa7ee; --card-soft: #e6f1ff; }
.support-value-gold { --card-accent: #d9aa2f; --card-soft: #faefc9; }
.support-value-pink { --card-accent: #e88591; --card-soft: #fde7ea; }

.support-value-card:hover,
.support-value-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: 0 28px 75px rgba(20, 40, 70, 0.13), 0 0 0 2px color-mix(in srgb, var(--card-accent), transparent 82%);
}

.support-value-card:hover .support-value-icon,
.support-value-card:focus-visible .support-value-icon {
  transform: scale(1.08) translateY(-4px);
}

.support-value-card:hover .support-value-divider i,
.support-value-card:focus-visible .support-value-divider i {
  animation: promiseHeartPulse 0.85s ease-in-out infinite;
}

@media (max-width: 1180px) {
  .support-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-values-leaves-right {
    opacity: 0.25;
  }
}

@media (max-width: 640px) {
  .support-values-section {
    padding: 70px 0;
  }

  .support-values-header h2 {
    font-size: clamp(2.7rem, 15vw, 4rem);
  }

  .support-values-header h2 br {
    display: none;
  }

  .support-values-grid {
    grid-template-columns: 1fr;
  }

  .support-value-card {
    min-height: 0;
    padding: 36px 24px 34px;
  }

  .support-value-icon {
    width: 94px;
    height: 94px;
    margin-bottom: 28px;
  }

  .support-value-icon svg {
    width: 50px;
    height: 50px;
  }

  .support-values-dots-left,
  .support-values-dots-right,
  .support-values-leaves-right,
  .support-values-arc-two {
    opacity: 0.16;
  }
}


/* Premium Service Area Section */
.service-area-premium-section {
  --service-overlay: rgba(255, 250, 244, 0.82);
  --service-overlay-strong: rgba(255, 250, 244, 0.9);
  --service-heading: #31495a;
  --service-text: #355064;
  --service-button: #235d72;
  --service-button-hover: #174d60;
  --service-soft-pink: #f3b6ad;
  --service-soft-cream: #fff8ef;
  --service-soft-green: #dfeee6;
  --service-leaf-green: #9eb1a3;
  position: relative;
  isolation: isolate;
  min-height: 620px;
  padding: 110px 0;
  overflow: hidden;
  background:
    linear-gradient(var(--service-overlay), var(--service-overlay-strong)),
    radial-gradient(circle at 50% 26%, rgba(255,255,255,0.32), transparent 34%),
    url("https://images.unsplash.com/photo-1484318571209-661cf29a69d8?auto=format&fit=crop&w=1800&q=80") center center / cover;
}

.service-area-premium-section::before {
  content: "";
  position: absolute;
  inset: -2%;
  background:
    radial-gradient(circle at 10% 50%, rgba(214, 236, 226, 0.44), transparent 20%),
    radial-gradient(circle at 90% 20%, rgba(247, 219, 215, 0.36), transparent 18%),
    radial-gradient(circle at 60% 90%, rgba(255,255,255,0.24), transparent 26%);
  animation: serviceAreaFloat 18s ease-in-out infinite alternate;
  z-index: -3;
}

.service-area-premium-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.12));
  pointer-events: none;
  z-index: -2;
}

.service-area-premium-overlay,
.service-area-premium-glow,
.service-area-premium-curve,
.service-area-premium-blob,
.service-area-premium-dots,
.service-area-premium-leaf {
  position: absolute;
  pointer-events: none;
}

.service-area-premium-overlay {
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.14));
  z-index: -1;
}

.service-area-premium-glow {
  top: 10%;
  left: 50%;
  width: min(75vw, 980px);
  height: 280px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255,255,255,0.55), rgba(255,255,255,0.1) 70%, transparent 100%);
  filter: blur(8px);
  opacity: 0.7;
}

.service-area-premium-curve {
  border: 2px solid rgba(243, 182, 173, 0.55);
  border-radius: 50%;
  opacity: 0.92;
}

.service-area-premium-curve-left {
  top: -150px;
  left: -80px;
  width: 340px;
  height: 260px;
  border-right-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(-10deg);
}

.service-area-premium-curve-right {
  right: -120px;
  bottom: -180px;
  width: 420px;
  height: 360px;
  border-left-color: rgba(255, 230, 228, 0.3);
  border-top-color: rgba(255, 230, 228, 0.3);
  border-right-color: rgba(243, 182, 173, 0.65);
  border-bottom-color: rgba(243, 182, 173, 0.65);
  transform: rotate(-8deg);
}

.service-area-premium-blob {
  right: -40px;
  bottom: -40px;
  width: 360px;
  height: 240px;
  background: linear-gradient(135deg, rgba(253, 231, 234, 0.78), rgba(255, 242, 237, 0.88));
  border-radius: 55% 0 0 0;
  filter: blur(0.2px);
}

.service-area-premium-dots {
  top: 180px;
  right: 12%;
  width: 88px;
  height: 88px;
  opacity: 0.55;
  background-image: radial-gradient(circle, rgba(224, 190, 98, 0.72) 0 2px, transparent 2.1px);
  background-size: 18px 18px;
  animation: serviceDotsFloat 11s ease-in-out infinite alternate;
}

.service-area-premium-leaf svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(139, 167, 150, 0.55);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-area-premium-leaf-top {
  top: 0;
  left: 0;
  width: clamp(160px, 17vw, 300px);
  height: clamp(110px, 13vw, 210px);
  opacity: 0.8;
  transform-origin: top left;
  animation: serviceLeafSway 12s ease-in-out infinite alternate;
}

.service-area-premium-leaf-bottom {
  right: 34px;
  bottom: 34px;
  width: clamp(90px, 10vw, 150px);
  height: clamp(90px, 10vw, 150px);
  opacity: 0.85;
  animation: serviceLeafSwayReverse 13s ease-in-out infinite alternate;
}

.service-area-premium-container {
  width: min(100% - 48px, 1500px);
  position: relative;
  z-index: 1;
}

.service-area-premium-content {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.service-area-premium-label {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 26px;
  color: #607b90;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 500;
}

.service-area-premium-label-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(243, 182, 173, 0.22);
  color: var(--service-soft-pink);
  box-shadow: 0 10px 24px rgba(243, 182, 173, 0.18);
}

.service-area-premium-label-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-area-premium-heading {
  margin: 0 auto 24px;
  max-width: 1040px;
  color: var(--service-heading);
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 7vw, 6.05rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.service-area-premium-divider {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 0 28px;
  color: var(--service-soft-pink);
}

.service-area-premium-divider span {
  width: 56px;
  height: 1.5px;
  border-radius: 999px;
  background: rgba(243, 182, 173, 0.72);
}

.service-area-premium-divider i {
  font-style: normal;
  font-size: 1.1rem;
  line-height: 1;
}

.service-area-premium-text {
  max-width: 1020px;
  margin: 0 auto 32px;
  color: var(--service-text);
  font-size: clamp(1.06rem, 1.95vw, 1.15rem);
  line-height: 1.7;
}

.service-area-premium-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 78px;
  padding: 17px 34px 17px 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2a6b82, var(--service-button));
  color: var(--white);
  text-decoration: none;
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  font-weight: 700;
  box-shadow: 0 20px 45px rgba(4, 80, 93, 0.18);
  border: 1px solid rgba(255,255,255,0.4);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
}

.service-area-premium-button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.96);
  color: var(--service-button);
  flex: 0 0 auto;
  box-shadow: inset 0 0 0 1px rgba(27, 87, 104, 0.08), 0 10px 22px rgba(255,255,255,0.2);
  transition: transform 0.35s ease;
}

.service-area-premium-button-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.95;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-area-premium-button:hover,
.service-area-premium-button:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(4, 80, 93, 0.24);
  background: linear-gradient(180deg, #2c738b, var(--service-button-hover));
}

.service-area-premium-button:hover .service-area-premium-button-icon,
.service-area-premium-button:focus-visible .service-area-premium-button-icon {
  transform: scale(1.05);
}

.service-area-premium-button:focus-visible {
  outline: 3px solid rgba(243, 182, 173, 0.45);
  outline-offset: 4px;
}

@keyframes serviceAreaFloat {
  from { transform: scale(1) translate3d(0, 0, 0); }
  to { transform: scale(1.04) translate3d(0, 8px, 0); }
}

@keyframes serviceLeafSway {
  from { transform: translate3d(0, 0, 0) rotate(0deg); }
  to { transform: translate3d(4px, 8px, 0) rotate(2deg); }
}

@keyframes serviceLeafSwayReverse {
  from { transform: translate3d(0, 0, 0) rotate(0deg); }
  to { transform: translate3d(-6px, -8px, 0) rotate(-2deg); }
}

@keyframes serviceDotsFloat {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, 6px, 0); }
}

@media (max-width: 991px) {
  .service-area-premium-section {
    min-height: 560px;
    padding: 96px 0;
  }

  .service-area-premium-curve-left {
    width: 280px;
    height: 220px;
    top: -138px;
    left: -92px;
  }

  .service-area-premium-curve-right {
    width: 330px;
    height: 280px;
    right: -90px;
    bottom: -148px;
  }

  .service-area-premium-blob {
    width: 300px;
    height: 210px;
  }

  .service-area-premium-dots {
    right: 9%;
    top: 205px;
  }
}

@media (max-width: 768px) {
  .service-area-premium-section {
    min-height: auto;
    padding: 86px 0;
    background-position: center;
  }

  .service-area-premium-container {
    width: min(100% - 32px, 1500px);
  }

  .service-area-premium-heading {
    font-size: clamp(2.8rem, 13vw, 4.35rem);
    line-height: 1;
  }

  .service-area-premium-text {
    font-size: 1.02rem;
  }

  .service-area-premium-button {
    width: min(100%, 360px);
    padding-inline: 18px 24px;
  }

  .service-area-premium-dots {
    width: 72px;
    height: 72px;
    top: auto;
    right: 12%;
    bottom: 140px;
  }

  .service-area-premium-curve-right,
  .service-area-premium-leaf-bottom {
    opacity: 0.75;
  }
}

@media (max-width: 560px) {
  .service-area-premium-label {
    gap: 12px;
    margin-bottom: 20px;
    font-size: 1rem;
  }

  .service-area-premium-label-icon {
    width: 40px;
    height: 40px;
  }

  .service-area-premium-divider span {
    width: 42px;
  }

  .service-area-premium-text {
    margin-bottom: 26px;
    line-height: 1.6;
  }

  .service-area-premium-button {
    min-height: 70px;
    font-size: 0.98rem;
  }

  .service-area-premium-button-icon {
    width: 46px;
    height: 46px;
  }

  .service-area-premium-dots,
  .service-area-premium-blob,
  .service-area-premium-curve-right {
    opacity: 0.55;
  }
}


/* Premium Care Footer */
.premium-care-footer {
  --footer-bg: #003f46;
  --footer-bg-dark: #002f35;
  --footer-card: rgba(0, 58, 64, 0.65);
  --gold: #d9b66f;
  --mint: #8dcfc1;
  --soft-white: #eaf4f1;
  --muted-footer: #b8d1cd;
  position: relative;
  overflow: hidden;
  padding: 86px 0 0;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(6, 99, 108, 0.26), transparent 24%),
    radial-gradient(circle at 78% 16%, rgba(7, 91, 100, 0.2), transparent 21%),
    radial-gradient(circle at 88% 88%, rgba(217, 182, 111, 0.12), transparent 22%),
    linear-gradient(180deg, var(--footer-bg) 0%, var(--footer-bg-dark) 100%);
}

.premium-care-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.015), rgba(255,255,255,0));
  pointer-events: none;
}

.premium-footer-glow,
.premium-footer-curve,
.premium-footer-leaves {
  position: absolute;
  pointer-events: none;
}

.premium-footer-glow {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.32;
}

.premium-footer-glow-left {
  left: -120px;
  bottom: -30px;
  background: rgba(29, 125, 123, 0.45);
  animation: footerGlowFloat 14s ease-in-out infinite alternate;
}

.premium-footer-glow-right {
  right: -120px;
  bottom: -30px;
  background: rgba(217, 182, 111, 0.2);
  animation: footerGlowFloatReverse 15s ease-in-out infinite alternate;
}

.premium-footer-curve {
  border: 1.5px solid rgba(217, 182, 111, 0.46);
  border-radius: 50%;
  opacity: 0.7;
}

.premium-footer-curve-left {
  left: -120px;
  bottom: 118px;
  width: 430px;
  height: 180px;
  border-top-color: rgba(217,182,111,0.7);
  border-right-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(8deg);
}

.premium-footer-curve-right {
  right: -105px;
  bottom: 110px;
  width: 360px;
  height: 230px;
  border-left-color: transparent;
  border-top-color: transparent;
  transform: rotate(-12deg);
}

.premium-footer-leaves svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(164, 198, 189, 0.32);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.premium-footer-leaves-left {
  left: 12px;
  bottom: 62px;
  width: 220px;
  height: 220px;
  animation: footerLeafDrift 14s ease-in-out infinite alternate;
}

.premium-footer-leaves-right {
  right: -6px;
  top: 92px;
  width: 140px;
  height: 210px;
  animation: footerLeafDriftReverse 16s ease-in-out infinite alternate;
}

.premium-footer-main-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr repeat(3, minmax(0, 1fr));
  gap: 34px;
  align-items: start;
}

.premium-footer-brand-block {
  padding: 28px 8px 24px 0;
}

.premium-footer-brand-link {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  color: var(--white);
  text-decoration: none;
}

.premium-footer-brand-icon {
  display: inline-flex;
  width: 122px;
  height: 122px;
  align-items: center;
  justify-content: center;
}

.premium-footer-brand-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.premium-footer-logo-image {
  overflow: hidden;
  padding: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(217, 182, 111, 0.56);
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.22));
}

.premium-footer-logo-image img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
}

.premium-footer-brand-name {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 3.2vw, 3.45rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.premium-footer-title-divider,
.premium-footer-card-divider {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.premium-footer-title-divider {
  margin: 18px 0 20px;
  color: var(--gold);
}

.premium-footer-title-divider span {
  width: 108px;
  height: 1.5px;
  background: rgba(217, 182, 111, 0.72);
}

.premium-footer-title-divider i,
.premium-footer-card-divider i {
  font-style: normal;
  line-height: 1;
}

.premium-footer-brand-block p {
  max-width: 295px;
  margin: 0;
  color: rgba(234, 244, 241, 0.9);
  font-size: 1rem;
  line-height: 1.72;
}

.premium-footer-card {
  position: relative;
  min-height: 100%;
  padding: 42px 38px 34px;
  border-radius: 28px;
  background: var(--footer-card);
  border: 1px solid rgba(217, 182, 111, 0.28);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.premium-footer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.24);
  border-color: rgba(217, 182, 111, 0.44);
}

.premium-footer-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(33, 107, 115, 0.54), rgba(2, 54, 60, 0.38));
  box-shadow: inset 0 0 0 1px rgba(141, 207, 193, 0.08), 0 16px 30px rgba(0, 0, 0, 0.14);
}

.premium-footer-card-icon svg,
.premium-footer-contact-icon svg,
.premium-footer-support-icon svg,
.premium-footer-bottom-mark svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.premium-footer-card h2 {
  margin: 18px 0 14px;
  color: var(--gold);
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.65rem, 2vw, 2.1rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.premium-footer-card-divider {
  width: 100%;
  margin: 0 0 24px;
  color: var(--gold);
}

.premium-footer-card-divider span {
  flex: 1 1 auto;
  height: 1px;
  background: rgba(217, 182, 111, 0.46);
}

.premium-footer-link-list,
.premium-footer-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.premium-footer-link-list li {
  margin: 0;
  border-bottom: 1px dotted rgba(141, 207, 193, 0.18);
}

.premium-footer-link-list li:last-child {
  border-bottom: 0;
}

.premium-footer-link-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  color: var(--soft-white);
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.footer-leaf-icon {
  color: rgba(141, 207, 193, 0.72);
  font-size: 0.95rem;
  transform: translateX(0);
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.premium-footer-link-list a:hover,
.premium-footer-link-list a:focus-visible {
  color: var(--gold);
  transform: translateX(6px);
}

.premium-footer-link-list a:hover .footer-leaf-icon,
.premium-footer-link-list a:focus-visible .footer-leaf-icon {
  color: var(--gold);
  transform: translateX(2px);
  text-shadow: 0 0 10px rgba(217, 182, 111, 0.35);
}

.premium-footer-link-list a:focus-visible,
.premium-footer-contact-item:focus-visible,
.footer-copyright a:focus-visible,
.premium-footer-brand-link:focus-visible {
  outline: 2px solid rgba(217, 182, 111, 0.7);
  outline-offset: 4px;
  border-radius: 10px;
}

.premium-footer-contact-list {
  display: grid;
  gap: 18px;
}

.premium-footer-contact-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: start;
  gap: 14px;
  padding: 12px 0 17px;
  color: var(--soft-white);
  text-decoration: none;
  border-bottom: 1px dotted rgba(141, 207, 193, 0.18);
  transition: transform 0.3s ease, color 0.3s ease;
}

.premium-footer-contact-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.premium-footer-contact-item:hover,
.premium-footer-contact-item:focus-visible {
  transform: translateX(6px);
  color: var(--gold);
}

.premium-footer-contact-note {
  cursor: default;
}

.premium-footer-contact-note:hover {
  transform: none;
  color: var(--soft-white);
}

.premium-footer-contact-icon,
.premium-footer-bottom-mark span,
.premium-footer-support-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(217, 182, 111, 0.2);
}

.premium-footer-bottom {
  position: relative;
  margin-top: 48px;
  padding: 22px 0 26px;
  border-top: 1px solid rgba(217, 182, 111, 0.68);
}

.premium-footer-bottom-grid {
  display: grid;
  grid-template-columns: minmax(0, 120px) minmax(0, 1fr) minmax(260px, 420px);
  align-items: center;
  gap: 24px;
}

.footer-copyright {
  margin: 0;
  text-align: center;
  color: rgba(234, 244, 241, 0.94);
  font-size: 1rem;
  line-height: 1.6;
}

.footer-copyright a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
}

.footer-copyright a:hover {
  color: #f3d193;
}

.premium-footer-support-note {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  color: rgba(234, 244, 241, 0.9);
  font-size: 0.97rem;
  line-height: 1.5;
}

.premium-footer-bottom-mark {
  display: inline-flex;
  align-items: center;
}

@keyframes footerGlowFloat {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, -10px, 0); }
}

@keyframes footerGlowFloatReverse {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, 10px, 0); }
}

@keyframes footerLeafDrift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(6px, -8px, 0); }
}

@keyframes footerLeafDriftReverse {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-6px, 10px, 0); }
}

@media (max-width: 1180px) {
  .premium-footer-main-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .premium-footer-brand-block {
    padding-right: 0;
  }

  .premium-care-footer {
    padding-bottom: 112px;
  }

  .premium-footer-brand-block,
  .premium-footer-card,
  .premium-footer-card h2,
  .premium-footer-contact-item {
    text-align: center;
  }

  .premium-footer-brand-link {
    align-items: center;
  }

  .premium-footer-title-divider,
  .premium-footer-brand-block p,
  .premium-footer-card-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .premium-footer-link-list a {
    justify-content: center;
  }

  .premium-footer-contact-item {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
  }

  .premium-footer-bottom-grid {
    grid-template-columns: 100px 1fr;
  }

  .premium-footer-support-note {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .premium-footer-bottom {
    padding-bottom: calc(48px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 768px) {
  .premium-care-footer {
    padding-top: 72px;
    padding-bottom: 128px;
  }

  .premium-footer-main-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .premium-footer-brand-block {
    text-align: center;
    padding: 0;
  }

  .premium-footer-brand-link {
    align-items: center;
  }

  .premium-footer-brand-block p {
    max-width: 520px;
    margin-inline: auto;
  }

  .premium-footer-title-divider span {
    width: 90px;
  }

  .premium-footer-card {
    padding: 34px 26px 28px;
  }

  .premium-footer-bottom {
    margin-top: 38px;
  }

  .premium-footer-bottom-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .premium-footer-support-note {
    justify-content: center;
    text-align: center;
  }

  .premium-footer-bottom-mark {
    justify-content: center;
  }

  .premium-footer-leaves-right,
  .premium-footer-curve-right {
    opacity: 0.6;
  }
}

@media (max-width: 560px) {
  .premium-footer-brand-icon {
    width: 104px;
    height: 104px;
  }

  .premium-footer-brand-name {
    font-size: 2rem;
  }

  .premium-footer-title-divider span {
    width: 74px;
  }

  .premium-footer-contact-item {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }

  .premium-footer-contact-icon,
  .premium-footer-bottom-mark span,
  .premium-footer-support-icon {
    width: 42px;
    height: 42px;
  }

  .premium-footer-leaves-left,
  .premium-footer-leaves-right,
  .premium-footer-curve-left,
  .premium-footer-curve-right {
    opacity: 0.45;
  }
}

/* Global Button Style Harmonisation */
:root {
  --site-button-bg: #235d72;
  --site-button-bg-hover: #174d60;
  --site-button-text: #ffffff;
  --site-button-gold: #d9b66f;
  --site-button-gold-soft: rgba(217, 182, 111, 0.36);
  --site-button-shadow: 0 18px 42px rgba(4, 80, 93, 0.22);
  --site-button-shadow-hover: 0 24px 54px rgba(4, 80, 93, 0.3);
}

.button,
.button-secondary,
.glass-button,
.button-small,
.support-link,
.support-cta-button,
.gallery-cta-button,
.about-service-cta,
.family-wonder-button,
.care-submit-button,
.contact-form button,
.service-area-premium-button,
.legal-content .button,
.mobile-cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  min-height: 54px;
  padding: 14px 28px !important;
  border-radius: 999px !important;
  border: 1px solid var(--site-button-gold-soft) !important;
  background: linear-gradient(180deg, #2a6b82 0%, var(--site-button-bg) 100%) !important;
  color: var(--site-button-text) !important;
  font-family: "Inter", "Poppins", Arial, sans-serif !important;
  font-size: 0.98rem !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.01em !important;
  text-decoration: none !important;
  box-shadow: var(--site-button-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
  cursor: pointer !important;
  transition: transform 0.32s ease, box-shadow 0.32s ease, background 0.32s ease, border-color 0.32s ease, color 0.32s ease !important;
}

.button-small,
.site-menu .button-small,
.support-link {
  min-height: 46px;
  padding: 12px 22px !important;
  font-size: 0.92rem !important;
}

.support-link {
  width: fit-content;
  margin-top: auto;
}

.button:hover,
.button:focus-visible,
.button-secondary:hover,
.button-secondary:focus-visible,
.glass-button:hover,
.glass-button:focus-visible,
.button-small:hover,
.button-small:focus-visible,
.support-link:hover,
.support-link:focus-visible,
.support-cta-button:hover,
.support-cta-button:focus-visible,
.gallery-cta-button:hover,
.gallery-cta-button:focus-visible,
.about-service-cta:hover,
.about-service-cta:focus-visible,
.family-wonder-button:hover,
.family-wonder-button:focus-visible,
.care-submit-button:hover,
.care-submit-button:focus-visible,
.contact-form button:hover,
.contact-form button:focus-visible,
.service-area-premium-button:hover,
.service-area-premium-button:focus-visible,
.legal-content .button:hover,
.legal-content .button:focus-visible,
.mobile-cta:hover,
.mobile-cta:focus-visible {
  transform: translateY(-4px) !important;
  background: linear-gradient(180deg, #2d738b 0%, var(--site-button-bg-hover) 100%) !important;
  border-color: rgba(217, 182, 111, 0.68) !important;
  color: var(--site-button-text) !important;
  box-shadow: var(--site-button-shadow-hover), 0 0 0 4px rgba(217, 182, 111, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.button:focus-visible,
.button-secondary:focus-visible,
.glass-button:focus-visible,
.button-small:focus-visible,
.support-link:focus-visible,
.support-cta-button:focus-visible,
.gallery-cta-button:focus-visible,
.about-service-cta:focus-visible,
.family-wonder-button:focus-visible,
.care-submit-button:focus-visible,
.contact-form button:focus-visible,
.service-area-premium-button:focus-visible,
.legal-content .button:focus-visible,
.mobile-cta:focus-visible {
  outline: 3px solid rgba(217, 182, 111, 0.42) !important;
  outline-offset: 4px !important;
}

.button span,
.support-link span,
.gallery-cta-button span,
.family-wonder-button-arrow,
.about-service-cta span {
  color: inherit !important;
}

.family-wonder-button-icon,
.support-cta-phone,
.service-area-premium-button-icon {
  background: rgba(255, 255, 255, 0.96) !important;
  color: var(--site-button-bg) !important;
  box-shadow: inset 0 0 0 1px rgba(35, 93, 114, 0.12) !important;
}

.family-wonder-button:hover .family-wonder-button-icon,
.family-wonder-button:focus-visible .family-wonder-button-icon,
.support-cta-button:hover .support-cta-phone,
.support-cta-button:focus-visible .support-cta-phone,
.service-area-premium-button:hover .service-area-premium-button-icon,
.service-area-premium-button:focus-visible .service-area-premium-button-icon {
  transform: scale(1.06) !important;
}

.care-submit-button::before {
  background: rgba(255, 255, 255, 0.16) !important;
}

.floating-button {
  background: linear-gradient(180deg, #2a6b82 0%, var(--site-button-bg) 100%) !important;
  color: var(--site-button-text) !important;
  border: 1px solid var(--site-button-gold-soft) !important;
  box-shadow: var(--site-button-shadow) !important;
}

.floating-button:hover,
.floating-button:focus-visible {
  background: linear-gradient(180deg, #2d738b 0%, var(--site-button-bg-hover) 100%) !important;
  border-color: rgba(217, 182, 111, 0.68) !important;
  box-shadow: var(--site-button-shadow-hover) !important;
}

@media (max-width: 640px) {
  .button,
  .button-secondary,
  .glass-button,
  .support-cta-button,
  .gallery-cta-button,
  .about-service-cta,
  .family-wonder-button,
  .care-submit-button,
  .contact-form button,
  .service-area-premium-button,
  .legal-content .button,
  .mobile-cta {
    width: min(100%, 360px);
  }

  .hero-actions,
  .contact-actions {
    align-items: center;
  }
}


/* Final requested changes: remove sticky Book a Care Call button and restore WhatsApp green */
.mobile-cta {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.whatsapp-button,
.floating-actions .whatsapp-button {
  background: #25D366 !important;
  background-image: none !important;
  color: #ffffff !important;
  border: 0 !important;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.34) !important;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible,
.floating-actions .whatsapp-button:hover,
.floating-actions .whatsapp-button:focus-visible {
  background: #1EBE5D !important;
  background-image: none !important;
  color: #ffffff !important;
  box-shadow: 0 20px 42px rgba(37, 211, 102, 0.44) !important;
}


/* Bottom CTA placement */
.bottom-care-cta-section {
  padding: 82px 0 72px;
  background: linear-gradient(180deg, #fffdf8 0%, #eef9f7 100%);
}

.bottom-care-cta-section .support-cta-banner {
  margin-top: 0;
}

body.contact-popup-open { overflow: hidden; }

.contact-popup {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.contact-popup.is-open { display: flex; }

.contact-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 24, 61, 0.58);
  backdrop-filter: blur(10px);
}

.contact-popup-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  max-height: min(88dvh, 760px);
  overflow-y: auto;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(217, 182, 111, 0.38);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfa 100%);
  box-shadow: 0 34px 90px rgba(6, 24, 61, 0.28);
}

.contact-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #102f38;
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.contact-popup-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 26px;
  padding-right: 44px;
}

.contact-popup-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #d9b66f;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(217, 182, 111, 0.28);
}

.contact-popup-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-popup-eyebrow {
  margin: 0 0 4px;
  color: #0f8f87;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-popup-heading h2 {
  margin: 0 0 8px;
  color: #103847;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.05;
}

.contact-popup-heading p:last-child {
  margin: 0;
  color: #536870;
}

.contact-popup-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-popup-form label {
  display: grid;
  gap: 8px;
  color: #103847;
  font-weight: 800;
}

.contact-popup-form input,
.contact-popup-form select,
.contact-popup-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid rgba(15, 143, 135, 0.18);
  border-radius: 14px;
  background: #ffffff;
  color: #102f38;
  font: inherit;
}

.contact-popup-form textarea {
  min-height: 118px;
  resize: vertical;
}

.contact-popup-form input:focus,
.contact-popup-form select:focus,
.contact-popup-form textarea:focus {
  outline: 3px solid rgba(15, 143, 135, 0.14);
  border-color: #0f8f87;
}

.contact-popup-full,
.contact-popup-submit,
.contact-popup-note { grid-column: 1 / -1; }

.contact-popup-submit {
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f8f87, #086a65);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 143, 135, 0.25);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.contact-popup-submit:hover,
.contact-popup-submit:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #12a198, #075d58);
  outline: 3px solid rgba(76, 145, 209, 0.22);
  outline-offset: 3px;
}

.contact-popup-note {
  margin: 0;
  color: #536870;
  text-align: center;
}

.contact-popup-note.is-success {
  color: #0f8f87;
  font-weight: 900;
}

@media (max-width: 720px) {
  .contact-popup {
    align-items: flex-end;
    padding: 10px;
  }

  .contact-popup-panel {
    width: 100%;
    max-height: calc(100dvh - 20px);
    padding: 26px 18px 22px;
    border-radius: 24px;
  }

  .contact-popup-heading {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-right: 0;
    text-align: center;
  }

  .contact-popup-close {
    top: 12px;
    right: 12px;
  }

  .contact-popup-form {
    grid-template-columns: 1fr;
  }
}

.bottom-care-cta-section .support-cta-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.bottom-care-cta-section .support-cta-phone {
  display: inline-grid !important;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  background: #d9b66f !important;
  color: #ffffff !important;
}

.bottom-care-cta-section .support-cta-phone svg {
  display: block;
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .bottom-care-cta-section {
    padding: 58px 0 54px;
  }

  .bottom-care-cta-section .support-cta-button {
    width: min(100%, 360px);
  }
}

/* Tablet and mobile menu repair */
@media (max-width: 1020px) {
  body.menu-open {
    overflow: hidden;
  }

  .nav-shell {
    min-height: 76px;
    gap: 14px;
    padding: 8px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 56px;
    height: 56px;
    flex: 0 0 auto;
  }

  .brand span {
    min-width: 0;
  }

  .brand strong {
    max-width: min(52vw, 300px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand small {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 131;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    padding: 0;
    border-color: rgba(15, 143, 135, 0.20);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 24px rgba(6, 24, 61, 0.10);
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    position: absolute;
    width: 20px;
    height: 2px;
    margin: 0;
    border-radius: 999px;
    background: var(--ink);
    transition: transform 220ms ease, opacity 180ms ease;
  }

  .menu-toggle span:not(.sr-only):nth-child(1) {
    transform: translateY(-7px);
  }

  .menu-toggle span:not(.sr-only):nth-child(3) {
    transform: translateY(7px);
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(1) {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(3) {
    transform: rotate(-45deg);
  }

  .site-menu {
    position: fixed;
    top: 88px;
    right: 14px;
    left: 14px;
    z-index: 130;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    max-height: calc(100dvh - 112px);
    padding: 18px;
    overflow-y: auto;
    border: 1px solid rgba(15, 143, 135, 0.16);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 60px rgba(6, 24, 61, 0.18);
    backdrop-filter: blur(18px);
  }

  .site-menu.is-open {
    display: flex;
  }

  .site-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 14px;
    border-radius: 14px;
    text-align: center;
  }

  .site-menu a:not(.button):hover,
  .site-menu a:not(.button):focus-visible,
  .site-menu a:not(.button).is-active {
    background: rgba(15, 143, 135, 0.08);
  }

  .site-menu .button {
    width: 100%;
    min-height: 50px;
    margin-top: 6px;
  }
}

@media (max-width: 560px) {
  .nav-shell {
    padding-inline: 12px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand strong {
    max-width: 178px;
    font-size: 0.94rem;
  }

  .site-menu {
    top: 78px;
    right: 10px;
    left: 10px;
    max-height: calc(100dvh - 94px);
  }
}

/* Hero overlay: keep the copy and calls to action in front of the globe. */
.hero .hero-grid {
  position: relative;
  isolation: isolate;
  grid-template-columns: minmax(0, 640px) minmax(420px, 1fr);
  gap: clamp(56px, 7vw, 128px);
  min-height: clamp(620px, 58vw, 760px);
  align-items: center;
}

.hero .hero-copy {
  position: relative;
  z-index: 3;
  width: min(100%, 640px);
  margin-inline: 0 auto;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 30px;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.54));
  box-shadow: 0 28px 70px rgba(18, 68, 75, 0.12);
  backdrop-filter: blur(12px);
}

.hero .hero-actions,
.hero .hero-points {
  position: relative;
  z-index: 4;
}

.hero .hero-visual {
  position: relative;
  z-index: 1;
  inset: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: min(100%, 760px);
  min-height: clamp(540px, 48vw, 720px);
  transform: none;
  pointer-events: none;
}

.hero .globe-stage {
  width: min(120%, 900px);
  margin-inline: auto;
}

@media (max-width: 1020px) {
  .hero .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    min-height: clamp(680px, 118vw, 880px);
  }

  .hero .hero-copy {
    margin-inline: auto;
    text-align: center;
  }

  .hero .hero-visual {
    inset: auto 50% -12% auto;
    width: min(116vw, 760px);
    opacity: 0.58;
    transform: translateX(50%);
  }
}

@media (max-width: 560px) {
  .hero .hero-copy {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .hero .hero-visual {
    bottom: -6%;
    width: min(132vw, 580px);
    opacity: 0.48;
  }
}
