:root {
  --bg: #050505;
  --bg-deep: #0b0b0d;
  --bg-blue: #101827;
  --panel: rgba(16, 16, 18, 0.9);
  --panel-strong: rgba(22, 22, 25, 0.96);
  --text: #f7f7f7;
  --muted: #c5c8cf;
  --accent: #ff3131;
  --accent-strong: #ff1414;
  --accent-soft: #ff9d9d;
  --accent-deep: #8e0f16;
  --accent-glow: rgba(255, 49, 49, 0.3);
  --ink-blue: rgba(36, 65, 122, 0.28);
  --metal: #e8e8ea;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.16);
  --success: #6affb7;
  --whatsapp: #25d366;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: Bahnschrift, "Segoe UI Variable", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 49, 49, 0.18), transparent 25%),
    radial-gradient(circle at 84% 10%, rgba(60, 92, 158, 0.14), transparent 18%),
    radial-gradient(circle at 52% 100%, rgba(255, 49, 49, 0.08), transparent 26%),
    linear-gradient(180deg, #020202 0%, #09090b 36%, #101116 100%);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 42%, transparent 92%);
  opacity: 0.45;
  pointer-events: none;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-shell {
  width: min(1240px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 18px 0 54px;
}

.topbar, .glass-panel, .stat-card, .feature-card, .package-card, .testimonial-card, .blog-card, .section,
.timeline-item, .contact-card, .lead-form, .contact-form, .footer, .package-detail {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(28, 29, 35, 0.94), rgba(12, 12, 15, 0.96));
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.topbar {
  position: sticky;
  top: 18px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 20px;
  background:
    linear-gradient(180deg, rgba(20, 21, 26, 0.96), rgba(11, 11, 13, 0.96));
  border-color: rgba(255, 255, 255, 0.09);
  border-radius: 999px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 30px rgba(255, 49, 49, 0.35);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
}
.nav a {
  position: relative;
  padding: 8px 0;
  transition: color 180ms ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0.35);
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}
.nav a.active, .nav a:hover, .nav a:focus-visible { color: var(--text); }
.nav a.active::after, .nav a:hover::after, .nav a:focus-visible::after {
  transform: scaleX(1);
  opacity: 1;
}

.menu-toggle {
  display: none;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.2);
  outline-offset: 3px;
}
.button:disabled {
  cursor: wait;
  opacity: 0.7;
}
.button-primary {
  position: relative;
  border: 1px solid rgba(255, 143, 143, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(135deg, #ff5c5c 0%, #d71d25 52%, #840912 100%);
  color: #fff7f7;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 16px 34px rgba(143, 9, 18, 0.34);
}
.button-primary:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 18px 38px rgba(143, 9, 18, 0.42);
}
.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    linear-gradient(135deg, rgba(19, 22, 30, 0.96), rgba(12, 13, 16, 0.96));
  color: var(--text);
}
.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(22, 25, 34, 0.98), rgba(12, 13, 16, 0.98));
}

.hero-home {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
  padding: 72px 0 40px;
}
.page-hero { padding: 72px 0 26px; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.8rem;
}
h1, h2, h3 { margin: 0; line-height: 0.98; }
h1, .section-head h2, .copy-block h2, .page-hero h1 {
  font-family: "Arial Black", Impact, Bahnschrift, sans-serif;
  letter-spacing: -0.04em;
}
.hero-copy h1, .page-hero h1 {
  max-width: 11.5ch;
  font-size: clamp(3rem, 8vw, 6.6rem);
}
.hero-copy .lead {
  max-width: 62ch;
}

.lead, .hero-copy p, .feature-card p, .package-card p, .testimonial-card p, .blog-card p,
.section p, .copy-block p, .package-detail p, .timeline-item p, .contact-card li, .footer p, .form-note {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.04rem;
}

.hero-actions, .cta-actions, .form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-note {
  margin-top: 18px;
  padding-left: 16px;
  border-left: 2px solid rgba(255, 49, 49, 0.28);
  color: var(--muted);
  font-size: 0.96rem;
}

