/* ============================================
   AMZ GeSTioNa — Estilos principales
   Diseño minimalista inspirado en Apple
   ============================================ */

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #1D1D1F;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ---- Nav logo image ---- */
.nav-logo-link { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
  transition: filter 0.3s;
  object-fit: contain;
}
.navbar.on-dark .nav-logo-img { filter: invert(1); }

/* ---- Footer logo image ---- */
.footer-logo-link { display: inline-block; margin-bottom: 14px; }
.footer-logo-img { height: 88px; width: auto; display: block; object-fit: contain; }

/* ---- Variables ---- */
:root {
  --black: #000;
  --dark: #1D1D1F;
  --gray: #6E6E73;
  --light: #F5F5F7;
  --border: #D2D2D7;
  --white: #fff;
  --nav-h: 52px;
  --max-w: 980px;
}

/* ---- Tipografía ---- */
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 14px;
}

h1 { font-size: clamp(38px, 6vw, 76px); font-weight: 700; line-height: 1.08; letter-spacing: -0.025em; }
h2 { font-size: clamp(28px, 4vw, 52px); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h3 { font-size: clamp(18px, 2.5vw, 24px); font-weight: 600; line-height: 1.2; letter-spacing: -0.01em; }

p { color: var(--gray); font-size: 17px; line-height: 1.65; }

/* ---- Utilidades ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* ---- Botones ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 26px;
  border-radius: 980px;
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary { background: var(--white); color: var(--black); }
.btn-primary:hover { background: rgba(255,255,255,0.85); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: #222; }

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--dark); }

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  z-index: 9999;
  transition: background 0.3s, border-color 0.3s;
}

.navbar.on-dark {
  background: rgba(0,0,0,0.85);
  border-bottom-color: rgba(255,255,255,0.1);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--dark);
  flex-shrink: 0;
  transition: color 0.3s;
}
.navbar.on-dark .nav-logo { color: var(--white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 5px 14px;
  font-size: 13px;
  color: #1D1D1F;
  border-radius: 6px;
  transition: color 0.2s;
}
.navbar.on-dark .nav-links > li > a { color: rgba(255,255,255,0.8); }
.nav-links > li > a:hover { color: var(--black); }
.navbar.on-dark .nav-links > li > a:hover { color: var(--white); }

/* Dropdown */
.has-dropdown { position: relative; }

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 250px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.98);
  border-top: 1px solid rgba(0,0,0,0.08);
  border-left: 1px solid rgba(0,0,0,0.08);
  transform: translateX(-50%) rotate(45deg);
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--dark);
  border-radius: 8px;
  transition: background 0.15s;
}
.dropdown a:hover { background: var(--light); color: var(--black); }

.dropdown-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}

.chevron {
  width: 10px; height: 6px;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.has-dropdown:hover .chevron { transform: rotate(180deg); }

/* Nav Contacto CTA */
.nav-contact {
  background: var(--black) !important;
  color: var(--white) !important;
  border-radius: 20px !important;
  padding: 7px 18px !important;
  transition: background 0.2s !important;
}
.nav-contact:hover { background: #333 !important; }
.navbar.on-dark .nav-contact { background: var(--white) !important; color: var(--black) !important; }
.navbar.on-dark .nav-contact:hover { background: rgba(255,255,255,0.85) !important; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.navbar.on-dark .nav-toggle span { background: var(--white); }
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 24px 40px;
  overflow-y: auto;
  z-index: 9998;
  flex-direction: column;
}
.nav-mobile.open { display: flex; }

.nav-mobile > a {
  display: block;
  padding: 16px 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--dark);
  border-bottom: 1px solid var(--border);
}
.nav-mobile > a:last-child { border-bottom: none; }

.mobile-sub { border-bottom: 1px solid var(--border); }
.mobile-sub-title {
  display: block;
  padding: 16px 0 8px;
  font-size: 17px;
  font-weight: 500;
  color: var(--dark);
}
.mobile-sub a {
  display: block;
  padding: 10px 16px;
  font-size: 15px;
  color: var(--gray);
}
.mobile-sub a:hover { color: var(--dark); }

/* ================================================
   HERO
   ================================================ */
.hero--dark {
  padding-top: var(--nav-h);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.hero--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(30,30,30,0.8) 0%, transparent 70%);
  pointer-events: none;
}

