:root {
  --bg: #ffffff;
  --text: #0a0a0a;
  --muted: #6b7280;
  --border: #e5e7eb;
  --accent: #111827;
  --accent-contrast: #ffffff;
  --surface: #f8fafc;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", "Pontano Sans", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }

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

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

header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.75);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header .container.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
}

.site-header .brand {
  display: flex;
  align-items: center;
}

.site-header .brand img { 
  height: 32px; 
  width: auto; 
}

.site-header .nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-header .nav-links a { 
  color: var(--text); 
  text-decoration: none;
  font-weight: 500;
  opacity: 0.85;
  transition: all 0.2s ease;
}

.site-header .nav-links a.active { 
  opacity: 1;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.site-header .nav-links a:hover { 
  opacity: 1; 
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px;
  flex-direction: column;
  gap: 5px;
  border-radius: 8px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .mobile-menu-toggle { 
    display: flex;
    z-index: 1001;
  }
  
  .site-header .container.nav { 
    position: relative; 
  }
  
  .site-header .brand img {
    height: 30px;
  }
  
  .site-header .nav-links { 
    display: none;
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    background: white;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    flex-direction: column;
    padding: 8px 0;
    gap: 0;
    z-index: 1000;
  }

  .site-header .nav-links.active { 
    display: flex !important; 
  }
  
  .site-header .nav-links a {
    font-size: 16px;
    padding: 14px 24px;
    border-bottom: 1px solid var(--border);
    text-align: left;
  }
  
  .site-header .nav-links a:last-child {
    border-bottom: none;
  }
  
  .site-header .nav-links a:hover,
  .site-header .nav-links a.active {
    background: var(--bg);
  }
}

.hero {
  padding: 48px 0 36px;
}

.hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.02em;
  margin: 0 0 12px 0;
}

.hero p {
  color: var(--muted);
  font-size: clamp(16px, 2vw, 18px);
  margin: 0;
}

.hero-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
  background: #fcfcfc;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  margin-top: 0px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

@media (max-width: 900px) {
  .hero-card { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Consistent 20px vertical spacing on mobile */
  main.container > section,
  main.container > .hero,
  .hero-card,
  .grid {
    margin-bottom: 20px !important;
  }
  
  section {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  
  .hero {
    padding: 32px 0 20px 0;
    margin-bottom: 20px !important;
  }
  
  .panel-dark h3 {
    font-size: 18px;
  }
  
  .panel-dark li {
    font-size: 14px;
  }
  
  .panel h2 {
    font-size: 12px;
  }
  
  .option-group .muted {
    font-size: 11px;
  }
  
  .radio span {
    font-size: 12px;
  }
  
  .radio {
    padding: 8px 12px;
    min-width: 80px;
  }
  
  .panel .btn {
    font-size: 13px;
    padding: 10px 16px;
  }
  
  .contact-actions-card h3 {
    font-size: 18px;
  }
  
  .contact-actions-card p {
    font-size: 14px;
  }
  
  /* Stack hero buttons on all mobile devices */
  .hero-card > div:last-child > div {
    flex-direction: column !important;
    gap: 8px !important;
    width: 100%;
  }
  
  .hero-card .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--accent);
  color: var(--accent-contrast);
  border-radius: 10px;
  border: 1px solid #111;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06) inset, 0 2px 4px rgba(0,0,0,0.08);
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn:hover {
  background: #374151;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn.secondary { 
  background: #ffffff; 
  color: var(--text); 
  border-color: var(--border); 
  transition: all 0.2s ease;
}

.btn.secondary:hover {
  background: var(--surface);
  border-color: var(--accent);
  transform: translateY(-1px);
}

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

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

.card {
  background: #fcfcfc;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: #d1d5db;
}

.card img {
  width: 65%;
  height: auto;
  display: block;
  margin: 28px auto;
  transition: transform 0.3s ease;
}

.card:hover img {
  transform: scale(1.05);
}

.card-body { padding: 20px; text-align: center; }
.card h3 { margin: 0 0 8px; letter-spacing: -0.01em; font-size: 18px; font-weight: 600; }
.card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.5; }

section { padding: 12px 0; }

html, body {
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
}

main, .container:not(.nav) {
  flex: 1;
}

footer.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  margin-top: auto;
  color: var(--muted);
  font-size: 14px;
  background: var(--surface);
}

