:root {
  --braces-hero-bg: radial-gradient(circle at 15% 20%, rgba(122,163,255,0.35), transparent 55%),
                    radial-gradient(circle at 80% 10%, rgba(87,192,185,0.35), transparent 45%),
                    radial-gradient(circle at 50% 80%, rgba(15,23,42,0.12), transparent 60%),
                    #f6fafc;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 12vw, 120px) 0 80px;
  background: var(--braces-hero-bg);
}

.section-nav-wrap {
  position: relative;
  margin: clamp(-80px, -8vw, -60px) auto 56px;
  padding: 0 clamp(16px, 5vw, 32px);
  max-width: 1120px;
}

.section-nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 18px);
  padding: clamp(14px, 3vw, 22px) clamp(18px, 4vw, 36px);
  border-radius: 28px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 24px 60px rgba(15,23,42,0.15);
  backdrop-filter: blur(16px);
  overflow-x: auto;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}

.section-nav::-webkit-scrollbar {
  height: 6px;
}

.section-nav::-webkit-scrollbar-thumb {
  background: rgba(122,163,255,0.45);
  border-radius: 999px;
}

.section-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 18px;
  font-weight: 700;
  color: #0b1a2f;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
  scroll-snap-align: center;
}

.section-nav__link i {
  font-size: 1.2rem;
  color: #57c0b9;
}

.section-nav__link:hover,
.section-nav__link:focus-visible {
  background: rgba(122,163,255,0.15);
  transform: translateY(-2px);
}

.section-nav__link.is-active {
  background: linear-gradient(135deg, rgba(122,163,255,0.18), rgba(87,192,185,0.28));
  color: #0b1a2f;
  box-shadow: inset 0 0 0 1px rgba(122,163,255,0.2);
}

.section-nav__link.is-active i {
  color: #0b1a2f;
}

.section-nav__link span {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .section-nav-wrap {
    margin: -40px auto 48px;
  }

  .section-nav {
    border-radius: 22px;
  }
}

.hero__motion .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0);
  opacity: 0.45;
  mix-blend-mode: multiply;
  animation: float 12s ease-in-out infinite;
}

.hero__motion .orb--one {
  width: 240px;
  height: 240px;
  left: 4%;
  top: 16%;
  background: linear-gradient(135deg, rgba(122,163,255,0.6), rgba(87,192,185,0.8));
}

.hero__motion .orb--two {
  width: 320px;
  height: 320px;
  right: 10%;
  top: 10%;
  background: linear-gradient(135deg, rgba(87,192,185,0.65), rgba(13,110,253,0.4));
  animation-delay: -4s;
}

.hero__motion .orb--three {
  width: 180px;
  height: 180px;
  bottom: -40px;
  right: 20%;
  background: linear-gradient(135deg, rgba(122,163,255,0.45), rgba(15,23,42,0.25));
  animation-delay: -7s;
}

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -28px, 0) scale(1.05); }
}

.hero__grid {
  position: relative;
  display: grid;
  gap: clamp(28px, 6vw, 60px);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
}

.hero__content .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
  font-weight: 600;
  color: #0b1a2f;
  box-shadow: 0 10px 30px rgba(15,23,42,0.08);
  backdrop-filter: blur(12px);
}

.hero__content h1 {
  margin-top: 18px;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
}

