
    /* Header */
    header{
      position: sticky;
      top:0;
      background: rgba(255,255,255,.9);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(229,231,235,.65);
      z-index: 20;
    }

    .topbar{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding: 16px 0;
      gap: 16px;
    }

    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width: 170px;
    }

    .brand-block{
      display:flex;
      flex-direction:column;
      align-items:flex-start;
      text-align:left;
      gap:4px;
    }

    .brand-link{
      display:flex;
      align-items:flex-start;
      text-decoration:none;
    }

    .brand .mark{
      width:46px; height:46px;
      display:grid;
      place-items:center;
    }

    .logo-animation{
      height:52px;
      display:block;
      margin-left:0;
      margin-bottom:-2px;
      align-self:flex-start;
      opacity: 0;
      transform: translateX(-60px);
      animation: lottieEntrance 1.4s ease-out forwards;
    }

    .brand-baseline{
      font-size:12.5px;
      font-weight:400;
      color:#6b7280;
      letter-spacing:0.02em;
      margin-left: 20px;
      line-height:1.2;
      text-decoration:none;
      border-bottom:none;
    }

    .brand-baseline:hover,
    .brand-baseline:focus{
      text-decoration:none;
      border-bottom:none;
      color:#6b7280;
    }

    @keyframes lottieEntrance{
      0%{opacity:0; transform: translateX(-60px);}
      70%{opacity:0.8; transform: translateX(12px);}
      85%{opacity:1; transform: translateX(-5px);}
      100%{opacity:1; transform: translateX(0);}
    }

    .brand .name{
      font-weight:800;
      font-size:28px;
      letter-spacing:-0.03em;
      color:#10233a;
      line-height:1;
    }

    nav{
      display:flex;
      gap:34px;
      align-items:center;
      justify-content:center;
      flex:1;
     margin-top: 15px;
    }
    nav a { color:#6b7280; text-decoration:none; font-weight:500; font-size:14px; padding:6px 10px; border-radius:8px; transition:background 150ms, color 150ms; }
    nav a:hover { color:#111827; background:rgba(243,244,246,.7); }

    /* Dropdown Ressources */
    .nav-dropdown { position: relative; }
    .nav-dropdown-trigger {
      color: #6b7280; font-weight: 500; font-size: 14px;
      background: none; border: none; cursor: pointer;
      display: flex; align-items: center; gap: 5px;
      padding:6px 10px; font-family: inherit;
    }
    .nav-dropdown-trigger:hover { color: #111827; }
        .dd-chevron {
      flex-shrink: 0;
      transition: transform 180ms ease;
    }
    .nav-dropdown.is-open .dd-chevron { transform: rotate(180deg); }
    .nav-dropdown-menu {
      position: absolute; top: calc(100% + 18px); left: 50%;
      background: #fff; border: 1px solid rgba(229,231,235,.8);
      border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,.10);
      min-width: 0; width: max-content; padding: 6px;
      opacity: 0; pointer-events: none;
      transform: translateX(-50%) translateY(-8px);
      transition: opacity 180ms ease, transform 180ms ease;
    }
    .nav-dropdown.is-open .nav-dropdown-menu {
      opacity: 1; pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }
    .nav-dropdown-menu a {
      display: flex; align-items: center; gap: 10px;
      padding: 10px 14px; border-radius: 8px;
      color: #111827; text-decoration: none;
      font-size: 14px; font-weight: 500;
      transition: background 150ms; white-space: nowrap;
    }
    .nav-dropdown-menu a:hover { background: #f3f4f6; }
    .nav-dropdown-menu a::after { display: none !important; }

    .actions{
      display:flex;
      align-items:center;
      gap:12px;
      justify-content:flex-end;
      min-width: 260px;
    }

    .lang{
      position:relative;
      display:inline-flex;
      align-items:center;
      justify-content:flex-start;
      font-size:13px;
      color:#374151;
    }

    .lang-toggle{
      border:1px solid rgba(229,231,235,.65);
      background:#fff;
      border-radius:999px;
      padding:8px 12px;
      display:flex;
      align-items:center;
      gap:8px;
      cursor:pointer;
      min-width:10px;
      transition:background .2s ease;
    }

    .lang-toggle:focus{
      outline: 2px solid #d1d5db;
      outline-offset: 2px;
    }

    .lang-toggle .caret{
      width:0; height:0;
      border-left:5px solid transparent;
      border-right:5px solid transparent;
      border-top:6px solid #6b7280;
    }

    .lang-menu{
      position:absolute;
      top:calc(100% + 6px);
      right:0;
      background:#fff;
      border:1px solid rgba(229,231,235,.65);
      border-radius:12px;
      box-shadow:0 4px 24px rgba(0,0,0,.08);
      display:none;
      flex-direction:column;
      padding:6px;
      min-width:60px;
      z-index:30;
    }

    .lang:focus-within .lang-menu{ display:flex; }

    .lang-option{
      border:0;
      background:transparent;
      display:flex;
      align-items:center;
      gap:10px;
      padding:8px 10px;
      border-radius:10px;
      cursor:pointer;
      font-weight:600;
      color:#111827;
      font-family:inherit;
    }

    .lang-option:hover{ background:rgba(243,244,246,.7); }
    .lang-option.is-active{ background:#eef2ff; color:#1f2937; }

    .flag{
      width:18px; height:18px;
      border-radius:50%;
      display:inline-grid;
      place-items:center;
      font-size:12px;
    }

    .link-btn{
      border:0;
      background:transparent;
      padding:10px;
      font-weight:600;
      font-size:13px;
      color:#111827;
      cursor:pointer;
      border-radius:10px;
      white-space:nowrap;
      text-decoration:none;
      transition:background .2s ease;
    }

    .link-btn:hover{ background:rgba(243,244,246,.7); }

    .cta{
      background:#1b764d;
      color:#fff;
      border:0;
      padding:14px 26px;
      border-radius:999px;
      font-weight:800;
      font-size:14px;
      cursor:pointer;
      font-family:inherit;
      white-space:nowrap;
      transition:background .2s ease;
    }

    .cta:hover{ opacity:.88; }

    .menu-toggle{
      position: relative;
      display:none;
      align-items:center;
      justify-content:center;
      border:1px solid rgba(229,231,235,.65);
      background:#fff;
      border-radius: 14px;
      padding: 12px;
      cursor:pointer;
      min-width: 52px;
      min-height: 52px;
      transition: box-shadow .25s ease, transform .25s ease;
    }

    .menu-toggle:hover{box-shadow: 0 10px 24px rgba(0,0,0,.08);}

    .menu-toggle span{
      position: absolute;
      left: 12px;
      display:block;
      width:26px;
      height:3px;
      background:#0b1220;
      border-radius:999px;
      transition: transform .35s ease, top .35s ease, opacity .25s ease, width .35s ease;
    }

    .menu-toggle span:nth-child(1){top: 18px;}
    .menu-toggle span:nth-child(2){top: 25px;}
    .menu-toggle span:nth-child(3){top: 32px;}

    .menu-toggle.is-active span:nth-child(1){top: 25px; transform: rotate(45deg);}
    .menu-toggle.is-active span:nth-child(2){opacity:0; transform: translateX(-6px); width: 10px;}
    .menu-toggle.is-active span:nth-child(3){top: 25px; transform: rotate(-45deg);}

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

    :root {
      --accent: #1b764d;
      --accent-light: #eaf3ef;
      --text: #111827;
      --muted: #6b7280;
      --border: rgba(229,231,235,.65);
      --shadow: 0 4px 24px rgba(0,0,0,.08);
      --max: 1180px;
      --radius: 16px;
    }

    html body {
      background: #f3f4f6 !important;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
      background: #fbackground: #ffffff;
      color: var(--text);
      min-height: 100vh;
    }

    .container {
      width: min(var(--max), calc(100% - 48px));
      margin: 0 auto;
    }

    
    

    /* Brand */
    
    
    
    
    @keyframes lottieIn {
      0%{opacity:0;transform:translateX(-60px);}
      70%{opacity:.8;transform:translateX(12px);}
      85%{opacity:1;transform:translateX(-5px);}
      100%{opacity:1;transform:translateX(0);}
    }
    

    /* Nav */
    
    
    

    
    
    

    /* Chevron — two lines */
    
    .nav-dropdown.is-open 

    
    .nav-dropdown.is-open 
    
    
    .nav-dropdown-menu a.active-page { background: #ffffff; color: #111827; font-weight: 600; }
    

    /* Actions */
    

    /* Lang — identical to site */
    
    
    
    
    
    .lang:focus-within 
    
    
    
    

    
    

    
    

    /* PAGE HERO — layout stable, never shifts */
    .page-hero {
      padding: 56px 0 40px;
      text-align: center;
    }
    .page-hero .badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--accent-light); color: var(--accent);
      font-size: 12px; font-weight: 600; letter-spacing: .05em;
      text-transform: uppercase; padding: 5px 12px; border-radius: 999px;
      margin-bottom: 16px;
    }
    .page-hero h1 {
      font-size: clamp(28px, 5vw, 42px);
      font-weight: 600 !important; letter-spacing: -0.03em;
      line-height: 1.15; margin-bottom: 14px;
    }
    .page-hero p {
      font-size: 16px; color: var(--muted);
      margin: 0 auto;
    }
    .tva-rate-badge {
      display: inline-block; margin-top: 20px;
      font-size: clamp(18px, 3vw, 28px);
      font-weight: 700; letter-spacing: -0.02em;
      color: var(--accent);
      background: #eaf3ef; border-radius: 16px;
      padding: 10px 28px;
    }
    .hero-cta {
      display: inline-block; margin-top: 20px;
      background: var(--accent); color: #fff;
      font-weight: 600; font-size: 15px;
      padding: 12px 28px; border-radius: 999px;
      text-decoration: none; transition: opacity 150ms;
    }
    .hero-cta:hover { opacity: .88; }

    /* CALCULATOR */
    .calc-wrap {
      max-width: 540px; margin: 0 auto 48px;
      display: flex; flex-direction: column; gap: 0;
      background: #fff; border-radius: 20px;
      border: 1px solid var(--border);
      box-shadow: 0 4px 32px rgba(0,0,0,.07);
      overflow: hidden;
    }

    /* Input section */
    .calc-input-section {
      padding: 24px 28px 20px;
      border-bottom: 1px solid var(--border);
    }
    .calc-input-label {
      font-size: 11px; font-weight: 700; letter-spacing: .1em;
      text-transform: uppercase; color: var(--muted); margin-bottom: 12px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .calc-clear-btn {
      background: #f3f4f6; border: none; cursor: pointer;
      font-family: inherit; font-size: 12px; font-weight: 600;
      color: var(--muted); padding: 4px 10px; border-radius: 999px;
      display: flex; align-items: center; gap: 4px;
      transition: background 150ms, color 150ms;
    }
    .calc-clear-btn:hover { background: #e5e7eb; color: var(--text); }
    .amount-field {
      display: flex; align-items: center; gap: 12px;
      background: #f9fafb; border: 2px solid #ffbb00;
      border-radius: 12px; padding: 16px 20px;
      transition: border-color 150ms;
    }
    .amount-field:focus-within { border-color: #e6a800; }
    .currency-prefix {
      font-size: 28px; font-weight: 700; color: #d1d5db; flex-shrink: 0;
    }
    .amount-field input {
      border: none; outline: none; background: none;
      font-family: inherit; font-size: 36px; font-weight: 600 !important;
      color: var(--text); flex: 1; text-align: right; min-width: 0;
      letter-spacing: -0.02em;
    }
    .amount-field input::-webkit-outer-spin-button,
    .amount-field input::-webkit-inner-spin-button { -webkit-appearance: none; }
    .amount-field input[type=number] { -moz-appearance: textfield; }
    .calc-meta {
      margin-top: 10px; display: flex; justify-content: center;
    }
    .calc-meta-pill {
      display: inline-flex; align-items: center; gap: 6px;
      background: #f3f4f6; border-radius: 999px;
      padding: 4px 12px; font-size: 12px; font-weight: 600; color: var(--muted);
    }
    .calc-meta-pill .rate-badge { color: var(--accent); font-weight: 700; }

    /* Result cards */
    .result-card {
      padding: 24px 28px;
      border-bottom: 1px solid var(--border);
    }
    .result-card:last-child { border-bottom: none; }
    .result-card-title {
      display: block; text-align: center;
      font-size: 16px; font-weight: 700; letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--accent);
      background: #ffbb006b;
      padding: 7px 20px; border-radius: 999px;
      margin: 0 auto 12px auto;
      width: fit-content;
    }
    .result-card-
    .result-card-desc {
      font-size: 12px; color: var(--muted); font-weight: 500;
    }
    .result-label {
      display: inline-flex; align-items: center; gap: 7px;
      font-size: 11px; font-weight: 700; letter-spacing: .08em;
      text-transform: uppercase;
      background: #f0fdf8; color: var(--accent);
      padding: 5px 12px; border-radius: 999px;
    }
    .result-label .dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--accent); flex-shrink: 0;
    }
    .result-card-header { display: flex; justify-content: flex-end; margin-bottom: 8px; }
    .result-copy-btn {
      display: inline-flex; align-items: center; gap: 6px;
      background: none; border: 1px solid var(--border);
      border-radius: 8px; padding: 6px 12px; cursor: pointer;
      font-family: inherit; font-size: 12px; font-weight: 600;
      color: var(--muted); transition: all 150ms;
    }
    .result-copy-btn:hover { background: #f3f4f6; color: var(--text); border-color: #d1d5db; }
    .result-copy-btn.copied { color: var(--accent); border-color: var(--accent); background: #f0fdf8; }
    .result-big-number {
      font-size: 52px; font-weight: 600 !important; letter-spacing: -0.03em;
      color: var(--text); text-align: center; line-height: 1;
      margin-bottom: 12px;
    }
    .result-breakdown {
      display: flex; align-items: center; justify-content: center; gap: 8px;
    }
    .breakdown-badge {
      background: #f3f4f6; border-radius: 6px;
      padding: 3px 8px; font-size: 12px; font-weight: 700; color: var(--muted);
    }
    .breakdown-value { font-size: 14px; font-weight: 600; color: var(--muted); }

    @media (max-width: 640px) {
      
      .result-big-number { font-size: 38px; }
    }

    /* Footer */
    .site-footer{
  padding-top: 70px;
  color: #374151;
  background: #F3F3F3;
}

.footer-grid{
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 2fr;
  gap: 60px;
  align-items: center;
}

.footer-brand{
  max-width: 300px;
}

.footer-logo{
  height: 44px;
  margin-bottom: 8px;
}

.footer-tagline{
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

.footer-links{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  justify-self: end;
}

.footer-column h4{
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer-column a{
  display: block;
  font-size: 14px;
  color: #6b7280;
  text-decoration: none;
  margin-bottom: 8px;
}

.footer-column a:hover{
  color: #111827;
}

.footer-bottom{
  margin-top: 60px;
  border-top: 1px solid #e5e7eb;
  padding: 20px 0;
  font-size: 13px;
  color: #6b7280;
}

.footer-bottom-inner{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* Responsive */
@media (max-width: 900px){
  .footer-grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links{
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

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

  .footer-bottom-inner{
    text-align: center;
    flex-direction: column;
  }
}

.stars{
  display: flex;
  justify-content: center;
  gap: 6px;
}
.hero-cta-mockup{
  position: relative;
  padding-bottom: 160px; /* espacio para que sobresalga */
}

/* ===============================
   HERO – AJUSTE VISUAL FINAL (FIX)
================================ */

.hero--tall{
  min-height: 580px;
  padding-top: 80px;
  padding-bottom: 320px;
  background-color: var(--hero);
  background-image: linear-gradient(120deg, #ffbb00 0%, #ffd24d 48%, #ffbb00 100%);
  background-size: 200% 200%;
  animation: hero-gradient 12s ease-in-out infinite;
  overflow: visible;
}

/* TEXTO + CTA SIEMPRE ARRIBA */
.hero-content{
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 3;              /* 👈 clave */
}

.hero-content h1{
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(12px);
  animation: hero-fade-up .6s ease-out forwards;
  animation-delay: .05s;
}

.hero-content p{
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(12px);
  animation: hero-fade-up .6s ease-out forwards;
  animation-delay: .15s;
}

.hero-content .cta{
  opacity: 0;
  transform: translateY(12px);
  animation: hero-fade-up .6s ease-out forwards;
  animation-delay: .25s;
}

/* MOCKUP SIEMPRE DEBAJO DEL TEXTO */
.hero-mockup-wrapper{
  position: absolute;
  left: 50%;
  bottom: -70px;           /* sobresale SOLO por abajo */
  transform: translateX(-50%);
  width: min(600px, 96%);
  z-index: 1;              /* 👈 debajo del contenido */
  pointer-events: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.hero .mockup{
  width: 100%;
  max-width: 874px;
  height: auto;
  border-radius: 14px;
}

.hero-cta-floating{
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 30px);
  display: flex;
  justify-content: center;
}

.hero-cta-floating .cta{
  min-width: 240px;
}

.hero .cta{
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.hero .cta:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0,0,0,.18);
}

.pill-demo{
  background: #ffffff;
  border-color: #e5e7eb;
  display: none;
}

.demo-modal{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(12, 18, 32, .64);
  padding: 20px;
  z-index: 70;
}

.demo-modal.is-open{display: flex;}

.demo-modal__dialog{
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,.24);
  width: min(920px, 100%);
  position: relative;
  padding: 18px;
}

.demo-modal__close{
  position: absolute;
  top: 12px;
  right: 12px;
  border: 0;
  background: #0b1220;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
}

.demo-modal__.demo-modal__body{ padding-top: 56.25%; position: relative; overflow: hidden; border-radius: 12px; background: #0b1220; }

.demo-modal__body iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* sombra suave */
.hero .mockup-shadow{
  position: absolute;
  bottom: -18px;
  width: 70%;
  height: 12px;
  background: rgba(0,0,0,.22);
  filter: blur(22px);
  border-radius: 999px;
  z-index: 0;
  animation: hero-shadow 6s ease-in-out infinite;
}

@keyframes hero-fade-up{
  from{
    opacity: 0;
    transform: translateY(12px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-float{
  0%,
  100%{
    transform: translate(-50%, 0);
  }
  50%{
    transform: translate(-50%, -6px);
  }
}

@keyframes hero-shadow{
  0%,
  100%{
    opacity: .22;
    transform: scaleX(1);
  }
  50%{
    opacity: .16;
    transform: scaleX(.96);
  }
}

@keyframes hero-gradient{
  0%{
    background-position: 0% 50%;
  }
  50%{
    background-position: 100% 50%;
  }
  100%{
    background-position: 0% 50%;
  }
}

@media (prefers-reduced-motion: reduce){
  .hero--tall,
  .hero-mockup-wrapper,
  .hero .mockup-shadow{
    animation: none;
  }

  .hero-content h1,
  .hero-content p,
  .hero-content .cta{
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 980px){
  .hero--tall{
    padding-bottom: 240px;
  }

  .hero-mockup-wrapper{
    width: min(520px, 94%);
  }

  .hero .mockup{
    width: 108%;
    max-width: 820px;
  }

  .mra{
    right: 24px;
    bottom: 64px;
    transform: scale(.9);
  }
}

@media (max-width: 640px){
  .hero--tall{
    min-height: auto;
    padding-bottom: 40px;
  }

  .hero-content{
    text-align: center;
  }

  .hero-mockup-wrapper{
    position: relative;
    bottom: auto;
    margin-top: 48px;
    transform: none;
    left: auto;
    pointer-events: auto;
    width: 100%;
    animation: none;
  }

  .hero .mockup{
    max-width: 100%;
    width: 100%;
  }

  .hero-cta-floating{
    position: relative;
    transform: none;
    top: auto;
    left: auto;
    margin-top: 30px;
  }

  .mockup-shadow{
    display: none;
  }

  .mra{
    display: none;
  }
}

    .usecases-section{
  padding: 90px 0;
}

    .usecase-card{
  background:#f3f3f3;
  border-radius:28px;
  padding:40px;
  margin-bottom:40px;

}

.usecase-card:hover{
}

.usecase-card:active{
}

.usecase-title{
  text-align:center;
  font-size:22px;
  font-weight:800;
  margin-bottom:30px;
  color:#374151;
}

.usecase-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.usecase-col h4{
  font-size:16px;
  font-weight:800;
  margin-bottom:14px;
}

.usecase-logo{
  display:inline-block;
  width:96px;
  height:auto;
  vertical-align:middle;
}

.usecase-list{
  list-style:none;
  padding:0;
  margin:0;
}

.usecase-list li{
  position:relative;
  padding-left:28px;
  margin-bottom:12px;
  font-size:15px;
  color:#6c7180;
}

.usecase-list.negative li::before{
  content:"✖";
  position:absolute;
  left:0;
  color:#dc2626;
  font-weight:700;
}

.usecase-list.positive li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:#16a34a;
  font-weight:700;
}

.usecase-result{
  margin-top:26px;
  text-align:center;
  font-weight:700;
  color:#166534;
}

.usecase-footer{
  margin-top:40px;
  text-align:center;
  font-size:16px;
  color:#6c7180;
}

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

.usecase-with-logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;            /* espacio entre "Avec" y el logo */
}

.usecase-with-logo .usecase-logo {
    height: 2em;
    width: auto;
    display: block;
    margin-top: -18px;
}
  

  .faq-section {
    max-width: 720px; margin: 0 auto 80px; padding-top: 20px;
  }
  .faq-header {
    text-align: center; margin-bottom: 40px;
  }
  .faq-header h2 {
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 600 !important; letter-spacing: -0.02em; margin: 12px 0 10px;
  }
  .faq-header p {
    font-size: 15px; color: var(--muted); margin: 0 auto;
  }

  .faq-list { display: flex; flex-direction: column; gap: 8px; }

  .faq-item {
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
    padding: 0 16px;
  }
  .faq-item:first-child { }

  .faq-trigger {
    width: 100%; display: flex; align-items: center;
    justify-content: space-between; gap: 16px;
    padding: 18px 4px; background: none; border: none;
    cursor: pointer; text-align: left; font-family: inherit;
    font-size: 15px; font-weight: 600; color: var(--text);
    transition: color 150ms;
  }
  .faq-trigger:hover { color: var(--accent); }
  .faq-trigger[aria-expanded="true"] { color: var(--accent); }

  .faq-chevron {
    flex-shrink: 0; transition: transform 220ms ease;
    color: var(--muted);
  }
  .faq-trigger[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg); color: var(--accent);
  }

  .faq-answer {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 400ms ease, opacity 300ms ease, padding 200ms ease;
  }
  .faq-answer.is-open {
    max-height: 1200px;
    padding-bottom: 24px;
    opacity: 1;
  }
  .faq-answer p {
    font-size: 15px; line-height: 1.7; color: #374151;
  }
  .faq-answer code {
    background: #f3f4f6; padding: 2px 6px; border-radius: 4px;
    font-size: 13px; font-family: monospace; color: var(--accent);
  }
  .faq-answer ul {
    padding-left: 18px; margin-top: 8px;
    display: flex; flex-direction: column; gap: 6px;
  }
  .faq-answer ul li { font-size: 15px; line-height: 1.6; color: #374151; }


  .faq-section {
    max-width: 720px; margin: 0 auto 80px; padding-top: 20px;
  }
  .faq-header {
    text-align: center; margin-bottom: 40px;
  }
  .faq-header h2 {
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 600 !important; letter-spacing: -0.02em; margin: 12px 0 10px;
  }
  .faq-header p {
    font-size: 15px; color: var(--muted); margin: 0 auto;
  }

  .faq-list { display: flex; flex-direction: column; gap: 12px; }

  .faq-item {
    border-bottom: 1px solid var(--border);
  }
  .faq-item:first-child { border-top: 1px solid var(--border); }

  .faq-trigger {
    width: 100%; display: flex; align-items: center;
    justify-content: space-between; gap: 16px;
    padding: 20px 4px; background: none; border: none;
    cursor: pointer; text-align: left; font-family: inherit;
    font-size: 15px; font-weight: 600; color: var(--text);
    transition: color 150ms;
  }
  .faq-trigger:hover { color: var(--accent); }
  .faq-trigger[aria-expanded="true"] { color: var(--accent); }

  .faq-chevron {
    flex-shrink: 0; transition: transform 220ms ease;
    color: var(--muted);
  }
  .faq-trigger[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg); color: var(--accent);
  }

  .faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 300ms ease, padding 200ms ease;
  }
  .faq-answer.is-open {
    max-height: 2000px;
    padding-bottom: 20px;
  }
  .faq-answer p {
    font-size: 15px; line-height: 1.7; color: #374151;
  }
  .faq-answer code {
    background: #f3f4f6; padding: 2px 6px; border-radius: 4px;
    font-size: 13px; font-family: monospace; color: var(--accent);
  }
  .faq-answer ul {
    padding-left: 18px; margin-top: 8px;
    display: flex; flex-direction: column; gap: 6px;
  }
  .faq-answer ul li { font-size: 15px; line-height: 1.6; color: #374151; }
