/* ============================================
   HERMESS Fahrplatten - Apple Style Design
   Brand Colors aus Logo extrahiert
   ============================================ */

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

:root {
  --brand-dark: #1E2D5C;
  --brand-mid: #3C64A0;
  --brand-accent: #64A0B4;
  --brand-pastel: #B4C8DC;
  --brand-deep: #142850;
  --brand-cta: #3C64A0;
  --brand-cta-hover: #2E4F85;

  --black: #1d1d1f;
  --white: #ffffff;
  --gray-bg: #f5f5f7;
  --gray-light: #fbfbfd;
  --gray-text: #6e6e73;
  --gray-border: #d2d2d7;

  --success: #34c759;
  --danger: #ff453a;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.47;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-mid); text-decoration: none; }
a:hover { text-decoration: underline; }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  height: 64px;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}
.nav-logo:hover { text-decoration: none; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--black);
  font-size: 13px;
  font-weight: 400;
  opacity: 0.85;
  transition: opacity .2s, color .2s;
}
.nav-links a:hover { opacity: 1; color: var(--brand-mid); text-decoration: none; }
.nav-links a.active { opacity: 1; font-weight: 500; color: var(--brand-dark); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cart-btn {
  position: relative;
  background: var(--brand-cta);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 980px;
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.cart-btn:hover { background: var(--brand-cta-hover); text-decoration: none; }
.cart-count {
  background: var(--white);
  color: var(--brand-cta);
  border-radius: 50%;
  min-width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  margin-left: 6px;
  padding: 0 5px;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand-dark) 50%, var(--brand-mid) 100%);
  color: var(--white);
  text-align: center;
  padding: 60px 22px 50px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--brand-accent);
  opacity: 0.12;
  border-radius: 50%;
  filter: blur(60px);
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: var(--brand-pastel);
  opacity: 0.08;
  border-radius: 50%;
  filter: blur(80px);
}

.hero > * { position: relative; z-index: 1; }

.hero-logo {
  max-width: 200px;
  margin: 0 auto 24px;
}
.hero-logo img { width: 100%; }

.hero h1 {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 14px;
}

.hero .sub {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  max-width: 620px;
  margin: 0 auto 20px;
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn-primary {
  background: var(--brand-accent);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 980px;
  font-size: 15px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-primary:hover { background: #4f8ba0; text-decoration: none; transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 12px 28px;
  border-radius: 980px;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); text-decoration: none; }

.hero-image {
  margin: 36px auto 0;
  max-width: 900px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  aspect-ratio: 16 / 9;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

section { padding: 70px 22px; }

.section-light { background: var(--gray-light); }
.section-gray { background: var(--gray-bg); }
.section-dark { background: var(--brand-dark); color: var(--white); }
.section-brand-soft { background: linear-gradient(180deg, #f5f8fc 0%, #ebf2f9 100%); }

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.5px;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.15;
  color: var(--brand-dark);
}

.section-dark .section-title { color: var(--white); }

.section-subtitle {
  font-size: 16px;
  color: var(--gray-text);
  text-align: center;
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.section-dark .section-subtitle { color: rgba(255,255,255,0.7); }

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-mid);
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* PRODUCT GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--gray-border);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(30, 45, 92, 0.12);
  border-color: var(--brand-pastel);
}

.product-card-img {
  background: linear-gradient(135deg, var(--brand-pastel) 0%, #d8e3ee 100%);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-dark);
  position: relative;
  overflow: hidden;
  font-weight: 500;
}
.product-card-img img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.product-card:hover .product-card-img img {
  transform: scale(1.04);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--brand-dark);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 980px;
  letter-spacing: 0.5px;
}

.product-info {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-info h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.3px;
  margin-bottom: 6px;
  color: var(--brand-dark);
}
.product-info .product-meta {
  font-size: 14px;
  color: var(--gray-text);
  margin-bottom: 14px;
}
.product-features {
  list-style: none;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--gray-text);
  flex: 1;
}
.product-features li {
  padding: 4px 0;
  display: flex;
  gap: 8px;
}
.product-features li::before {
  content: "✓";
  color: var(--brand-mid);
  font-weight: 600;
}

