/* Antenas Palau — modern mobile-first */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #232d5e;
  --navy-dark: #1a2347;
  --navy-light: #2d3a6e;
  --black: #111111;
  --black-soft: #ffffff;
  --black-card: #ffffff;
  --yellow: #232d5e;
  --yellow-bright: #2d3a6e;
  --yellow-deep: #1a2347;
  --gold-gradient: #232d5e;
  --dark-gradient: #ffffff;
  --glow-yellow: none;
  --glow-soft: 0 4px 16px rgba(0, 0, 0, 0.08);
  --white: #ffffff;
  --text: #1a1a1a;
  --text-dark: #1a1a1a;
  --text-on-navy: #ffffff;
  --muted: #555555;
  --muted-dark: #666666;
  --line: rgba(0, 0, 0, 0.1);
  --line-dark: rgba(0, 0, 0, 0.08);
  --glass: rgba(0, 0, 0, 0.03);
  --glass-border: rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --radius-sm: 10px;
  --header-h: 68px;
  --mobile-bar-h: 72px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-display: "DM Sans", system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5,
h6,
summary,
strong {
  font-family: var(--font-body);
  font-synthesis: none;
  font-stretch: normal;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  padding-bottom: calc(var(--mobile-bar-h) + var(--safe-bottom));
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

main {
  overflow-x: clip;
  max-width: 100%;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

/* ── Skip link ── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
  font-weight: 700;
  border-radius: 8px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 3px solid var(--navy);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: var(--header-h);
  padding: 0.6rem 1rem;
  flex-wrap: wrap;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  min-width: 0;
}

.brand-logo {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
}

.brand-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.15;
  letter-spacing: 0;
  color: var(--text);
}

.lang-switch {
  display: flex;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  overflow: hidden;
  padding: 3px;
}

.lang-switch-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 34px;
  padding: 0 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.08em;
  color: var(--muted);
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}

.lang-switch-link.is-active {
  background: var(--navy);
  color: var(--white);
}

.lang-switch-link:not(.is-active):hover {
  color: var(--text);
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  background: var(--glass);
  cursor: pointer;
  padding: 0 11px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 3px solid var(--navy);
  padding: 0.75rem 1rem 1.25rem;
  flex-direction: column;
  gap: 0.25rem;
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 1rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--muted);
  border-radius: 12px;
  transition: color 0.2s, background 0.2s;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: var(--glass);
}

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  justify-content: center;
  margin-top: 0.35rem;
}

/* ── Hero ── */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 2rem 1rem 3rem;
  background: linear-gradient(180deg, #f4f6fb 0%, var(--white) 100%);
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  display: none;
}

.hero-orb {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  order: 2;
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.hero-visual {
  position: relative;
  z-index: 1;
  order: 1;
  display: flex;
  justify-content: center;
  padding: 0.5rem 0 1.75rem;
}

.hero-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 0.65rem;
  width: min(100%, 520px);
  margin: 0 auto;
}

.hero-photo {
  margin: 0;
}

.hero-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid var(--navy);
  box-shadow: var(--glow-soft);
  background: #eef1f7;
}

.hero-diamond {
  width: min(160px, 34vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  position: relative;
  flex-shrink: 0;
}

.hero-diamond::before {
  display: none;
}

.hero-logo {
  width: 100%;
  height: auto;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

.hero h1 {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 4.8vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0;
  margin-bottom: 1rem;
  max-width: 100%;
  hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
  color: var(--text);
}

.hero-lead {
  color: var(--muted);
  font-size: 1rem;
  max-width: 100%;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.5rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--navy-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--navy);
}

.btn-secondary:hover {
  background: rgba(35, 45, 94, 0.06);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
  width: 100%;
  border: none;
}

.btn-dark:hover {
  background: var(--navy-dark);
}

.hero-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-tags li {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
}

/* ── Trust — glass cards ── */
.trust {
  position: relative;
  z-index: 2;
  padding: 0 1rem;
  margin-top: -1.5rem;
}

.trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.trust-list li {
  background: var(--white);
  border: 2px solid var(--line);
  border-left: 5px solid var(--navy);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.15rem;
  position: relative;
  overflow: hidden;
}

.trust-list li::before {
  display: none;
}

.trust-list strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.trust-list span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ── Gallery ── */
.gallery {
  background: #f4f6fb;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.gallery-item {
  margin: 0;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eef1f7;
}

.gallery-item figcaption {
  padding: 0.65rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  border-top: 1px solid var(--line);
}

/* ── Sections — alternating surfaces ── */
.section {
  padding: 3rem 1rem;
}

.section--light {
  background: #f4f4f6;
  color: var(--text-dark);
}

.services {
  background: var(--white);
  color: var(--text-dark);
}

.section-head {
  margin-bottom: 1.75rem;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow-deep);
  margin-bottom: 0.6rem;
}

.services .section-label,
.clients .section-label,
.process .section-label,
.faq .section-label {
  color: var(--yellow-deep);
}

.section h2 {
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  max-width: 100%;
  hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
}

.services h2,
.process h2,
.faq h2 {
  color: var(--text-dark);
}

.section-intro {
  margin-top: 0.65rem;
  color: var(--muted-dark);
  font-size: 0.98rem;
  max-width: 50ch;
}

/* ── Service cards — premium dark ── */
.service-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--navy);
}

