:root {
  --navy: #1f2738;
  --navy-deep: #161d2b;
  --indigo: #6366f1;
  --indigo-dark: #4f46e5;
  --violet: #7c6cf0;
  --yellow: #f5b301;
  --text: #1e2433;
  --muted: #6b7280;
  --muted-2: #9ca3af;
  --line: #e9ebf0;
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --bg-softer: #f0f1f5;
  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, .05);
  --shadow: 0 10px 30px rgba(16, 24, 40, .08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--indigo); color: #fff; box-shadow: 0 6px 16px rgba(99, 102, 241, .3); }
.btn-primary:hover { background: var(--indigo-dark); }
.btn-ghost { background: rgba(255, 255, 255, .08); color: #fff; border-color: rgba(255, 255, 255, .22); }
.btn-ghost:hover { background: rgba(255, 255, 255, .15); }
.btn-white { background: #fff; color: var(--indigo-dark); }
.btn-ghost-dark { background: #fff; color: var(--indigo); border-color: var(--line); margin-top: 9px; }
.btn-ghost-dark:hover { border-color: var(--indigo); background: var(--bg-soft); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 68px;
}
.brand { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; }
.brand-dot { width: 13px; height: 13px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 4px rgba(245, 179, 1, .18); }
.brand-name { font-size: 19px; letter-spacing: -.02em; }

.nav { display: flex; align-items: center; gap: 28px; margin-left: 18px; }
.nav-item { font-size: 14.5px; font-weight: 500; color: #4a5163; display: inline-flex; align-items: center; gap: 4px; transition: color .15s; }
.nav-item:hover { color: var(--indigo); }
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 130%;
  left: -14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 8px;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .18s ease;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 9px 12px; border-radius: 8px; font-size: 14px; color: #4a5163; }
.dropdown a:hover { background: var(--bg-soft); color: var(--indigo); }

.header-actions { display: flex; align-items: center; gap: 18px; margin-left: auto; }
.header-phone { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; color: var(--text); }
.header-phone svg { color: var(--indigo); }

.nav-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, #20283a 0%, #1a2130 60%, #181f2d 100%);
  color: #fff;
  padding: 64px 0 70px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 48px;
  align-items: center;
}
.hero-copy h1 { font-size: 46px; line-height: 1.12; font-weight: 800; letter-spacing: -.025em; }
.hero-lead { margin-top: 20px; max-width: 440px; color: #aeb6c6; font-size: 15.5px; }

.hero-features { display: flex; flex-wrap: nowrap; gap: 22px; margin: 30px 0 32px; }
.hero-feature { display: flex; align-items: center; gap: 11px; }
.hf-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(99, 102, 241, .16); color: #b7b9fb;
  flex-shrink: 0;
}
.hero-feature div { display: flex; flex-direction: column; line-height: 1.25; }
.hero-feature strong { font-size: 13.5px; font-weight: 600; white-space: nowrap; }
.hero-feature span { font-size: 12px; color: #8b93a6; white-space: nowrap; }

.hero-buttons { display: flex; gap: 14px; }

.hero-media img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .35);
}

/* ---------- Pricing ---------- */
.pricing { background: var(--bg-soft); padding: 64px 0; }
.pricing-grid {
  display: grid;
  grid-template-columns: 215px 1fr 285px;
  gap: 22px;
  align-items: start;
}
.eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted-2); margin-bottom: 14px; }