.stats-grid, .cards, .panel-grid, .form-grid, .feature-stack, .timeline, .footer-links {
  display: grid;
  gap: 18px;
}
.simple-points {
  display: grid;
  gap: 14px;
}
.simple-points .trust-chip strong {
  margin-bottom: 0;
}
.stats-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 30px; }
.four-up { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.panel-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.trust-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.stat-card, .feature-card, .package-card, .testimonial-card, .blog-card, .package-detail, .contact-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius-lg);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.feature-card::before, .package-card::before, .package-detail::before, .blog-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  opacity: 0.8;
}
.stat-card:hover, .feature-card:hover, .package-card:hover, .testimonial-card:hover, .blog-card:hover, .package-detail:hover, .contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 34px 84px rgba(0, 0, 0, 0.46);
}
.placeholder-media {
  display: grid;
  place-items: center;
  min-height: 220px;
  margin-bottom: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(18, 22, 31, 0.98), rgba(12, 13, 16, 0.98));
  color: rgba(255, 255, 255, 0.66);
  text-align: center;
  font-weight: 700;
}
.package-card h3,
.package-detail h2 {
  line-height: 1.12;
}
.testimonial-card strong {
  display: block;
  margin-top: 18px;
  color: var(--metal);
}
.testimonial-card span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.5;
}
.trust-chip, .request-card, .faq-card, .result-card {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(17, 20, 27, 0.96), rgba(12, 13, 16, 0.98));
}
.trust-chip strong, .request-card strong, .faq-card h3, .result-card strong {
  display: block;
  margin-bottom: 10px;
}
.trust-chip span {
  display: block;
  color: var(--muted);
  line-height: 1.6;
}
.trust-band {
  padding-top: 24px;
  padding-bottom: 24px;
}
.trust-band .trust-chip {
  min-height: 100%;
}
.request-card span, .faq-card span, .result-card span {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 49, 49, 0.12);
  color: var(--accent-soft);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.result-card {
  position: relative;
  overflow: hidden;
}
.result-media {
  display: grid;
  place-items: center;
  min-height: 120px;
  margin-bottom: 16px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 49, 49, 0.18), rgba(36, 65, 122, 0.18)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  color: var(--metal);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-align: center;
  overflow: hidden;
}
.result-media img {
  width: 100%;
  height: 100%;
  min-height: 120px;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.result-image-golf { object-position: center 58%; }
.result-image-yaris { object-position: center 62%; }
.result-image-bmw { object-position: center 54%; }
.result-image-peugeot { object-position: center 60%; }
.result-image-audi { object-position: center 57%; }
.result-card-success {
  border-color: rgba(106, 255, 183, 0.16);
}
.result-card-danger {
  border-color: rgba(255, 49, 49, 0.2);
}
.result-card-danger .result-media {
  background:
    linear-gradient(135deg, rgba(255, 49, 49, 0.22), rgba(90, 12, 12, 0.18)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}
.result-card .package-list {
  margin-top: 14px;
}
.result-card .package-list li {
  margin-bottom: 8px;
}
.stat-card strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: "Arial Black", Impact, sans-serif;
  color: var(--metal);
}

.hero-panel {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.glass-panel {
  position: relative;
  width: min(100%, 520px);
  padding: 24px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(255, 49, 49, 0.16), transparent 34%),
    radial-gradient(circle at 100% 0, rgba(36, 65, 122, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(28, 29, 35, 0.98), rgba(10, 10, 12, 0.98));
}
.glass-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 35%),
    linear-gradient(transparent 70%, rgba(255, 49, 49, 0.18));
  pointer-events: none;
}
.panel-top { display: flex; align-items: center; justify-content: space-between; }
.status-badge {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.84rem;
}
.live-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 16px var(--success);
}
.logo-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 220px;
  margin: 18px 0 18px;
}
.logo-stage::before {
  content: "";
  position: absolute;
  width: 58%;
  height: 58%;
  border-radius: 28px;
  background: radial-gradient(circle, rgba(255, 49, 49, 0.2), transparent 68%);
  filter: blur(24px);
}
.logo-lockup {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}
.logo-lockup img {
  width: min(100%, 190px);
}
.logo-copy {
  display: grid;
  gap: 6px;
}
.logo-copy strong {
  font-size: 1.08rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.logo-copy span {
  color: var(--muted);
  font-size: 0.94rem;
}
.hero-summary {
  margin-bottom: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(19, 23, 31, 0.96), rgba(13, 14, 17, 0.98));
}
.hero-summary h3 {
  margin-bottom: 14px;
  line-height: 1.15;
}
.summary-list {
  margin: 0;
}
.summary-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  align-items: flex-start;
}
.summary-list li:last-child {
  border-bottom: 0;
}
.summary-list strong {
  color: var(--metal);
  min-width: 102px;
  white-space: nowrap;
}
.panel-grid article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(15, 18, 23, 0.96), rgba(10, 10, 12, 0.98));
}
.panel-grid-hero article {
  min-height: 108px;
}
.panel-grid article strong { line-height: 1.45; }
.panel-grid article {
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}
.panel-grid article:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
}
.panel-grid span, .package-card span, .blog-card span, .package-detail span {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.section {
  margin-top: 28px;
  padding: 32px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(26, 27, 32, 0.95), rgba(10, 10, 13, 0.97));
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}
.section-head { margin-bottom: 24px; }
.section-head .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-head .eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 49, 49, 0.92), transparent);
}
.section-head h2, .copy-block h2 {
  max-width: 14ch;
  font-size: clamp(2.2rem, 5vw, 4rem);
}
.spotlight-grid, .split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.cta-section {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.feature-card h3, .package-card h3, .blog-card h2, .package-detail h2, .timeline-item h2, .contact-card h2 {
  line-height: 1.15;
}
.feature-card h3, .package-card h3, .package-detail h2 {
  margin-bottom: 10px;
}

.list-clean {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.list-clean li { margin-top: 12px; color: var(--muted); }

.timeline-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 18px;
  padding: 22px;
  border-radius: var(--radius-lg);
}
.timeline-item span {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 49, 49, 0.26), rgba(123, 16, 21, 0.28));
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lead-form, .contact-form {
  padding: 28px;
  border-radius: var(--radius-xl);
}
.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  color: var(--text);
  font: inherit;
}
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus {
  outline: none;
  border-color: rgba(255, 88, 88, 0.4);
  box-shadow: 0 0 0 4px rgba(255, 49, 49, 0.08);
}
.form-grid input::placeholder, .form-grid textarea::placeholder {
  color: #9da2aa;
}
.form-grid textarea { resize: vertical; min-height: 120px; }
.full-span { grid-column: 1 / -1; }
.form-note { margin: 0; max-width: 50ch; }
.form-status {
  margin: 14px 0 0;
  min-height: 24px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}
