:root {
  --bg: #eef3ff;
  --surface: rgba(255, 255, 255, 0.98);
  --surface-strong: #ffffff;
  --text: #183777;
  --muted: #5e6f8f;
  --line: rgba(26, 67, 157, 0.16);
  --primary: #1f4fbf;
  --primary-2: #12398f;
  --accent: #16b8ac;
  --warning: #f29a2e;
  --success: #34b56f;
  --danger: #d84f6a;
  --sky: #eaf1ff;
  --mint: #e8fbf7;
  --peach: #fff0e1;
  --sand: #fff1d4;
  --shadow: 0 20px 46px rgba(31, 79, 191, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max: 1180px;
  --sans: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 4% 4%, rgba(242, 154, 46, 0.22), transparent 3.2rem),
    radial-gradient(circle at 88% 3%, rgba(22, 184, 172, 0.18), transparent 3rem),
    radial-gradient(circle at 94% 1%, rgba(31, 79, 191, 0.14), transparent 4.8rem),
    linear-gradient(180deg, #f7f9ff 0%, #eff4ff 48%, #e9f0ff 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.section { padding: 88px 0; }

.card,
.hero-card,
.service-card,
.step-card,
.review-card,
.review-compose-card,
.selection-card,
.footer-card {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(22, 184, 172, 0.14);
  border: 1px solid rgba(22, 184, 172, 0.2);
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(22, 184, 172, 0.14);
  animation: sectionDotBlink 2.15s ease-in-out infinite;
}
.section-head { max-width: 760px; margin-bottom: 22px; }
.compact-head { margin-bottom: 18px; }
.section-head h2 {
  margin: 14px 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--primary);
}
.section-head p { margin: 0; color: var(--muted); font-size: 1rem; }

header.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(248, 250, 255, 0.9);
  border-bottom: 1px solid rgba(31, 79, 191, 0.12);
}
.header-stack { display: flex; flex-direction: column; }
.header-top {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header-icons,
.header-actions,
.desktop-nav { display: flex; align-items: center; }
.header-icons { gap: 8px; }
.header-actions { gap: 10px; }
.desktop-nav {
  gap: 22px;
  padding-bottom: 14px;
}
.desktop-nav a {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.93rem;
  transition: color .2s ease;
}
.desktop-nav a:hover { color: var(--primary); }

.lang-switch {
  --count: 4;
  --active: 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  min-width: 290px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(31, 79, 191, 0.12);
  box-shadow: 0 10px 28px rgba(31, 79, 191, 0.1);
  overflow: hidden;
}
.lang-thumb {
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 6px;
  width: calc((100% - 12px - ((var(--count) - 1) * 4px)) / var(--count));
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), #2f63de);
  box-shadow: 0 12px 22px rgba(31, 79, 191, 0.26);
  transform: translateX(calc(var(--active) * (100% + 4px)));
  transition: transform .38s cubic-bezier(.22, 1, .36, 1), box-shadow .28s ease;
}
.lang-option {
  position: relative;
  z-index: 1;
  border: 0;
  background: transparent;
  color: var(--primary);
  font-weight: 800;
  font-size: 0.86rem;
  padding: 10px 12px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: color .28s ease, transform .2s ease;
}
.lang-option:hover { transform: translateY(-1px); }
.lang-option.active { color: #fff; }
.lang-option:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.82);
}
.lang-option .lang-code { letter-spacing: 0.02em; }

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(39, 73, 150, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--primary);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.menu-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}
.mobile-panel { display: none; padding-bottom: 16px; }
.mobile-panel.open { display: block; }
.mobile-nav { display: grid; gap: 8px; padding-top: 8px; }
.mobile-nav a {
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--primary);
  font-weight: 700;
}

.btn,
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.94rem;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn,
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 16px 32px rgba(31, 79, 191, 0.24);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.96);
  color: var(--primary);
  border-color: rgba(39, 73, 150, 0.12);
}
.btn:hover,
.btn-primary:hover,
.btn-secondary:hover { transform: translateY(-1px); }

.desktop-nav,
.mobile-panel,
main,
.site-footer {
  transition: opacity .12s ease;
}

.hero { padding: 52px 0 24px; }
.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 52px);
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 22px auto 22px 22px;
  width: 14px;
  border-radius: 999px;
  background: var(--accent);
}
.hero-card::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 26px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 79, 191, 0.18), transparent 62%);
}
.hero-card h1 {
  margin: 6px 0 14px 28px;
  color: var(--primary);
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  margin-left: 28px;
}

#about .card,
.review-compose-card,
.selection-card,
.footer-card { border-radius: var(--radius-lg); }
#about .card { padding: 28px; }
.review-compose-card { padding: clamp(22px, 4vw, 36px); }
.selection-card { padding: 24px; margin-top: 18px; background: linear-gradient(180deg, #eef4ff 0%, #e8f0ff 100%); }
.footer-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 24px;
}
.footer-card strong { color: var(--primary); }
.footer-card p { margin: 4px 0 0; color: var(--muted); font-size: 0.88rem; }

.services-grid,
.steps-grid,
.reviews-grid,
.field-grid {
  display: grid;
  gap: 16px;
}
.services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.steps-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.reviews-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); align-items: stretch; }
.reviews-grid.is-single-page { grid-template-columns: minmax(0, 1fr); max-width: 420px; }
.field-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }

.service-card,
.step-card,
.review-card {
  height: 100%;
  border-radius: 24px;
  padding: 22px;
}