.product-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}
.btn-add {
  flex: 1;
  background: var(--brand-dark);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 980px;
  font-size: 13px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.btn-add:hover { background: var(--brand-mid); }
.btn-detail {
  flex: 1;
  background: transparent;
  color: var(--brand-dark);
  padding: 10px 14px;
  border-radius: 980px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid var(--gray-border);
  cursor: pointer;
  text-align: center;
  transition: all .2s;
}
.btn-detail:hover { border-color: var(--brand-dark); text-decoration: none; }

/* Preis & Pakete */
.price-block {
  margin: 14px 0 16px;
  padding: 14px;
  background: var(--gray-bg);
  border-radius: 12px;
}
.price-action {
  font-size: 12px;
  color: var(--brand-mid);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.price-main {
  font-size: 26px;
  font-weight: 600;
  color: var(--brand-dark);
  letter-spacing: -0.5px;
  line-height: 1;
}
.price-meta {
  font-size: 11px;
  color: var(--gray-text);
  margin-top: 4px;
}

/* Paket-Buttons */
.package-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 10px;
}
.pkg-btn {
  background: #fff;
  border: 1.5px solid var(--gray-border);
  color: var(--brand-dark);
  padding: 8px 10px;
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  font-family: inherit;
  transition: all .2s;
}
.pkg-btn:hover {
  border-color: var(--brand-mid);
  background: var(--brand-pastel);
}
.pkg-btn.active {
  border-color: var(--brand-cta);
  background: var(--brand-cta);
  color: #fff;
}
.pkg-btn .qty {
  font-size: 14px;
  font-weight: 600;
  display: block;
}
.pkg-btn .pal-price {
  font-size: 10px;
  margin-top: 2px;
  opacity: 0.85;
}

/* Metallverbinder-Option */
.option-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gray-text);
  background: var(--gray-light);
  padding: 8px 12px;
  border-radius: 10px;
  margin-bottom: 10px;
  border: 1px dashed var(--gray-border);
}
.option-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: var(--brand-mid);
}
.option-row label {
  cursor: pointer;
  flex: 1;
  user-select: none;
}
.option-row label strong { color: var(--brand-dark); }

/* FEATURE GRID */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.feature-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 18px;
  text-align: center;
  border: 1px solid var(--gray-border);
  transition: transform .3s, border-color .3s;
}
.feature-card:hover {
  transform: translateY(-2px);
  border-color: var(--brand-pastel);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--brand-pastel) 0%, #d8e3ee 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--brand-dark);
}
.feature-card p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.5;
}

/* STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  text-align: center;
}
.stat-num {
  font-size: 28px;
  font-weight: 600;
  color: var(--brand-dark);
  letter-spacing: -0.5px;
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: var(--gray-text);
  margin-top: 6px;
}

/* COMPARE */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.compare-card {
  border-radius: 18px;
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--gray-border);
}
.compare-card.winner {
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand-dark) 100%);
  color: var(--white);
  border: none;
  box-shadow: 0 20px 60px rgba(30, 45, 92, 0.25);
}
.compare-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--brand-dark);
}
.compare-card.winner h3 { color: var(--white); }

.compare-card .badge {
  display: inline-block;
  background: var(--brand-accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 980px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.compare-card ul {
  list-style: none;
  margin-top: 20px;
}
.compare-card li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 15px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.compare-card.winner li {
  border-bottom-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
}
.compare-card li::before {
  content: "✓";
  color: var(--brand-mid);
  font-weight: 700;
  flex-shrink: 0;
}
.compare-card.winner li::before {
  color: var(--brand-accent);
}
.compare-card.loser li::before {
  content: "✗";
  color: var(--danger);
}

/* CTA */
.cta-banner {
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand-dark) 50%, var(--brand-mid) 100%);
  color: var(--white);
  text-align: center;
  border-radius: 18px;
  padding: 56px 32px;
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: var(--brand-accent);
  opacity: 0.15;
  border-radius: 50%;
  filter: blur(50px);
}

.cta-banner > * { position: relative; z-index: 1; }

.cta-banner h2 {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  color: var(--white);
}
.cta-banner p {
  font-size: 16px;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.95);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .btn-primary {
  background: var(--white);
  color: var(--brand-dark);
}
.cta-banner .btn-primary:hover { background: var(--gray-bg); }
.cta-banner .btn-secondary {
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}

/* FOOTER */
footer {
  background: var(--brand-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 22px 30px;
  font-size: 12px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  max-width: 200px;
  margin-bottom: 16px;
}
.footer-logo img { width: 100%; }

.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-cols h4 {
  font-size: 12px;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-cols ul { list-style: none; }
.footer-cols li { padding: 4px 0; }
.footer-cols a { color: rgba(255,255,255,0.6); font-size: 12px; }
.footer-cols a:hover { color: var(--white); text-decoration: underline; }

.footer-bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255,255,255,0.5);
}

/* FORM */
.form-card {
  background: var(--white);
  border-radius: 18px;
  padding: 40px;
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--gray-border);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--brand-dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-mid);
  box-shadow: 0 0 0 3px rgba(60, 100, 160, 0.15);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group .hint { font-size: 12px; color: var(--gray-text); margin-top: 4px; }

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-text);
  margin: 16px 0;
}
.checkbox-group input { width: auto; margin-top: 3px; }