.service-card::after {
  display: none;
}

.service-card:hover {
  border-color: var(--navy);
}

.service-card-media {
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.service-card-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #eef1f7;
}

.service-card-body {
  padding: 1.15rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-body .service-tag {
  align-self: flex-start;
  margin-bottom: 0.75rem;
}

.service-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
  position: relative;
  z-index: 1;
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: rgba(35, 45, 94, 0.08);
  border: 2px solid rgba(35, 45, 94, 0.2);
  border-radius: 16px;
  color: var(--navy);
  flex-shrink: 0;
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.35rem 0.65rem;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.35;
  color: var(--text);
  hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
}

.service-card-body p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.15rem;
  line-height: 1.6;
  flex: 1;
}

.service-card-body .service-link {
  margin-top: auto;
}

.service-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 1.15rem;
  line-height: 1.6;
}

.service-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 42px;
  padding: 0.55rem 1rem;
  font-weight: 600;
  font-size: 0.84rem;
  color: var(--white);
  text-decoration: none;
  background: var(--navy);
  border-radius: 10px;
}

.service-link::after {
  content: "→";
  font-weight: 700;
}

.service-link:hover {
  background: var(--navy-dark);
}

/* ── Repair ── */
.repair {
  padding: 3rem 1rem;
  background: #f5f5f5;
}

.repair-layout {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.repair-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--navy);
}

.repair-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eef1f7;
}

.repair-box {
  position: relative;
  background: var(--white);
  border: 3px solid var(--navy);
  border-radius: var(--radius);
  padding: 2rem 1.35rem;
  overflow: hidden;
  flex: 1;
}

.repair-box::before {
  display: none;
}

.repair-box > * {
  position: relative;
  z-index: 1;
}

.section-label--dark {
  color: var(--navy);
}

.repair-box h2 {
  font-family: var(--font-body);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  color: var(--text);
  margin-bottom: 0.75rem;
  max-width: 100%;
  hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
}

.repair-lead {
  font-size: 0.98rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  max-width: 52ch;
}

.repair-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
}

.repair-list li {
  background: rgba(35, 45, 94, 0.06);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.65rem 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  color: var(--text);
}

/* ── Clients ── */
.clients {
  background: #f5f5f5;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.clients h2 {
  color: var(--text);
}

.client-cards {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.client-card {
  background: var(--white);
  border: 2px solid var(--line);
  border-left: 5px solid var(--navy);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
}

.client-card:hover {
  border-color: var(--navy);
}

.client-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--navy);
}

.client-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ── Process ── */
.process {
  background: var(--white);
  color: var(--text-dark);
}

.steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  counter-reset: step;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1rem;
  align-items: start;
  padding: 1.2rem;
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.steps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--navy);
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.6rem;
  height: 2rem;
  padding: 0 0.5rem;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1;
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.step-body {
  min-width: 0;
}

.steps h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  line-height: 1.35;
  color: var(--text-dark);
}

.steps p {
  color: var(--muted-dark);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

/* ── FAQ ── */
.faq {
  background: #f5f5f5;
  color: var(--text-dark);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow 0.25s;
}

.faq-item[open] {
  border-color: var(--navy);
}

.faq-item summary {
  cursor: pointer;
  padding: 1.1rem 3rem 1.1rem 1.15rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.4;
  list-style: none;
  position: relative;
  color: var(--text-dark);
  hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--black);
  background: #f0f0f2;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.faq-item[open] summary::after {
  content: "−";
  background: var(--navy);
  color: var(--white);
}