.gradient {
  background: linear-gradient(135deg, #7aa3ff 0%, #57c0b9 50%, #12B2A0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  margin-top: 18px;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 52ch;
}

.hero__cta {
  margin: 28px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  background: linear-gradient(135deg, #7aa3ff, #57c0b9);
  color: #fff;
  box-shadow: 0 10px 25px rgba(87,192,185,0.28);
  transition: transform .2s ease, box-shadow .2s ease;
}

.hero-button:hover,
.hero-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(87,192,185,0.35);
}

.hero-button.outline {
  background: transparent;
  color: #0b1a2f;
  border: 2px solid rgba(87,192,185,0.6);
  box-shadow: none;
}

.hero-button.whatsapp {
  background: #25D366;
  box-shadow: 0 10px 25px rgba(37,211,102,0.25);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.hero__stats div {
  background: rgba(255,255,255,0.85);
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(15,23,42,0.08);
}

.hero__stats dt {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0b1a2f;
}

.hero__stats dd {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.scan-card {
  position: relative;
  max-width: 380px;
  width: 100%;
  padding: 28px;
  border-radius: 26px;
  background: rgba(255,255,255,0.88);
  box-shadow: 0 30px 60px rgba(15,23,42,0.18);
  overflow: hidden;
}

.scan-card::before,
.scan-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(122,163,255,0.35), rgba(87,192,185,0.25));
  filter: blur(0);
  animation: float 10s ease-in-out infinite;
  opacity: 0.6;
}

.scan-card::before { top: -60px; right: -40px; }
.scan-card::after { bottom: -70px; left: -30px; animation-delay: -5s; }

.scan-card figcaption {
  font-weight: 700;
  color: #0b1a2f;
  margin-bottom: 16px;
}

.scan-card__canvas {
  position: relative;
  border-radius: 18px;
  background: radial-gradient(circle at 30% 30%, rgba(122,163,255,0.25), transparent 65%),
              rgba(240,246,255,0.9);
  padding: 24px;
  overflow: hidden;
}

.scan-card__canvas svg {
  width: 100%;
  height: auto;
}

.scan-card__canvas .brackets rect {
  fill: rgba(12, 22, 44, 0.12);
  stroke: rgba(12, 22, 44, 0.32);
  stroke-width: 1.2;
}

.scan-card__canvas .teeth path {
  fill: none;
  stroke: rgba(12,22,44,0.2);
  stroke-width: 4;
  stroke-linecap: round;
}

.scan-card__canvas .pulse {
  position: absolute;
  inset: 16px;
  border-radius: 20px;
  border: 2px solid rgba(122,163,255,0.45);
  animation: pulse 4s ease infinite;
}

.scan-card__canvas .pulse.delayed { animation-delay: 2s; }

@keyframes pulse {
  0% { opacity: 0; transform: scale(0.95); }
  40% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.08); }
}

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(16px, -20px, 0) scale(1.08); }
}

@keyframes draw {
  0% { stroke-dashoffset: 520; }
  45% { stroke-dashoffset: 0; }
  70% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -520; }
}

@keyframes pulse-line {
  0%, 100% { stroke-dashoffset: 0; opacity: 0.55; }
  50% { stroke-dashoffset: -36; opacity: 0.9; }
}

@keyframes orbit {
  0% { transform: rotate(0deg) translateX(0); opacity: 0.6; }
  30% { opacity: 1; }
  50% { transform: rotate(180deg) translateX(6px); }
  100% { transform: rotate(360deg) translateX(0); opacity: 0.6; }
}

@keyframes arrow-pulse {
  0%, 100% { opacity: 0.4; }
  40% { opacity: 1; }
}

@keyframes shimmer {
  0% { transform: translateX(-20%); opacity: 0.25; }
  50% { transform: translateX(0); opacity: 0.4; }
  100% { transform: translateX(20%); opacity: 0.25; }
}

@keyframes swirl {
  0% { transform: rotate(0deg) scale(0.9); }
  50% { transform: rotate(180deg) scale(1.05); }
  100% { transform: rotate(360deg) scale(0.9); }
}

@keyframes dash-small {
  0% { stroke-dashoffset: 64; opacity: 0.3; }
  40% { stroke-dashoffset: 0; opacity: 1; }
  70% { stroke-dashoffset: 0; opacity: 1; }
  100% { stroke-dashoffset: -64; opacity: 0.3; }
}

.scan-card__meta {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: clamp(72px, 10vw, 120px) 0;
  position: relative;
}

.section::before,
.section::after {
  content: "";
  position: absolute;
  width: clamp(180px, 32vw, 340px);
  height: clamp(180px, 32vw, 340px);
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(122,163,255,0.28), transparent 70%);
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
  animation: drift 18s ease-in-out infinite;
}

.section::before {
  top: clamp(-120px, -12vw, -60px);
  left: clamp(-120px, -6vw, -40px);
}

.section::after {
  bottom: clamp(-140px, -10vw, -80px);
  right: clamp(-120px, -6vw, -40px);
  animation-delay: -8s;
  background: radial-gradient(circle at 70% 70%, rgba(87,192,185,0.28), transparent 68%);
}

.section > * {
  position: relative;
  z-index: 1;
}

.section--alt {
  background: linear-gradient(180deg, rgba(240,246,255,0.7) 0%, rgba(255,255,255,0.9) 100%);
}

.section--alt::before {
  background: radial-gradient(circle at 20% 20%, rgba(122,163,255,0.22), transparent 70%);
}

.section--alt::after {
  background: radial-gradient(circle at 60% 60%, rgba(87,192,185,0.24), transparent 68%);
}