.form-status strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}
.form-status span {
  display: block;
  color: inherit;
  font-size: 0.96rem;
  line-height: 1.6;
}
.form-status[data-state="success"] {
  background: rgba(33, 186, 116, 0.14);
  color: #aaf0c8;
  border: 1px solid rgba(106, 255, 183, 0.18);
}
.form-status[data-state="error"] {
  background: rgba(255, 49, 49, 0.12);
  color: #ffb0b0;
  border: 1px solid rgba(255, 49, 49, 0.18);
}
.form-status[data-state="loading"] {
  background: rgba(255, 255, 255, 0.06);
  color: var(--metal);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.form-expand {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(17, 20, 27, 0.96), rgba(12, 13, 16, 0.98));
}
.form-expand summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 20px;
  font-weight: 800;
  color: var(--metal);
}
.form-expand summary::-webkit-details-marker {
  display: none;
}
.form-expand[open] summary {
  border-bottom: 1px solid var(--line);
}
.form-grid-optional {
  padding: 18px;
}
.lead-form.is-submitted,
.contact-form.is-submitted {
  border-color: rgba(106, 255, 183, 0.2);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(106, 255, 183, 0.08);
}
.package-price {
  display: block;
  margin-top: 18px;
  color: var(--metal);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.package-cta { margin-top: 18px; }

.footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 30px;
  padding: 28px;
  border-radius: var(--radius-xl);
}
.footer-links h3 {
  margin: 0 0 14px;
  font-size: 0.98rem;
  color: var(--metal);
}
.footer-links a {
  color: var(--muted);
  transition: color 180ms ease, transform 180ms ease;
}
.footer-links a:hover {
  color: var(--text);
  transform: translateX(2px);
}
.contact-card .list-clean {
  display: grid;
  gap: 10px;
}

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px 0 16px;
  border: 1px solid rgba(82, 234, 143, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 55%),
    linear-gradient(135deg, rgba(23, 91, 55, 0.96), rgba(8, 34, 20, 0.98));
  color: #f4fff8;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 18px 36px rgba(9, 53, 29, 0.4);
}
.whatsapp-float::before {
  content: "WA";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 1120px) {
  .hero-home, .spotlight-grid, .split-section, .four-up, .three-up, .two-up, .footer, .cta-section, .stats-grid, .trust-strip {
    grid-template-columns: 1fr;
  }
  .hero-panel { min-height: 520px; }
  .section-head h2, .copy-block h2, .hero-copy h1, .page-hero h1 { max-width: none; }
}

