/* ══ Reset & Base ════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:          #CC0000;
  --red-dark:     #a80000;
  --red-light:    #fef2f2;
  --text:         #111827;
  --text-mid:     #374151;
  --text-muted:   #6b7280;
  --border:       #e5e7eb;
  --bg:           #ffffff;
  --bg-soft:      #f9fafb;
  --bg-section:   #f3f4f6;
  --hero-bg:      #0d1117;
  --radius:       12px;
  --radius-lg:    16px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:    0 4px 16px rgba(0,0,0,.09), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:    0 10px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.07);
  --transition:   .18s ease;
}

html { scroll-behavior: smooth; scroll-padding-top: 72px; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ══ Scroll animations ═══════════════════════════════════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══ Buttons ═════════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
}
.btn:hover  { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-sm   { padding: 7px 16px; font-size: 13px; }
.btn-lg   { padding: 14px 28px; font-size: 15px; border-radius: 10px; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 2px 8px rgba(204,0,0,.25);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 4px 16px rgba(204,0,0,.35);
}

.btn-ghost {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.3);
}
.btn-ghost:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.6); }

.btn-white {
  background: #fff;
  color: var(--red);
  border-color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-white:hover { background: #f5f5f5; box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline:hover { background: var(--red-light); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* ══ Announcement strip ══════════════════════════════════════════════════════ */
.announce-strip {
  background: #f3f4f6;
  border-bottom: 1px solid #e5e7eb;
  text-align: center;
  padding: 7px 16px;
  font-size: 11.5px;
  color: #9ca3af;
  letter-spacing: .1px;
  line-height: 1.4;
}
.announce-strip strong { color: #6b7280; font-weight: 600; }

/* ══ Nav ═════════════════════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo {
  width: 38px;
  height: 38px;
  background: var(--red);
  color: #fff;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}

.nav-name { font-weight: 700; font-size: 15px; line-height: 1.2; }
.nav-sub  { font-size: 11px; color: var(--text-muted); }

.nav-links {
  display: flex;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  transition: background var(--transition), color var(--transition);
}
.nav-links a:hover { background: var(--bg-soft); color: var(--text); text-decoration: none; }

/* ══ Shared section styles ═══════════════════════════════════════════════════ */
.section { padding: 88px 0; }

.section-header { text-align: center; margin-bottom: 56px; }

.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  letter-spacing: -0.6px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ══ Hero ════════════════════════════════════════════════════════════════════ */
.hero {
  background: var(--hero-bg);
  color: #fff;
  padding: 80px 0 96px;
  position: relative;
  overflow: hidden;
}

/* Subtle dot-grid pattern */
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(204,0,0,.12) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 80%, rgba(30,60,120,.18) 0%, transparent 55%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3px;
  margin-bottom: 22px;
  color: rgba(255,255,255,.8);
}

.hero-headline {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}
.hero-br { display: block; }

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.72);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero contact card */
.hero-card {
  flex-shrink: 0;
}

.hero-card-inner {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  backdrop-filter: blur(8px);
}

.hero-avatar {
  width: 72px;
  height: 72px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 auto 14px;
}

.hero-card-name  { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.hero-card-title {
  font-size: 13px;
  font-weight: 700;
  color: #ffb3b3;
  letter-spacing: .2px;
  margin-bottom: 4px;
}
.hero-card-role    { font-size: 12px; color: rgba(255,255,255,.5); margin-bottom: 8px; }
.hero-card-network {
  font-size: 10.5px;
  font-weight: 500;
  color: rgba(255,255,255,.35);
  letter-spacing: .2px;
  margin-bottom: 20px;
}

.hero-card-divider {
  height: 1px;
  background: rgba(255,255,255,.1);
  margin-bottom: 20px;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-stat {
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  padding: 12px 8px;
}
.hero-stat-value { font-size: 13px; font-weight: 700; line-height: 1.2; margin-bottom: 3px; }
.hero-stat-label { font-size: 10px; color: rgba(255,255,255,.5); line-height: 1.3; }

.hero-card-phone {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  transition: background var(--transition), border-color var(--transition);
}
.hero-card-phone:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.4);
  text-decoration: none;
}

/* ══ Why Lease With Me ═══════════════════════════════════════════════════════ */
.why-me { background: var(--bg); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: #ddd;
}

.why-icon { margin-bottom: 18px; }

.why-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ══ Lease Specials ══════════════════════════════════════════════════════════ */
.specials { background: var(--bg-section); }

.specials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.special-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.special-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.special-badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0 0 8px 8px;
}

.special-model {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 3px;
  padding-top: 6px;
}

.special-trim {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.special-offer-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 4px;
}

.special-offer-note {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 20px;
}

.special-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
  flex: 1;
}
.special-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.special-detail:last-child { border-bottom: none; padding-bottom: 0; }
.special-detail span { color: var(--text-muted); }
.special-detail strong { color: var(--text); font-weight: 600; }

.specials-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.specials-footer p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ══ How It Works ════════════════════════════════════════════════════════════ */
.how-it-works { background: var(--bg); }

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.step-number {
  width: 52px;
  height: 52px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(204,0,0,.3);
}

.step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.step-connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--border), var(--border));
  background-image: repeating-linear-gradient(90deg, var(--border) 0, var(--border) 5px, transparent 5px, transparent 10px);
  margin-top: 26px;
  position: relative;
}
.step-connector::after {
  content: "";
  position: absolute;
  right: -5px;
  top: -4px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--border);
}

