/* UX refresh layer: overrides for new sections & subtle animations */

:root {
  --ux-surface: rgba(255, 255, 255, 0.86);
  --ux-surface-2: rgba(255, 255, 255, 0.72);
  --ux-border: rgba(148, 163, 184, 0.28);
  --ux-border-strong: rgba(124, 108, 255, 0.28);
  --ux-shadow: 0 22px 60px rgba(15, 23, 42, 0.10);
  --ux-shadow-soft: 0 14px 44px rgba(15, 23, 42, 0.08);
  --ux-radius: 26px;
}

/* sections spacing */
.section {
  padding: clamp(60px, 6vw, 104px) 0;
}

/* re-usable “glass card” */
.ux-card {
  background: var(--ux-surface);
  border: 1px solid var(--ux-border);
  border-radius: var(--ux-radius);
  box-shadow: var(--ux-shadow-soft);
  backdrop-filter: blur(14px);
}

.ux-hover {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.ux-hover:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 108, 255, 0.35);
  box-shadow: var(--ux-shadow);
}

@media (prefers-reduced-motion: reduce) {
  .ux-hover,
  .ux-hover:hover {
    transition: none;
    transform: none;
  }
}

/* ===== ORIENTATION ===== */
.section-orientation {
  position: relative;
}

.section-orientation::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 420px at 10% 10%, rgba(124, 108, 255, 0.16), transparent 60%),
    radial-gradient(700px 420px at 90% 20%, rgba(90, 77, 208, 0.10), transparent 62%);
  pointer-events: none;
  z-index: 0;
}

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

.orientation-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(20px, 3vw, 44px);
  align-items: start;
}

.orientation-intro h2 {
  margin-top: 6px;
  letter-spacing: -0.02em;
}

.orientation-intro > p {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(24, 24, 27, 0.86);
  max-width: 60ch;
}

.orientation-meta {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.orientation-meta-item {
  padding: 14px 14px;
  border-radius: 18px;
  background: var(--ux-surface-2);
  border: 1px solid var(--ux-border);
}

.orientation-meta-item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(24, 24, 27, 0.74);
}

.meta-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(107, 107, 122, 0.9);
  margin-bottom: 8px;
}

.meta-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(124, 108, 255, 0.55);
  box-shadow: 0 0 0 6px rgba(124, 108, 255, 0.10);
}

/* right column as timeline */
.orientation-cards {
  position: relative;
  display: grid;
  gap: 14px;
  padding-left: 18px;
}
.orientation-cards::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 6px;
  width: 2px;
  background: linear-gradient(180deg, rgba(124, 108, 255, 0.0), rgba(124, 108, 255, 0.45), rgba(124, 108, 255, 0.0));
}

.orientation-card {
  position: relative;
  padding: 22px 22px 20px;
  border-radius: var(--ux-radius);
  background: var(--ux-surface);
  border: 1px solid var(--ux-border);
  box-shadow: var(--ux-shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.orientation-card::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 26px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(124, 108, 255, 0.92);
  box-shadow: 0 0 0 8px rgba(124, 108, 255, 0.12);
}
.orientation-card:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 108, 255, 0.35);
  box-shadow: var(--ux-shadow);
}

.orientation-card-label {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(107, 107, 122, 0.88);
}

.orientation-card h3 {
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.orientation-card > p {
  margin: 0 0 12px;
  color: rgba(24, 24, 27, 0.76);
  line-height: 1.65;
  font-size: 14px;
}

.orientation-card ul {
  margin: 0 0 0 18px;
  padding: 0;
  color: rgba(24, 24, 27, 0.68);
  line-height: 1.55;
  font-size: 13px;
}

@media (max-width: 980px) {
  .orientation-grid {
    grid-template-columns: 1fr;
  }
  .orientation-meta {
    grid-template-columns: 1fr;
  }
  .orientation-cards {
    padding-left: 22px;
  }
}

/* ===== SCIENCE ===== */
#science .section-header {
  max-width: 980px;
}

.science-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

.science-text > p {
  margin: 0;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(24, 24, 27, 0.82);
}