.fuel-types { }
.fuel-type {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 11px;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  margin-bottom: 11px;
  cursor: pointer;
  transition: all .15s ease;
}
.fuel-type:hover { border-color: #c9ccf6; }
.fuel-type.is-active { background: var(--indigo); border-color: var(--indigo); box-shadow: 0 8px 20px rgba(99, 102, 241, .28); }
.fuel-type.is-active .ft-label strong { color: #fff; }
.fuel-type.is-active .ft-icon { background: rgba(255, 255, 255, .2); color: #fff; }
.ft-icon { width: 34px; height: 34px; border-radius: 9px; background: var(--bg-softer); color: var(--indigo); display: grid; place-items: center; flex-shrink: 0; }
.ft-icon.sm { width: 30px; height: 30px; }
.ft-label strong { font-size: 13.5px; font-weight: 600; line-height: 1.25; display: block; }

/* Price card */
.price-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 8px; box-shadow: var(--shadow-sm); }
.price-head { display: flex; justify-content: space-between; align-items: flex-start; padding: 18px 18px 16px; border-bottom: 1px solid var(--line); }
.price-head h3 { font-size: 18px; font-weight: 700; }
.price-sub { font-size: 12.5px; color: var(--muted); margin-top: 3px; }
.price-tags { display: flex; gap: 8px; flex-shrink: 0; }
.tag { font-size: 11.5px; font-weight: 600; padding: 4px 10px; border-radius: 20px; }
.tag-muted { background: var(--bg-softer); color: var(--muted); }
.tag-soft { background: rgba(99, 102, 241, .1); color: var(--indigo); }

.price-table-head, .price-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 28px;
  align-items: center;
  gap: 8px;
}
.price-table-head { padding: 14px 18px 10px; font-size: 12px; color: var(--muted-2); font-weight: 600; }
.price-rows { padding: 0 8px 8px; }
.price-row {
  padding: 14px 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: background .12s ease;
  position: relative;
}
.price-row:hover { background: var(--bg-soft); }
.price-row.is-selected { background: #f3f3fe; box-shadow: inset 0 0 0 1.5px var(--indigo); }

.qty-cell { display: flex; align-items: center; gap: 11px; font-size: 14.5px; font-weight: 600; }
.radio {
  width: 17px; height: 17px; border-radius: 50%;
  border: 2px solid #cfd3dd; flex-shrink: 0;
  display: grid; place-items: center; transition: all .12s;
}
.price-row.is-selected .radio { border-color: var(--indigo); }
.price-row.is-selected .radio::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--indigo); }
.badge-pop { font-size: 10.5px; font-weight: 700; color: var(--indigo); background: rgba(99, 102, 241, .12); padding: 2px 8px; border-radius: 12px; margin-left: 4px; }

.unit-cell { font-size: 14px; color: var(--muted); }
.total-cell { font-size: 15px; font-weight: 700; }
.chev { color: var(--muted-2); display: grid; place-items: center; }

/* Summary */
.summary-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow-sm); position: sticky; top: 88px; }
.summary-fuel { display: flex; align-items: center; gap: 10px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.summary-fuel strong { font-size: 14px; }
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 16px 0 4px; }
.summary-row span { font-size: 13px; color: var(--muted); }
.summary-row strong { font-size: 14.5px; display: inline-flex; align-items: center; gap: 6px; }
.summary-row strong svg { color: var(--muted-2); }
.summary-block { padding: 8px 0 18px; border-bottom: 1px solid var(--line); }
.summary-block span { font-size: 13px; color: var(--muted); display: block; margin-bottom: 2px; }
.summary-block strong { font-size: 15px; }
.summary-total { padding: 16px 0 18px; }
.summary-total span { font-size: 13px; color: var(--muted); display: block; margin-bottom: 4px; }
.summary-total strong { font-size: 28px; font-weight: 800; letter-spacing: -.02em; }
.secure-note { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 14px; font-size: 12.5px; color: var(--muted); }
.secure-note svg { color: #22c55e; }

/* ---------- Sections ---------- */
.section { padding: 72px 0; }
.section-alt { background: var(--bg-soft); }
.section-title { text-align: center; font-size: 30px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 44px; }

.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease;
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.ic-icon {
  width: 52px; height: 52px; border-radius: 13px;
  display: grid; place-items: center; margin: 0 auto 18px;
  background: var(--bg-soft); color: var(--indigo);
}
.info-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 9px; }
.info-card p { font-size: 13.5px; color: var(--muted); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  position: relative;
}
.step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--indigo); color: #fff;
  display: grid; place-items: center;
  font-size: 14px; font-weight: 700; margin-bottom: 16px;
}
.step h4 { font-size: 15.5px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 13.5px; color: var(--muted); }
.step:not(:last-child)::after {
  content: '···';
  position: absolute;
  right: -16px; top: 50%;
  transform: translateY(-50%);
  color: var(--muted-2);
  font-weight: 700;
  letter-spacing: 1px;
}