.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }

.footer-links a {
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text);
}

/* Konfigurator */
.config {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

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

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.grid .panel {
  text-align: left;
  align-items: flex-start;
}

.grid .panel h3 {
  margin: 0 0 16px 0;
  font-size: 18px;
  font-weight: 600;
}

.grid .panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  flex-grow: 1;
}

.grid .panel li {
  padding: 6px 0;
  position: relative;
  padding-left: 20px;
  line-height: 1.5;
}

.grid .panel li:before {
  content: "•";
  color: var(--accent);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 6px;
}

.features-section {
  padding: 8px 0 24px 0 !important;
}

@media (max-width: 768px) {
  .features-section {
    padding: 0 !important;
    margin: 0 !important;
  }
}

.panel-dark {
  background: white;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.panel-dark:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.panel-dark h3 {
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 20px;
  margin-bottom: 24px !important;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.panel-dark ul {
  gap: 8px;
  display: flex;
  flex-direction: column;
}

.panel-dark li {
  color: #4b5563;
  line-height: 1.65;
  padding: 8px 0 8px 28px !important;
  font-size: 15px;
  position: relative;
  transition: all 0.2s ease;
}

.panel-dark li:hover {
  color: var(--text);
  padding-left: 32px !important;
}

.panel-dark li:before {
  content: "→";
  color: #9ca3af;
  font-size: 16px;
  font-weight: normal;
  left: 8px !important;
  top: 8px !important;
  transition: all 0.2s ease;
}

.panel-dark li:hover:before {
  color: var(--primary);
  left: 12px !important;
}

.panel-dark a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: rgba(17, 24, 39, 0.3);
  transition: all 0.2s ease;
}

.panel-dark a:hover {
  text-decoration-color: var(--primary);
}

/* Panel accordion - hidden on desktop */
.panel-chevron {
  display: none;
}

@media (max-width: 768px) {
  .features-section .grid {
    display: flex;
    flex-direction: column;
    gap: 0 !important;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
  }
  
  .panel-accordion {
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: white !important;
  }
  
  .panel-accordion:not(:last-child) {
    border-bottom: 1px solid var(--border) !important;
  }
  
  .panel-accordion {
    position: relative;
  }
  
  .panel-accordion .panel-header {
    cursor: pointer;
    display: block;
    width: 100%;
    margin-bottom: 0 !important;
    padding: 14px 40px 14px 16px !important;
    font-size: 13px !important;
    position: relative;
    border-bottom: none !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    background: white;
    box-sizing: border-box;
  }
  
  .panel-accordion .panel-chevron {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    font-size: 10px;
    color: #9ca3af;
    transition: transform 0.2s ease;
    pointer-events: none;
  }
  
  .panel-accordion .panel-chevron::after {
    content: "▼";
  }
  
  .panel-accordion.open .panel-chevron {
    transform: translateY(-50%) rotate(180deg);
    color: var(--primary);
  }
  
  .panel-accordion .panel-content {
    display: none;
    padding: 0 16px 16px 16px !important;
    margin: 0 !important;
    background: white;
  }
  
  .panel-accordion.open .panel-content {
    display: flex;
  }
  
  .panel-accordion .panel-content li {
    padding: 6px 0 6px 20px !important;
    font-size: 13px !important;
    margin: 0 !important;
    position: relative;
  }
  
  .panel-accordion .panel-content li:before {
    position: absolute !important;
    left: 0 !important;
    top: 6px !important;
    font-size: 11px !important;
    content: "•" !important;
    color: #9ca3af !important;
  }
}

@media (max-width: 420px) {
  .panel-dark {
    padding: 14px 16px;
    border-radius: 10px;
  }
  
  .panel-dark h3 {
    font-size: 14px;
    margin-bottom: 12px !important;
    padding-bottom: 10px;
  }
  
  .panel-dark ul {
    gap: 4px;
  }
  
  .panel-dark li {
    font-size: 12px;
    padding: 4px 0 4px 18px !important;
    line-height: 1.45;
  }
  
  .panel-dark li:before {
    font-size: 11px;
    left: 2px !important;
    top: 5px !important;
  }
  
  .panel-dark li:hover {
    padding-left: 20px !important;
  }
  
  .panel-dark li:hover:before {
    left: 4px !important;
  }
  
  .panel-dark a {
    font-size: 12px;
  }
  
  .hero-card {
    padding: 16px;
    gap: 16px;
  }
  
  .hero-card > div:last-child {
    width: 100%;
  }
  
  .hero-card > div:last-child > div {
    flex-direction: column !important;
    gap: 8px !important;
    width: 100%;
  }
  
  .hero-card .muted {
    font-size: 13px;
    width: 100%;
    display: block;
  }
  
  .hero-card .btn {
    width: 100%;
    padding: 12px 14px;
    font-size: 13px;
    text-align: center;
    justify-content: center;
  }
  
  .panel-accordion .panel-header {
    font-size: 13px;
  }
}

.panel h2 { 
  margin: 0 0 24px; 
  font-size: 24px; 
  font-weight: 600;
  color: var(--text);
  text-align: left;
}

.option-group {
  display: grid;
  gap: 16px;
  margin: 20px 0;
  text-align: left;
}

.option-group .muted {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.option-row { 
  display: flex; 
  gap: 12px; 
  flex-wrap: wrap; 
  justify-content: flex-start; 
}

.radio {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--surface);
  font-weight: 500;
  min-width: 100px;
  justify-content: center;
}

.radio:hover {
  border-color: var(--accent);
  background: var(--background);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.radio[data-checked="true"] {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--accent-contrast);
  box-shadow: 0 4px 16px rgba(17, 24, 39, 0.3);
}

.radio input {
  display: none;
}

.radio span {
  font-size: 15px;
  font-weight: 500;
}

.swatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: inline-block;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Weiter Button Styling */
.panel .btn, .field .btn {
  padding: 12px 24px;
  border: 2px solid var(--accent);
  border-radius: 12px;
  background: var(--accent);
  color: var(--accent-contrast);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 120px;
  justify-content: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.panel .btn.secondary, .field .btn.secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
}

.panel .btn:hover {
  background: #374151;
  border-color: #374151;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(17, 24, 39, 0.3);
}

.panel img {
  width: 75%;
  height: auto;
  margin: 0 auto;
  display: block;
  text-align: center;
}

.summary {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
}

.tag {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  padding: 6px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: inline-block;
}

.price-info {
  text-align: right;
  margin-top: 20px;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
}

.price-note {
  font-size: 14px;
  color: var(--muted);
  margin-top: 2px;
}

.field { display: grid; gap: 6px; margin: 10px 0; }
.field input, .field select, .field button {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  font-size: 15px;
  transition: border-color 0.2s;
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}

.field input:focus, .field select:focus { 
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.field select option {
  background: var(--surface);
  color: var(--text);
  padding: 8px 12px;
}

.terms { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); }

.muted { color: var(--muted); font-size: 15px; line-height: 1.6; }

.center { text-align: center; }

#danke {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 20px !important;
}