.science-stats {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.science-stat {
  padding: 16px 16px 14px;
  border-radius: 20px;
  border: 1px solid var(--ux-border);
  background: var(--ux-surface-2);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.science-stat strong {
  display: block;
  font-size: 15px;
  letter-spacing: -0.01em;
  margin: 6px 0 6px;
}

.science-stat p {
  margin: 0;
  color: rgba(24, 24, 27, 0.68);
  font-size: 13px;
  line-height: 1.55;
}

.science-pillars {
  display: grid;
  gap: 12px;
}

.science-card {
  padding: 22px 22px 18px;
  border-radius: var(--ux-radius);
  background: var(--ux-surface);
  border: 1px solid var(--ux-border);
  box-shadow: var(--ux-shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.science-card:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 108, 255, 0.35);
  box-shadow: var(--ux-shadow);
}
.science-card p {
  color: rgba(24, 24, 27, 0.76);
  line-height: 1.65;
  margin: 0 0 12px;
}
.science-card ul {
  margin: 0 0 0 18px;
  color: rgba(24, 24, 27, 0.66);
  font-size: 13px;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .science-grid { grid-template-columns: 1fr; }
  .science-stats { grid-template-columns: 1fr; }
}

/* ===== PROCESS ===== */
.section-process {
  position: relative;
}
.section-process::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 50% 0%, rgba(124, 108, 255, 0.14), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.section-process .container { position: relative; z-index: 1; }

.process-cards {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.process-card {
  padding: 18px 16px 16px;
  border-radius: var(--ux-radius);
  background: var(--ux-surface);
  border: 1px solid var(--ux-border);
  box-shadow: var(--ux-shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}
.process-card::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 20% 20%, rgba(124, 108, 255, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}
.process-card:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 108, 255, 0.35);
  box-shadow: var(--ux-shadow);
}
.process-card:hover::after { opacity: 1; }

.process-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(124, 108, 255, 0.12);
  border: 1px solid rgba(124, 108, 255, 0.22);
  color: rgba(90, 77, 208, 0.95);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.process-card p {
  margin: 0 0 10px;
  color: rgba(24, 24, 27, 0.75);
  line-height: 1.6;
  font-size: 14px;
}
.process-card ul {
  margin: 0 0 0 18px;
  color: rgba(24, 24, 27, 0.65);
  font-size: 13px;
  line-height: 1.55;
}

.process-note {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(124, 108, 255, 0.22);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 247, 253, 0.9));
  box-shadow: var(--ux-shadow-soft);
  position: relative;
  overflow: hidden;
}
.process-note p { margin: 0; color: rgba(24, 24, 27, 0.74); }
.process-note strong { color: rgba(72, 60, 190, 0.95); }
.process-note::after {
  content: "";
  position: absolute;
  inset: -40% 60% -40% -10%;
  background: radial-gradient(circle, rgba(124, 108, 255, 0.18), transparent 60%);
  opacity: 0.6;
  animation: processNoteGlow 7s ease-in-out infinite;
  pointer-events: none;
}

/* ===== SERVICE MODAL OVERRIDES (FINAL) ===== */
.service-modal {
  width: min(980px, 94%);
  max-height: 90vh;
  overflow: auto;
  border: 1px solid rgba(124, 108, 255, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 248, 255, 0.96));
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.2);
  scrollbar-width: none;
  padding-top: 36px;
  padding-right: 36px;
}
.service-modal::-webkit-scrollbar { width: 0; height: 0; }

.service-modal-overlay.active .service-modal {
  animation: modalRise 380ms ease both;
}

.service-modal-overlay.active .modal-section,
.service-modal-overlay.active .service-highlight-item,
.service-modal-overlay.active .service-box,
.service-modal-overlay.active .modal-hint {
  opacity: 0;
  transform: translateY(10px);
  animation: modalFadeUp 420ms ease forwards;
}

.service-modal-overlay.active .modal-section:nth-of-type(1) { animation-delay: 60ms; }
.service-modal-overlay.active .modal-section:nth-of-type(2) { animation-delay: 140ms; }
.service-modal-overlay.active .modal-section:nth-of-type(3) { animation-delay: 220ms; }
.service-modal-overlay.active .modal-section:nth-of-type(4) { animation-delay: 300ms; }
.service-modal-overlay.active .service-box:nth-of-type(1) { animation-delay: 120ms; }
.service-modal-overlay.active .service-box:nth-of-type(2) { animation-delay: 200ms; }
.service-modal-overlay.active .service-box:nth-of-type(3) { animation-delay: 280ms; }
.service-modal-overlay.active .modal-hint { animation-delay: 320ms; }

