:root {
  --bg: #f8fafc;
  --bg-soft: #eef2f7;
  --text: #0f172a;
  --text-light: #334155;
  --primary: #1e3a5f;
  --primary-dark: #152a45;
  --surface: #ffffff;
  --surface-soft: #f7f9fc;
  --muted: #64748b;
  --border: #d5dfeb;
  --max-width: 1120px;
  --shadow-soft: 0 14px 32px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 18px 42px rgba(15, 23, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(30, 58, 95, 0.08), transparent 42%),
    radial-gradient(circle at 88% 18%, rgba(59, 130, 246, 0.06), transparent 36%),
    #f6f9fc;
}

h1, h2, h3, h4, .hero-content .lead, .feature-card h3, .review-feature__quote {
  font-family: "Manrope", "Inter", "Segoe UI", sans-serif;
  letter-spacing: -0.015em;
}

h1 { letter-spacing: -0.025em; }

img, svg {
  max-width: 100%;
}

.container {
  width: min(var(--max-width), 92%);
  margin: 0 auto;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

.skip-link {
  position: absolute;
  top: -50px;
  left: 10px;
  background: #0f172a;
  color: #fff;
  padding: 0.5rem 0.8rem;
  border-radius: 0.4rem;
  z-index: 999;
}

.skip-link:focus {
  top: 10px;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.93);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(71, 85, 105, 0.5);
  box-shadow: 0 8px 28px rgba(2, 6, 23, 0.28);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.brand {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  text-decoration: none;
  color: #f8fafc;
}

.brand-logo {
  width: auto;
  height: 2.5rem;
  display: block;
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 0.95rem;
}

.brand-text small {
  color: #94a3b8;
  font-size: 0.78rem;
}

/* Mobile: desktop nav hidden, hamburger shown */
.site-nav {
  display: none;
}

.btn.btn-compact {
  display: none;
}

/* ── Hamburger ── */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.6rem;
  margin-left: 0.5rem;
  min-width: 44px;
  min-height: 44px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #f0f6ff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile menu ── */
.mobile-menu {
  display: block;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  background: rgba(10, 20, 40, 0.97);
  backdrop-filter: blur(10px);
  z-index: 49;
  padding: 1rem 1.2rem 1.4rem;
  border-bottom: 1px solid rgba(71, 85, 105, 0.4);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__link {
  display: block;
  color: #dbe5f2;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.95rem 0;
  min-height: 44px;
  border-bottom: 1px solid rgba(71, 85, 105, 0.25);
}

.mobile-menu__link:hover {
  color: #fff;
}

.mobile-menu__cta {
  display: block;
  text-align: center;
  margin-top: 1rem;
}

/* ── Hero — mobile first: single column, centred ── */
.hero {
  background: linear-gradient(135deg, #0f1f35, #1e3a5f);
  color: #f0f6ff;
  padding: 3.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  width: 100%;
  height: 50px;
  z-index: 2;
  display: block;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 15%, rgba(59, 130, 246, 0.18), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(30, 58, 95, 0.3), transparent 45%);
  pointer-events: none;
}

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

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

.hero-content {
  max-width: 100%;
}

/* ── Hero showcase (logo + orbit) ── */
.hero-showcase {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  order: -1;
  flex-shrink: 0;
}

.hero-showcase__glow {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(96, 165, 250, 0.55),
    rgba(30, 64, 175, 0.25) 45%,
    transparent 72%
  );
  filter: blur(22px);
  animation: pulse 5s ease-in-out infinite;
}

.hero-showcase__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(147, 197, 253, 0.35);
  pointer-events: none;
}

.hero-showcase__ring--outer {
  inset: 0;
  animation: spin 38s linear infinite;
}

.hero-showcase__ring--inner {
  inset: 16%;
  border-style: solid;
  border-color: rgba(147, 197, 253, 0.18);
  animation: spin 22s linear infinite reverse;
}