.step-card:nth-child(3n + 1),
.review-card:nth-child(3n + 1) { background: linear-gradient(180deg, #eef4ff 0%, #e8f0ff 100%); }
.step-card:nth-child(3n + 2),
.review-card:nth-child(3n + 2) { background: var(--mint); }
.step-card:nth-child(3n),
.review-card:nth-child(3n) { background: var(--peach); }

.service-card {
  --tone-rgb: 31, 79, 191;
  --tone-strong: var(--primary);
  --tone-soft: #eef4ff;
  --tone-surface: linear-gradient(180deg, #f4f7ff 0%, #edf2ff 100%);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 244px;
  padding: 30px 28px 26px;
  border-radius: 34px;
  overflow: hidden;
  cursor: pointer;
  background: var(--tone-surface);
  border: 1px solid rgba(var(--tone-rgb), 0.14);
  box-shadow: 0 20px 46px rgba(var(--tone-rgb), 0.10);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  inset: auto -36px -54px auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--tone-rgb), 0.14), transparent 64%);
  pointer-events: none;
}
.service-card:hover { transform: translateY(-3px); }
.service-card.tone-0 {
  --tone-rgb: 31, 79, 191;
  --tone-strong: #1f4fbf;
  --tone-soft: #dfe8ff;
  --tone-surface: linear-gradient(180deg, #eef4ff 0%, #e8f0ff 100%);
}
.service-card.tone-1 {
  --tone-rgb: 22, 184, 172;
  --tone-strong: #16b8ac;
  --tone-soft: #d9faf5;
  --tone-surface: linear-gradient(180deg, #eefdfa 0%, #e6faf6 100%);
}
.service-card.tone-2 {
  --tone-rgb: 242, 154, 46;
  --tone-strong: #f29a2e;
  --tone-soft: #ffedd9;
  --tone-surface: linear-gradient(180deg, #fff3e4 0%, #fff0de 100%);
}
.service-card.tone-3 {
  --tone-rgb: 52, 181, 111;
  --tone-strong: #34b56f;
  --tone-soft: #def6e7;
  --tone-surface: linear-gradient(180deg, #edfdf3 0%, #e6f9ee 100%);
}
.service-card.tone-4 {
  --tone-rgb: 166, 99, 204;
  --tone-strong: #8e52c5;
  --tone-soft: #f0e5fb;
  --tone-surface: linear-gradient(180deg, #f7f0ff 0%, #f1e8ff 100%);
}
.service-card.tone-5 {
  --tone-rgb: 233, 90, 128;
  --tone-strong: #df5b82;
  --tone-soft: #ffe2eb;
  --tone-surface: linear-gradient(180deg, #fff0f5 0%, #ffe6ee 100%);
}
.service-card.tone-6 {
  --tone-rgb: 66, 140, 245;
  --tone-strong: #428cf5;
  --tone-soft: #e1eeff;
  --tone-surface: linear-gradient(180deg, #eef5ff 0%, #e6f0ff 100%);
}
.service-card.is-selected {
  border-color: rgba(var(--tone-rgb), 0.44);
  background: linear-gradient(180deg, rgba(var(--tone-rgb), 0.18) 0%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow: 0 24px 48px rgba(var(--tone-rgb), 0.22), 0 0 0 1px rgba(var(--tone-rgb), 0.18) inset;
}
.service-card.is-selected::after {
  background: radial-gradient(circle, rgba(var(--tone-rgb), 0.24), transparent 64%);
}
.service-icon,
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1rem;
  color: var(--primary);
  background: rgba(31, 79, 191, 0.12);
  border: 1px solid rgba(31, 79, 191, 0.14);
  margin-bottom: 16px;
}
.service-card .service-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 26px;
  border-radius: 24px;
  font-size: 1.12rem;
  color: #fff;
  background: var(--tone-strong);
  border: none;
  box-shadow: 0 18px 34px rgba(var(--tone-rgb), 0.22);
}
.service-card h3,
.step-card h3 {
  margin: 0 0 10px;
  font-size: 1.04rem;
  color: var(--primary);
}
.service-card h3 {
  margin: 0;
  font-size: clamp(1.12rem, 2vw, 1.34rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.service-copy {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}
.step-card p,
.review-card p,
#about .card p { margin: 0; color: var(--muted); }
.service-card-actions {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
}
.service-toggle {
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid rgba(var(--tone-rgb), 0.18);
  background: rgba(255, 255, 255, 0.82);
  color: var(--tone-strong);
  font-weight: 800;
  font-size: 0.98rem;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(var(--tone-rgb), 0.08);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
.service-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(var(--tone-rgb), 0.12);
}
.service-card.is-selected .service-toggle {
  background: var(--tone-strong);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 14px 28px rgba(var(--tone-rgb), 0.22);
}

.selection-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.selection-top strong { color: var(--primary); font-size: 1.05rem; }
.selection-top p { margin: 6px 0 0; color: var(--muted); }
.selection-count {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 800;
  background: var(--accent);
  color: white;
}
.selection-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.selection-pill,
.selection-empty {
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 0.87rem;
  font-weight: 700;
}
.selection-pill {
  background: rgba(22, 184, 172, 0.14);
  color: var(--accent);
  border: 1px solid rgba(22, 184, 172, 0.2);
}
.selection-pill.tone-0 {
  background: rgba(31, 79, 191, 0.12);
  color: #1f4fbf;
  border-color: rgba(31, 79, 191, 0.18);
}
.selection-pill.tone-1 {
  background: rgba(22, 184, 172, 0.14);
  color: #16b8ac;
  border-color: rgba(22, 184, 172, 0.22);
}
.selection-pill.tone-2 {
  background: rgba(242, 154, 46, 0.16);
  color: #da861e;
  border-color: rgba(242, 154, 46, 0.24);
}
.selection-pill.tone-3 {
  background: rgba(52, 181, 111, 0.14);
  color: #279a5a;
  border-color: rgba(52, 181, 111, 0.22);
}
.selection-pill.tone-4 {
  background: rgba(142, 82, 197, 0.14);
  color: #8e52c5;
  border-color: rgba(142, 82, 197, 0.22);
}
.selection-pill.tone-5 {
  background: rgba(223, 91, 130, 0.14);
  color: #df5b82;
  border-color: rgba(223, 91, 130, 0.22);
}
.selection-pill.tone-6 {
  background: rgba(66, 140, 245, 0.14);
  color: #428cf5;
  border-color: rgba(66, 140, 245, 0.22);
}
.selection-empty {
  background: rgba(40, 73, 152, 0.06);
  color: var(--muted);
  border: 1px solid rgba(40, 73, 152, 0.08);
}
.selection-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.action-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid rgba(39, 73, 150, 0.1);
  font-weight: 700;
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.94);
  color: var(--primary);
  transition: transform .2s ease, box-shadow .2s ease;
}
.action-link:hover { transform: translateY(-1px); }
.action-whatsapp {
  background: #25D366;
  border-color: #25D366;
  color: white;
}
.action-icon { font-size: 1.05rem; }

.slider-shell { position: relative; display: grid; gap: 14px; }
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.slider-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(31, 79, 191, 0.2);
  cursor: pointer;
  opacity: 0.55;
  transition: background .2s ease, transform .2s ease, opacity .2s ease, box-shadow .2s ease, width .2s ease;
}
.slider-dots button:hover {
  opacity: 1;
  transform: translateY(-1px) scale(1.08);
}
.slider-dots button.active {
  width: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #22d3c5);
  opacity: 1;
  box-shadow: 0 0 0 7px rgba(22, 184, 172, 0.16), 0 8px 18px rgba(22, 184, 172, 0.22);
}
#steps-dots button.active,
#reviews-dots button.active {
  animation: none;
}

.review-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: rgba(40, 73, 152, 0.1);
  color: var(--primary-2);
  font-size: 0.9rem;
  font-weight: 900;
}
.review-meta strong { display: block; color: var(--primary); font-size: 0.95rem; }
.review-meta span { display: block; color: var(--muted); font-size: 0.82rem; margin-top: 2px; }
.stars,
.static-stars {
  color: var(--warning);
  letter-spacing: 0.08em;
  font-size: 0.92rem;
  white-space: nowrap;
}
.reviews-pages {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.reviews-pages button {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(39, 73, 150, 0.12);
  background: rgba(255, 255, 255, 0.96);
  color: var(--primary);
  font-weight: 800;
  cursor: pointer;
  transition: .2s ease;
}
.reviews-pages button:hover,
.reviews-pages button.active {
  background: linear-gradient(135deg, var(--primary), #2f63de);
  color: white;
  box-shadow: 0 12px 24px rgba(31, 79, 191, 0.24);
}

.review-compose-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.review-form { display: grid; gap: 14px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label,
.rating-field label { color: var(--primary); font-size: 0.9rem; font-weight: 700; }
input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(39, 73, 150, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
  padding: 13px 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
textarea { min-height: 130px; resize: vertical; }
input:focus,
textarea:focus,
select:focus {
  border-color: rgba(47, 183, 171, 0.44);
  box-shadow: 0 0 0 4px rgba(47, 183, 171, 0.12);
}
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 15px;
  border-radius: 16px;
  background: rgba(40, 73, 152, 0.04);
  border: 1px solid rgba(40, 73, 152, 0.06);
}
.checkbox input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  flex: 0 0 auto;
}
.checkbox label { color: var(--muted); font-size: 0.88rem; font-weight: 600; }

.rating-field { margin-top: 4px; }
.rating-selector { display: flex; gap: 8px; margin-top: 8px; }
.star-btn {
  border: none;
  padding: 0;
  background: none;
  color: #d4d8e2;
  font-size: 1.6rem;
  cursor: pointer;
  transition: color .15s ease, transform .15s ease;
}
.star-btn.active,
.star-btn:hover {
  color: var(--warning);
  transform: scale(1.14);
}

.form-status {
  display: none;
  padding: 13px 15px;
  border-radius: 14px;
  font-weight: 700;
}
.form-status.success {
  background: rgba(92, 186, 130, 0.12);
  color: #1f6f45;
  border: 1px solid rgba(92, 186, 130, 0.24);
}
.form-status.error {
  background: rgba(220, 91, 103, 0.12);
  color: #9b2e3d;
  border: 1px solid rgba(220, 91, 103, 0.22);
}

footer.site-footer { padding: 24px 0 40px; }

@keyframes sectionDotBlink {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 7px rgba(22, 184, 172, 0.14);
    filter: brightness(1);
  }
  50% {
    opacity: 0.42;
    transform: scale(0.9);
    box-shadow: 0 0 0 10px rgba(22, 184, 172, 0.08);
    filter: brightness(1.08);
  }
}

.slider-track.is-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}
.slider-track.is-slider::-webkit-scrollbar { display: none; }
.steps-grid.is-slider .step-card,
.reviews-grid.is-slider .review-card {
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: start;
}

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

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

@media (max-width: 900px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .service-card { min-height: 212px; padding: 24px 22px 22px; border-radius: 28px; }
  .service-card .service-icon { width: 60px; height: 60px; border-radius: 20px; margin-bottom: 20px; }
  .service-card-actions { align-items: center; }
  .service-toggle { padding: 11px 22px; width: auto; }
  .lang-switch { min-width: 208px; }
  .lang-option { padding: 9px 8px; gap: 6px; font-size: 0.78rem; }
  .section { padding: 60px 0; }
  .hero { padding: 20px 0 16px; }
  .services-grid,
  .field-grid { grid-template-columns: 1fr; }
  .hero-card h1,
  .hero-actions { margin-left: 0; }
  .hero-card::before { display: none; }
  .hero-card::after { width: 64px; height: 64px; }
  .hero-actions,
  .selection-actions { flex-direction: column; align-items: stretch; }
  .btn,
  .btn-primary,
  .btn-secondary { width: 100%; }
  .review-compose-head,
  .selection-top,
  .review-head { flex-direction: column; align-items: flex-start; }
  .selection-card { margin-top: 24px; }
}

@media (max-width: 520px) {
  .reviews-grid.is-single-page { max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .lang-thumb,
  .lang-option,
  .desktop-nav,
  .mobile-panel,
  main,
  .site-footer { transition: none !important; }
}


section[id] { scroll-margin-top: 112px; }

.service-body { display: grid; gap: 10px; }
.service-detail { display: inline-flex; align-items: center; width: fit-content; max-width: 100%; padding: 8px 12px; border-radius: 999px; background: rgba(var(--tone-rgb), 0.12); color: var(--tone-strong); border: 1px solid rgba(var(--tone-rgb), 0.16); font-size: 0.86rem; font-weight: 800; line-height: 1.2; }
.service-meta-row { display: flex; flex-wrap: wrap; gap: 8px; }
.service-meta-chip { display: inline-flex; align-items: center; padding: 8px 12px; border-radius: 999px; background: rgba(var(--tone-rgb), 0.14); border: 1px solid rgba(var(--tone-rgb), 0.18); color: var(--tone-strong); font-size: 0.82rem; font-weight: 900; letter-spacing: 0.01em; line-height: 1; }
.service-meta-chip-secondary { background: rgba(255, 255, 255, 0.82); }
.service-note { margin: 0; color: var(--muted); font-size: 0.88rem; line-height: 1.45; }
.pricing-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.pricing-jump { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 10px 16px; border-radius: 999px; background: rgba(255,255,255,.92); border: 1px solid rgba(31, 79, 191, 0.12); color: var(--primary); font-weight: 800; font-size: 0.9rem; box-shadow: 0 12px 24px rgba(31, 79, 191, 0.08); transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.pricing-jump:hover { transform: translateY(-1px); box-shadow: 0 16px 28px rgba(31, 79, 191, 0.12); }
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; align-items: start; }
.faq-card { grid-column: 1 / -1; }
.pricing-card-head-compact { margin-bottom: 12px; }
.pricing-card, .faq-card { padding: 24px; border-radius: 28px; height: 100%; display: flex; flex-direction: column; }
.pricing-card { background: linear-gradient(180deg, rgba(255,255,255,.98) 0%, #f6f9ff 100%); }
.faq-card { background: linear-gradient(180deg, #fff9f1 0%, #fffdf8 100%); }
.pricing-card-head h2 { margin: 0 0 8px; font-size: clamp(1.35rem, 2vw, 1.7rem); line-height: 1.08; color: var(--primary); }
.pricing-card-head p { margin: 0 0 18px; color: var(--muted); }
.price-table-wrap { overflow: auto; border-radius: 18px; border: 1px solid rgba(31, 79, 191, 0.12); background: rgba(255, 255, 255, 0.96); }
.price-table { width: 100%; border-collapse: collapse; min-width: 420px; }
.price-table th, .price-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid rgba(31, 79, 191, 0.08); vertical-align: top; }
.price-table thead th { background: var(--primary); color: #fff; font-size: 0.94rem; font-weight: 800; }
.price-table tbody tr:nth-child(even) td { background: rgba(31, 79, 191, 0.04); }
.price-table td:last-child { font-weight: 900; white-space: nowrap; color: #102f78; }
.price-table td:first-child, .price-table td:nth-child(2) { word-break: break-word; }
.price-table tbody tr:last-child td { border-bottom: none; }
.pricing-note { margin: 16px 0 0; padding: 14px 16px; border-radius: 18px; background: rgba(31, 79, 191, 0.05); border: 1px solid rgba(31, 79, 191, 0.08); color: var(--muted); font-size: 0.92rem; }
.faq-list { display: grid; gap: 10px; }
.faq-item { border-radius: 20px; background: rgba(255, 255, 255, 0.94); border: 1px solid rgba(31, 79, 191, 0.08); overflow: hidden; }
.faq-question { width: 100%; border: 0; background: transparent; padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--primary); font-weight: 800; font-size: 0.96rem; text-align: left; cursor: pointer; }
.faq-question:hover { background: rgba(31, 79, 191, 0.03); }
.faq-icon { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: rgba(31, 79, 191, 0.08); color: var(--primary); font-size: 1.1rem; line-height: 1; transition: transform .22s ease, background .22s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(22, 184, 172, 0.16); color: var(--accent); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .28s ease, padding .28s ease; padding: 0 18px; }
.faq-answer p { margin: 0; color: var(--muted); font-size: 0.92rem; line-height: 1.6; }
.faq-item.open .faq-answer { max-height: 240px; padding: 0 18px 16px; }
.pricing-card-head { margin-bottom: 16px; }
.pricing-card-head h2 { margin: 0 0 8px; font-size: clamp(1.35rem, 2.6vw, 1.8rem); line-height: 1.12; color: var(--primary); }
.pricing-card-head p { margin: 0; color: var(--muted); }
@media (max-width: 980px) { .pricing-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) { body { padding-bottom: 84px; } .service-detail { font-size: 0.8rem; } .service-meta-chip { font-size: 0.78rem; } .pricing-nav { gap: 8px; margin-bottom: 14px; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 2px; scroll-snap-type: x proximity; } .pricing-jump { flex: 0 0 auto; scroll-snap-align: start; } .pricing-card, .faq-card { padding: 20px; border-radius: 24px; }  }
@media (max-width: 680px) { .price-table { min-width: 0; } .price-table thead { display: none; } .price-table, .price-table tbody, .price-table tr, .price-table td { display: block; width: 100%; } .price-table tbody { display: grid; gap: 12px; } .price-table tr { border: 1px solid rgba(31, 79, 191, 0.10); border-radius: 18px; overflow: hidden; background: rgba(255, 255, 255, 0.96); box-shadow: 0 10px 22px rgba(31, 79, 191, 0.06); } .price-table td { display: flex; justify-content: space-between; gap: 16px; padding: 12px 14px; border-bottom: 1px solid rgba(31, 79, 191, 0.06); text-align: right; } .price-table td:last-child { border-bottom: none; } .price-table td::before { content: attr(data-label); flex: 1 1 auto; text-align: left; font-weight: 800; color: var(--primary); } .price-table td:first-child { background: rgba(31, 79, 191, 0.04); } }

/* ── NAV PRICING BUTTON ── */
.nav-pricing-btn {
  border: 1px solid rgba(31, 79, 191, 0.18);
  background: rgba(31, 79, 191, 0.06);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.93rem;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.nav-pricing-btn:hover {
  background: rgba(31, 79, 191, 0.12);
  transform: translateY(-1px);
}
.mobile-pricing-btn {
  width: 100%;
  text-align: left;
  padding: 13px 15px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.96);
  font-size: 1rem;
}

/* ── PRICING DRAWER ── */
.pricing-drawer {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
  visibility: hidden;
}
.pricing-drawer.open {
  pointer-events: all;
  visibility: visible;
}
.pricing-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 30, 80, 0.44);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity .32s ease;
}
.pricing-drawer.open .pricing-drawer-backdrop {
  opacity: 1;
}
.pricing-drawer-panel {
  position: relative;
  width: 100%;
  max-height: 92dvh;
  background: var(--bg);
  border-radius: 28px 28px 0 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(100%);
  transition: transform .36s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 -24px 64px rgba(31,79,191,0.18);
}
.pricing-drawer.open .pricing-drawer-panel {
  transform: translateY(0);
}
.pricing-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.pricing-drawer-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(31,79,191,0.12);
  background: rgba(255,255,255,0.96);
  color: var(--primary);
  font-size: 1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s ease, transform .2s ease;
}
.pricing-drawer-close:hover {
  background: rgba(31,79,191,0.08);
  transform: scale(1.08);
}
.pricing-drawer-body {
  overflow-y: auto;
  padding: 20px 24px 40px;
  flex: 1;
  overscroll-behavior: contain;
}
@media (min-width: 769px) {
  .pricing-drawer {
    align-items: center;
    justify-content: center;
  }
  .pricing-drawer-panel {
    width: min(900px, 94vw);
    max-height: 88dvh;
    border-radius: 28px;
    transform: translateY(24px) scale(0.97);
    opacity: 0;
    transition: transform .32s cubic-bezier(.22,1,.36,1), opacity .28s ease;
  }
  .pricing-drawer.open .pricing-drawer-panel {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* ── SPACING: services → reviews ── */
#services { padding-bottom: 40px; }
#reviews  { padding-top: 40px; }
@media (max-width: 768px) {
  #services { padding-bottom: 24px; }
  #reviews  { padding-top: 24px; }
  .reviews-pages { display: none; }
}

/* ── ABOUT + PROCESS MERGED ── */
.section-about-process { padding-bottom: 32px; }
.about-process-wrap { display: grid; gap: 24px; }
.about-card { border-radius: var(--radius-lg); padding: 28px; }
.about-card h2 { margin: 14px 0 10px; font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--primary); line-height: 1.1; letter-spacing: -0.02em; }
.steps-compact-wrap { display: grid; gap: 14px; }
.steps-eyebrow { margin-bottom: 4px; }

/* Compact step cards */
.steps-compact-wrap .step-card {
  padding: 18px 20px;
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.steps-compact-wrap .step-num {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 14px;
  font-size: 0.88rem;
  margin-bottom: 0;
}
.steps-compact-wrap .step-card h3 { margin: 0 0 4px; font-size: 0.97rem; }
.steps-compact-wrap .step-card p  { font-size: 0.88rem; }
.steps-compact-wrap .steps-grid {
  grid-template-columns: repeat(2, minmax(0,1fr));
}
@media (max-width: 680px) {
  .steps-compact-wrap .steps-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .steps-compact-wrap .step-card {
    flex-direction: column;
    gap: 10px;
  }
}

/* ── STICKY CTA ── */
body { padding-bottom: 84px; }

.sticky-cta-link {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.96rem;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background .25s ease, box-shadow .25s ease;
}

.sticky-cta-single {
  background: linear-gradient(180deg, #2f5fd5 0%, #244cb0 100%);
  color: #fff;
  box-shadow: 0 16px 26px rgba(37, 76, 176, 0.24);
}

.sticky-cta-single.has-selection {
  background: linear-gradient(180deg, #16b8ac 0%, #0f948a 100%);
  box-shadow: 0 16px 26px rgba(22, 184, 172, 0.22);
}

.sticky-cta-count {
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 900;
}
.sticky-cta-count[hidden] { display: none; }

.mobile-sticky-cta {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 16px;
  z-index: 1200;
  display: block;
  padding: 8px;
  border-radius: 999px;
  border: 1px solid rgba(31, 79, 191, 0.12);
  background: rgba(248, 250, 255, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 44px rgba(31, 79, 191, 0.16);
  width: auto;
  min-width: 260px;
  max-width: calc(100vw - 32px);
  /* Ascunsă implicit pe desktop; apare doar cu selecție */
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease, bottom .25s ease;
  transform: translateX(-50%) translateY(8px);
}
.mobile-sticky-cta.cta-visible {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
@media (max-width: 768px) {
  body { padding-bottom: 84px; }
  .mobile-sticky-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
    transform: none !important;
    width: auto;
    min-width: 0;
    border-radius: 24px;
    /* Pe mobile mereu vizibilă — ignoră opacity/pointer-events de pe desktop */
    opacity: 1 !important;
    pointer-events: all !important;
  }
  .sticky-cta-link { width: 100%; }
}

/* ── CONTRACT OVERLAY ── */
.contract-overlay {
  position: fixed; inset: 0; z-index: 2100;
  display: flex; align-items: flex-end;
  pointer-events: none; visibility: hidden;
}
.contract-overlay.open { pointer-events: all; visibility: visible; }
.contract-backdrop {
  position: absolute; inset: 0;
  background: rgba(15,30,80,0.5);
  backdrop-filter: blur(4px);
  opacity: 0; transition: opacity .3s ease;
}
.contract-overlay.open .contract-backdrop { opacity: 1; }
.contract-panel {
  position: relative; width: 100%;
  max-height: 94dvh;
  background: #fff;
  border-radius: 28px 28px 0 0;
  display: flex; flex-direction: column;
  overflow: hidden;
  transform: translateY(100%);
  transition: transform .36s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 -24px 64px rgba(31,79,191,0.2);
}
.contract-overlay.open .contract-panel { transform: translateY(0); }
.contract-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.contract-panel-header h2 {
  margin: 0; font-size: 1.1rem; color: var(--primary);
}
.contract-close {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(31,79,191,0.12);
  background: rgba(255,255,255,0.96);
  color: var(--primary); font-size: 0.95rem;
  cursor: pointer; display: grid; place-items: center;
  transition: background .2s;
}
.contract-close:hover { background: rgba(31,79,191,0.08); }
.contract-panel-body {
  overflow-y: auto; padding: 20px 24px 36px;
  flex: 1; overscroll-behavior: contain;
  display: grid; gap: 20px;
}

/* Summary table */
.co-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.co-table thead th {
  background: var(--primary); color: #fff;
  padding: 10px 12px; text-align: left;
}
.co-table thead th:last-child { text-align: right; }
.co-table tbody td { padding: 10px 12px; border-bottom: 1px solid rgba(31,79,191,0.08); }
.co-table .price-col { text-align: right; font-weight: 700; color: var(--primary); }
.per-session { font-size: 0.78rem; font-weight: 600; color: var(--muted); }

/* Pricing block */
.co-pricing-block {
  background: linear-gradient(180deg, #eef4ff 0%, #e8f0ff 100%);
  border: 1px solid rgba(31,79,191,0.12);
  border-radius: 16px; padding: 16px;
  display: grid; gap: 10px;
}
.co-pricing-row {
  display: flex; justify-content: space-between;
  align-items: center; font-size: 0.93rem;
}
.co-pricing-row.accent strong {
  font-size: 1.12rem; color: var(--accent);
}
.co-pricing-row.accent span:first-child { font-weight: 700; }
.co-pricing-row.muted { color: var(--muted); font-size: 0.86rem; }

/* Form section */
.co-form-label {
  font-weight: 700; color: var(--primary);
  font-size: 0.9rem; margin: 0 0 10px;
}
.co-form-section { display: grid; gap: 10px; }

/* Actions */
.co-actions { display: grid; gap: 10px; }
.co-generate {
  display: flex; align-items: center; justify-content: center; gap: 8px;
}

@media (min-width: 769px) {
  .contract-overlay { align-items: center; justify-content: center; }
  .contract-panel {
    width: min(600px, 94vw); max-height: 90dvh;
    border-radius: 28px;
    transform: translateY(20px) scale(0.97);
    opacity: 0;
    transition: transform .32s cubic-bezier(.22,1,.36,1), opacity .28s ease;
  }
  .contract-overlay.open .contract-panel {
    transform: translateY(0) scale(1); opacity: 1;
  }
}

/* ── SESSION OPTIONS (contract modal) ── */
.co-session-block { display: grid; gap: 8px; }
.co-session-options { display: grid; gap: 8px; margin-top: 4px; }
.co-session-opt {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(31,79,191,0.12);
  background: rgba(255,255,255,0.9);
  cursor: pointer;
  font-size: 0.9rem; font-weight: 600;
  transition: border-color .2s, background .2s;
}
.co-session-opt:has(input:checked) {
  border-color: var(--accent);
  background: rgba(22,184,172,0.08);
}
.co-session-opt input { accent-color: var(--accent); width: 16px; height: 16px; flex: 0 0 auto; }

/* ── WHATSAPP BTN — apare doar după generare contract ── */
#co-whatsapp-btn {
  display: none;
  animation: fadeSlideUp .35s ease forwards;
}
#co-whatsapp-btn[data-ready="1"] {
  display: flex;
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.co-step-hint {
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
  padding: 6px 0 0;
}

/* ── SUBTOTAL HEADER in contract modal ── */
.co-subtotal-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 16px;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  font-size: 1rem;
  margin-bottom: 2px;
}
.co-subtotal-header strong { font-size: 1.18rem; }

/* Volume badge in thesis table */
.price-table-volume {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(31,79,191,0.08);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  vertical-align: middle;
}

/* Review card explicit color classes (for dynamically rendered cards) */
.review-card.mint-bg  { background: var(--mint); }
.review-card.peach-bg { background: var(--peach); }

/* ── CALCULATOR BAC ── */
.calc-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px 20px;
  box-shadow: 0 14px 36px rgba(31,79,191,0.1);
  border: 1px solid rgba(31,79,191,0.1);
  max-width: 600px;
  margin: 0 auto;
}
.calc-header h3 {
  font-size: 1.15rem;
  font-weight: 900;
  color: #1f4fbf;
  margin: 0 0 6px;
}
.calc-header p {
  font-size: 0.88rem;
  color: #5e6f8f;
  margin: 0 0 18px;
}
.calc-mode-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.calc-mode-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 10px;
  border-radius: 14px;
  border: 1.5px solid rgba(31,79,191,0.15);
  background: #fafbff;
  cursor: pointer;
  transition: all .18s;
  text-align: center;
  gap: 3px;
}
.calc-mode-btn strong { font-size: 0.9rem; color: #183777; }
.calc-mode-btn span   { font-size: 0.75rem; color: #5e6f8f; }
.calc-mode-btn.active {
  border-color: #1f4fbf;
  background: rgba(31,79,191,0.06);
}
.calc-mode-btn.active strong { color: #1f4fbf; }
.calc-grid { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.calc-item {
  border: 1.5px solid rgba(31,79,191,0.12);
  border-radius: 16px;
  background: #fafbff;
  overflow: hidden;
  transition: border-color .18s;
}
.calc-item.active { border-color: #1f4fbf; background: rgba(31,79,191,0.03); }
.calc-item-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  user-select: none;
}
.calc-item-icon { font-size: 1.4rem; flex-shrink: 0; }
.calc-item-label { flex: 1; }
.calc-item-label strong { display: block; font-size: 0.95rem; color: #183777; }
.calc-item-label span   { font-size: 0.8rem; color: #5e6f8f; }
.calc-item-check {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.85rem; font-weight: 900;
  border: 1.5px solid rgba(31,79,191,0.2);
  background: #fff;
  color: #5e6f8f;
  flex-shrink: 0;
  transition: all .18s;
}
.calc-item.active .calc-item-check {
  background: #1f4fbf;
  border-color: #1f4fbf;
  color: #fff;
}
.calc-slider-wrap {
  padding: 0 16px 16px;
}
.calc-slider-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #5e6f8f;
  margin-bottom: 8px;
}
.calc-range {
  width: 100%;
  accent-color: #1f4fbf;
  cursor: pointer;
}
.calc-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: #aab;
  margin-top: 4px;
}

/* Total */
.calc-total {
  background: linear-gradient(135deg, #eef3ff, #e8f0ff);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid rgba(31,79,191,0.12);
}
.calc-total-rows { margin-bottom: 10px; }
.calc-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 4px 0;
  color: #183777;
  border-bottom: 1px solid rgba(31,79,191,0.08);
}
.calc-discount {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #16b8ac;
  font-weight: 700;
  padding: 8px 0 4px;
}
.calc-total-net {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0 6px;
  border-top: 2px solid rgba(31,79,191,0.12);
  margin-top: 4px;
}
.calc-total-net span  { font-size: 0.9rem; font-weight: 700; color: #183777; }
.calc-total-net strong { font-size: 1.4rem; font-weight: 900; color: #1f4fbf; }
.calc-saving {
  font-size: 0.8rem;
  color: #16b8ac;
  font-weight: 600;
  margin-bottom: 12px;
}
.calc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px;
  border-radius: 999px;
  background: linear-gradient(135deg, #16b8ac, #0f9d93);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(22,184,172,0.22);
  margin-top: 12px;
}

/* ── SERVICES CATEGORIES ── */
.services-category { margin-bottom: 20px; }
.services-category-label {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 800;
  color: #1f4fbf;
  margin-bottom: 0;
  padding: 13px 18px;
  background: rgba(31,79,191,0.06);
  border-radius: 16px;
  border: 1.5px solid rgba(31,79,191,0.12);
  cursor: pointer;
  text-align: left;
  transition: background .18s, border-color .18s;
}
.services-category-label:hover {
  background: rgba(31,79,191,0.1);
  border-color: rgba(31,79,191,0.25);
}
.services-category-label[aria-expanded="true"] {
  border-radius: 16px 16px 0 0;
  border-bottom-color: transparent;
}
.cat-chevron {
  font-size: 1rem;
  transition: transform .2s;
  flex-shrink: 0;
}
.services-category-label[aria-expanded="true"] .cat-chevron {
  transform: rotate(180deg);
}
.cat-grid {
  border: 1.5px solid rgba(31,79,191,0.12);
  border-top: none;
  border-radius: 0 0 16px 16px;
  padding: 12px;
  background: #fafbff;
}
#cat-bac .services-category-label {
  color: #16b8ac;
  border-color: rgba(22,184,172,0.2);
  background: rgba(22,184,172,0.06);
}
#cat-bac .services-category-label:hover { background: rgba(22,184,172,0.12); }
#cat-bac .services-category-label[aria-expanded="true"] { border-bottom-color: transparent; }
#cat-bac .cat-grid { border-color: rgba(22,184,172,0.2); }

/* ── REVIEWS SLIDER DESKTOP ── */
@media (min-width: 769px) {
  #reviews-grid.is-slider {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    scrollbar-width: none;
    cursor: grab;
  }
  #reviews-grid.is-slider:active { cursor: grabbing; }
  #reviews-grid.is-slider::-webkit-scrollbar { display: none; }
  #reviews-grid.is-slider .review-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
  }
}

/* ── CALCULATOR EXTRA ── */
.calc-free-badge {
  display: inline-block;
  background: rgba(22,184,172,0.12);
  color: #0f7a73;
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  margin: 8px 0 12px;
}
.calc-pkg-info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.calc-pkg-chip {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(31,79,191,0.07);
  color: #1f4fbf;
}
.calc-pkg-chip.green { background: rgba(22,184,172,0.1); color: #0f7a73; }
.calc-disc-badge {
  font-size: 0.82rem;
  font-weight: 700;
  color: #16b8ac;
  margin-top: 8px;
  padding: 6px 10px;
  background: rgba(22,184,172,0.1);
  border-radius: 10px;
}
.calc-free-note {
  font-size: 0.82rem;
  color: #16b8ac;
  font-weight: 600;
  margin: 8px 0 4px;
  text-align: center;
}

/* ── BOOKING SECTION ── */
.booking-intro-wrap { display: flex; justify-content: center; }
.booking-intro-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 14px 36px rgba(31,79,191,0.1);
  border: 1px solid rgba(31,79,191,0.1);
  max-width: 520px;
  width: 100%;
  text-align: center;
}
.booking-intro-icon { font-size: 3rem; margin-bottom: 12px; }
.booking-intro-card h3 {
  font-size: 1.2rem;
  font-weight: 900;
  color: #1f4fbf;
  margin: 0 0 10px;
}
.booking-intro-card p {
  font-size: 0.9rem;
  color: #5e6f8f;
  margin: 0 0 18px;
  line-height: 1.5;
}
.booking-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}
.booking-feat {
  background: rgba(31,79,191,0.06);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1f4fbf;
}
.booking-main-btn {
  width: 100%;
  padding: 15px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 800;
  font-size: 1rem;
  background: linear-gradient(135deg, #16b8ac, #0f9d93);
  color: #fff;
  box-shadow: 0 16px 32px rgba(22,184,172,0.25);
  transition: transform .15s, box-shadow .15s;
}
.booking-main-btn:active {
  transform: scale(0.98);
  box-shadow: 0 8px 20px rgba(22,184,172,0.2);
}

/* ── PORTAL NAV LINK ── */
.nav-portal-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(31,79,191,0.08);
  color: #1f4fbf;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid rgba(31,79,191,0.15);
  transition: all .18s;
}
.nav-portal-link:hover {
  background: rgba(31,79,191,0.14);
  border-color: rgba(31,79,191,0.3);
}

/* ── HEADER PORTAL BUTTON ── */
.header-portal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(31,79,191,0.08);
  border: 1.5px solid rgba(31,79,191,0.15);
  font-size: 17px;
  text-decoration: none;
  transition: all .18s;
}
.header-portal-btn:hover {
  background: rgba(31,79,191,0.15);
  border-color: rgba(31,79,191,0.3);
}
/* Hide desktop nav portal link on mobile */
@media (max-width: 768px) {
  .nav-portal-link { display: none; }
}
@media (min-width: 769px) {
  .header-portal-btn { display: none; }
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── BLOG NAV LINK ── */
.nav-blog-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(242,154,46,0.1);
  color: #c47a0a;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid rgba(242,154,46,0.2);
  transition: all .18s;
}
.nav-blog-link:hover { background: rgba(242,154,46,0.18); }
@media (max-width: 768px) { .nav-blog-link { display: none; } }

/* ── APP DOWNLOAD SECTION ── */
.app-download-wrap { display: flex; justify-content: center; }
.app-download-card {
  background: linear-gradient(135deg, #1f4fbf, #2f63de);
  border-radius: 24px;
  padding: 28px 24px;
  max-width: 540px;
  width: 100%;
  color: #fff;
  box-shadow: 0 16px 48px rgba(31,79,191,0.25);
  position: relative;
  overflow: hidden;
}
.app-download-card::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  pointer-events: none;
}
.app-download-left { display: flex; align-items: flex-start; gap: 16px; }
.app-download-icon {
  font-size: 3rem;
  flex-shrink: 0;
  background: rgba(255,255,255,0.12);
  border-radius: 18px;
  width: 64px; height: 64px;
  display: grid; place-items: center;
}
.app-download-card h3 {
  font-size: 1.15rem; font-weight: 900;
  margin: 0 0 6px; color: #fff;
}
.app-download-card p {
  font-size: .85rem; opacity: .9;
  margin: 0 0 14px; line-height: 1.5;
}
.app-download-features {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 18px;
}
.app-download-features span {
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: .75rem; font-weight: 700;
}
.app-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: #fff;
  color: #1f4fbf;
  font-weight: 800;
  font-size: .9rem;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform .15s, box-shadow .15s;
}
.app-download-btn:active { transform: scale(.97); }