.service-modal-content {
  max-height: none;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
}

.service-modal-main {
  overflow: visible;
  padding-right: 6px;
}

.service-modal-close {
  top: 14px;
  right: 14px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(124, 108, 255, 0.2);
}

.service-modal-aside {
  padding-top: 8px;
}

.service-box-price {
  margin-top: 6px;
}

.price-row {
  flex-wrap: wrap;
  align-items: center;
}

.price-row .value {
  white-space: normal;
  font-size: 13px;
  line-height: 1.4;
}

#service-notes {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: #4b4b55;
  font-size: 13px;
  line-height: 1.5;
}

#service-notes li {
  position: relative;
  padding-left: 18px;
}

#service-notes li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: rgba(124, 108, 255, 0.9);
  font-size: 12px;
}

@media (max-width: 900px) {
  .service-modal {
    width: min(720px, 96%);
    max-height: 92vh;
  }

  .service-modal-content {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* ===== SERVICES REFRESH ===== */
.services-grid {
  align-items: stretch;
  gap: 24px;
}

.service-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.85));
  border: 1px solid rgba(124, 108, 255, 0.14);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: -30% 35% auto -20%;
  height: 140%;
  background: radial-gradient(circle, rgba(124, 108, 255, 0.18), transparent 65%);
  opacity: 0.4;
  pointer-events: none;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 10%, rgba(124, 108, 255, 0.12) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 600ms ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 108, 255, 0.3);
  box-shadow: var(--ux-shadow);
}

.service-card:hover::after {
  transform: translateX(120%);
}

.service-card-featured {
  border-color: rgba(124, 108, 255, 0.35);
  box-shadow: var(--ux-shadow);
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(245, 242, 255, 0.95));
}

.service-card-featured::before {
  opacity: 0.6;
}

.service-chip {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(72, 60, 190, 0.9);
  background: rgba(124, 108, 255, 0.12);
  border: 1px solid rgba(124, 108, 255, 0.22);
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.service-card-free {
  background: linear-gradient(135deg, rgba(124, 108, 255, 0.08), rgba(255, 255, 255, 0.95));
  border-color: rgba(124, 108, 255, 0.22);
}

@media (max-width: 980px) {
  .service-card-featured { transform: none; }
}

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

.process-timeline {
  margin-top: 18px;
  padding: 18px 22px;
}

.process-list {
  display: grid;
  gap: 14px;
  position: relative;
  padding-left: 10px;
}

.process-list::before {
  content: none;
}

.process-row {
  position: relative;
  padding: 16px 18px 16px 16px;
  align-items: start;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.75));
  border: 1px solid rgba(124, 108, 255, 0.12);
  border-radius: 16px;
  box-shadow: var(--ux-shadow-soft);
  animation: processRowFade 520ms ease both;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.process-row::before {
  content: none;
}

.process-row:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 108, 255, 0.28);
  box-shadow: var(--ux-shadow);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.82));
}

.process-step-watermark {
  position: absolute;
  right: 16px;
  top: 8px;
  font-size: 40px;
  font-weight: 700;
  color: rgba(124, 108, 255, 0.14);
  letter-spacing: 0.06em;
  pointer-events: none;
  transition: transform 220ms ease, opacity 220ms ease, color 220ms ease, background-position 520ms ease;
}

.process-row:hover .process-step-watermark {
  transform: scale(1.08);
  opacity: 0.9;
  color: transparent;
  background-image: linear-gradient(120deg, rgba(124, 108, 255, 0.35), rgba(255, 138, 199, 0.35), rgba(124, 108, 255, 0.35));
  background-size: 200% 100%;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: processWatermarkFlow 1.6s ease-in-out infinite;
}

