/* ============================================
   Cubo Système Sàrl - Design tokens & base
   ============================================ */
:root {
  --navy: #1f314f;
  --navy-dark: #16233a;
  --navy-light: #2c4468;
  --orange: #f4a421;
  --orange-dark: #d88f12;
  --white: #ffffff;
  --black: #14171c;
  --gray-50: #f7f8fa;
  --gray-100: #eef0f4;
  --gray-200: #e2e5eb;
  --gray-400: #97a0b1;
  --gray-600: #5b6478;
  --gray-800: #2a3142;

  --font-head: "Outfit", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;

  --shadow-sm: 0 4px 14px rgba(20, 23, 28, 0.06);
  --shadow: 0 16px 40px rgba(31, 49, 79, 0.12);

  --container: 1180px;
  --header-h: 84px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.15;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 4.2vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 2.8vw, 2.4rem); }
h3 { font-size: 1.2rem; }

p { color: var(--gray-600); }

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

.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--alt { background: var(--gray-50); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy p { color: rgba(255,255,255,0.72); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--orange);
  display: inline-block;
}
.section--navy .eyebrow { color: var(--orange); }

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 14px; font-size: 1.05rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }
.btn:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

.btn--primary { background: var(--orange); color: var(--navy-dark); box-shadow: 0 10px 24px rgba(244, 164, 33, 0.35); }
.btn--primary:hover { background: var(--orange-dark); }

.btn--ghost-light { border-color: rgba(255,255,255,0.35); color: var(--white); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn--outline { border-color: var(--navy); color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); }

.btn--sm { padding: 10px 18px; font-size: 0.85rem; }

/* ============================================
   Header
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled { border-color: var(--gray-200); box-shadow: 0 6px 20px rgba(20,23,28,0.05); }

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-img { height: 68px; width: auto; display: block; }
.logo-text-block { display: flex; flex-direction: column; gap: 1px; }
.logo-name { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: 1.05rem; line-height: 1.2; }
.logo-tagline { font-family: var(--font-body); font-style: italic; font-weight: 500; font-size: 0.85rem; color: var(--gray-400); }

.hero-slogan {
  font-family: var(--font-head);
  font-style: italic;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--orange);
  margin: 12px 0 0;
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > a {
  padding: 10px 16px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--gray-800);
  transition: background 0.18s ease, color 0.18s ease;
}
.main-nav > a:hover { background: var(--gray-100); color: var(--navy); }
.main-nav > a.is-active { background: var(--navy); color: var(--white); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.phone-chip {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.92rem; color: var(--navy);
  padding: 10px 14px; border-radius: 100px; background: var(--gray-100);
  transition: background 0.18s ease;
  white-space: nowrap; flex-shrink: 0;
}
.phone-chip svg { width: 16px; height: 16px; color: var(--orange-dark); }
.phone-chip:hover { background: var(--gray-200); }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  align-items: center; justify-content: center;
  cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; color: var(--navy); }
.nav-toggle .icon-close { display: none; }
.nav-toggle.is-open .icon-menu { display: none; }
.nav-toggle.is-open .icon-close { display: block; }

.nav-cta { display: none; }

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  padding: 96px 0 110px;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.hero::before {
  width: 620px; height: 620px;
  background: radial-gradient(circle at 30% 30%, rgba(244,164,33,0.32), transparent 70%);
  top: -220px; right: -160px;
}
.hero::after {
  width: 420px; height: 420px;
  background: radial-gradient(circle at 70% 70%, rgba(255,255,255,0.06), transparent 70%);
  bottom: -220px; left: -120px;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.5), transparent 75%);
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: var(--white); margin-top: 10px; }
.hero-content { max-width: 720px; }
.hero .lead { font-size: 1.15rem; color: rgba(255,255,255,0.78); margin: 18px 0 34px; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; margin-bottom: 46px; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 28px; }
.hero-badge { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: rgba(255,255,255,0.85); font-weight: 600; }
.hero-badge svg { width: 20px; height: 20px; color: var(--orange); flex-shrink: 0; }

.hero--page { padding: 64px 0 84px; }
.hero--page .container > *:not(.hero-grid) { max-width: 820px; }

/* ============================================
   Cards / grids
   ============================================ */
.grid {
  display: grid;
  gap: 28px;
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }

.icon-badge {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(150deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.icon-badge svg { width: 26px; height: 26px; color: var(--orange); }
.icon-badge--orange { background: linear-gradient(150deg, var(--orange), var(--orange-dark)); }
.icon-badge--orange svg { color: var(--navy-dark); }

.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.95rem; }
.card .card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; font-weight: 700; font-size: 0.88rem; color: var(--navy);
}
.card .card-link svg { width: 15px; height: 15px; transition: transform 0.18s ease; }
.card:hover .card-link svg { transform: translateX(4px); }

