:root {
  color-scheme: dark;
  --bg: #0b101b;
  --bg-soft: #111827;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.14);
  --text: #f8fafc;
  --muted: #b7c0d0;
  --brand: #ffbf1a;
  --brand-dark: #d78f00;
  --green: #21c55d;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius: 28px;
}

* {
  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;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 191, 26, 0.2), transparent 32rem),
    radial-gradient(circle at 90% 12%, rgba(33, 197, 93, 0.15), transparent 30rem),
    linear-gradient(180deg, #0b101b 0%, #111827 48%, #080b12 100%);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(11, 16, 27, 0.82);
  backdrop-filter: blur(18px);
}

.brand,
.nav,
.hero-actions,
.hero-badges,
.footer,
.footer-contact,
.sticky-call {
  display: flex;
  align-items: center;
}

.brand {
  gap: 14px;
}

.brand-mark {
  display: grid;
  min-width: 76px;
  width: 76px;
  height: 76px;
  place-items: center;
  border: 2px solid rgba(255, 191, 26, 0.78);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 191, 26, 0.24), rgba(255, 122, 0, 0.18)),
    rgba(255, 255, 255, 0.06);
  color: var(--brand);
  font-size: 21px;
  font-weight: 1000;
  letter-spacing: -0.08em;
  box-shadow: inset 0 0 22px rgba(255, 191, 26, 0.12), 0 14px 30px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.brand-mark img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 20px;
}

.brand small {
  color: var(--muted);
  font-size: 13px;
}

.nav {
  gap: 16px;
  color: var(--muted);
  font-weight: 650;
}

.nav a:hover {
  color: var(--text);
}

.nav-phone {
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--panel);
  color: var(--text);
}

.hero,
.section,
.quick-info,
.cta-strip,
.footer {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 28px;
  min-height: 690px;
  align-items: center;
  padding: 64px 0 34px;
}

.hero-content,
.hero-card,
.service-card,
.route-panel,
.steps > div,
.faq details,
.quick-info,
.cta-strip {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-content {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 6vw, 64px);
  border-radius: calc(var(--radius) + 10px);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(255, 191, 26, 0.14), rgba(33, 197, 93, 0.08));
}

.hero-content::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 420px;
  height: 260px;
  border: 24px solid rgba(255, 191, 26, 0.16);
  border-radius: 60px;
  transform: rotate(-12deg);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

h2 {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

h3 {
  font-size: 22px;
  line-height: 1.2;
}

.lead {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: #dce4f0;
  font-size: clamp(18px, 2vw, 22px);
}

.logo-lockup {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  padding: 12px 22px 12px 12px;
  border: 1px solid rgba(255, 191, 26, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 28px rgba(255, 191, 26, 0.08);
}

.logo-lockup img {
  display: grid;
  width: 132px;
  height: 132px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  background: #05070b;
  border: 4px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.logo-lockup small {
  color: #f8d678;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-actions {
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), #ff7a00);
  color: #191100;
  box-shadow: 0 18px 34px rgba(255, 164, 0, 0.2);
}

.btn-whatsapp {
  background: rgba(33, 197, 93, 0.16);
  color: #d8ffe7;
  border: 1px solid rgba(33, 197, 93, 0.4);
}

.btn-instagram {
  background: rgba(255, 255, 255, 0.1);
  color: #ffe6f3;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-badges {
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges span,
.route-tags span {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.07);
  color: #e8edf5;
  font-weight: 750;
}

.hero-badges span {
  padding: 9px 13px;
}

.hero-card {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 420px;
  padding: 28px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
}

.vehicle-scene {
  position: relative;
  width: 100%;
  height: 235px;
  margin-bottom: 26px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.96) 0 34%, transparent 35%),
    url("logo.png") center / 210px auto no-repeat,
    linear-gradient(135deg, rgba(255, 191, 26, 0.2), rgba(33, 197, 93, 0.08)),
    rgba(255, 255, 255, 0.05);
}

.vehicle-scene::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 191, 26, 0.32);
  border-radius: 20px;
}

.sun-flare,
.tow-line,
.truck,
.mini-car {
  display: none;
}

.status-dot {
  width: 13px;
  height: 13px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 10px rgba(33, 197, 93, 0.12);
}

.hero-card p {
  position: relative;
  z-index: 1;
  color: var(--green);
  font-weight: 900;
}

.hero-card strong {
  position: relative;
  z-index: 1;
  display: block;
  font-size: clamp(26px, 2.7vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero-card span {
  position: relative;
  z-index: 1;
  color: var(--muted);
  margin: 14px 0 24px;
}

.hero-card a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  padding: 15px 20px;
  border-radius: 18px;
  background: var(--text);
  color: #101522;
  font-weight: 900;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--line);
}