.process-row-body h3 {
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.process-row-body p {
  margin: 0;
  color: rgba(24, 24, 27, 0.74);
  line-height: 1.6;
  font-size: 15px;
}

.process-text {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 20px;
  background: var(--ux-surface);
  border: 1px solid var(--ux-border);
  box-shadow: var(--ux-shadow-soft);
}

.process-text p {
  margin: 0;
  color: rgba(24, 24, 27, 0.78);
  line-height: 1.7;
  font-size: 16px;
}

@keyframes processRowFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes processWatermarkFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

@keyframes processNoteGlow {
  0% { transform: translateX(0) scale(1); opacity: 0.45; }
  50% { transform: translateX(12%) scale(1.05); opacity: 0.7; }
  100% { transform: translateX(0) scale(1); opacity: 0.45; }
}

.process-row:nth-child(1) { animation-delay: 80ms; }
.process-row:nth-child(2) { animation-delay: 150ms; }
.process-row:nth-child(3) { animation-delay: 220ms; }
.process-row:nth-child(4) { animation-delay: 290ms; }

@media (max-width: 720px) {
  .process-timeline { padding: 16px; }
  .process-list {
    gap: 12px;
    padding-left: 6px;
  }
  .process-list::before {
    left: 0;
  }
  .process-row {
    padding: 14px 14px 14px 14px;
  }
  .process-step-watermark { font-size: 30px; right: 10px; }
  .process-row-body p { font-size: 14px; }
  .process-text { padding: 16px 18px; }
  .process-text p { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  .process-row { animation: none; }
  .process-row:hover .process-step-watermark { animation: none; }
  .process-note::after { animation: none; }
  .service-card::after { transition: none; }
}

/* ===== REVIEWS ===== */
.section-reviews {
  position: relative;
}
.reviews-carousel {
  margin-top: 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  position: relative;
}

.reviews-window {
  overflow: hidden;
  padding: 0 0 28px;
  border-radius: 32px;
  background: transparent;
  border: 0;
  box-shadow: none;
  position: relative;
  z-index: 1;
}

.reviews-scroll {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.reviews-scroll::-webkit-scrollbar { display: none; }

.reviews-track {
  --review-slide-width: 100%;
  display: flex;
  gap: 18px;
  padding: 0;
  position: relative;
  z-index: 1;
}
.reviews-track::after {
  content: "";
  flex: 0 0 calc(100% - var(--review-slide-width));
}

.review-slide {
  flex: 0 0 var(--review-slide-width);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(124, 108, 255, 0.18);
  border-radius: 30px;
  padding: clamp(22px, 3vw, 32px);
  min-height: 240px;
  box-shadow: none;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (min-width: 720px) {
  .reviews-track { --review-slide-width: calc(50% - 9px); }
}
@media (min-width: 1120px) {
  .reviews-track { --review-slide-width: calc((100% - 36px) / 3); }
}
.review-slide p {
  margin: 0;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.7;
  color: rgba(24, 24, 27, 0.9);
}

.review-chip {
  align-self: flex-start;
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(79, 70, 229, 0.95);
  background: rgba(124, 108, 255, 0.12);
  border: 1px solid rgba(124, 108, 255, 0.25);
}

.review-meta {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(24, 24, 27, 0.55);
}

.review-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-tag {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(79, 70, 229, 0.9);
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(124, 108, 255, 0.12);
  border: 1px solid rgba(124, 108, 255, 0.25);
}

.reviews-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(124, 108, 255, 0.35);
  background: rgba(255, 255, 255, 0.9);
  color: rgba(79, 70, 229, 0.95);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(79, 70, 229, 0.18);
  transition: transform 200ms ease, border-color 200ms ease;
}
.reviews-arrow:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 108, 255, 0.6);
}
.reviews-arrow:disabled {
  opacity: 0;
  pointer-events: none;
  transform: none;
}
.reviews-arrow[data-dir="prev"] {
  margin-right: 4px;
}
.reviews-arrow[data-dir="next"] {
  margin-left: 4px;
}

.reviews-bottom {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.reviews-indicator {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: rgba(24, 24, 27, 0.72);
}
.reviews-indicator span:first-child {
  font-size: 20px;
  color: rgba(24, 24, 27, 0.9);
}

.reviews-dots {
  position: relative;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-self: center;
  min-height: 12px;
  grid-column: 2;
}
.reviews-dots button {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 0;
  background: rgba(24, 24, 27, 0.25);
  opacity: 0.45;
  cursor: pointer;
  transition: background 240ms ease, opacity 240ms ease;
}
.reviews-dots button.is-active {
  background: rgba(124, 108, 255, 0.9);
  opacity: 1;
  box-shadow: 0 0 10px rgba(124, 108, 255, 0.45);
}
.reviews-dots-progress {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(120deg, rgba(124,108,255,0.95), rgba(96,76,215,0.95));
  box-shadow: 0 8px 20px rgba(96, 76, 215, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: left 260ms cubic-bezier(0.4, 0, 0.2, 1), width 260ms cubic-bezier(0.4, 0, 0.2, 1), opacity 140ms ease;
}
.reviews-dots-progress.is-active {
  opacity: 1;
}

.reviews-all-link {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(79, 70, 229, 0.9);
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(124, 108, 255, 0.25);
  background: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease;
  grid-column: 3;
  justify-self: end;
}
.reviews-all-link:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 108, 255, 0.55);
}

@media (max-width: 720px) {
  .reviews-carousel {
    grid-template-columns: 1fr;
  }
  .reviews-arrow {
    order: -1;
    width: 46px;
    height: 46px;
  }
  .reviews-window {
    background: transparent;
    border: 0;
    padding-bottom: 24px;
  }
}

/* ===== PAYMENTS ===== */
.section-payments {
  position: relative;
}
.section-payments::before {
  content: none;
}
.section-payments .container { position: relative; z-index: 1; }

.payments-subtitle {
  max-width: 72ch;
  margin-top: 12px;
  color: rgba(24, 24, 27, 0.68);
  line-height: 1.65;
}

.section-header-center {
  text-align: center;
}

.section-header-center .section-kicker {
  justify-content: center;
}

.section-header-center .payments-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.section-header-center .section-kicker::after {
  content: "";
  width: 20px;
  height: 1px;
  background: rgba(148, 163, 184, 0.9);
}

/* Approaches header centering override */
.section-approaches .section-header,
.section-approaches .section-title,
.section-approaches .integrative-note {
  text-align: center !important;
}

/* Education header centering + double lines */
.section-education .section-header {
  text-align: center;
}

.section-education .section-kicker {
  justify-content: center;
}

.section-education .section-kicker::after {
  content: "";
  width: 20px;
  height: 1px;
  background: rgba(148, 163, 184, 0.9);
}

/* Geography label lines + flat background override */
.geo-inner {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 244, 255, 0.96) 100%) !important;
  box-shadow: 0 40px 90px rgba(30, 15, 62, 0.12);
}