.faq-item p {
  padding: 0 1.15rem 1.15rem;
  color: var(--muted-dark);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ── Contact ── */
.contact {
  background: #fff;
  padding-bottom: 3.5rem;
}

.contact-card {
  position: relative;
  background: transparent;
  border-radius: var(--radius);
  padding: 2rem 1.35rem;
  border: none;
  overflow: hidden;
}

.contact-card::before {
  display: none;
}

.contact-card .section-label {
  color: var(--navy);
}

.contact-card h2 {
  font-family: var(--font-body);
  color: var(--text);
  margin-bottom: 0.5rem;
}

.contact-lead {
  color: var(--muted-dark);
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 64px;
  padding: 0.85rem 1.15rem;
  border-radius: 14px;
  text-decoration: none;
  border: 1px solid var(--line);
  background: #f6f7fb;
}

.contact-btn:hover {
  border-color: rgba(35, 45, 94, 0.28);
  background: #fff;
}

.contact-btn-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-dark);
  margin-bottom: 0.15rem;
}

.contact-btn-value {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

.contact-btn--whatsapp {
  background: #25d366;
  border-color: #25d366;
}

.contact-btn--whatsapp:hover {
  background: #1fb855;
}

.contact-btn--whatsapp .contact-btn-label {
  color: rgba(255, 255, 255, 0.85);
}

.contact-btn--whatsapp .contact-btn-value {
  color: var(--white);
}

/* ── Footer ── */
.site-footer {
  background: #111111;
  border-top: none;
  text-align: left;
  padding: 2.5rem 0 calc(2rem + var(--mobile-bar-h));
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  width: 100%;
  max-width: 100%;
}

.footer-logo {
  margin: 0;
}

.site-footer strong {
  color: var(--white);
  font-family: var(--font-body);
}

.footer-copy {
  margin: 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-lang {
  margin: 0;
  font-size: 0.85rem;
}

.site-footer a {
  color: var(--white);
}

.site-footer a:hover {
  opacity: 0.9;
}

.footer-lang a {
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
}

.footer-lang a:hover {
  opacity: 0.9;
}

/* ── Mobile CTA bar ── */
.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: var(--mobile-bar-h);
  padding-bottom: var(--safe-bottom);
  background: var(--white);
  border-top: 3px solid var(--navy);
}

.mobile-bar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--mobile-bar-h);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: filter 0.2s;
}

.mobile-bar-btn--call {
  background: transparent;
  color: var(--navy);
  border-right: 1px solid var(--line);
}

.mobile-bar-btn--wa {
  background: #25d366;
  color: var(--white);
}

.mobile-bar-btn:active {
  filter: brightness(0.95);
}

/* ── Desktop ── */
@media (max-width: 719px) {
  .hero {
    padding: 1.5rem 1rem 2.5rem;
  }

  .hero h1,
  .section h2,
  .repair-box h2,
  .contact-card h2,
  .service-card h3,
  .client-card h3,
  .steps h3,
  .faq-item summary {
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: 0;
    hyphens: none;
    word-break: normal;
    overflow-wrap: normal;
  }

  .hero h1 {
    font-size: 1.48rem;
    line-height: 1.3;
  }

  .section {
    padding: 2.5rem 1rem;
  }

  .section h2,
  .repair-box h2,
  .contact-card h2 {
    font-size: 1.32rem;
    line-height: 1.38;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    flex-wrap: wrap;
  }

  .brand-name {
    font-size: 0.85rem;
    font-family: var(--font-body);
    letter-spacing: 0;
  }

  .header-inner {
    padding: 0.6rem 0.85rem;
  }
}