.section__header {
  max-width: 720px;
  margin-bottom: clamp(32px, 6vw, 56px);
}

.section__header h2 {
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  margin-bottom: 16px;
}

.section__header p {
  color: var(--muted);
  font-size: 1.05rem;
}

.chip-grid,
.card-grid,
.type-grid,
.alt-grid,
.retainer-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.mechanics-visual {
  position: relative;
  margin: 0 auto clamp(36px, 6vw, 56px);
  padding: clamp(24px, 4vw, 40px);
  border-radius: 32px;
  background: radial-gradient(circle at 20% 20%, rgba(122,163,255,0.25), transparent 70%),
              radial-gradient(circle at 80% 80%, rgba(87,192,185,0.3), transparent 68%),
              rgba(15,23,42,0.04);
  box-shadow: 0 34px 68px rgba(15,23,42,0.12);
  overflow: hidden;
}

.mechanics-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.25);
  opacity: 0.45;
}

.mechanics-visual svg {
  display: block;
  width: min(100%, 420px);
  margin-inline: auto;
}

.mechanics-visual .gum {
  fill: url(#gumGradient);
}

.mechanics-visual .tooth {
  fill: url(#toothGradient);
  stroke: rgba(255,255,255,0.5);
  stroke-width: 3;
}

.mechanics-visual .ligament {
  fill: none;
  stroke: rgba(236,72,153,0.35);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-dasharray: 8 14;
  animation: pulse-line 8s ease-in-out infinite;
}

.mechanics-visual .force-line {
  fill: none;
  stroke: url(#forceGradient);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 260;
  stroke-dashoffset: 520;
  animation: draw 10s ease-in-out infinite;
}

.mechanics-visual .bracket {
  fill: rgba(15,23,42,0.75);
  stroke: rgba(255,255,255,0.6);
  stroke-width: 2;
  rx: 6;
}

.mechanics-visual .force-dot {
  fill: rgba(122,163,255,0.9);
  filter: drop-shadow(0 8px 16px rgba(122,163,255,0.45));
  transform-origin: center;
  animation: orbit 6s ease-in-out infinite;
}

.mechanics-visual .arrow {
  fill: none;
  stroke: rgba(236,72,153,0.55);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 32;
  stroke-dashoffset: 64;
  animation: dash-small 8s ease-in-out infinite;
}

.mechanics-visual .arrow-head {
  fill: rgba(236,72,153,0.65);
  animation: arrow-pulse 8s ease-in-out infinite;
}

.chip-card,
.info-card,
.type-card,
.alt-card,
.retainer-card,
.price-card {
  background: rgba(255,255,255,0.92);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(15,23,42,0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.chip-card:hover,
.info-card:hover,
.type-card:hover,
.alt-card:hover,
.retainer-card:hover,
.price-card:hover,
.mal-card:hover,
.care-card:hover,
.journey__stage:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(15,23,42,0.12);
}

.chip-card h3,
.info-card h3,
.type-card h3,
.alt-card h3,
.retainer-card h3,
.price-card h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.bullet {
  list-style: none;
  display: grid;
  gap: 10px;
}

.bullet li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
}

.bullet li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7aa3ff, #57c0b9);
}

.bullet.negative li::before {
  background: linear-gradient(135deg, #ff6a88, #ff9a8b);
}

.split {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: start;
  margin-top: 40px;
}

.split__visual {
  position: relative;
  padding: clamp(22px, 4vw, 36px);
  border-radius: 28px;
  background: radial-gradient(circle at 20% 20%, rgba(122,163,255,0.25), transparent 65%),
              radial-gradient(circle at 80% 80%, rgba(87,192,185,0.3), transparent 70%),
              rgba(12,22,44,0.85);
  box-shadow: 0 30px 60px rgba(12,22,44,0.3);
  overflow: hidden;
}

.split__visual::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.24);
  opacity: 0.4;
}

.split__visual svg {
  display: block;
  width: min(100%, 340px);
  margin-inline: auto;
}

.split__visual .tray {
  fill: none;
  stroke: url(#alignerGradient);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  animation: draw 9s ease-in-out infinite;
}

.split__visual .teeth {
  fill: rgba(255,255,255,0.15);
  stroke: rgba(255,255,255,0.55);
  stroke-width: 3;
}

.split__visual .spark {
  fill: rgba(122,163,255,0.85);
  filter: drop-shadow(0 10px 22px rgba(87,192,185,0.45));
  transform-origin: center;
  animation: orbit 7s linear infinite;
}

.insight-grid {
  margin-top: 36px;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.insight-card {
  background: linear-gradient(135deg, rgba(122,163,255,0.16), rgba(87,192,185,0.16));
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(15,23,42,0.08);
}

.insight-card h3 {
  margin-bottom: 12px;
}

.insight-card p {
  color: var(--muted);
}

.insight-card .bullet li::before {
  background: linear-gradient(135deg, #0ea5e9, #57c0b9);
}

.compare-rows {
  margin-top: 36px;
  display: grid;
  gap: 22px;
}

.compare-row {
  background: rgba(255,255,255,0.95);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(122,163,255,0.18);
  box-shadow: 0 20px 44px rgba(15,23,42,0.08);
}

.compare-row h4 {
  margin-bottom: 12px;
}

.compare-row p {
  color: var(--muted);
}

.panel {
  position: relative;
  background: rgba(12,22,44,0.75);
  color: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 25px 50px rgba(12,22,44,0.24);
    overflow: hidden;
}

.panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(122,163,255,0.45), rgba(87,192,185,0.45));
  opacity: 0.35;
  z-index: -2;
  animation: shimmer 12s ease-in-out infinite;
}

.panel::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.45), transparent 70%);
  top: -80px;
  right: -80px;
  z-index: -1;
  opacity: 0.4;
  animation: swirl 16s linear infinite;
}