.geo-inner::after {
  display: none !important;
  background: none !important;
  animation: none !important;
}

.geo-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.geo-label::before,
.geo-label::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: rgba(120, 130, 155, 0.9);
}

.geo-chips {
  gap: 18px !important;
  max-width: 820px;
}

.geo-chip {
  padding: 13px 26px;
  border-radius: 999px;
  transform: none;
}

.payments-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.payments-list {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.payment-line {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px 16px;
  border-radius: var(--ux-radius);
  background: var(--ux-surface);
  border: 1px solid var(--ux-border);
  box-shadow: var(--ux-shadow-soft);
}

.payment-line-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(124, 108, 255, 0.12);
  border: 1px solid rgba(124, 108, 255, 0.22);
  font-size: 22px;
  flex-shrink: 0;
}

.payment-line-body h3 {
  margin: 2px 0 6px;
  letter-spacing: -0.01em;
}

.payment-line-text {
  margin: 0;
  color: rgba(24, 24, 27, 0.68);
  line-height: 1.55;
  font-size: 14px;
}

.payment-line-note {
  margin: 8px 0 0;
  color: rgba(24, 24, 27, 0.60);
  font-size: 12.5px;
  line-height: 1.55;
}

.payments-tiles {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.payment-tile {
  padding: 14px 14px 12px;
  border-radius: var(--ux-radius);
  background: var(--ux-surface);
  border: 1px solid var(--ux-border);
  box-shadow: var(--ux-shadow-soft);
  animation: paymentFadeUp 520ms ease both;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.payment-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 108, 255, 0.45);
  box-shadow: 0 18px 40px rgba(18, 18, 23, 0.18);
}

.payment-tile:active {
  transform: translateY(0);
}

@media (hover: none) {
  .payment-tile:hover {
    transform: none;
    border-color: var(--ux-border);
    box-shadow: var(--ux-shadow-soft);
  }
}

.payment-tile-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.payment-tile-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(124, 108, 255, 0.12);
  border: 1px solid rgba(124, 108, 255, 0.22);
  font-size: 18px;
  flex-shrink: 0;
}