.card--product { position: relative; }
.card--product .model-tag {
  position: absolute; top: 28px; right: 26px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--orange-dark);
  background: rgba(244,164,33,0.12); padding: 5px 10px; border-radius: 100px;
}

/* Product photo cards */
.product-photo {
  aspect-ratio: 4 / 3;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  margin-bottom: 20px;
  padding: 14px;
}
.product-photo img { width: 100%; height: 100%; object-fit: contain; }

/* Product detail page */
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.9rem; color: var(--gray-600);
  margin-bottom: 18px;
}
.back-link svg { width: 16px; height: 16px; transform: rotate(180deg); }
.back-link:hover { color: var(--navy); }

.product-detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; min-width: 0; }
.product-detail-layout > * { min-width: 0; }
.product-photo-lg {
  aspect-ratio: 4 / 3;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 32px;
}
.product-photo-lg img { width: 100%; height: 100%; object-fit: contain; }

.feature-list { margin: 24px 0 28px; display: flex; flex-direction: column; gap: 14px; }
.feature-list li { display: flex; align-items: flex-start; gap: 12px; font-weight: 600; color: var(--navy); font-size: 0.96rem; }
.feature-list li svg { width: 20px; height: 20px; color: var(--orange-dark); flex-shrink: 0; margin-top: 1px; }

.diagram-card {
  max-width: 560px; margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.diagram-card img { max-height: 320px; margin: 0 auto 14px; object-fit: contain; }
.diagram-card span { font-size: 0.85rem; color: var(--gray-400); font-weight: 600; }
.spec-list { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; }
.spec-list li {
  font-size: 0.78rem; font-weight: 600; color: var(--navy);
  background: var(--gray-100); padding: 5px 10px; border-radius: 100px;
}

.badge-new {
  display: inline-block; margin-left: 8px; font-size: 0.62rem; font-weight: 800;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--white);
  background: var(--orange-dark); padding: 3px 8px; border-radius: 100px; vertical-align: middle;
}

/* Feature list (why choose us) */
.feature {
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
}
.feature .icon-badge { margin-bottom: 4px; }
.feature h3 { font-size: 1.05rem; }
.feature p { font-size: 0.92rem; }

/* Highlight banner (repair emphasis) */
.highlight-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  background: linear-gradient(120deg, var(--navy), var(--navy-dark));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 42px 44px;
  position: relative;
  overflow: hidden;
}
.highlight-banner::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 20%, rgba(244,164,33,0.25), transparent 60%);
}
.highlight-banner > * { position: relative; z-index: 1; }
.highlight-banner .icon-badge { width: 72px; height: 72px; margin: 0; background: rgba(244,164,33,0.16); }
.highlight-banner .icon-badge svg { width: 34px; height: 34px; color: var(--orange); }
.highlight-banner h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 8px; }
.highlight-banner p { color: rgba(255,255,255,0.78); max-width: 520px; }

/* About */
.about-stats { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.about-stat-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 36px;
  min-width: 180px;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.about-stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.about-stat-card .icon-badge { margin: 0 auto 16px; }
.about-stat-card strong { display: block; font-family: var(--font-head); font-size: 1.9rem; color: var(--navy); }
.about-stat-card span { font-size: 0.85rem; color: var(--gray-600); font-weight: 500; }

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  min-width: 0;
}
.contact-layout > * { min-width: 0; }
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-row { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--gray-100); }
.contact-row:last-of-type { border-bottom: none; }
.contact-row .icon-badge { width: 42px; height: 42px; border-radius: 10px; margin: 0; flex-shrink: 0; }
.contact-row .icon-badge svg { width: 20px; height: 20px; }
.contact-row h4 { font-size: 0.94rem; color: var(--navy); margin-bottom: 3px; }
.contact-row p, .contact-row a { font-size: 0.92rem; color: var(--gray-600); }
.contact-row a:hover { color: var(--orange-dark); }

.hours-table { width: 100%; font-size: 0.9rem; margin-top: 4px; }
.hours-table tr td { padding: 5px 0; color: var(--gray-600); }
.hours-table tr td:first-child { padding-right: 28px; white-space: nowrap; }
.hours-table tr td:last-child { text-align: right; font-weight: 600; color: var(--navy); white-space: nowrap; }

.social-row { display: flex; gap: 10px; margin-top: 24px; }
.social-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--gray-100); display: flex; align-items: center; justify-content: center;
  transition: background 0.18s ease;
}
.social-icon svg { width: 19px; height: 19px; color: var(--navy); }
.social-icon:hover { background: var(--orange); }
.social-icon:hover svg { color: var(--navy-dark); }