.hero-showcase__disc {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 58%;
  height: 58%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #2b4a78 0%, #14284a 55%, #0a1a35 100%);
  box-shadow:
    0 28px 70px rgba(8, 20, 45, 0.7),
    inset 0 2px 0 rgba(255, 255, 255, 0.08),
    0 0 0 2px rgba(96, 165, 250, 0.55),
    0 0 0 8px rgba(96, 165, 250, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14%;
  z-index: 2;
}

.hero-showcase__caption {
  position: absolute;
  left: 50%;
  bottom: -2.2rem;
  transform: translateX(-50%);
  font-family: "Manrope", "Inter", "Segoe UI", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(147, 197, 253, 0.9);
  white-space: nowrap;
}

.hero-showcase__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(147, 197, 253, 0.45));
}

.hero-badge {
  position: absolute;
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.96);
  color: #0f1f35;
  box-shadow: 0 10px 24px rgba(8, 20, 45, 0.4);
  border: 1px solid rgba(191, 219, 254, 0.8);
  animation: float 6s ease-in-out infinite;
  z-index: 3;
  white-space: nowrap;
}

.hero-badge--1 { top: 6%; left: 8%; animation-delay: 0s; }
.hero-badge--2 { top: 12%; right: 4%; animation-delay: -1.5s; }
.hero-badge--3 { bottom: 14%; left: 2%; animation-delay: -3s; }
.hero-badge--4 { bottom: 6%; right: 8%; animation-delay: -4.5s; }

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.95; }
  50% { transform: scale(1.06); opacity: 1; }
}

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

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

@media (prefers-reduced-motion: reduce) {
  .hero-showcase__glow,
  .hero-showcase__ring,
  .hero-badge {
    animation: none;
  }
}

/* ── Typography ── */
.eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 0.5rem;
  font-size: 0.78rem;
}

.eyebrow-light {
  color: #93c5fd;
}

.text-light {
  color: #f0f6ff;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.2;
}

h1 {
  font-size: clamp(1.8rem, 7vw, 2.4rem);
  margin-bottom: 1rem;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
  color: #f0f6ff;
}