.payment-tile-head h3 {
  margin: 0;
  letter-spacing: -0.01em;
  font-size: 19px;
}

.payment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 8px;
}

.payment-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(124, 108, 255, 0.10);
  border: 1px solid rgba(124, 108, 255, 0.18);
  color: rgba(24, 24, 27, 0.75);
  font-size: 14px;
  padding: 5px 10px;
  line-height: 1.2;
  white-space: nowrap;
  animation: paymentTagFade 520ms ease both;
}

.payment-tile-note {
  margin: 0;
  color: rgba(24, 24, 27, 0.62);
  font-size: 15px;
  line-height: 1.45;
}

@keyframes paymentFadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes paymentTagFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.payment-tile:nth-child(1) { animation-delay: 60ms; }
.payment-tile:nth-child(2) { animation-delay: 120ms; }
.payment-tile:nth-child(3) { animation-delay: 180ms; }
.payment-tile:nth-child(4) { animation-delay: 240ms; }

.payment-tags .payment-tag:nth-child(1) { animation-delay: 80ms; }
.payment-tags .payment-tag:nth-child(2) { animation-delay: 120ms; }
.payment-tags .payment-tag:nth-child(3) { animation-delay: 160ms; }
.payment-tags .payment-tag:nth-child(4) { animation-delay: 200ms; }
.payment-tags .payment-tag:nth-child(5) { animation-delay: 240ms; }
.payment-tags .payment-tag:nth-child(6) { animation-delay: 280ms; }
.payment-tags .payment-tag:nth-child(7) { animation-delay: 320ms; }
.payment-tags .payment-tag:nth-child(8) { animation-delay: 360ms; }

@media (prefers-reduced-motion: reduce) {
  .payment-tile,
  .payment-tag {
    animation: none;
    transition: none;
  }
}

@media (max-width: 700px) {
  .payments-tiles { grid-template-columns: 1fr; }
  .payment-tile { padding: 14px 14px 12px; }
  .payment-tile-head h3 { font-size: 18px; }
  .payment-tag { font-size: 13px; padding: 4px 9px; }
  .payment-tile-note { font-size: 14px; }
}

@media (max-width: 360px) {
  .payments-tiles { grid-template-columns: 1fr; }
}

.payment-box {
  padding: 20px 20px 18px;
  border-radius: var(--ux-radius);
  background: var(--ux-surface);
  border: 1px solid var(--ux-border);
  box-shadow: var(--ux-shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.payment-box:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 108, 255, 0.35);
  box-shadow: var(--ux-shadow);
}

.payment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(124, 108, 255, 0.12);
  border: 1px solid rgba(124, 108, 255, 0.22);
  font-size: 22px;
}

.payment-box h3 {
  margin: 12px 0 10px;
  letter-spacing: -0.01em;
}
.payment-box ul {
  margin: 0 0 10px 18px;
  padding: 0;
  color: rgba(24, 24, 27, 0.68);
  line-height: 1.55;
  font-size: 13px;
}
.payment-note {
  margin: 0;
  color: rgba(24, 24, 27, 0.60);
  font-size: 12.5px;
  line-height: 1.55;
}

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

/* ===== EDUCATION ===== */
.section-education {
  position: relative;
}
.section-education::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 520px at 70% 30%, rgba(124, 108, 255, 0.10), transparent 62%);
  pointer-events: none;
  z-index: 0;
}
.section-education .container { position: relative; z-index: 1; }

.education-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(18px, 3vw, 40px);
  align-items: start;
}

.education-intro {
  margin-top: 12px;
  color: rgba(24, 24, 27, 0.68);
  line-height: 1.65;
}

.education-journey-list {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.education-stage {
  padding: 18px 18px 16px;
  border-radius: var(--ux-radius);
  background: var(--ux-surface);
  border: 1px solid var(--ux-border);
  box-shadow: var(--ux-shadow-soft);
  position: relative;
  overflow: hidden;
}
.education-stage::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 15% 20%, rgba(124, 108, 255, 0.10), transparent 58%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}
.education-stage:hover::after { opacity: 1; }

.education-stage-year {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(24, 24, 27, 0.56);
  margin-bottom: 8px;
}
.education-stage-year::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(124, 108, 255, 0.62);
  box-shadow: 0 0 0 4px rgba(124, 108, 255, 0.10);
}