.btn-submit {
  background: var(--brand-cta);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 980px;
  font-size: 15px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background .2s;
}
.btn-submit:hover { background: var(--brand-cta-hover); }

/* CART */
.cart-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30, 45, 92, 0.5);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: flex-start;
  justify-content: flex-end;
}
.cart-overlay.open { display: flex; }
.cart-panel {
  background: var(--white);
  width: 100%;
  max-width: 460px;
  height: 100vh;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-border);
}
.cart-header h3 { font-size: 22px; font-weight: 600; color: var(--brand-dark); }
.cart-close {
  background: var(--gray-bg);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  color: var(--brand-dark);
}

.cart-items { flex: 1; }
.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-text);
}
.cart-empty-icon { font-size: 48px; margin-bottom: 12px; opacity: .4; }

.cart-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-border);
}
.cart-item-img {
  width: 60px;
  height: 60px;
  background: var(--brand-pastel);
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--brand-dark);
}
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; color: var(--brand-dark); }
.cart-item-info .meta { font-size: 12px; color: var(--gray-text); }
.cart-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
.cart-qty button {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--gray-border);
  background: var(--white);
  cursor: pointer;
  font-size: 12px;
  color: var(--brand-dark);
}
.cart-qty input {
  width: 50px;
  padding: 4px;
  text-align: center;
  border: 1px solid var(--gray-border);
  border-radius: 6px;
  font-size: 13px;
}
.cart-remove {
  background: none;
  border: none;
  color: var(--gray-text);
  font-size: 11px;
  cursor: pointer;
  margin-top: 4px;
  padding: 0;
}
.cart-remove:hover { color: var(--danger); }

.cart-footer {
  border-top: 1px solid var(--gray-border);
  padding-top: 16px;
  margin-top: 16px;
}
.cart-info-banner {
  background: var(--brand-pastel);
  color: var(--brand-dark);
  padding: 12px;
  border-radius: 10px;
  font-size: 12px;
  margin-bottom: 12px;
  line-height: 1.5;
}
.btn-checkout {
  background: var(--brand-cta);
  color: var(--white);
  width: 100%;
  padding: 14px;
  border-radius: 980px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
}
.btn-checkout:hover { background: var(--brand-cta-hover); }
.btn-checkout:disabled { background: var(--gray-border); cursor: not-allowed; }

/* PAGE HEADER */
.page-header {
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand-dark) 50%, var(--brand-mid) 100%);
  color: var(--white);
  text-align: center;
  padding: 60px 22px 48px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--brand-accent);
  opacity: 0.12;
  border-radius: 50%;
  filter: blur(60px);
}
.page-header > * { position: relative; z-index: 1; }
.page-header h1 {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.page-header p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.5;
}

/* TABS */
.category-tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.tab {
  background: var(--white);
  color: var(--brand-dark);
  padding: 8px 18px;
  border-radius: 980px;
  border: 1px solid var(--gray-border);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}
.tab.active, .tab:hover {
  background: var(--brand-dark);
  color: var(--white);
  border-color: var(--brand-dark);
  text-decoration: none;
}

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: 14px;
  margin-bottom: 10px;
  border: 1px solid var(--gray-border);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item:hover { border-color: var(--brand-pastel); }
.faq-q {
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--brand-dark);
}
.faq-q::after { content: "+"; font-size: 24px; color: var(--brand-mid); font-weight: 300; }
.faq-item.open .faq-q::after { content: "−"; }
.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s, padding .3s;
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.6;
}
.faq-item.open .faq-a { padding: 0 24px 20px; max-height: 400px; }

/* MOBILE */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-logo img { height: 28px; }
  .hero { padding: 40px 18px 36px; }
  .hero h1 { font-size: 28px; letter-spacing: -0.5px; }
  .hero .sub { font-size: 15px; }
  .hero-logo { max-width: 140px; }
  .hero-image { margin-top: 24px; border-radius: 14px; }
  .section-title { font-size: 24px; letter-spacing: -0.3px; }
  .section-subtitle { font-size: 15px; margin-bottom: 28px; }
  section { padding: 44px 18px; }
  .compare-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .page-header { padding: 40px 18px 28px; }
  .page-header h1 { font-size: 26px; }
  .cta-banner { padding: 36px 22px; border-radius: 16px; }
  .cta-banner h2 { font-size: 24px; }
  .stat-num { font-size: 22px; }
  .stat-label { font-size: 11px; }
  .stats { gap: 14px; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); }
  .btn-primary, .btn-secondary { padding: 10px 22px; font-size: 14px; }
  .eyebrow { font-size: 11px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 24px; }
  .section-title { font-size: 22px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat-num { font-size: 20px; }
}