@media (max-width: 860px) {
  body::before { display: none; }
  .topbar, .glass-panel, .stat-card, .feature-card, .package-card, .testimonial-card, .blog-card, .section,
  .timeline-item, .contact-card, .lead-form, .contact-form, .footer, .package-detail {
    backdrop-filter: none;
  }
  .site-shell { width: min(100vw - 18px, 1240px); }
  .topbar {
    position: static;
    flex-wrap: wrap;
    border-radius: 28px;
    padding: 12px 14px;
    gap: 12px;
  }
  .brand span { font-size: 0.92rem; }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background:
      linear-gradient(180deg, rgba(17, 19, 24, 0.98), rgba(10, 11, 14, 0.98));
  }
  .nav.is-open { display: flex; }
  .nav a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav a:last-child { border-bottom: 0; }
  .topbar-cta { width: 100%; }
  .topbar-cta.button-primary {
    justify-content: center;
  }
  .page-hero, .hero-home { padding-top: 38px; }
  .hero-panel { min-height: 420px; }
  .logo-stage { min-height: 180px; }
  .logo-stage img {
    width: min(100%, 160px);
    filter: none;
  }
  .logo-stage::before {
    filter: blur(16px);
  }
  .form-grid, .panel-grid { grid-template-columns: 1fr; }
  .lead-form, .contact-form, .section, .footer { padding: 22px; }
  .full-span { grid-column: auto; }
  .section { margin-top: 22px; }
  .stat-card, .feature-card, .package-card, .testimonial-card, .blog-card, .package-detail, .contact-card, .trust-chip, .request-card, .faq-card, .result-card {
    padding: 20px;
  }
}

@media (max-width: 580px) {
  .site-shell { width: min(100vw - 12px, 1240px); }
  .brand { gap: 10px; }
  .brand img { width: 38px; height: 38px; }
  .hero-copy h1, .page-hero h1 { font-size: clamp(2.35rem, 12vw, 3.6rem); }
  .eyebrow { letter-spacing: 0.18em; }
  .button, .hero-actions .button, .cta-actions .button { width: 100%; }
  .hero-actions, .cta-actions, .form-actions { gap: 12px; }
  .page-hero, .hero-home { padding-top: 26px; }
  .hero-panel { min-height: 320px; }
  .logo-stage::before { display: none; }
  .logo-copy strong {
    font-size: 0.98rem;
  }
  .logo-copy span {
    font-size: 0.88rem;
  }
  .summary-list li {
    flex-direction: column;
    gap: 4px;
  }
  .summary-list strong {
    min-width: 0;
    white-space: normal;
  }
  .stats-grid { gap: 14px; margin-top: 22px; }
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .timeline-item span {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }
  .whatsapp-float {
    right: 12px;
    left: auto;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    min-height: 48px;
    padding: 0 14px 0 12px;
    border-radius: 16px;
    font-size: 0.9rem;
  }
  .whatsapp-float::before {
    width: 24px;
    height: 24px;
    font-size: 0.66rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .orbital,
  .reveal,
  .button {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  body::before {
    display: none;
  }
  .topbar, .glass-panel, .stat-card, .feature-card, .package-card, .testimonial-card, .blog-card, .section,
  .timeline-item, .contact-card, .lead-form, .contact-form, .footer, .package-detail {
    backdrop-filter: none;
  }
  .logo-stage::before,
  .logo-stage img {
    filter: none;
  }
}