#danke h3 {
  margin: 0 0 16px 0;
  font-size: 24px;
  color: var(--text);
}

#danke p {
  margin: 0 0 24px 0;
  font-size: 16px;
}

.hidden { display: none !important; }

/* Contact Page */
.contact-section {
  padding: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.contact-info-card, .contact-actions-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.contact-info-card h2 {
  margin: 0 0 6px 0;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
}

.distributor-label {
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 24px 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.contact-detail:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-detail:first-child {
  padding-top: 0;
}

.contact-detail strong {
  display: none;
}

.contact-detail::before {
  content: '';
  width: 44px;
  height: 44px;
  background: var(--bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
}

.contact-detail:nth-child(1)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23374151' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M15 11a3 3 0 11-6 0 3 3 0 016 0z'/%3E%3C/svg%3E");
}

.contact-detail:nth-child(2)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23374151' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z'/%3E%3C/svg%3E");
}

.contact-detail:nth-child(3)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23374151' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z'/%3E%3C/svg%3E");
}

.contact-detail:nth-child(4)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23374151' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9'/%3E%3C/svg%3E");
}

.contact-detail p {
  margin: 0;
  color: var(--text);
  line-height: 1.5;
  font-size: 15px;
}

.contact-detail a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.contact-detail a:hover {
  color: var(--primary);
}

.contact-actions-card {
  text-align: center;
  justify-content: center;
}