.hero--dark .hero-content { position: relative; z-index: 1; }

.hero-content {
  max-width: 800px;
  padding: 60px 24px;
}

.hero--dark h1 { color: var(--white); }
.hero--dark p { color: rgba(255,255,255,0.6); font-size: 20px; max-width: 560px; margin: 0 auto 36px; }
.hero--dark .eyebrow { color: rgba(255,255,255,0.45); }

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

/* Page hero (subpáginas) */
.hero--page {
  padding: calc(var(--nav-h) + 72px) 24px 80px;
  background: var(--light);
  text-align: center;
}
.hero--page h1 { color: var(--dark); }
.hero--page p { color: var(--gray); font-size: 20px; max-width: 560px; margin: 18px auto 0; }

/* ================================================
   SECCIONES
   ================================================ */
section { padding: 100px 24px; }
.section-white { background: var(--white); }
.section-gray { background: var(--light); }
.section-dark { background: var(--black); }
.section-dark h2 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.6); }
.section-dark .eyebrow { color: rgba(255,255,255,0.4); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header h2 { margin-bottom: 16px; }

/* ================================================
   FEATURES GRID
   ================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 2px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
}

.feature-card {
  background: var(--white);
  padding: 48px 40px;
}
.feature-icon { width: 44px; height: 44px; margin-bottom: 24px; color: var(--dark); }
.feature-card h3 { margin-bottom: 12px; }
.feature-card p { font-size: 15px; }

/* ================================================
   SERVICE CARDS (index)
   ================================================ */
.services-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px 24px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.service-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.service-card .icon {
  width: 42px; height: 42px;
  background: var(--light);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-card h3 { font-size: 15px; margin-bottom: 8px; }
.service-card p { font-size: 13px; }

/* ================================================
   SERVICIOS (página servicios.html)
   ================================================ */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-block-info h3 { font-size: 32px; margin-bottom: 16px; }
.service-block-info p { font-size: 17px; margin-bottom: 28px; }
.service-block-info .btn { margin-top: 8px; }

.service-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--dark);
}
.check-icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.service-visual {
  background: var(--light);
  border-radius: 20px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.service-visual svg { opacity: 0.15; }

/* ================================================
   STATS
   ================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-number {
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label { font-size: 15px; color: rgba(255,255,255,0.55); }

/* ================================================
   VALORES / ABOUT
   ================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.value-card {
  padding: 36px 32px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--border);
}
.value-number {
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  color: rgba(0,0,0,0.07);
  margin-bottom: 12px;
}
.value-card h3 { font-size: 20px; margin-bottom: 10px; }
.value-card p { font-size: 15px; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-grid h2 { margin-bottom: 20px; }
.about-grid p { margin-bottom: 16px; }
.about-visual {
  background: var(--light);
  border-radius: 22px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================================================
   CONTACTO
   ================================================ */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--dark);
}
.contact-detail-icon {
  width: 38px; height: 38px;
  background: var(--light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-text span { display: block; font-size: 12px; color: var(--gray); margin-bottom: 2px; }

/* Form */
.contact-form {
  background: var(--light);
  border-radius: 22px;
  padding: 44px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group label { font-size: 13px; font-weight: 500; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 11px;
  font-size: 15px;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
  appearance: none;
}
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236E6E73' stroke-width='1.5' stroke-linecap='round' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--black); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #AEAEB2; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}
.form-check input[type="checkbox"] { margin-top: 2px; width: 16px; height: 16px; cursor: pointer; accent-color: var(--black); }
.form-check label { font-size: 13px; color: var(--gray); cursor: pointer; }
.form-check a { color: var(--dark); text-decoration: underline; }

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 11px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}
.form-submit:hover { background: #222; }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; }

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--light);
  border-top: 1px solid var(--border);
  padding: 64px 24px 0;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand { }
.footer-brand .nav-logo { font-size: 18px; display: block; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; max-width: 240px; }
.footer-col h5 { font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; color: var(--gray); transition: color 0.2s; }
.footer-col a:hover { color: var(--dark); }
.footer-bottom {
  border-top: 1px solid var(--border);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom > p { font-size: 12px; color: var(--gray); margin: 0; }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { font-size: 12px; color: var(--gray); transition: color 0.2s; }
.footer-legal a:hover { color: var(--dark); }

/* ================================================
   PÁGINAS LEGALES
   ================================================ */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 64px) 24px 96px;
}
.legal-content h1 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 8px; }
.legal-content .legal-updated { font-size: 14px; color: var(--gray); margin-bottom: 48px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.legal-content h2 { font-size: 22px; margin: 44px 0 14px; }
.legal-content p { font-size: 16px; margin-bottom: 16px; }
.legal-content ul, .legal-content ol { padding-left: 24px; margin-bottom: 16px; }
.legal-content ul { list-style: disc; }
.legal-content ol { list-style: decimal; }
.legal-content li { font-size: 16px; color: var(--gray); margin-bottom: 8px; }

/* ================================================
   COOKIE BANNER
   ================================================ */
#cookieBanner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  z-index: 9997;
  padding: 16px 24px;
}
.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-inner p { font-size: 14px; margin: 0; }
.cookie-inner a { color: var(--dark); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-actions .btn { padding: 8px 20px; font-size: 13px; }

/* ================================================
   ANIMACIONES
   ================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: none; }
.fd-1 { transition-delay: 0.1s; }
.fd-2 { transition-delay: 0.2s; }
.fd-3 { transition-delay: 0.3s; }
.fd-4 { transition-delay: 0.4s; }

/* CTA centrado */
.cta-section {
  text-align: center;
  padding: 120px 24px;
}
.cta-section h2 { margin-bottom: 18px; }
.cta-section > .container > p { max-width: 500px; margin: 0 auto 36px; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 900px) {
  .services-cards { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .service-block { grid-template-columns: 1fr; gap: 40px; }
  .service-block.reverse { direction: ltr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  section { padding: 72px 20px; }
  .cta-section { padding: 80px 20px; }

  .hero--dark { min-height: 100svh; }
  .hero--dark p { font-size: 17px; }

  .services-cards { grid-template-columns: repeat(2, 1fr); }
  .contact-wrapper { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 30px 24px; }
}

@media (max-width: 480px) {
  h1 { font-size: 34px; }
  h2 { font-size: 26px; }
  .services-cards { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero--dark p { font-size: 16px; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
}

/* ================================================
   AGENCY COMPARISON
   ================================================ */
.agency-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.agency-card {
  border-radius: 22px;
  padding: 44px;
}
.agency-card p { font-size: 16px; line-height: 1.7; margin-bottom: 16px; }
.agency-card p:last-child { margin-bottom: 0; }
.agency-card--bad {
  background: var(--light);
  border: 1px solid var(--border);
}
.agency-card--bad p { color: var(--gray); }
.agency-card--good { background: var(--black); }
.agency-card--good p { color: rgba(255,255,255,0.65); }
.agency-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}
.agency-card--bad .agency-label { color: var(--gray); }
.agency-card--good .agency-label { color: rgba(255,255,255,0.35); }
.agency-statement {
  font-size: 19px !important;
  font-weight: 600 !important;
  color: var(--white) !important;
  line-height: 1.45 !important;
}

@media (max-width: 768px) {
  .agency-compare { grid-template-columns: 1fr; }
  .agency-card { padding: 32px 28px; }
}

/* ================================================
   FAQ
   ================================================ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  -webkit-appearance: none;
  user-select: none;
  transition: color 0.2s;
}
.faq-q::-webkit-details-marker { display: none; }
details[open] > .faq-q { color: var(--black); }
.faq-chevron {
  width: 14px;
  height: 9px;
  flex-shrink: 0;
  color: var(--gray);
  transition: transform 0.3s ease;
}
details[open] .faq-chevron { transform: rotate(180deg); }
.faq-a {
  padding: 0 28px 24px;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
  margin: 0;
}

