:root {
  --bg: #f3f8ff;
  --bg-soft: #edf5ff;
  --bg-ice: #e6f1ff;
  --bg-card: rgba(255, 255, 255, 0.88);
  --bg-card-strong: rgba(255, 255, 255, 0.97);
  --line: rgba(0, 61, 121, 0.10);
  --line-strong: rgba(0, 76, 144, 0.18);
  --text: #0a2a56;
  --muted: #5f7693;
  --muted-strong: #3e5b80;
  --blue-deep: #003b79;
  --blue: #006ab0;
  --blue-soft: #1aa7e6;
  --blue-pale: #bde8ff;
  --silver: #9098a3;
  --silver-soft: #dbe4ef;
  --green: #22a972;
  --gold: #f4b63b;
  --shadow: 0 24px 70px rgba(15, 74, 139, 0.10);
  --shadow-strong: 0 28px 90px rgba(8, 58, 117, 0.16);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1220px, calc(100% - 32px));
  --grid: linear-gradient(rgba(0, 94, 170, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 94, 170, 0.045) 1px, transparent 1px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 10%, rgba(26, 167, 230, 0.16), transparent 26%),
    radial-gradient(circle at 90% 8%, rgba(0, 106, 176, 0.18), transparent 22%),
    radial-gradient(circle at 82% 82%, rgba(0, 59, 121, 0.08), transparent 22%),
    linear-gradient(180deg, #f9fcff 0%, #eff6ff 40%, #f5f9ff 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: var(--grid);
  background-size: 46px 46px;
  opacity: 0.34;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.95), transparent 96%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.95), transparent 96%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.wrap { width: var(--container); margin: 0 auto; }
.section-pad { padding: 100px 0; }
.section-divider { position: relative; }
.section-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: var(--container);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 80, 150, 0.16), transparent);
}

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(28px);
  pointer-events: none;
  z-index: -1;
  opacity: .85;
  animation: floaty 8s ease-in-out infinite;
}
.ambient-a {
  width: 320px; height: 320px; top: 72px; left: -80px;
  background: radial-gradient(circle, rgba(39, 168, 233, 0.24), rgba(39, 168, 233, 0));
}
.ambient-b {
  width: 260px; height: 260px; top: 160px; right: -70px;
  background: radial-gradient(circle, rgba(0, 106, 176, 0.18), rgba(0, 106, 176, 0));
  animation-delay: 1s;
}
.ambient-c {
  width: 240px; height: 240px; bottom: 120px; right: 8%;
  background: radial-gradient(circle, rgba(0, 59, 121, 0.12), rgba(0, 59, 121, 0));
  animation-delay: 2s;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(0, 80, 150, 0.08);
  box-shadow: 0 12px 30px rgba(15, 74, 139, 0.05);
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  max-width: 280px;
  min-width: 180px;
}
.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(15, 74, 139, .12));
}

.main-nav {
  display: flex;
  gap: 18px;
  margin-left: auto;
  margin-right: 8px;
}
.main-nav a {
  color: var(--muted-strong);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.main-nav a:hover,
.main-nav a:focus-visible { color: var(--blue-deep); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .01em;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease, color .25s ease;
  border: 1px solid transparent;
}
.btn:hover,
.btn:focus-visible { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 55%, var(--blue-soft) 100%);
  box-shadow: 0 18px 38px rgba(0, 106, 176, .20);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 22px 48px rgba(0, 106, 176, .24);
}
.btn-secondary {
  color: var(--blue-deep);
  background: rgba(255,255,255,.74);
  border-color: rgba(0, 84, 153, 0.12);
}
.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(234, 245, 255, .95);
  border-color: rgba(0, 84, 153, 0.20);
}

.nav-cta { white-space: nowrap; }
.menu-toggle,
.mobile-menu { display: none; }