@keyframes eduPulse {
  0% { box-shadow: 0 0 0 4px rgba(124, 108, 255, 0.10); }
  40% { box-shadow: 0 0 0 6px rgba(124, 108, 255, 0.06); }
  60% { box-shadow: 0 0 0 6px rgba(124, 108, 255, 0.06); }
  100% { box-shadow: 0 0 0 4px rgba(124, 108, 255, 0.10); }
}

@media (prefers-reduced-motion: no-preference) {
  .education-stage-year::before {
    animation: eduPulse 5s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  }
}

.education-certificates {
  padding: 18px;
  border-radius: calc(var(--ux-radius) + 2px);
  border: 1px solid var(--ux-border-strong);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--ux-shadow-soft);
  backdrop-filter: blur(14px);
}

.cert-frame {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--ux-border);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
}
.cert-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: opacity 220ms ease, transform 220ms ease;
}
.cert-frame.is-loading img {
  opacity: 0;
  transform: scale(0.99);
}

.cert-meta {
  margin-top: 14px;
}
.cert-count {
  margin: 0 0 6px;
  font-size: 12px;
  color: rgba(24, 24, 27, 0.56);
}
.cert-meta h3 {
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.cert-meta p {
  margin: 0;
  color: rgba(24, 24, 27, 0.62);
}
.cert-note {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(24, 24, 27, 0.58);
}

.cert-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cert-modal.is-open {
  display: flex;
}

.cert-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 14, 0.6);
  backdrop-filter: blur(2px);
}

.cert-modal-inner {
  position: relative;
  z-index: 1;
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  display: grid;
  place-items: center;
}

.cert-modal-inner img {
  max-width: 92vw;
  max-height: 82vh;
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.3);
  background: #ffffff;
}

.cert-modal-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(124, 108, 255, 0.25);
  background: rgba(255, 255, 255, 0.95);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: #2b223c;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
}

.cert-controls {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 10px;
  align-items: center;
}

.cert-nav {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(124, 108, 255, 0.28);
  background: rgba(255,255,255,0.9);
  color: rgba(90, 77, 208, 0.95);
  font-size: 22px;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.cert-nav:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 108, 255, 0.45);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.10);
}

.cert-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.cert-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(24, 24, 27, 0.16);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}
.cert-dot:hover { transform: scale(1.15); }
.cert-dot.active {
  background: rgba(124, 108, 255, 0.92);
}

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

.process-bridge {
  position: relative;
  padding: clamp(22px, 5vw, 50px) 0;
  background: transparent;
}
.process-bridge .container {
  max-width: 980px;
  position: relative;
}
.bridge-panel {
  position: relative;
  display: block;
  padding: 18px 0 10px;
}
.bridge-main {
  position: relative;
  padding: 24px 28px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 48px rgba(19, 18, 34, 0.08);
  border: 2px dashed rgba(124, 108, 255, 0.38);
}
.bridge-heading {
  margin: 0;
  font-size: clamp(24px, 4.6vw, 36px);
  letter-spacing: -0.01em;
  text-transform: none;
  text-align: center;
  color: #1b1b26;
  transform: none;
  filter: none;
  position: relative;
  display: block;
  animation: bridgeFadeUp 0.7s ease forwards;
}
.bridge-heading::after {
  content: none;
}
.bridge-text {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(27, 26, 40, 0.72);
  position: relative;
  text-align: center;
  opacity: 0;
  animation: bridgeFadeUp 0.7s ease forwards;
}
.bridge-text + .bridge-text {
  animation-delay: 0.12s;
}
.bridge-text-soft {
  color: rgba(27, 26, 40, 0.6);
}
.bridge-down {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(49, 42, 92, 0.7);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 14px;
  gap: 12px;
  width: 100%;
  opacity: 0;
  animation: bridgeFadeUp 0.7s ease forwards;
  animation-delay: 0.22s;
}
.bridge-down-label {
  position: relative;
}
.bridge-arrow {
  font-size: 16px;
  color: rgba(124, 108, 255, 0.85);
  animation: bridgeArrow 1.8s ease-in-out infinite;
}

@keyframes bridgeUnderline {
  to { transform: scaleX(1); }
}