@media (min-width: 720px) {
  .hero h1 {
    color: var(--text);
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    line-height: 1.25;
  }

  body {
    padding-bottom: 0;
  }

  .header-inner,
  .hero,
  .trust,
  .section,
  .site-footer {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .header-inner {
    position: relative;
    padding: 0.6rem clamp(1.25rem, 4vw, 3rem);
    flex-wrap: nowrap;
  }

  .hero {
    padding-left: clamp(1.25rem, 4vw, 3rem);
    padding-right: clamp(1.25rem, 4vw, 3rem);
  }

  .trust {
    padding-left: clamp(1.25rem, 4vw, 3rem);
    padding-right: clamp(1.25rem, 4vw, 3rem);
  }

  .section {
    padding-left: clamp(1.25rem, 4vw, 3rem);
    padding-right: clamp(1.25rem, 4vw, 3rem);
  }

  .site-footer {
    padding-left: clamp(1.25rem, 4vw, 3rem);
    padding-right: clamp(1.25rem, 4vw, 3rem);
  }

  .header-actions {
    margin-left: 0;
    order: 3;
  }

  .site-nav {
    order: 2;
    margin-left: auto;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    display: flex !important;
    position: static;
    flex-direction: row;
    align-items: center;
    border: none;
    padding: 0;
    gap: 0.25rem;
    background: transparent;
  }

  .site-nav a {
    min-height: 40px;
    font-size: 0.88rem;
    padding: 0 0.85rem;
  }

  .nav-cta {
    margin-top: 0;
    margin-left: 0.5rem;
    padding: 0 1.1rem !important;
    border-radius: 999px;
  }

  .hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    padding: 3.5rem 1.5rem 4rem;
    min-height: auto;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 2;
    padding: 0;
  }

  .hero-showcase {
    width: min(100%, 560px);
    gap: 1rem;
  }

  .hero-diamond {
    width: min(220px, 100%);
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .btn {
    width: auto;
    min-width: 170px;
  }

  .trust-list {
    flex-direction: row;
  }

  .trust-list li {
    flex: 1;
  }

  .service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem;
  }

  .client-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .steps li {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.75rem 1.35rem;
    gap: 0.85rem;
  }

  .step-num {
    margin: 0 auto;
    min-width: 2.8rem;
    height: 2.1rem;
    font-size: 0.82rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  }

  .step-body {
    width: 100%;
  }

  .contact-actions {
    flex-direction: row;
  }

  .contact-btn {
    flex: 1;
  }

  .mobile-bar {
    display: none;
  }

  .site-footer {
    padding-bottom: 2rem;
  }

  .repair-box {
    padding: 2.5rem 2.25rem;
  }

  .repair-list {
    grid-template-columns: repeat(5, 1fr);
  }

  .repair-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: stretch;
    gap: 1.25rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 1200px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .hero {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .brand-name {
    font-size: 1rem;
  }
}

/* ── Trust bar ── */
.trust-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.45;
  padding: 0.55rem 1rem;
}

/* ── Breadcrumbs ── */
.breadcrumbs {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem 1rem 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.breadcrumbs a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* ── Stats / trayectoria ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.stat-item {
  background: var(--white);
  border: 2px solid var(--line);
  border-left: 5px solid var(--navy);
  border-radius: var(--radius-sm);
  padding: 1.1rem 0.85rem;
  text-align: center;
}

.stat-value {
  display: block;
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.35;
}

.trajectory {
  background: #f4f6fb;
  border-bottom: 1px solid var(--line);
}

/* ── Advantages ── */
.advantages-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.advantages-list li {
  position: relative;
  padding: 0.85rem 1rem 0.85rem 2.4rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  line-height: 1.5;
}

.advantages-list li::before {
  content: "✓";
  position: absolute;
  left: 0.85rem;
  top: 0.85rem;
  color: var(--navy);
  font-weight: 700;
}

/* ── Hub link grids ── */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0.65rem;
}

.hub-grid--large {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.hub-link {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
}

.hub-link:hover {
  border-color: var(--navy);
  background: rgba(35, 45, 94, 0.04);
}

.hub-links {
  background: #f4f6fb;
  border-top: 1px solid var(--line);
}

.section-cta {
  margin-top: 1.25rem;
  text-align: center;
}

.text-link {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

/* ── Inner / combo heroes ── */
.page-hero.inner-hero,
.page-hero.combo-hero {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem 1rem;
  background: linear-gradient(180deg, #f4f6fb 0%, var(--white) 100%);
  border-bottom: 1px solid var(--line);
}

.inner-hero-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid var(--navy);
}

.inner-hero-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.content-prose {
  max-width: 72ch;
}

.content-prose p {
  margin-bottom: 1rem;
  color: var(--muted-dark);
  line-height: 1.7;
}

.content-prose h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin: 1.5rem 0 0.75rem;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.92rem;
  line-height: 1.5;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--navy);
  font-weight: 700;
}

.contact-schedule,
.contact-maps {
  margin-top: 1rem;
  color: var(--muted-dark);
  font-size: 0.9rem;
}

.contact-maps a {
  color: var(--navy);
  font-weight: 700;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0;
}

.footer-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.legal-prose {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.legal-prose h1 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.legal-prose .legal-updated {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.legal-prose h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 1.75rem 0 0.65rem;
  color: var(--navy);
}

.legal-prose p,
.legal-prose li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
  color: var(--muted-dark);
}

.legal-prose ul {
  margin: 0 0 1rem 1.15rem;
  padding: 0;
}

.legal-prose a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.reviews {
  text-align: center;
}

.about-preview {
  background: #f5f5f5;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.zones-hub {
  background: var(--white);
}

@media (min-width: 720px) {
  .stats-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hub-grid--large {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-hero.inner-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 2.5rem clamp(1.25rem, 4vw, 3rem);
  }
}

@media (min-width: 1024px) {
  .hub-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn:active,
  .service-card:hover {
    transform: none;
  }
}