.hero {
  padding-top: 68px;
  position: relative;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 40px 0 auto;
  height: 520px;
  background: radial-gradient(circle at center, rgba(190, 232, 255, 0.40), transparent 72%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 24px;
  align-items: stretch;
}
.hero-copy,
.hero-panel,
.glass-card,
.gallery-card,
.cta-shell {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.84)),
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(235,243,255,.96));
  box-shadow: var(--shadow);
}
.hero-copy {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 56px);
  border-radius: var(--radius-xl);
}
.hero-copy::before {
  content: "";
  position: absolute;
  inset: auto -40px -90px auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(29, 167, 230, 0.16), rgba(29, 167, 230, 0));
}
.hero-panel {
  padding: 24px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: -50px -20px auto auto;
  width: 300px;
  height: 300px;
  background: url('assets/alfaservices-logo.jpeg') no-repeat center / contain;
  opacity: .08;
  pointer-events: none;
}
.eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.eyebrow,
.section-label,
.service-tag,
.panel-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .11em;
}
.eyebrow,
.section-label,
.panel-tag {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue-soft));
}
.eyebrow.soft {
  color: var(--blue);
  background: rgba(230, 243, 255, .9);
  border: 1px solid rgba(0, 93, 163, 0.10);
}
.hero h1 {
  position: relative;
  z-index: 1;
  margin: 22px 0 16px;
  font-size: clamp(3rem, 2rem + 3vw, 5.7rem);
  line-height: .94;
  letter-spacing: -.06em;
  max-width: 11ch;
}
.hero h1 span {
  display: block;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue) 42%, var(--blue-soft) 86%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lead,
.section-heading p,
.narrative-card p,
.coverage-card p,
.process-step p,
.faq-item p,
.cta-shell p,
.footer-shell p,
.service-card p,
.spotlight-copy p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}
.hero-lead {
  position: relative;
  z-index: 1;
  font-size: 1.08rem;
  max-width: 62ch;
}
.hero-actions {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-trust {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}
.hero-trust div {
  padding: 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(239,245,255,.84));
  border: 1px solid rgba(0, 84, 153, 0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}
.hero-trust strong,
.command-card strong,
.price-card strong,
.process-step strong,
.footer-shell strong {
  display: block;
}
.hero-trust strong {
  margin-bottom: 6px;
  font-size: .98rem;
}
.hero-trust span,
.command-card span,
.price-card small,
.price-card span,
.footer-meta span,
.signal-row span,
.feature-pills span,
.coverage-pills span,
.gallery-card span,
.service-tag {
  color: var(--muted-strong);
}

.hero-panel-top,
.price-card,
.footer-shell,
.cta-shell,
.nav-shell {
  justify-content: space-between;
}
.hero-panel-top,
.price-card,
.footer-shell {
  display: flex;
  align-items: center;
  gap: 12px;
}
.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: .9rem;
  font-weight: 800;
}
.status-dot::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0 8px rgba(34, 169, 114, .12);
}
.hero-brand-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 18px 0 18px;
  padding: 16px 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(232,242,255,.92));
  border: 1px solid rgba(0, 84, 153, 0.10);
}
.hero-brand-lockup img {
  width: 108px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 59, 121, .08));
}
.hero-brand-lockup strong {
  display: block;
  font-size: 1.12rem;
  letter-spacing: .08em;
  color: var(--blue-deep);
}
.hero-brand-lockup span {
  color: var(--muted);
  font-size: .96rem;
}
.command-card {
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 84, 153, 0.10);
  background: linear-gradient(180deg, rgba(255,255,255,.84), rgba(237,245,255,.84));
}
.main-command {
  margin-top: 0;
  padding: 22px;
  background: linear-gradient(135deg, rgba(0, 59, 121, 0.96), rgba(0, 106, 176, 0.92), rgba(26, 167, 230, 0.90));
  border-color: transparent;
  box-shadow: 0 18px 44px rgba(0, 106, 176, 0.20);
}
.main-command p,
.main-command h2,
.main-command span,
.command-card.highlight strong,
.command-card.highlight span {
  color: #fff;
}
.main-command p { margin-bottom: 12px; }
.main-command h2,
.section-heading h2,
.narrative-card h2,
.service-card h3,
.spotlight-copy h2,
.coverage-card h2,
.cta-shell h2 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: -.04em;
}
.main-command h2,
.section-heading h2,
.spotlight-copy h2,
.coverage-card h2,
.cta-shell h2 {
  font-size: clamp(2rem, 1.35rem + 1.8vw, 3.4rem);
}
.narrative-card h2 { font-size: clamp(1.5rem, 1.2rem + 1vw, 2.2rem); }
.service-card h3 { font-size: 1.55rem; margin-top: 10px; }
.command-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}
.command-card span { display: block; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .09em; font-size: .82rem; }
.command-card.highlight {
  background: linear-gradient(135deg, rgba(0, 59, 121, 0.92), rgba(0, 106, 176, 0.86));
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(0, 76, 144, 0.16);
}
.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.signal-row span,
.feature-pills span,
.coverage-pills span {
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(0, 84, 153, 0.10);
  font-size: .92rem;
}