/* ---------- Order modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(18, 22, 33, .55);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  width: 100%;
  max-width: 560px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
  transform: translateY(14px) scale(.98);
  transition: transform .22s ease;
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 9px;
  background: var(--bg-soft);
  color: var(--muted);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .15s, color .15s;
}
.modal-close:hover { background: var(--bg-softer); color: var(--text); }
.modal-title { font-size: 23px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 6px; }
.form-lead { color: var(--muted); font-size: 14.5px; margin-bottom: 18px; }

.modal-summary {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 22px;
}
.ms-row { display: flex; justify-content: space-between; align-items: center; padding: 5px 0; font-size: 14px; }
.ms-row span { color: var(--muted); }
.ms-row strong { font-weight: 600; }
.ms-total { border-top: 1px solid var(--line); margin-top: 4px; padding-top: 10px; }
.ms-total span { color: var(--text); font-weight: 600; }
.ms-total strong { font-size: 19px; font-weight: 800; color: var(--indigo); }

.order-form { }
body.modal-open { overflow: hidden; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; display: flex; flex-direction: column; }
.field label { font-size: 13px; font-weight: 600; color: #404a5e; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: 14.5px;
  color: var(--text);
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-soft);
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--indigo);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, .12);
}
.field textarea { resize: vertical; min-height: 96px; }
.order-form .btn-block { margin-top: 6px; }
.hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.form-status { font-size: 13.5px; margin-top: 14px; text-align: center; display: none; }
.form-status.show { display: block; }
.form-status.ok { color: #16a34a; }
.form-status.err { color: #dc2626; }
.order-form .secure-note { margin-top: 12px; }

/* ---------- CTA ---------- */
.cta { background: linear-gradient(115deg, #6f63f0 0%, #7b6ef2 100%); color: #fff; padding: 56px 0; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.cta-copy h2 { font-size: 27px; font-weight: 800; line-height: 1.2; letter-spacing: -.02em; }
.cta-copy p { margin: 14px 0 24px; color: rgba(255, 255, 255, .85); font-size: 15px; }
.cta-contacts { display: flex; flex-direction: column; gap: 18px; }
.cta-contact { display: flex; align-items: center; gap: 13px; font-size: 15px; font-weight: 500; }
.cc-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(255, 255, 255, .15); display: grid; place-items: center; flex-shrink: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #aeb6c6; padding: 56px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr .7fr; gap: 32px; padding-bottom: 36px; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.footer-brand .brand-name { color: #fff; }
.footer-brand p { margin-top: 14px; font-size: 13.5px; }
.footer-col h5 { color: #fff; font-size: 14px; font-weight: 600; margin-bottom: 16px; }
.footer-col a, .footer-col span { display: block; font-size: 13.5px; margin-bottom: 11px; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.social { width: 38px; height: 38px; border-radius: 10px; background: rgba(255, 255, 255, .08); display: grid; place-items: center; color: #aeb6c6; transition: all .15s; }
.social:hover { background: var(--indigo); color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; font-size: 12.5px; color: #6b7488; }
.heart { color: #f87171; }

/* ---------- Checkout (test) ---------- */
.co-bar { border-bottom: 1px solid var(--line); background: #fff; }
.co-bar-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.co-back { font-size: 14px; font-weight: 500; color: var(--muted); }
.co-back:hover { color: var(--indigo); }

.test-banner { background: #fff7ed; border-bottom: 1px solid #fed7aa; color: #9a3412; font-size: 13.5px; padding: 11px 0; text-align: center; }

.checkout { padding: 36px 24px 64px; }
.co-title { font-size: 28px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 28px; }
.checkout-grid { display: grid; grid-template-columns: 1fr 360px; gap: 32px; align-items: start; }

.co-block { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; margin-bottom: 20px; }
.co-h2 { font-size: 16px; font-weight: 700; margin-bottom: 18px; }

.pay-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pay-method { display: flex; align-items: center; gap: 11px; border: 1px solid var(--line); border-radius: 11px; padding: 13px 14px; cursor: pointer; transition: border-color .15s, background .15s; }
.pay-method:hover { border-color: #c9ccf6; }
.pay-method.is-selected { border-color: var(--indigo); background: #f3f3fe; box-shadow: inset 0 0 0 1px var(--indigo); }
.pay-method input { accent-color: var(--indigo); width: 17px; height: 17px; flex-shrink: 0; }
.pm-body { display: flex; flex-direction: column; line-height: 1.25; }
.pm-name { font-size: 14px; font-weight: 600; }
.pm-sub { font-size: 12px; color: var(--muted); }

.co-terms { display: flex; align-items: flex-start; gap: 10px; font-size: 13.5px; color: var(--muted); padding: 4px 2px; }
.co-terms input { margin-top: 2px; accent-color: var(--indigo); }
.co-terms a { color: var(--indigo); }

.co-summary { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); position: sticky; top: 24px; }
.co-line { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid var(--line); margin-bottom: 4px; }
.co-fuel { font-size: 14.5px; font-weight: 700; }
.co-edit { display: grid; gap: 12px; padding: 4px 0 16px; margin-bottom: 6px; border-bottom: 1px solid var(--line); }
.co-field { display: flex; flex-direction: column; gap: 6px; }
.co-field span { font-size: 12.5px; font-weight: 600; color: #404a5e; }
.co-field select { font-family: inherit; font-size: 14.5px; color: var(--text); padding: 11px 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--bg-soft); cursor: pointer; transition: border-color .15s, background .15s, box-shadow .15s; }
.co-field select:focus { outline: none; border-color: var(--indigo); background: #fff; box-shadow: 0 0 0 3px rgba(99, 102, 241, .12); }
.co-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; font-size: 14px; }
.co-row span { color: var(--muted); }
.co-muted strong { font-weight: 500; color: var(--muted); }
.co-total { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0 18px; margin-top: 4px; border-top: 1px solid var(--line); }
.co-total span { font-size: 14px; font-weight: 600; }
.co-total strong { font-size: 24px; font-weight: 800; letter-spacing: -.02em; }
.co-status { font-size: 13px; color: var(--muted); margin-top: 12px; text-align: center; display: none; }
.co-status.show { display: block; }

/* Success overlay */
.pay-success { position: fixed; inset: 0; z-index: 100; background: rgba(18, 22, 33, .55); backdrop-filter: blur(3px); display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: opacity .2s, visibility .2s; }
.pay-success.open { opacity: 1; visibility: visible; }
.ps-card { background: #fff; border-radius: 18px; padding: 34px 30px; max-width: 420px; width: 100%; text-align: center; box-shadow: 0 30px 80px rgba(0, 0, 0, .35); }
.ps-check { width: 64px; height: 64px; border-radius: 50%; background: #dcfce7; color: #16a34a; display: grid; place-items: center; margin: 0 auto 18px; }
.ps-card h2 { font-size: 22px; font-weight: 800; }
.ps-test { font-size: 13px; color: var(--muted); margin: 6px 0 20px; }
.ps-details { text-align: left; background: var(--bg-soft); border-radius: 12px; padding: 14px 16px; margin-bottom: 22px; }

@media (max-width: 820px) {
  .checkout-grid { grid-template-columns: 1fr; }
  .co-summary { position: static; }
}
@media (max-width: 480px) {
  .pay-methods { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
}

/* ---------- Hero highlights + tagline ---------- */
.hl-red { color: #f87171; }
.hl-green { color: #4ade80; }
.hl-light { color: #fff; }
.hero-tagline { margin-top: 16px; font-size: 16px; font-weight: 600; color: #fff; }
.hero-tagline + .hero-lead { margin-top: 10px; }

/* ---------- Fuel colour coding ---------- */
.fuel-type[data-fuel="DK"]:not(.is-active)  .ft-icon { color: #334155; background: rgba(51, 65, 85, .1); }
.fuel-type[data-fuel="DKU"]:not(.is-active) .ft-icon { color: #16a34a; background: rgba(22, 163, 74, .12); }
.fuel-type[data-fuel="DKK"]:not(.is-active) .ft-icon { color: #dc2626; background: rgba(220, 38, 38, .12); }
.fuel-type[data-fuel="DK"].is-active  { background: #334155; border-color: #334155; box-shadow: 0 8px 20px rgba(51, 65, 85, .28); }
.fuel-type[data-fuel="DKU"].is-active { background: #16a34a; border-color: #16a34a; box-shadow: 0 8px 20px rgba(22, 163, 74, .28); }
.fuel-type[data-fuel="DKK"].is-active { background: #dc2626; border-color: #dc2626; box-shadow: 0 8px 20px rgba(220, 38, 38, .28); }

/* ---------- Pricing intro + disclaimer ---------- */
.pricing-intro { max-width: 760px; margin: 0 auto 32px; text-align: center; }
.pricing-intro .section-title { margin-bottom: 12px; }
.pricing-intro p { color: var(--muted); font-size: 15px; }
.pricing-disclaimer { max-width: 920px; margin: 24px auto 0; font-size: 12.5px; color: var(--muted-2); line-height: 1.6; text-align: center; }

/* ---------- FAQ / DUK ---------- */
.faq-wrap { max-width: 760px; }
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 2px 18px; }
.faq-item summary { cursor: pointer; list-style: none; padding: 16px 0; font-weight: 600; font-size: 15px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 22px; line-height: 1; color: var(--muted-2); font-weight: 400; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 0 16px; margin: 0; color: var(--muted); font-size: 14px; }

/* ---------- Thank-you page ---------- */
.ty { max-width: 720px; padding: 48px 24px 64px; }
.ty-head { text-align: center; margin-bottom: 40px; }
.ty-check { width: 68px; height: 68px; border-radius: 50%; background: #dcfce7; color: #16a34a; display: grid; place-items: center; margin: 0 auto 20px; }
.ty-head h1 { font-size: 28px; font-weight: 800; letter-spacing: -.02em; line-height: 1.2; }
.ty-head p { margin-top: 12px; color: var(--muted); font-size: 15.5px; }
.ty-subtitle { font-size: 18px; font-weight: 700; margin-bottom: 18px; }
.ty-steps { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.ty-step { display: flex; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 20px; }
.ty-step .step-num { flex-shrink: 0; margin-bottom: 0; }
.ty-step h3 { font-size: 15.5px; font-weight: 700; margin-bottom: 5px; }
.ty-step p { font-size: 14px; color: var(--muted); }
.ty-contact { text-align: center; background: var(--bg-soft); border-radius: 16px; padding: 30px; }
.ty-contact h3 { font-size: 18px; font-weight: 700; }
.ty-contact p { color: var(--muted); margin: 8px 0 18px; }
.ty-contact-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.ty-footer { border-top: 1px solid var(--line); padding: 24px 0; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .fuel-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; }
  .fuel-type { margin-bottom: 0; }
  .eyebrow { grid-column: 1 / -1; }
  .summary-card { position: static; }
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:not(:last-child)::after { display: none; }
  .cta-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav { display: none; position: absolute; top: 68px; left: 0; right: 0; flex-direction: column; align-items: flex-start; gap: 4px; background: #fff; border-bottom: 1px solid var(--line); padding: 14px 24px; margin: 0; }
  .nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .header-phone { display: none; }
  .hero { padding: 44px 0 54px; }
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-copy h1 { font-size: 34px; }
  /* Let the feature badges wrap on small screens (they're forced to one line only on desktop). */
  .hero-features { flex-wrap: wrap; gap: 16px 26px; margin: 24px 0 26px; }
  .hero-media { order: -1; }
  .hero-media img { height: 230px; }
}

@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .fuel-types { grid-template-columns: 1fr; }
  .cards-4, .steps, .footer-grid { grid-template-columns: 1fr; }
  .price-head { flex-direction: column; gap: 12px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .section { padding: 48px 0; }
  .section-title { font-size: 23px; margin-bottom: 30px; }
  .hero-copy h1 { font-size: 30px; }
  .hero-buttons { flex-wrap: wrap; }
  .hero-buttons .btn { flex: 1 1 auto; }

  /* Compact price table: drop the chevron column, tighten spacing, allow the badge to wrap. */
  .price-table-head, .price-row { grid-template-columns: 1.2fr 1fr 1fr; gap: 6px; }
  .price-table-head { padding: 12px 12px 8px; font-size: 11px; }
  .price-rows { padding: 0 6px 6px; }
  .price-row { padding: 12px 8px; }
  .chev { display: none; }
  .qty-cell { flex-wrap: wrap; gap: 8px; font-size: 14px; }
  .badge-pop { margin-left: 0; }
  .unit-cell { font-size: 12.5px; }
  .total-cell { font-size: 13.5px; }
  .price-card { padding: 4px; }
  .price-head { padding: 16px 14px 14px; }

  .summary-total strong { font-size: 26px; }

  /* Form/modal */
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .modal { padding: 24px 18px; border-radius: 16px; }
  .modal-overlay { padding: 12px; align-items: flex-start; }
  .modal-title { font-size: 21px; }
  /* 16px inputs stop iOS Safari from auto-zooming on focus. */
  .field input, .field select, .field textarea { font-size: 16px; }
}
