:root {
  --primary: #e74c3c;
  --primary-dark: #c0392b;
  --secondary: #2c3e50;
  --light: #ecf0f1;
  --dark: #34495e;
  --gold: #f1c40f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background: linear-gradient(135deg, #f5f7fa, #e4e7f1);
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER / HERO */
header,
.hero {
  position: relative;
  color: white;
  padding: 140px 0 100px;
  text-align: center;
  overflow: hidden;
  border-bottom: 4px solid var(--primary);
}

/* Fallback-Hintergrund für Seiten ohne Hero-Bild */
header:not(.hero) {
  background: linear-gradient(135deg, var(--secondary), var(--dark));
}

/* Hero-Bild */
.hero-picture {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.88), rgba(52, 73, 94, 0.78));
}

.hero .breadcrumb,
.hero .contact-btn-group,
.hero-content {
  position: relative;
  z-index: 2;
}

/* Hero CTA Buttons */
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  background: linear-gradient(135deg, #ffd74a, #f1c40f);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.30);
}

.hero-cta-secondary {
  background: linear-gradient(135deg, #34e27a, #25d366);
  color: white;
}

.hero-cta-secondary:hover {
  filter: brightness(1.05);
}

/* Hero Trust Badges */
.hero-trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 22px;
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-trust i {
  color: var(--gold);
  margin-right: 4px;
}

.contact-btn-group,
.top-contact {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-btn-top,
.btn-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 130px;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 14px 30px rgba(0,0,0,0.22);
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.contact-btn-top:hover,
.btn-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(0,0,0,0.28);
  filter: brightness(1.03);
}

.contact-btn-group a[href^="tel:"],
.top-contact a[href^="tel:"],
.phone-btn {
  background: linear-gradient(135deg, #ffd74a, #f1c40f);
  color: var(--secondary);
}

.contact-btn-group a[href^="mailto:"],
.top-contact a[href^="mailto:"],
.email-btn {
  background: linear-gradient(135deg, #58b8ff, #3498db);
  color: white;
}

.contact-btn-group a[href*="wa.me"],
.top-contact a[href*="wa.me"],
.whatsapp-btn {
  background: linear-gradient(135deg, #34e27a, #25d366);
  color: white;
}

.contact-btn-group a[href*="wa.me"],
.top-contact a[href*="wa.me"],
.whatsapp-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  min-width: 148px;
  padding: 13px 20px;
  box-shadow: 0 18px 36px rgba(12, 112, 48, 0.35);
}

.contact-btn-group a[href*="wa.me"] i,
.top-contact a[href*="wa.me"] i,
.whatsapp-btn i {
  font-size: 1.1rem;
}

header h1,
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

header h1 span,
.hero-content h1 span {
  color: var(--gold);
}

header p,
.hero-content > p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

.hero-badge {
  background: var(--gold);
  color: var(--secondary);
  padding: 10px 20px;
  border-radius: 30px;
  display: inline-block;
  margin-top: 25px;
  font-weight: 700;
}

.page-header {
  padding-top: 150px;
}

.back-to-main {
  position: absolute;
  top: 22px;
  left: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  max-width: calc(100% - 320px);
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
}

.back-to-main a {
  color: white;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.12);
  color: white;
  font-weight: 600;
}

.back-btn:hover {
  background: rgba(255,255,255,0.2);
}

.main-content {
  padding: 50px 0 10px;
}

.main-content section,
.seo-city-list,
.cities-grid-section,
.cta-section,
.faq-section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 700px;
}

.main-content ul,
.main-content ol {
  padding-left: 22px;
}

.main-content li {
  margin-bottom: 10px;
}

.main-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.main-content th,
.main-content td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #e7ebf0;
}

.main-content thead th {
  background: var(--secondary);
  color: white;
}