#vision,
#facturacion,
.gallery-section,
.faq-section,
#contacto {
  position: relative;
}
#vision::before,
#facturacion::before,
.gallery-section::before,
.faq-section::before,
#contacto::before {
  content: "";
  position: absolute;
  inset: 18px 0;
  background: linear-gradient(180deg, rgba(255,255,255,.54), rgba(228,240,255,.50));
  z-index: 0;
  pointer-events: none;
}
#vision .wrap,
#facturacion .wrap,
.gallery-section .wrap,
.faq-section .wrap,
#contacto .wrap {
  position: relative;
  z-index: 1;
}

.narrative-grid,
.coverage-grid,
.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.glass-card,
.narrative-card,
.service-card,
.coverage-card,
.process-card {
  border-radius: var(--radius-lg);
}
.narrative-card,
.coverage-card,
.process-card,
.service-card,
.spotlight-copy,
.spotlight-visual,
.faq-item,
.gallery-card,
.cta-shell {
  padding: 24px;
}
.narrative-card p,
.coverage-card p { margin-top: 14px; }

.section-heading {
  max-width: 920px;
  margin-bottom: 28px;
}
.section-heading p { margin-top: 14px; max-width: 72ch; }
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.filter-btn {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--blue-deep);
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(0, 84, 153, 0.10);
  cursor: pointer;
  font-weight: 700;
}
.filter-btn.active,
.filter-btn:hover,
.filter-btn:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-soft) 100%);
  border-color: transparent;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.service-card {
  position: relative;
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(0, 106, 176, 0.16);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue-deep), var(--blue-soft));
}
.service-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(26, 167, 230, 0.12), rgba(26, 167, 230, 0));
}
.service-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.7;
}
.service-card li + li { margin-top: 4px; }
.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-soft) 100%);
  box-shadow: 0 14px 24px rgba(0, 106, 176, 0.16);
}
.service-tag {
  margin-top: 16px;
  color: var(--blue);
  background: rgba(234, 244, 255, .96);
  border: 1px solid rgba(0, 84, 153, 0.08);
}
.accent-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    linear-gradient(145deg, rgba(0, 59, 121, .98), rgba(0, 106, 176, .92));
  border-color: transparent;
}
.accent-card h3,
.accent-card p,
.accent-card li,
.accent-card .service-tag {
  color: #fff;
}
.accent-card .service-tag {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.16);
}
.service-card.hidden { display: none; }