.quick-info div {
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
}

.quick-info strong {
  display: block;
  font-size: 32px;
  letter-spacing: -0.04em;
}

.quick-info span,
.section-heading p,
.service-card p,
.route-panel,
.check-list,
.steps p,
.faq p,
.footer p {
  color: var(--muted);
}

.section {
  padding: 92px 0 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.work-showcase {
  position: relative;
}

.work-showcase::before {
  content: "";
  position: absolute;
  top: 42px;
  right: min(5vw, 70px);
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 191, 26, 0.16);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 191, 26, 0.14), transparent 68%);
  pointer-events: none;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.875fr 0.875fr;
  gap: 18px;
}

.showcase-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    var(--panel);
  box-shadow: var(--shadow);
}

.showcase-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 210px;
  height: 150px;
  border: 18px solid rgba(255, 191, 26, 0.16);
  border-radius: 36px;
  transform: rotate(-14deg);
}

.showcase-card.large {
  min-height: 320px;
  background:
    linear-gradient(135deg, rgba(255, 191, 26, 0.24), rgba(33, 197, 93, 0.1)),
    rgba(255, 255, 255, 0.08);
}

.showcase-card.accent {
  background:
    linear-gradient(135deg, rgba(33, 197, 93, 0.18), rgba(255, 255, 255, 0.05)),
    var(--panel);
}

.showcase-card span {
  display: inline-flex;
  margin-bottom: 52px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--brand);
  font-weight: 1000;
  letter-spacing: -0.04em;
}

.showcase-card .showcase-label {
  font-size: 58px;
  line-height: 0.9;
  letter-spacing: -0.1em;
  color: #15100a;
  background: linear-gradient(135deg, var(--brand), #ff7a00);
}

.showcase-card h3,
.showcase-card p {
  position: relative;
  z-index: 1;
}

.showcase-card p {
  max-width: 360px;
  margin-bottom: 0;
  color: var(--muted);
}

.service-card,
.steps > div {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--panel);
}

.service-card span,
.steps span {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(255, 191, 26, 0.14);
  color: var(--brand);
  font-weight: 900;
}

.service-card p,
.steps p,
.footer p {
  margin-bottom: 0;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 92px;
  padding: clamp(26px, 4vw, 46px);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 191, 26, 0.18), rgba(33, 197, 93, 0.12)),
    var(--panel);
}

.cta-strip h2,
.cta-strip p:last-child {
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(255, 191, 26, 0.12);
}

.route-panel {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--panel);
}

.route-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.route-tags span {
  padding: 10px 13px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.faq {
  padding-bottom: 92px;
}

.faq details {
  margin-bottom: 14px;
  padding: 22px 26px;
  border-radius: 20px;
  background: var(--panel);
}

.faq summary {
  cursor: pointer;
  font-size: 19px;
  font-weight: 900;
}

.faq p {
  margin: 14px 0 0;
}

.footer {
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 110px;
  border-top: 1px solid var(--line);
}

.footer-contact {
  gap: 12px;
  font-weight: 900;
}

.footer-contact a {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--panel);
}

.sticky-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(11, 16, 27, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.sticky-call a {
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 900;
}

.sticky-call a:first-child {
  background: var(--brand);
  color: #161006;
}

.sticky-call a:last-child {
  background: rgba(33, 197, 93, 0.18);
  color: #d8ffe7;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 38px;
  }

  .hero-card {
    min-height: 360px;
  }

  .quick-info,
  .service-grid,
  .showcase-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .showcase-card.large {
    grid-column: 1 / -1;
  }

  .cta-strip {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand-mark {
    min-width: 60px;
    width: 60px;
    height: 60px;
    border-radius: 18px;
  }

  .brand-mark img {
    width: 54px;
    height: 54px;
  }

  .nav a:not(.nav-phone) {
    display: none;
  }

  .hero,
  .section,
  .quick-info,
  .cta-strip,
  .footer {
    width: min(100% - 24px, 1180px);
  }

  .hero-content,
  .service-card,
  .steps > div,
  .route-panel {
    padding: 22px;
  }

  h1 {
    font-size: 44px;
  }

  .quick-info,
  .service-grid,
  .showcase-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 66px;
  }

  .cta-strip {
    margin-top: 66px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .sticky-call {
    left: 12px;
    right: 12px;
    justify-content: center;
  }

  .sticky-call a {
    flex: 1;
    text-align: center;
  }
}