.main-content tbody tr:last-child td {
  border-bottom: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* SEO CITY LIST (Startseite) */
.seo-city-list {
  text-align: center;
  margin: 40px auto;
  max-width: 900px;
  font-size: 1.05rem;
}

.seo-city-list a {
  color: var(--primary);
  font-weight: 600;
}

/* CITY SEARCH */
.city-search-wrap {
  max-width: 480px;
  margin: 0 auto 30px;
}

.city-search-input {
  width: 100%;
  padding: 14px 20px;
  font-size: 1.05rem;
  border: 2px solid var(--primary);
  border-radius: 50px;
  outline: none;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  transition: box-shadow 0.25s;
}

.city-search-input:focus {
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}

/* CITY GRID (Startseite) */
.cities-grid-section {
  margin: 60px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.section-title h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.city-payout-heading {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
}

.city-payout-heading .benefit-free,
.city-payout-heading .benefit-cash {
  display: inline-block;
  padding: 0.15em 0.45em;
  border-radius: 999px;
  font-weight: 800;
}

.city-payout-heading .benefit-free {
  color: #8f2d22;
  background: linear-gradient(135deg, rgba(255, 214, 102, 0.9), rgba(255, 239, 188, 0.95));
  box-shadow: 0 10px 25px rgba(231, 76, 60, 0.14);
}

.city-payout-heading .benefit-cash {
  color: #0f5132;
  background: linear-gradient(135deg, rgba(111, 207, 151, 0.92), rgba(221, 255, 235, 0.98));
  box-shadow: 0 10px 25px rgba(39, 174, 96, 0.16);
}

.section-title p {
  font-size: 1.05rem;
  opacity: 0.9;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.city-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.98));
  border: 1px solid rgba(192, 57, 43, 0.12);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(44, 62, 80, 0.12);
  contain: layout paint;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.city-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(231, 76, 60, 0.08), transparent 42%, rgba(44, 62, 80, 0.04));
  pointer-events: none;
}

.city-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(44, 62, 80, 0.18);
  border-color: rgba(192, 57, 43, 0.22);
}

.city-card.expanded {
  border-color: rgba(192, 57, 43, 0.28);
  box-shadow: 0 30px 65px rgba(44, 62, 80, 0.18);
}

.city-card-overview {
  display: block;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(180deg, rgba(44, 62, 80, 0.98), rgba(52, 73, 94, 0.98));
  border-color: rgba(44, 62, 80, 0.2);
}

.city-card-overview::before {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 38%, rgba(231, 76, 60, 0.18));
}

.city-card-overview:hover {
  border-color: rgba(241, 196, 15, 0.32);
}

.city-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 190px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.22), transparent 32%),
    linear-gradient(135deg, #f16452 0%, var(--primary) 45%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
  padding: 30px 24px 34px;
  cursor: pointer;
  isolation: isolate;
}

.city-header::before {
  content: '';
  position: absolute;
  inset: auto -18% -42% auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  z-index: -1;
}

.city-header::after {
  content: '+';
  position: absolute;
  top: 16px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease;
}

.city-header:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.95);
  outline-offset: -6px;
}

.city-card.expanded .city-header::after {
  content: '-';
  background: rgba(255, 255, 255, 0.24);
  transform: rotate(180deg);
}

.city-card-overview .city-header::after {
  content: '';
  width: 0;
  height: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.city-header h3 {
  margin: 0;
  max-width: 13ch;
  font-size: 1.45rem;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-wrap: balance;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.16);
}

.city-icon {
  width: 78px;
  height: 78px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  font-size: 2.35rem;
  color: #fff9ef;
  background: linear-gradient(180deg, rgba(255,255,255,0.24), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(6px);
}

@media (hover: none) {
  .city-card:hover,
  .city-card-overview:hover {
    transform: none;
    box-shadow: 0 18px 45px rgba(44, 62, 80, 0.12);
  }

  .city-btn:hover,
  .city-card-overview .city-btn:hover {
    transform: none;
    filter: none;
  }
}

.city-content {
  max-height: 0;
  padding: 0 25px;
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(248,250,252,0.96));
  transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease, visibility 0.35s ease;
}