.panel h3 { color: #fff; }

.panel .bullet li {
  color: rgba(255,255,255,0.95);
}

.panel .bullet li strong {
  color: #fff;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(122,163,255,0.14), rgba(87,192,185,0.14));
  border-radius: 26px;
  z-index: 0;
  opacity: 0.4;
  pointer-events: none;
}

.growth-callout {
  margin: 40px 0;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(122,163,255,0.2), rgba(87,192,185,0.26));
  box-shadow: 0 22px 48px rgba(15,23,42,0.12);
  color: #0b1a2f;
}

.growth-callout .label {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.8);
  font-weight: 700;
  margin-bottom: 12px;
}

.prep-grid {
  margin-top: 36px;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.prep-card {
  background: rgba(255,255,255,0.95);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(122,163,255,0.18);
  box-shadow: 0 16px 36px rgba(15,23,42,0.08);
}

.timeline__item {
  position: relative;
  background: rgba(255,255,255,0.92);
  border-radius: 20px;
  padding: 24px;
  border-left: 5px solid rgba(122,163,255,0.7);
  box-shadow: 0 16px 36px rgba(15,23,42,0.08);
  z-index: 1;
}

.timeline__item::before {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(122,163,255,0.45), rgba(87,192,185,0.45));
  top: 16px;
  right: 16px;
  opacity: 0.8;
  animation: pulse 6s ease-in-out infinite;
}

.timeline__item::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 16px;
  border: 1px solid rgba(122,163,255,0.25);
  opacity: 0.4;
  pointer-events: none;
}

.timeline__item h3 {
  margin-bottom: 12px;
}

.mal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.mal-card {
  background: rgba(255,255,255,0.88);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 44px rgba(15,23,42,0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.mal-card .backlink {
  color: #7aa3ff;
  font-weight: 600;
  text-decoration: underline;
}

.mal-note {
  margin-top: 32px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(122,163,255,0.14);
  border: 1px solid rgba(122,163,255,0.24);
  box-shadow: 0 18px 36px rgba(15,23,42,0.08);
}

.mal-note p {
  color: var(--muted);
}

.pill-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  color: #0b1a2f;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.5), 0 8px 20px rgba(15,23,42,0.08);
}

.pill:hover,
.pill:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 24px rgba(15,23,42,0.12);
}

.workflow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 36px;
}

.workflow__step {
  background: rgba(255,255,255,0.92);
  border-radius: 20px;
  padding: 24px;
  border-top: 4px solid rgba(87,192,185,0.6);
  box-shadow: 0 16px 36px rgba(15,23,42,0.08);
}

.tech-stack {
  background: rgba(255,255,255,0.95);
  border-radius: 22px;
  padding: 28px;
  border: 1px solid rgba(122,163,255,0.18);
  box-shadow: 0 22px 44px rgba(15,23,42,0.1);
  margin-bottom: 36px;
}

.tech-stack h3 {
  margin-bottom: 16px;
}

.tech-stack ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.tech-stack li {
  display: flex;
  gap: 12px;
  color: var(--muted);
  align-items: flex-start;
}