.spotlight-section { position: relative; }
.spotlight-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, .96fr);
  gap: 22px;
}
.spotlight-copy,
.spotlight-visual,
.gallery-card,
.faq-item,
.cta-shell {
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(247,250,255,.88)),
    linear-gradient(145deg, rgba(255,255,255,.98), rgba(233,242,255,.96));
  border: 1px solid rgba(0, 84, 153, 0.10);
  box-shadow: var(--shadow);
}
.price-card {
  margin: 26px 0 18px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(0, 59, 121, 0.95), rgba(0, 106, 176, 0.90), rgba(26, 167, 230, 0.86));
  border: 1px solid transparent;
  box-shadow: 0 18px 36px rgba(0, 106, 176, 0.18);
}
.price-card small,
.price-card span,
.price-card strong { color: #fff; }
.price-card strong {
  font-size: 3rem;
  line-height: .95;
  letter-spacing: -.05em;
}
.feature-pills,
.coverage-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.micro-note {
  margin-top: 16px;
  font-size: .9rem;
}
.visual-shell {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(0, 84, 153, 0.10);
  background: rgba(255,255,255,.78);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
.visual-shell img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coverage-grid {
  grid-template-columns: 1.1fr .9fr;
}
.process-card {
  display: grid;
  gap: 18px;
}
.process-step {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(237,245,255,.86));
  border: 1px solid rgba(0, 84, 153, 0.10);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.gallery-card {
  text-align: left;
  cursor: pointer;
  transition: transform .24s ease, box-shadow .24s ease;
}
.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}
.gallery-card img {
  border-radius: 22px;
  aspect-ratio: 4 / 5.7;
}
.gallery-card span {
  display: block;
  margin-top: 16px;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
}

.faq-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 18px;
}
.faq-list {
  display: grid;
  gap: 14px;
}
.faq-item {
  border-radius: 22px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.45;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin-top: 14px; }

.cta-shell {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.cta-shell::after {
  content: "";
  position: absolute;
  inset: auto -40px -80px auto;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(26, 167, 230, 0.16), rgba(26, 167, 230, 0));
}
.cta-shell > * { flex: 1; position: relative; z-index: 1; }
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer {
  padding: 0 0 34px;
}
.footer-shell {
  padding-top: 24px;
  border-top: 1px solid rgba(0, 84, 153, 0.10);
}
.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-soft) 100%);
  box-shadow: 0 18px 40px rgba(0, 106, 176, 0.24);
  z-index: 12;
  font-weight: 900;
}
.floating-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(9, 35, 71, .62);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 30;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox img {
  max-width: min(92vw, 880px);
  max-height: 88vh;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: 0 40px 80px rgba(0,0,0,.22);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.34);
  background: rgba(255,255,255,.18);
  color: #fff;
  cursor: pointer;
  font-size: 1.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }

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

@media (max-width: 1080px) {
  .hero-grid,
  .spotlight-grid,
  .coverage-grid,
  .faq-grid,
  .narrative-grid,
  .services-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .services-grid,
  .narrative-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faq-grid { gap: 22px; }
  .cta-shell { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 880px) {
  .section-pad { padding: 82px 0; }
  .main-nav,
  .nav-cta { display: none; }
  .menu-toggle {
    margin-left: auto;
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid rgba(0, 84, 153, 0.10);
    background: rgba(255,255,255,.80);
    color: var(--blue-deep);
  }
  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
  }
  .mobile-menu {
    display: none;
    width: var(--container);
    margin: 0 auto 14px;
    padding: 14px;
    border-radius: 20px;
    border: 1px solid rgba(0, 84, 153, 0.08);
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow);
  }
  .mobile-menu.open {
    display: grid;
    gap: 10px;
  }
  .mobile-menu a {
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(236, 245, 255, .9);
  }
  .mobile-cta { margin-top: 6px; }
  .hero-trust,
  .command-grid,
  .services-grid,
  .narrative-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .wrap { width: min(100% - 22px, 1000px); }
  .hero-copy,
  .hero-panel,
  .narrative-card,
  .service-card,
  .spotlight-copy,
  .spotlight-visual,
  .coverage-card,
  .process-card,
  .faq-item,
  .gallery-card,
  .cta-shell { padding: 20px; }
  .hero h1 { font-size: clamp(2.4rem, 1.8rem + 4vw, 3.5rem); }
  .main-command h2,
  .section-heading h2,
  .spotlight-copy h2,
  .coverage-card h2,
  .cta-shell h2 { font-size: clamp(1.8rem, 1.4rem + 4vw, 2.6rem); }
  .price-card { flex-direction: column; align-items: flex-start; }
  .footer-shell,
  .footer-meta { text-align: left; }
  .footer-shell { flex-direction: column; align-items: flex-start; }
  .floating-whatsapp span { display: none; }
  .floating-whatsapp {
    width: 58px;
    height: 58px;
    justify-content: center;
    padding: 0;
  }
  .hero-brand-lockup {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-brand-lockup img { width: 88px; }
}