.city-card.expanded .city-content {
  max-height: 320px;
  padding: 25px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.city-card-overview .city-content {
  max-height: none;
  padding: 0 25px 25px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  background: transparent;
}

.city-card-overview .city-features li {
  color: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.city-card-overview .city-btn {
  background: linear-gradient(135deg, #ffd74a, #f1c40f);
  color: var(--secondary);
  box-shadow: 0 16px 32px rgba(241, 196, 15, 0.18);
}

.city-card-overview .city-btn:hover {
  box-shadow: 0 20px 36px rgba(241, 196, 15, 0.24);
}

.city-features {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

.city-features li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(52, 73, 94, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.97rem;
  color: var(--secondary);
}

.city-features li i {
  color: var(--primary);
  margin-right: 0;
  margin-top: 4px;
  font-size: 1rem;
}

.city-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 15px 18px;
  border-radius: 14px;
  text-align: center;
  display: block;
  margin-top: 20px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 16px 32px rgba(192, 57, 43, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.city-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(192, 57, 43, 0.28);
  filter: brightness(1.02);
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 80px 30px;
  text-align: center;
  border-radius: 12px;
  margin: 80px 0;
}

.cta-btn {
  background: white;
  color: var(--primary);
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 700;
  display: inline-block;
  transition: 0.3s ease;
}

.cta-btn:hover {
  transform: scale(1.05);
}

.contact-form {
  max-width: 700px;
  margin: 40px auto 0;
  text-align: left;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  flex: 1;
  padding: 12px 14px;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  resize: vertical;
}

.form-btn {
  margin-top: 10px;
  border: none;
  cursor: pointer;
}

.form-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.form-field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.field-error {
  color: var(--primary);
  font-size: .85rem;
  margin-top: 4px;
  min-height: 1.2em;
}

.input-error {
  outline: 2px solid var(--primary);
}

.consent-row {
  align-items: flex-start;
}

.consent-label {
  color: #fff;
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  flex-shrink: 0;
}

.consent-label a {
  color: var(--gold);
  text-decoration: underline;
}

.form-message {
  margin-top: 16px;
  padding: 0;
  border-radius: 6px;
  font-size: 1rem;
  text-align: center;
}

.form-success {
  background: #27ae6022;
  border: 1px solid #27ae60;
  color: #27ae60;
  padding: 14px 18px;
}

.form-error {
  background: rgba(231,76,60,.12);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 14px 18px;
}

/* FAQ */
.faq-section {
  margin: 80px 0;
  padding: 34px 0;
  background: linear-gradient(135deg, #243648, #34495e);
  border-top: 4px solid var(--primary);
  border-bottom: 4px solid var(--gold);
  border-radius: 24px;
  box-shadow: 0 22px 50px rgba(29, 41, 55, 0.18);
}

.faq-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: white;
  text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

.faq-item {
  background: rgba(255,255,255,0.98);
  border-radius: 16px;
  margin-bottom: 15px;
  border: 1px solid rgba(231, 76, 60, 0.15);
  box-shadow: 0 12px 30px rgba(10, 18, 28, 0.16);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  list-style: none;
  position: relative;
  transition: background 0.25s ease, color 0.25s ease;
}

.faq-item summary:hover {
  background: linear-gradient(135deg, #ef5d4d, #cf3f2e);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "▼";
  position: absolute;
  right: 20px;
  font-size: 0.9rem;
  transition: 0.3s;
}

.faq-item[open] {
  border-color: rgba(241, 196, 15, 0.45);
  box-shadow: 0 16px 34px rgba(0,0,0,0.18);
}

.faq-item[open] summary {
  background: linear-gradient(135deg, #ffd74a, #f1c40f);
  color: var(--secondary);
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-item p {
  padding: 20px;
  font-size: 1rem;
  line-height: 1.6;
  background: #f8fbff;
  color: #253746;
  border-top: 1px solid rgba(44, 62, 80, 0.08);
}

/* FOOTER */
footer {
  background: var(--secondary);
  color: white;
  text-align: center;
  padding: 40px 0;
  margin-top: 40px;
}

.footer-city-links a {
  color: var(--gold);
  font-weight: 600;
}

footer a {
  color: var(--gold);
  font-weight: 600;
}

/* GENERISCHE SECTION-STYLES FÜR UNTERSEITEN */
main section {
  margin: 40px 0;
}

main h2 {
  font-size: 1.9rem;
  margin-bottom: 15px;
  color: var(--secondary);
}

main p {
  font-size: 1rem;
  margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-btn-group {
    position: static;
    justify-content: center;
    margin-bottom: 20px;
  }

  .top-contact {
    position: static;
    justify-content: center;
    margin-bottom: 20px;
  }

  .contact-btn-top,
  .btn-top {
    min-width: 118px;
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .contact-btn-group a[href*="wa.me"],
  .top-contact a[href*="wa.me"],
  .whatsapp-btn {
    right: 14px;
    bottom: 14px;
    min-width: 0;
    padding: 12px 16px;
  }

  .page-header {
    padding-top: 40px;
  }

  .back-to-main {
    position: static;
    justify-content: center;
    max-width: none;
    margin-bottom: 20px;
    padding: 0 20px;
  }

  header h1,
  .hero-content h1 {
    font-size: 2.1rem;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-cta {
    padding: 14px 24px;
    font-size: 1rem;
  }

  .hero-trust {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .cities-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .city-card {
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.1);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .city-card:hover {
    transform: none;
    box-shadow: 0 10px 22px rgba(44, 62, 80, 0.12);
  }

  .city-card::before,
  .city-header::before {
    display: none;
  }

  .city-header {
    min-height: 118px;
    padding: 18px 18px 20px;
    gap: 10px;
    background: linear-gradient(135deg, #ef5d4d 0%, var(--primary) 50%, var(--primary-dark) 100%);
  }

  .city-header::after {
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    font-size: 1.1rem;
    box-shadow: none;
  }

  .city-header h3 {
    max-width: none;
    font-size: 1.12rem;
    line-height: 1.25;
  }

  .city-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    font-size: 1.65rem;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
    backdrop-filter: none;
  }

  .city-content {
    padding: 0 18px;
    transition: max-height 0.25s ease, opacity 0.2s ease, padding 0.25s ease, visibility 0.25s ease;
  }

  .city-card.expanded .city-content {
    max-height: 360px;
    padding: 18px 18px 20px;
  }

  .city-features {
    margin-bottom: 16px;
  }

  .city-features li {
    padding: 9px 0;
    gap: 10px;
    font-size: 0.92rem;
  }

  .city-features li i {
    margin-top: 3px;
    font-size: 0.95rem;
  }

  .city-btn {
    margin-top: 14px;
    padding: 13px 14px;
    border-radius: 12px;
    font-size: 0.95rem;
    box-shadow: 0 8px 16px rgba(192, 57, 43, 0.14);
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  }

  .form-row {
    flex-direction: column;
  }

  .process-steps {
    flex-direction: column;
    gap: 32px;
  }

  .process-step::before {
    display: none;
  }

  .benefits-section,
  .process-section,
  .vehicle-types-section {
    padding: 40px 16px;
  }

  .step-number {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
}

/* BENEFITS SECTION */
.benefits-section {
  margin: 60px 0;
  padding: 60px 20px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.benefit-card {
  background: white;
  border-radius: 18px;
  padding: 36px 24px 28px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(44, 62, 80, 0.1);
  border: 1px solid rgba(192, 57, 43, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(44, 62, 80, 0.16);
}

/* TRUST SECTION */
.trust-section {
  margin: 60px 0;
  padding: 60px 20px;
  background: linear-gradient(135deg, #fff9e6, #fff3cc);
  border-radius: 24px;
  text-align: center;
  content-visibility: auto;
  contain-intrinsic-size: 1px 500px;
}

.trust-content > p {
  max-width: 780px;
  margin: 0 auto 30px;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
}

.trust-stats {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 36px 0;
}

.trust-stat {
  background: white;
  border-radius: 18px;
  padding: 28px 32px;
  min-width: 180px;
  box-shadow: 0 10px 28px rgba(44, 62, 80, 0.08);
  border: 1px solid rgba(241, 196, 15, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trust-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(44, 62, 80, 0.14);
}

.trust-stat-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 6px;
}

.trust-stat-number i {
  color: var(--primary);
  margin-right: 6px;
}

.trust-stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 600;
}

@media (max-width: 768px) {
  .trust-stats {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .trust-stat {
    width: 100%;
    max-width: 280px;
  }

  .trust-section {
    padding: 40px 20px;
  }
}

@media (max-width: 992px) and (min-width: 769px) {
  .trust-stats {
    gap: 20px;
  }

  .trust-stat {
    min-width: 160px;
    padding: 24px 20px;
  }
}

.benefit-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-size: 1.6rem;
  box-shadow: 0 8px 20px rgba(231, 76, 60, 0.2);
}

.benefit-card h3 {
  font-size: 1.15rem;
  margin: 0 0 10px;
  color: var(--secondary);
}

.benefit-card p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
  line-height: 1.55;
}

/* PROCESS SECTION */
.process-section {
  margin: 60px 0;
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8fbff, #eef3f9);
  border-radius: 24px;
}

.process-steps {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

.process-step {
  flex: 1;
  max-width: 340px;
  text-align: center;
  position: relative;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(50% + 36px);
  width: calc(100% - 72px);
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--primary));
  border-radius: 2px;
}

.process-step:last-child::before {
  display: none;
}

.step-number {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  font-size: 1.4rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(231, 76, 60, 0.22);
  position: relative;
  z-index: 1;
}

.process-step h3 {
  font-size: 1.15rem;
  margin: 0 0 10px;
  color: var(--secondary);
}

.process-step p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
  line-height: 1.55;
}

/* VEHICLE TYPES SECTION */
.vehicle-types-section {
  margin: 60px 0;
  padding: 60px 20px;
}

.vehicle-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.vehicle-card {
  background: white;
  border-radius: 18px;
  padding: 36px 24px 28px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(44, 62, 80, 0.1);
  border: 1px solid rgba(192, 57, 43, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(44, 62, 80, 0.16);
}

.vehicle-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #e6b800);
  color: var(--secondary);
  font-size: 1.6rem;
  box-shadow: 0 8px 20px rgba(241, 196, 15, 0.25);
}

.vehicle-card h3 {
  font-size: 1.15rem;
  margin: 0 0 10px;
  color: var(--secondary);
}

.vehicle-card p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
  line-height: 1.55;
}

.vehicle-types-note {
  text-align: center;
  margin-top: 32px;
  font-size: 1.05rem;
  color: var(--dark);
}

/* Tablet responsive for new sections */
@media (max-width: 992px) and (min-width: 769px) {
  .benefits-grid,
  .vehicle-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── Mobile: benefit & vehicle cards ── */
@media (max-width: 768px) {
  /* Benefits: icon left, title + text right */
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .benefit-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 2px;
    text-align: left;
    padding: 16px;
    border-radius: 14px;
  }

  .benefit-icon {
    grid-row: 1 / 3;
    align-self: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 1.2rem;
    margin: 0;
  }

  .benefit-card h3 {
    font-size: 1.02rem;
    margin: 0;
    align-self: end;
  }

  .benefit-card p {
    font-size: 0.88rem;
    line-height: 1.45;
    margin: 0;
    align-self: start;
  }

  /* Vehicle: compact 2-column grid */
  .vehicle-types-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .vehicle-card {
    padding: 20px 12px 16px;
    border-radius: 14px;
  }

  .vehicle-icon {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
    margin: 0 auto 10px;
  }

  .vehicle-card h3 {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .vehicle-card p {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .vehicle-types-note {
    font-size: 0.92rem;
    margin-top: 20px;
  }
}

/* Very small phones: single column for everything */
@media (max-width: 400px) {
  .vehicle-types-grid {
    grid-template-columns: 1fr;
  }

  .vehicle-card {
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 2px;
    text-align: left;
    padding: 14px;
  }

  .vehicle-icon {
    grid-row: 1 / 3;
    align-self: center;
    min-width: 44px;
    width: 44px;
    height: 44px;
    margin: 0;
  }
}

/* ── Blog overview ── */
.blog-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(340px,1fr));gap:30px;margin-top:30px}
.blog-card{background:#fff;border-radius:16px;box-shadow:0 4px 20px rgba(0,0,0,.08);overflow:hidden;transition:transform .2s,box-shadow .2s}
.blog-card:hover{transform:translateY(-4px);box-shadow:0 8px 30px rgba(0,0,0,.14)}
.blog-card-body{padding:28px}
.blog-card-body h3{margin:0 0 10px;font-size:1.25rem;color:var(--secondary)}
.blog-card-meta{font-size:.85rem;color:#888;margin-bottom:12px}
.blog-card-body p{margin:0 0 18px;color:#555}
.blog-card-link{display:inline-flex;align-items:center;gap:6px;color:var(--primary);font-weight:700;font-size:.95rem}
.blog-card-link:hover{color:var(--primary-dark)}

/* ── Blog article ── */
.article-body{background:#fff;border-radius:16px;box-shadow:0 4px 20px rgba(0,0,0,.08);padding:40px;margin-top:30px;margin-bottom:40px}
.article-body h2{color:var(--secondary);margin-top:36px}
.article-body h3{color:var(--dark);margin-top:28px}
.article-body ul,.article-body ol{padding-left:24px}
.article-body li{margin-bottom:8px}
.article-meta{font-size:.9rem;color:#888;margin-bottom:24px}
.tip-box{background:linear-gradient(135deg,#fff9e6,#fff3cc);border-left:4px solid var(--gold);border-radius:8px;padding:20px 24px;margin:24px 0}
.tip-box strong{color:var(--secondary)}
.cta-box{background:linear-gradient(135deg,var(--secondary),var(--dark));color:#fff;border-radius:16px;padding:32px;text-align:center;margin:36px 0}
.cta-box h3{color:var(--gold);margin-top:0}
.cta-box p{opacity:.92;max-width:600px;margin:0 auto 20px}
.cta-box .cta-btn{display:inline-flex;align-items:center;gap:8px;background:var(--primary);color:#fff;padding:14px 28px;border-radius:999px;font-weight:700;font-size:1rem;box-shadow:0 8px 20px rgba(231,76,60,.35);transition:background .2s}
.cta-box .cta-btn:hover{background:var(--primary-dark)}