.map-link {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.map-frame {
  width: 100%; height: 420px; display: block;
  border: 0;
  filter: grayscale(0.15);
}

.contact-form-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 36px;
  color: var(--white);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-form-card h3 { color: var(--white); margin-bottom: 6px; }
.contact-form-card > p { color: rgba(255,255,255,0.7); margin-bottom: 24px; font-size: 0.92rem; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 0.82rem; font-weight: 600; margin-bottom: 6px; color: rgba(255,255,255,0.85); }
.form-row input, .form-row textarea {
  width: 100%; padding: 13px 14px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.06);
  color: var(--white); font-family: var(--font-body); font-size: 0.94rem;
}
.form-row input::placeholder, .form-row textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--orange); background: rgba(255,255,255,0.1); }
.form-row textarea { resize: vertical; min-height: 100px; }
.form-hidden { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-feedback { margin-top: 14px; font-size: 0.88rem; font-weight: 600; display: none; }
.form-feedback.is-visible { display: block; }
.form-feedback--success { color: var(--orange); }
.form-feedback--error { color: #ff8a8a; }

/* Footer */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,0.75); padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid h4 { color: var(--white); font-size: 0.92rem; margin-bottom: 20px; letter-spacing: 0.02em; }
.footer-grid ul li { margin-bottom: 11px; font-size: 0.9rem; }
.footer-grid ul li a:hover { color: var(--orange); }
.footer-about p { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin: 16px 0 20px; max-width: 300px; }
.footer-about .logo-img { height: 96px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 0; font-size: 0.82rem; color: rgba(255,255,255,0.45); flex-wrap: wrap; gap: 10px;
}
.footer-bottom a:hover { color: var(--orange); }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--orange), var(--orange-dark));
  border-radius: var(--radius-lg);
  padding: 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-band h2 { color: var(--navy-dark); margin-bottom: 6px; }
.cta-band p { color: rgba(22,35,58,0.75); font-weight: 500; }
.cta-band .btn--primary { background: var(--navy); color: var(--white); box-shadow: 0 10px 24px rgba(20,23,28,0.25); }
.cta-band .btn--primary:hover { background: var(--navy-dark); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Group heading inside product pages */
.group-head { display: flex; align-items: baseline; gap: 14px; margin: 64px 0 28px; }
.group-head:first-of-type { margin-top: 0; }
.group-head h3 { font-size: 1.3rem; color: var(--navy); }
.group-head .line { flex: 1; height: 1px; background: var(--gray-200); }
.group-head .count { font-size: 0.8rem; color: var(--gray-400); font-weight: 600; }

.source-note {
  font-size: 0.85rem; color: var(--gray-400); margin-top: 8px;
}
.source-note a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1140px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-toggle { display: flex; }
  .main-nav {
    display: flex;
    position: fixed;
    top: var(--header-h); left: 0; right: 0; bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 20px 0;
    gap: 6px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 90;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav > a { padding: 16px; font-size: 1.05rem; border-bottom: 1px solid var(--gray-100); border-radius: 0; }
  .header-actions .phone-chip,
  .header-actions > a.btn--primary.btn--sm { display: none; }
  .logo-text { font-size: 0.92rem; }

  .nav-cta {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 6px;
    padding-top: 24px;
    padding-bottom: 32px;
    padding-bottom: max(32px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--gray-100);
    flex-shrink: 0;
  }
  .nav-cta-btn {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 26px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1;
    box-shadow: none;
  }
  .nav-cta-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
  .nav-cta-btn--outline {
    border: 2px solid var(--navy);
    color: var(--navy);
    background: var(--white);
  }
  .nav-cta-btn--outline:hover { background: var(--navy); color: var(--white); }
  .nav-cta-btn--primary {
    border: 2px solid var(--orange);
    color: var(--navy-dark);
    background: var(--orange);
  }
  .nav-cta-btn--primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
}

@media (max-width: 720px) {
  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .highlight-banner { grid-template-columns: 1fr; text-align: left; padding: 32px 26px; }
  .highlight-banner .btn { width: 100%; justify-content: center; }
  .section { padding: 64px 0; }
  .cta-band { padding: 36px 28px; }
  .cta-band .btn { width: 100%; justify-content: center; }
  .product-detail-layout { grid-template-columns: 1fr; gap: 32px; }
  .hours-table tr td:first-child, .hours-table tr td:last-child { white-space: normal; }
  .hours-table tr td:first-child { padding-right: 12px; }
}

/* Prevent flex/grid blowout from long unbreakable content */
.grid > *, .footer-grid > *, .about-stats > *, .hero-actions > *, .hero-badges > * { min-width: 0; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 6px 26px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.02rem;
  padding: 18px 34px 18px 0;
  position: relative;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 4px; top: 50%;
  width: 10px; height: 10px;
  border-right: 2px solid var(--orange-dark);
  border-bottom: 2px solid var(--orange-dark);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: translateY(-35%) rotate(-135deg); }
.faq-item p { padding-bottom: 20px; font-size: 0.95rem; }

#faq { padding-top: 32px; }