.contact-actions-card h3 {
  margin: 0 0 12px 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
}

.contact-actions-card p {
  margin: 0 0 28px 0;
  line-height: 1.6;
  font-size: 15px;
}

.action-buttons {
  display: grid;
  gap: 12px;
  margin-top: auto;
}

.action-buttons .btn {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
}

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

@media (max-width: 768px) {
  .contact-info-card, .contact-actions-card {
    padding: 20px;
    border-radius: 12px;
  }
  
  .contact-info-card h2 {
    font-size: 20px;
    margin-bottom: 4px;
  }
  
  .distributor-label {
    font-size: 13px;
    margin-bottom: 20px;
    color: var(--primary);
    font-weight: 500;
  }
  
  .contact-details {
    gap: 0;
  }
  
  .contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }
  
  .contact-detail:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  
  .contact-detail:first-child {
    padding-top: 0;
  }
  
  .contact-detail strong {
    display: none;
  }
  
  .contact-detail p {
    margin: 0;
    font-size: 14px;
    color: var(--text);
  }
  
  .contact-detail a {
    color: var(--text);
    font-weight: 500;
  }
  
  .contact-detail::before {
    content: '';
    width: 36px;
    height: 36px;
    background: var(--bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-size: 18px;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  .contact-detail:nth-child(1)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23374151' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M15 11a3 3 0 11-6 0 3 3 0 016 0z'/%3E%3C/svg%3E");
  }
  
  .contact-detail:nth-child(2)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23374151' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z'/%3E%3C/svg%3E");
  }
  
  .contact-detail:nth-child(3)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23374151' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z'/%3E%3C/svg%3E");
  }
  
  .contact-detail:nth-child(4)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23374151' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9'/%3E%3C/svg%3E");
  }
  
  .contact-actions-card {
    text-align: center;
  }
  
  .contact-actions-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }
  
  .contact-actions-card p {
    font-size: 13px;
    margin-bottom: 20px;
  }
  
  .action-buttons {
    gap: 10px;
  }
  
  .action-buttons .btn {
    padding: 14px 20px;
    font-size: 14px;
  }
  
  .locations-section {
    margin-top: 24px;
    padding-top: 24px;
  }
  
  .locations-section h2 {
    font-size: 18px;
    margin-bottom: 20px;
  }
  
  .locations-grid {
    gap: 16px;
  }
  
  .location-card {
    padding: 20px;
    border-radius: 12px;
    text-align: left;
    display: block;
  }
  
  .location-card::before {
    display: none;
  }
  
  .location-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
  }
  
  .location-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
    margin: 0;
  }
}

/* Locations Section */
.locations-section {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.locations-section h2 {
  text-align: center;
  margin: 0 0 32px 0;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
}

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

.location-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: block;
  text-align: left;
}

.location-card::before {
  display: none;
}

.location-card h4 {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.location-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

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

/* Modal (Dealer form) */
.hidden {
  display: none !important;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal {
  width: 100%;
  max-width: 600px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  overflow: hidden;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.modal-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.modal-body { 
  padding: 32px;
}

.modal-body .field {
  margin-bottom: 20px;
}

.modal-body .field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text);
  font-size: 14px;
}

.modal-body .field input,
.modal-body .field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 15px;
  transition: all 0.2s ease;
  font-family: inherit;
  background: white;
  color: var(--text);
}

.modal-body .field input:focus,
.modal-body .field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10,10,10,0.1);
}

.modal-body .field textarea {
  resize: vertical;
  min-height: 120px;
}

.modal-body .field.terms {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
}

.modal-body .field.terms input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  background-color: white !important;
  border: 2px solid var(--border);
  accent-color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.modal-body .actions {
  margin-top: 32px;
  display: flex;
  justify-content: flex-end;
}

.modal-body .actions .btn {
  min-width: 180px;
  padding: 14px 28px;
  font-size: 16px;
}

.close-btn { 
  appearance: none;
  background: var(--surface);
  border: 1px solid var(--border);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all 0.2s ease;
  font-weight: 300;
}

.close-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: rotate(90deg);
}