/* ══ Benefits ════════════════════════════════════════════════════════════════ */
.benefits { background: var(--bg-section); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.benefit-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.benefit-icon { font-size: 28px; margin-bottom: 14px; }

.benefit-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ══ FAQ ═════════════════════════════════════════════════════════════════════ */
.faq-section { background: var(--bg); }

.faq {
  max-width: 740px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  font-family: inherit;
  line-height: 1.4;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-soft); }

.faq-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.28s ease, color 0.18s ease;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--red);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.28s ease;
  padding: 0 24px;
}
.faq-answer p {
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.75;
  padding-bottom: 22px;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

/* ══ CTA Banner ══════════════════════════════════════════════════════════════ */
.cta-banner {
  background: var(--red);
  color: #fff;
  padding: 64px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-text h2 {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.cta-text p {
  font-size: 16px;
  opacity: .8;
}

/* ══ Form ════════════════════════════════════════════════════════════════════ */
.form-section { background: #f0f4ff; }

.form-wrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-row .field { margin-bottom: 0; }

label { font-size: 13px; font-weight: 600; color: var(--text); }

.req      { color: var(--red); }
.optional { color: var(--text-muted); font-weight: 400; }

input, select, textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

textarea { resize: vertical; min-height: 90px; }

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204,0,0,.1);
}

input::placeholder, textarea::placeholder { color: #b0b7c3; }

input.invalid, select.invalid, textarea.invalid {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,.1);
}

.field-error {
  font-size: 12px;
  color: #e53e3e;
  min-height: 16px;
}

.form-alert {
  padding: 13px 17px;
  border-radius: 8px;
  font-size: 14px;
  margin-bottom: 18px;
  line-height: 1.5;
}
.form-alert.error   { background: #fff5f5; border: 1px solid #fed7d7; color: #c53030; }
.form-alert.success { background: #f0fff4; border: 1px solid #c6f6d5; color: #276749; }
.hidden { display: none !important; }

.form-consent {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.6;
  text-align: center;
}

/* ══ Spinner ═════════════════════════════════════════════════════════════════ */
.spinner {
  width: 17px;
  height: 17px;
  border: 2.5px solid rgba(255,255,255,.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ══ Success message ═════════════════════════════════════════════════════════ */
.success-msg { text-align: center; padding: 24px 0; }

.success-icon {
  width: 64px;
  height: 64px;
  background: #f0fff4;
  border: 2px solid #c6f6d5;
  border-radius: 50%;
  font-size: 28px;
  color: #276749;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.success-msg h3 { font-size: 23px; font-weight: 800; margin-bottom: 10px; }
.success-msg p  { color: var(--text-muted); font-size: 15px; line-height: 1.65; margin-bottom: 8px; }

.success-contact {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-mid);
  display: inline-block;
  text-align: left;
}
.success-contact strong { color: var(--text); }
.success-contact a { color: var(--red); }

/* ══ Disclosure ══════════════════════════════════════════════════════════════ */
.disclosure {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.disclosure p {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 900px;
}

/* ══ Footer ══════════════════════════════════════════════════════════════════ */
.footer {
  background: #0d1117;
  color: rgba(255,255,255,.65);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 40px;
  padding: 52px 24px 44px;
}

.footer-logo {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
}

.footer-name  { color: #fff; font-weight: 700; font-size: 15px; margin-bottom: 3px; }
.footer-addr  { font-size: 12px; color: rgba(255,255,255,.4); }

.footer-contact {
  font-size: 13px;
  line-height: 1.9;
}
.footer-contact a       { color: rgba(255,255,255,.65); }
.footer-contact a:hover { color: #fff; }
.footer-contact strong  { color: #fff; }
.footer-person          { margin-bottom: 2px; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-end;
  font-size: 13px;
}
.footer-links a       { color: rgba(255,255,255,.5); }
.footer-links a:hover { color: #fff; }

.footer-tlg {
  background: #070b10;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 18px 24px;
}

.footer-tlg-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-tlg-brand {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.35);
  margin-bottom: 2px;
}

.footer-tlg-tag {
  font-size: 11px;
  color: rgba(255,255,255,.2);
}

.footer-tlg-specialist {
  font-size: 11.5px;
  color: rgba(255,255,255,.25);
}
.footer-tlg-specialist strong { color: rgba(255,255,255,.4); font-weight: 600; }

/* ══ Responsive ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .specials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .why-grid { grid-template-columns: 1fr; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-card  { display: none; }
  .hero-br    { display: none; }
  .hero-headline { font-size: clamp(30px, 7vw, 46px); }

  .steps { flex-direction: column; align-items: center; gap: 32px; }
  .step  { max-width: 360px; }
  .step-connector { width: 2px; height: 32px; margin: 0 0 0 0; align-self: center;
    background-image: repeating-linear-gradient(180deg, var(--border) 0, var(--border) 5px, transparent 5px, transparent 10px); }
  .step-connector::after { display: none; }

  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }

  .nav-links { display: none; }

  .hero { padding: 56px 0 72px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; max-width: 320px; }

  .specials-grid { grid-template-columns: 1fr; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-inner .btn { width: 100%; max-width: 280px; }

  .form-wrap  { padding: 32px 24px; }
  .form-row   { grid-template-columns: 1fr; gap: 0; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-links { align-items: flex-start; }
}

@media (max-width: 520px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .form-wrap { padding: 28px 20px; }

  .specials-footer { flex-direction: column; align-items: flex-start; }
}