@keyframes bridgeArrow {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(2px); opacity: 1; }
}

@keyframes bridgeFadeUp {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}


@media (max-width: 720px) {
  .process-bridge {
    padding: 28px 0 40px;
  }
  .bridge-heading {
    font-size: clamp(20px, 6vw, 28px);
  }
  .bridge-heading::after {
    width: 54px;
  }
  .bridge-panel {
    padding: 14px 0 20px;
  }
  .bridge-main {
    padding: 18px 18px;
    border-radius: 18px;
  }
}
.modal-section {
  position: relative;
  padding: 12px 14px 12px 18px;
  border-radius: 16px;
  border: 1px solid rgba(124, 108, 255, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.modal-section::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(124, 108, 255, 0.2), rgba(124, 108, 255, 0.05));
}

.modal-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
  color: rgba(24, 24, 27, 0.72);
}

.modal-title-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(124, 108, 255, 0.22);
  color: rgba(72, 60, 190, 0.95);
  box-shadow: inset 0 0 0 1px rgba(124, 108, 255, 0.28);
}

.modal-title-icon svg {
  width: 14px;
  height: 14px;
  display: block;
}

.service-box {
  border: 1px solid rgba(124, 108, 255, 0.2);
  background: linear-gradient(145deg, rgba(248, 247, 255, 0.96), rgba(255, 255, 255, 0.9));
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.06);
}

.service-box .label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: rgba(24, 24, 27, 0.6);
  letter-spacing: 0.16em;
}

.service-box .label::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(124, 108, 255, 0.16);
  display: inline-block;
  background-size: 12px 12px;
  box-shadow: inset 0 0 0 1px rgba(124, 108, 255, 0.25);
}

.service-box-price .label::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237c6cff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9h12v8H6z'/><path d='M9 9V7h6v2'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}

.service-box-notes .label::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237c6cff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M7 7h10M7 12h6M7 17h8'/><path d='M5 7h0M5 12h0M5 17h0'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}

.service-box-cta .label::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237c6cff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='7'/><path d='M12 8v4l3 2'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}

#service-notes li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(124, 108, 255, 0.9);
  top: 6px;
}

.price-row {
  background: rgba(124, 108, 255, 0.07);
  border: 1px solid rgba(124, 108, 255, 0.18);
  border-radius: 12px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.price-row:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 108, 255, 0.32);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.price-row .label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
}

.price-row .label::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(124, 108, 255, 0.14);
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.price-row:nth-child(1) .label::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237c6cff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M12 6v6l4 2'/><circle cx='12' cy='12' r='7'/></svg>");
}

.price-row:nth-child(2) .label::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237c6cff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M6 7h12v10H6z'/><path d='M9 7V5h6v2'/></svg>");
}

.price-row:nth-child(3) .label::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237c6cff' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M7 9h10M7 13h10'/><path d='M9 5h6l2 4H7z'/></svg>");
}

.service-modal-overlay.active .price-row,
.service-modal-overlay.active #service-notes li {
  opacity: 0;
  transform: translateY(8px);
  animation: modalFadeUp 420ms ease forwards;
}

.service-modal-overlay.active .price-row:nth-child(1) { animation-delay: 120ms; }
.service-modal-overlay.active .price-row:nth-child(2) { animation-delay: 190ms; }
.service-modal-overlay.active .price-row:nth-child(3) { animation-delay: 260ms; }
.service-modal-overlay.active #service-notes li:nth-child(1) { animation-delay: 140ms; }
.service-modal-overlay.active #service-notes li:nth-child(2) { animation-delay: 210ms; }
.service-modal-overlay.active #service-notes li:nth-child(3) { animation-delay: 280ms; }

@media (prefers-reduced-motion: reduce) {
  .service-modal-overlay.active .modal-section,
  .service-modal-overlay.active .service-highlight-item,
  .service-modal-overlay.active .service-box,
  .service-modal-overlay.active .modal-hint,
  .service-modal-overlay.active .price-row,
  .service-modal-overlay.active #service-notes li {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .service-modal-overlay.active .service-modal { animation: none; }
}

@keyframes modalRise {
  from { opacity: 0; transform: translateY(14px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes modalFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .modal-section { padding: 10px 12px 10px 16px; }
  .modal-title { font-size: 13px; }
}
