:root {
  --blue: #2d96ee;
  --blue-deep: #126fbe;
  --red: #ff4d48;
  --red-deep: #df3733;
  --green: #22c763;
  --ink: #172238;
  --muted: #657187;
  --line: #e9eef5;
  --surface: #f5f9fd;
  --white: #fff;
  --shadow: 0 18px 55px rgba(33, 77, 118, .11);
}

* { 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(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(45,150,238,.08), transparent 28%),
    radial-gradient(circle at 94% 9%, rgba(255,77,72,.07), transparent 25%),
    var(--white);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.container { width: min(1160px, calc(100% - 36px)); margin-inline: auto; }

.site-header { padding: 14px 0 6px; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; }
.brand img { display: block; width: 190px; height: auto; }
.header-actions { display: flex; align-items: center; gap: 9px; }
.phone-pill, .whatsapp-icon {
  border: 1px solid rgba(23,34,56,.09);
  background: rgba(255,255,255,.9);
  box-shadow: 0 6px 18px rgba(33,77,118,.07);
  text-decoration: none;
}
.phone-pill {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 42px; padding: 8px 14px; border-radius: 999px;
  color: var(--blue-deep); font-size: .92rem; font-weight: 800;
}
.whatsapp-icon {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  color: var(--white); background: var(--green); font-size: 1.05rem; font-weight: 900;
}

.hero { padding: 18px 0 42px; }
.intro { max-width: 850px; margin: 0 auto 26px; text-align: center; }
.eyebrow {
  display: inline-block; margin-bottom: 8px; color: var(--blue-deep);
  font-size: .76rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase;
}
h1, h2, p { margin-top: 0; }
h1 {
  margin-bottom: 10px; font-size: clamp(2.15rem, 4.5vw, 4.25rem); line-height: 1;
  letter-spacing: -.05em; font-weight: 900;
}
h1 span {
  background: linear-gradient(105deg, var(--blue-deep), var(--blue) 60%, var(--red));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.intro p { margin: 0 auto; max-width: 720px; color: var(--muted); font-size: 1rem; }

.offers { display: grid; grid-template-columns: 1.05fr .95fr; gap: 20px; align-items: stretch; }
.offer-card {
  display: flex; flex-direction: column; min-width: 0; padding: 26px;
  border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.94);
  box-shadow: var(--shadow); overflow: hidden; position: relative;
}
.offer-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-deep));
}
.offer-card--drive::before { background: linear-gradient(90deg, var(--red), var(--blue)); }
.offer-topline { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.offer-label { color: var(--blue-deep); font-size: .72rem; font-weight: 900; letter-spacing: .11em; }
.offer-card--drive .offer-label { color: var(--red-deep); }
.offer-tag {
  display: inline-flex; align-items: center; min-height: 28px; padding: 5px 10px; border-radius: 999px;
  color: var(--blue-deep); background: #eaf5ff; font-size: .74rem; font-weight: 850;
}
.offer-tag--red { color: var(--red-deep); background: #fff0ef; }
.offer-card h2 { margin-bottom: 10px; font-size: clamp(1.55rem, 2.35vw, 2.15rem); line-height: 1.08; letter-spacing: -.035em; }
.offer-lead { margin-bottom: 7px; font-size: 1rem; font-weight: 650; }
.offer-note { margin-bottom: 15px; color: var(--muted); font-size: .92rem; }

.feature-list { list-style: none; padding: 0; margin: 3px 0 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 9px 16px; }
.feature-list li { position: relative; padding-left: 24px; color: #3f4d62; font-size: .9rem; }
.feature-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0; display: grid; place-items: center;
  width: 17px; height: 17px; border-radius: 50%; color: var(--white); background: var(--blue);
  font-size: .66rem; font-weight: 900;
}

.location-notice {
  display: flex; align-items: center; gap: 9px; margin: 9px 0 16px; padding: 11px 13px;
  border: 1px solid #ffe0de; border-radius: 12px; color: #a63330; background: #fff5f4; font-size: .9rem;
}
.location-notice span { color: var(--red); font-size: .72rem; }
.drive-points { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin: 2px 0 18px; }
.drive-points span {
  padding: 10px 12px; border: 1px solid var(--line); border-radius: 11px;
  background: var(--surface); color: #4a586d; font-size: .88rem; font-weight: 750;
}

.card-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: auto; }
.card-actions--bottom { flex-direction: column; align-items: stretch; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 11px 15px;
  border-radius: 12px; text-decoration: none; text-align: center; font-size: .86rem; font-weight: 850;
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--blue { color: var(--white); background: linear-gradient(135deg, var(--blue), var(--blue-deep)); box-shadow: 0 10px 23px rgba(45,150,238,.18); }
.btn--whatsapp { color: var(--white); background: linear-gradient(135deg, #25d366, #179949); box-shadow: 0 10px 23px rgba(37,211,102,.16); }
.phone-link { text-align: center; color: var(--blue-deep); text-decoration: none; font-size: .9rem; }
.phone-link:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .offers { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 22px, 1160px); }
  .site-header { padding-top: 10px; }
  .brand img { width: 150px; }
  .phone-pill { width: 42px; height: 42px; padding: 0; justify-content: center; }
  .phone-pill span:last-child { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
  .whatsapp-icon { display: none; }
  .hero { padding-top: 14px; padding-bottom: 26px; }
  .intro { margin-bottom: 18px; }
  h1 { font-size: clamp(2rem, 11.5vw, 3.25rem); }
  .intro p { font-size: .92rem; }
  .offer-card { padding: 20px 17px; border-radius: 19px; }
  .feature-list, .drive-points { grid-template-columns: 1fr; }
  .card-actions { display: grid; }
  .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