/* Dealer form layout */
.modal form { display: grid; gap: 12px; }
.modal .row { display: flex; gap: 12px; flex-wrap: wrap; }
.modal .row .field { flex: 1 1 0; }
.modal .field label { font-weight: 600; font-size: 14px; }
.modal .actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 4px; }
.modal .actions .btn { min-width: 160px; }
@media (max-width: 768px) {
  .modal .row { flex-direction: column; }
  .modal .actions { flex-direction: column; }
  .modal .actions .btn { width: 100%; }
  
  .modal-overlay {
    padding: 10px;
    align-items: flex-start;
    padding-top: 5vh;
  }
  
  .modal {
    max-height: 90vh;
    overflow-y: auto;
    width: 100%;
    border-radius: 16px;
  }
  
  .modal-header {
    padding: 16px 20px;
  }
  
  .modal-header h3 {
    font-size: 18px;
  }
  
  .modal-body {
    padding: 16px 20px;
  }
  
  .modal-body .field {
    margin-bottom: 12px;
  }
  
  .modal-body .field label {
    font-size: 13px;
    margin-bottom: 4px;
  }
  
  .modal-body .field input,
  .modal-body .field textarea {
    padding: 10px 12px;
    font-size: 14px;
    border-radius: 8px;
    border-width: 1px;
  }
  
  .modal-body .field textarea {
    min-height: 80px;
  }
  
  .modal-body .field.terms {
    margin-top: 12px;
    gap: 8px;
  }
  
  .modal-body .field.terms label {
    font-size: 12px;
    line-height: 1.4;
  }
  
  .modal-body .actions {
    margin-top: 16px;
  }
  
  .modal-body .actions .btn {
    padding: 12px 20px;
    font-size: 14px;
    min-width: auto;
    width: 100%;
  }
  
  .close-btn {
    width: 32px;
    height: 32px;
    font-size: 20px;
  }
}

/* Multi-Step Configurator Styles */
.progress-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  padding: 0 20px;
}

.progress-step {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #6b7280;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.progress-step.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.progress-step.completed {
  background: #10b981;
  color: white;
  border-color: #10b981;
}

.progress-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 2px;
  background: var(--border);
}

.config-step {
  min-height: 350px;
  animation: fadeIn 0.4s ease;
  padding: 8px 0;
}

.config-step.hidden {
  display: none;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.option-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background: white;
  position: relative;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.option-card:hover {
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.option-card.selected {
  border-color: var(--primary);
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15);
}

.option-card h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  color: var(--text);
}

.option-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.config-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
  gap: 16px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile Optimizations for Configurator */
@media (max-width: 768px) {
  .progress-indicator {
    gap: 8px;
    margin-bottom: 24px;
  }
  
  .progress-step {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  
  .progress-step:not(:last-child)::after {
    width: 8px;
  }
  
  .option-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .option-card {
    padding: 16px;
  }
  
  .option-card h3 {
    font-size: 16px;
  }
  
  .config-navigation {
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
  }
  
  .config-navigation .btn {
    flex: 1;
    min-width: 120px;
  }
}

/* Hero Section with GIF */
.hero {
  padding: 32px 0 40px 0;
  text-align: center;
}

.hero h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.hero > p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.hero-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 0px;
}

.hero-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.hero-card > div:last-child {
  text-align: left;
}

@media (max-width: 768px) {
  .hero-card {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero > p {
    font-size: 16px;
  }
}

/* Hero Banner with Image */
.hero-banner {
  width: 100%;
  margin: 32px 0 32px 0;
  padding: 0 20px;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 24px;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  padding: 60px 20px;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-large {
  padding: 14px 28px !important;
  font-size: 16px !important;
  font-weight: 600;
  background: white !important;
  color: #0a0a0a !important;
  border: 2px solid white !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
  transition: left 0.5s ease;
}

.btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  background: rgba(255,255,255,0.95) !important;
}

.btn-large:hover::before {
  left: 100%;
}

@media (max-width: 768px) {
  .hero-banner {
    margin: 20px 0 !important;
  }
  
  .hero-image-wrapper {
    min-height: 400px;
    border-radius: 16px;
  }
  
  .hero-content {
    padding: 40px 20px;
  }
  
  .hero-content h1 {
    font-size: 32px;
  }
  
  .hero-content p {
    font-size: 16px;
    margin-bottom: 24px;
  }
  
  .btn-large {
    width: auto;
    padding: 12px 24px !important;
    font-size: 14px !important;
  }
}