.lead {
  font-size: 1.05rem;
  color: #cbd5e1;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.85rem 1.4rem;
  border-radius: 0.65rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  min-height: 44px;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease,
    border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-compact {
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #2b527f);
  color: #eff6ff;
  box-shadow: 0 12px 24px rgba(30, 58, 95, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), #1e3a5f);
  color: #ffffff;
  box-shadow: 0 16px 28px rgba(21, 42, 69, 0.35);
}

.btn-secondary {
  border: 1px solid #94a3b8;
  color: #1e293b;
  background: rgba(255, 255, 255, 0.82);
}

.btn-secondary:hover {
  background: rgba(241, 245, 249, 0.95);
}

.btn-dark {
  color: #0f172a;
  border-color: #94a3b8;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.5rem;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.btn-icon {
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

.btn-ghost {
  display: inline-block;
  padding: 0.85rem 1.4rem;
  border-radius: 0.65rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  min-height: 44px;
  line-height: 1.2;
  text-align: center;
  border: 1px solid rgba(191, 219, 254, 0.35);
  color: #dbe5f2;
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(191, 219, 254, 0.6);
  transform: translateY(-2px);
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-actions .btn {
  flex: 1 1 140px;
}

.hero-points {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-points li {
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 999px;
  font-size: 0.88rem;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.08);
}

/* ── Sections ── */
.section {
  padding: 2.8rem 0;
  position: relative;
}

.section h2 {
  font-size: clamp(1.4rem, 5vw, 1.8rem);
  margin-bottom: 1.5rem;
}

.section-intro {
  max-width: 720px;
  margin-top: -0.5rem;
  margin-bottom: 1.4rem;
  color: #334155;
}

.section-alt {
  background: #e8eef7;
}

.section-dark {
  background: linear-gradient(160deg, #0f1f35, #1a3050);
}

.section-dark h2 {
  color: #f0f6ff;
}

.section-dark .section-intro {
  color: #94a3b8;
}

/* ── Stats band ── */
.stats-band {
  background: #ffffff;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem;
  text-align: center;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.stat__num {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 6vw, 2.6rem);
  color: var(--primary);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  letter-spacing: -0.03em;
}

.stat__plus {
  font-size: 0.6em;
  color: #3b82f6;
  margin-left: 0.15em;
}

.stat__small {
  font-size: 0.48em;
  font-weight: 700;
  color: #64748b;
  margin-left: 0.18em;
}

.stat__label {
  font-size: 0.85rem;
  color: #475569;
  font-weight: 500;
  line-height: 1.3;
}

/* ── Service cards ── */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.card {
  background: var(--surface);
  padding: 1.4rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.14);
  border-color: #a8bdd4;
}

.card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.card-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}

.card-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.card-icon--blue   { background: #dbeafe; color: #1d4ed8; }
.card-icon--orange { background: #ffedd5; color: #c2410c; }
.card-icon--green  { background: #dcfce7; color: #15803d; }
.card-icon--purple { background: #ede9fe; color: #7c3aed; }
.card-icon--teal   { background: #ccfbf1; color: #0f766e; }
.card-icon--cyan   { background: #cffafe; color: #0e7490; }
.card-icon--red    { background: #fee2e2; color: #b91c1c; }

/* ── Feature cards (top 2 services) ── */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.feature-card {
  position: relative;
  min-height: 300px;
  border-radius: 1.2rem;
  overflow: hidden;
  background-color: #0a1525;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(8, 20, 45, 0.35);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 31, 53, 0.15) 0%,
    rgba(15, 31, 53, 0.55) 45%,
    rgba(15, 31, 53, 0.92) 100%
  );
  z-index: 1;
}

.feature-card__content {
  position: relative;
  z-index: 2;
  padding: 1.4rem;
  color: #f0f6ff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 300px;
}

.feature-card__tag {
  display: inline-block;
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.95);
  color: #0f1f35;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}

.feature-card h3 {
  color: #ffffff;
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  margin-bottom: 0.5rem;
  max-width: 22ch;
}

.feature-card p {
  color: #dbe5f2;
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
  max-width: 48ch;
}

.feature-card__link {
  display: inline-block;
  align-self: flex-start;
  color: #93c5fd;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(147, 197, 253, 0.4);
  padding-bottom: 0.1rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.feature-card__link:hover {
  color: #dbeafe;
  border-color: #dbeafe;
}

.grid-compact {
  gap: 1rem;
}

.grid-compact .card {
  padding: 1.2rem;
}

.grid-compact .card h3 {
  font-size: 1rem;
}

.grid-compact .card p {
  font-size: 0.92rem;
  color: #475569;
  margin: 0;
}

/* ── Timeline ── */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.timeline__line {
  display: none;
}

.timeline-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.3rem 1.3rem 1.3rem 4.6rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.timeline-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.timeline-step__dot {
  position: absolute;
  top: 1.3rem;
  left: 1.2rem;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #3b82f6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(30, 58, 95, 0.35);
}

.timeline-step__dot svg {
  width: 1.15rem;
  height: 1.15rem;
}

.timeline-step__num {
  display: block;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  color: #3b82f6;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.2rem;
}

.timeline-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.timeline-step p {
  margin: 0;
  color: #475569;
  font-size: 0.95rem;
}

/* ── Slideshow ── */
.slideshow {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  background: #0a1525;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  user-select: none;
}

.slideshow__track {
  display: flex;
  will-change: transform;
  touch-action: pan-y;
}

.slideshow__track img {
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

.slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 3/4;
  background: #0a1525;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(15, 23, 42, 0.72);
  color: #e2e8f0;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.slideshow__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 23, 42, 0.65);
  color: #f0f6ff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 2.2rem;
  height: 2.2rem;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.slideshow__btn:hover {
  background: rgba(30, 58, 95, 0.9);
  transform: translateY(-50%) scale(1.08);
}

.slideshow__btn--prev { left: 0.8rem; }
.slideshow__btn--next { right: 0.8rem; }

.slideshow__counter {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  background: rgba(15, 23, 42, 0.72);
  color: #e2e8f0;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
  backdrop-filter: blur(6px);
  z-index: 2;
}

.slideshow__dots {
  position: absolute;
  bottom: 0.9rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  gap: 0.4rem;
  z-index: 2;
}

.slideshow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.slideshow__dot.is-active {
  background: #ffffff;
  transform: scale(1.3);
}

/* ── Reviews: feature quote ── */
.review-feature {
  position: relative;
  background: linear-gradient(160deg, #ffffff 0%, #f1f5fb 100%);
  border: 1px solid var(--border);
  border-radius: 1.4rem;
  padding: 2.2rem 1.6rem 1.8rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  max-width: 860px;
}

.review-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #3b82f6, var(--primary));
}

.review-feature__mark {
  position: absolute;
  top: -1rem;
  right: 1.2rem;
  font-family: "Manrope", serif;
  font-size: 8rem;
  line-height: 1;
  font-weight: 800;
  color: rgba(30, 58, 95, 0.08);
  pointer-events: none;
}

.review-feature__quote {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  line-height: 1.5;
  color: var(--text);
  font-weight: 500;
  margin: 0 0 1.5rem;
  max-width: 52ch;
  position: relative;
}

.review-feature__meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.review-feature__stars {
  color: #f59e0b;
  font-size: 1.15rem;
  letter-spacing: 0.1em;
}

.review-feature__author {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.review-feature__author strong {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
}

.review-feature__author span {
  color: var(--muted);
  font-size: 0.88rem;
}

.review-feature__link {
  display: inline-block;
  font-weight: 600;
  font-size: 0.95rem;
  color: #1d4ed8;
  text-decoration: none;
}

.review-feature__link:hover {
  color: #1e3a8a;
}

/* ── Contact card (dark) ── */
.section-contact {
  background: linear-gradient(160deg, #0f1f35 0%, #1a3050 100%);
  color: #f0f6ff;
  position: relative;
  overflow: hidden;
}

.section-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(59, 130, 246, 0.18), transparent 48%),
    radial-gradient(circle at 10% 90%, rgba(30, 58, 95, 0.3), transparent 42%);
  pointer-events: none;
}

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

.contact-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
  align-items: start;
}

.contact-card__left h2 {
  margin-bottom: 0.7rem;
}

.contact-card__lead {
  color: #cbd5e1;
  font-size: 1.05rem;
  max-width: 48ch;
  margin-bottom: 1.4rem;
}

.contact-meta {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 0;
  display: grid;
  gap: 0.6rem;
}

.contact-meta li {
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 0.8rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  font-size: 0.95rem;
}

.contact-meta li:last-child {
  border-bottom: 0;
}

.contact-meta span {
  color: #94a3b8;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-top: 0.1rem;
}

.contact-meta strong {
  font-weight: 500;
  color: #f0f6ff;
}

.contact-meta a {
  color: #bfdbfe;
  text-decoration: none;
  font-weight: 500;
}

.contact-meta a:hover {
  color: #dbeafe;
}

.mini-form {
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.2rem;
  padding: 1.6rem 1.5rem;
  display: grid;
  gap: 0.45rem;
  width: 100%;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.mini-form h3 {
  margin-bottom: 0.2rem;
}

.mini-form p {
  margin-top: 0;
  color: #475569;
}

.mini-form label {
  margin-top: 0.4rem;
  font-weight: 600;
  color: #334155;
}

.mini-form input,
.mini-form textarea {
  font: inherit;
  font-size: 16px;
  border: 1px solid #cbd5e1;
  border-radius: 0.55rem;
  padding: 0.75rem 0.8rem;
  background: #fff;
  min-height: 44px;
}

.mini-form input:focus,
.mini-form textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.mini-form small {
  color: #64748b;
}

/* ── Map ── */
.map-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-md);
}

.map-card iframe {
  width: 100%;
  min-height: 260px;
  border: 0;
  display: block;
}

.map-cta {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  font-size: 0.9rem;
  padding: 0.65rem 1rem;
}

/* ── Footer ── */
.footer {
  background: linear-gradient(180deg, #0f1a2e 0%, #0a1425 100%);
  color: #dbe5f2;
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  padding-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-col h4 {
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #93c5fd;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-col a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-col li {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.5;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: #ffffff;
  margin-bottom: 0.8rem;
}

.footer-logo {
  height: 2rem;
  width: auto;
}

.footer-brand strong {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
}

.footer-tagline {
  color: #94a3b8;
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
  max-width: 32ch;
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.15);
  padding: 1.2rem 0;
  font-size: 0.87rem;
}

.footer-bottom__inner {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #8799b3;
}

.footer-bottom a {
  color: #bfdbfe;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* ── Legal ── */
.legal-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.2rem 1.3rem;
  box-shadow: var(--shadow-soft);
}

.legal-card p {
  margin: 0 0 0.55rem;
}

/* ── Misc ── */
a {
  color: #1e40af;
}

a:hover {
  color: #1d4ed8;
}

.dark {
  color: #0f172a;
}

/* ══════════════════════════════════════
   Small tablet — min-width: 560px
══════════════════════════════════════ */
@media (min-width: 560px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .slide {
    aspect-ratio: 16/10;
  }

  .slide img {
    object-fit: contain;
  }

  .slideshow__dots {
    display: flex;
  }

  .map-card iframe {
    min-height: 380px;
  }

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

  .hero-showcase {
    width: 400px;
    height: 400px;
  }

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

/* ══════════════════════════════════════
   Desktop — min-width: 960px
══════════════════════════════════════ */
@media (min-width: 960px) {
  /* Nav */
  .site-nav {
    display: inline-flex;
    gap: 1rem;
  }

  .site-nav a {
    color: #dbe5f2;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.25rem 0.45rem;
    border-radius: 0.5rem;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .site-nav a:hover {
    color: #ffffff;
    background: rgba(148, 163, 184, 0.2);
  }

  .nav-toggle {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

  .btn.btn-compact {
    display: inline-block;
    padding: 0.5rem 0.85rem;
    font-size: 0.9rem;
    min-height: 0;
  }

  /* Hero */
  .hero {
    padding: 7rem 0 6rem;
  }

  .hero-inner {
    grid-template-columns: 1fr 420px;
    gap: 3rem;
    text-align: left;
  }

  .hero-content {
    max-width: 600px;
  }

  h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-left: 0;
    margin-right: 0;
  }

  .lead {
    font-size: 1.12rem;
    max-width: 580px;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-actions .btn {
    flex: 0 1 auto;
  }

  .hero-points {
    justify-content: flex-start;
  }

  .hero-showcase {
    width: 460px;
    height: 460px;
    order: 0;
  }

  .hero-badge {
    font-size: 0.85rem;
    padding: 0.45rem 1rem;
  }

  /* Sections */
  .section {
    padding: 4.2rem 0;
  }

  .section h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
  }

  /* Grids */
  .grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

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

  /* Feature cards — side by side */
  .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-bottom: 1.4rem;
  }

  .feature-card,
  .feature-card__content {
    min-height: 360px;
  }

  /* Timeline becomes horizontal */
  .timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    padding-top: 2.6rem;
  }

  .timeline__line {
    display: block;
    position: absolute;
    top: 3.9rem;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(59, 130, 246, 0.35) 10%,
      rgba(59, 130, 246, 0.35) 90%,
      transparent 100%
    );
    z-index: 0;
  }

  .timeline-step {
    padding: 3.5rem 1.2rem 1.2rem;
    text-align: center;
  }

  .timeline-step__dot {
    position: absolute;
    top: -1.3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2.8rem;
    height: 2.8rem;
  }

  .timeline-step__num {
    text-align: center;
  }

  /* Slideshow */
  .slideshow__btn {
    width: 2.8rem;
    height: 2.8rem;
    font-size: 1.1rem;
  }

  /* Contact card */
  .contact-card {
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
  }

  .contact-meta li {
    grid-template-columns: 10rem 1fr;
  }

  /* Stats */
  .stats-band {
    padding: 2.6rem 0;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 3rem;
    padding-bottom: 2.8rem;
  }

  .footer-bottom__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ── Floating WhatsApp button ── */
a.whatsapp-float,
.whatsapp-float {
  position: fixed !important;
  right: calc(1rem + env(safe-area-inset-right));
  bottom: calc(1rem + env(safe-area-inset-bottom));
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366 !important;
  color: #ffffff !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  visibility: visible !important;
  opacity: 1 !important;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22), 0 2px 6px rgba(0, 0, 0, 0.12);
  z-index: 999;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #1ebe5d;
  transform: scale(1.06);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.28), 0 4px 10px rgba(0, 0, 0, 0.16);
}

.whatsapp-float svg {
  display: block;
}

@media (min-width: 960px) {
  .whatsapp-float {
    right: calc(1.5rem + env(safe-area-inset-right));
    bottom: calc(1.5rem + env(safe-area-inset-bottom));
    width: 64px;
    height: 64px;
  }
}