.tech-stack i {
  font-size: 1.4rem;
  color: #57c0b9;
  margin-top: 2px;
}

.planning-note {
  margin-top: 28px;
  padding: 20px 24px;
  border-radius: 18px;
  background: rgba(87,192,185,0.14);
  color: #0b1a2f;
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(87,192,185,0.2);
}

.workflow__step h3 {
  margin-bottom: 12px;
}

.icon-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.icon-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-weight: 600;
}

.icon-list i {
  font-size: 1.4rem;
  color: #7aa3ff;
}

.type-card .tag,
.price-card .tag {
  display: inline-flex;
  margin-top: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(122,163,255,0.18);
  color: #0b1a2f;
  font-weight: 600;
}

.journey {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  position: relative;
}

.journey__stage {
  position: relative;
  background: rgba(255,255,255,0.9);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 16px 36px rgba(15,23,42,0.08);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border .2s ease;
}

.journey__stage::after {
  content: attr(data-stage);
  position: absolute;
  inset: 12px;
  border-radius: 14px;
  border: 1px dashed rgba(122,163,255,0.4);
  pointer-events: none;
  opacity: 0;
  transform: scale(0.9);
  transition: transform .2s ease, opacity .2s ease;
}

.journey__stage.is-active::after {
  opacity: 1;
  transform: scale(1);
}

.journey__stage h3 {
  margin-bottom: 10px;
}

.journey__note {
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

.visit-grid {
  margin-top: 36px;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.visit-card {
  background: rgba(255,255,255,0.94);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(122,163,255,0.2);
  box-shadow: 0 18px 40px rgba(15,23,42,0.08);
  position: relative;
}

.visit-card span {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(122,163,255,0.18);
  font-weight: 700;
  margin-bottom: 10px;
}

.visit-card h3 {
  margin-bottom: 12px;
}

.visit-card p {
  color: var(--muted);
}

.dos-donts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.selfcare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.care-card {
  background: rgba(255,255,255,0.9);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 16px 36px rgba(15,23,42,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.care-note {
  margin-top: 32px;
  padding: 22px 26px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(87,192,185,0.16), rgba(122,163,255,0.14));
  box-shadow: 0 20px 40px rgba(15,23,42,0.08);
  font-weight: 600;
  color: #0b1a2f;
}

.care-card__image {
  width: 140px;
  height: 120px;
}

.care-card__image svg {
  width: 100%;
  height: 100%;
}

.retainer-steps {
  margin-top: 32px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.retainer-step {
  background: rgba(255,255,255,0.94);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid rgba(122,163,255,0.2);
  box-shadow: 0 18px 40px rgba(15,23,42,0.08);
}

.retainer-step h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.retainer-step p {
  color: var(--muted);
}

.retainer-note {
  margin-top: 24px;
  font-weight: 600;
  color: #0b1a2f;
}

.pricing-grid article header h3 {
  margin-bottom: 8px;
}

.pricing-grid article header p {
  font-size: 1.3rem;
  font-weight: 800;
  color: #0b1a2f;
}

.pricing-grid ul {
  list-style: none;
  margin-top: 16px;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.emi {
  margin-top: 36px;
  padding: 24px;
  border-radius: 18px;
  background: rgba(12,22,44,0.85);
  color: #fff;
  box-shadow: 0 24px 48px rgba(12,22,44,0.24);
}

.cost-note {
  margin-top: 24px;
  padding: 20px 24px;
  border-radius: 18px;
  background: rgba(122,163,255,0.12);
  border: 1px dashed rgba(122,163,255,0.4);
  color: var(--muted);
  font-weight: 600;
}

.alt-card .alt-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-weight: 700;
  color: #0b1a2f;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.92);
  color: #0b1a2f;
  box-shadow: 0 16px 36px rgba(15,23,42,0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.contact-card i {
  font-size: 1.8rem;
  color: #7aa3ff;
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(15,23,42,0.12);
}

.page-footer {
  background: rgba(12,22,44,0.92);
  color: #fff;
  padding: 32px 0;
}

.page-footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7aa3ff, #57c0b9);
  color: #fff;
  font-weight: 700;
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .hero {
    padding-top: 96px;
  }
  .hero__motion .orb { display: none; }
  .hero__cta { justify-content: flex-start; }
  .scan-card { margin-inline: auto; }
}

@media (max-width: 540px) {
  .hero-button { width: 100%; justify-content: center; }
  .pill-nav { justify-content: flex-start; }
  .journey { grid-template-columns: 1fr; }
}

