/* ========== HERO PRESTATION ========== */
    .hero-presta {
      position: relative;
      min-height: 540px;
      display: flex;
      align-items: stretch;
      overflow: hidden;
    }
    .hero-presta-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.2) 65%, transparent 100%),
        url('https://drive.google.com/thumbnail?id=1dQSw5ekAnK0yRAQdBhfH6TXeyHIY3y4O&sz=w2000') center/cover no-repeat;
    }
    .hero-presta-figure {
      position: absolute;
      right: 5%;
      bottom: 0;
      top: 0;
      width: 48%;
      overflow: hidden;
      display: none;
    }
    .hero-presta-figure .fig-body {
      position: absolute;
      right: 10%;
      bottom: 0;
      width: 280px;
      height: 92%;
      background: linear-gradient(180deg, rgba(90,70,50,0.3) 0%, rgba(60,45,30,0.5) 60%, rgba(40,25,15,0.6) 100%);
      border-radius: 30% 30% 0 0 / 15% 15% 0 0;
    }
    .hero-presta-figure .fig-arm {
      position: absolute;
      right: 35%;
      top: 15%;
      width: 120px;
      height: 200px;
      background: rgba(70,50,35,0.25);
      border-radius: 50% 50% 30% 30%;
      transform: rotate(-15deg);
    }
    .hero-presta-figure .fig-glass {
      position: absolute;
      left: 5%;
      top: 20%;
      width: 55%;
      height: 50%;
      background: linear-gradient(135deg, rgba(173,216,230,0.08) 0%, rgba(200,220,240,0.04) 100%);
      border: 1px solid rgba(255,255,255,0.06);
      border-radius: 8px;
      transform: perspective(400px) rotateY(10deg);
    }
    .hero-presta-content {
      position: relative;
      z-index: 2;
      padding: 80px 56px 64px;
      max-width: 600px;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .hero-presta-breadcrumb {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      opacity: 0.65;
      margin-bottom: 20px;
    }
    .hero-presta h1 {
      font-size: 54px;
      font-weight: 900;
      text-transform: uppercase;
      line-height: 1.04;
      margin-bottom: 24px;
      letter-spacing: -1px;
    }
    .hero-presta h1 span { color: var(--orange); }
    .hero-presta .hero-desc {
      font-size: 15px;
      line-height: 1.7;
      opacity: 0.8;
      margin-bottom: 36px;
      max-width: 470px;
    }

    /* ========== SCROLL BANNER ========== */
    .scroll-banner {
      background: var(--orange);
      color: #fff;
      padding: 13px 0;
      overflow: hidden;
      white-space: nowrap;
    }
    .scroll-banner-track {
      display: inline-flex;
      animation: scrollBanner 25s linear infinite;
    }
    .scroll-banner-item {
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      padding: 0 20px;
      display: inline-flex;
      align-items: center;
      gap: 16px;
    }
    .scroll-banner-item::after {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: #fff;
      flex-shrink: 0;
    }
    @keyframes scrollBanner {
      0% { transform: translateX(0); }
      100% { transform: translateX(-16.666%); }
    }

    /* ========== FAQ SECTION ========== */
    .faq-section {
      padding: 80px 56px;
      background: #fff;
    }
    .faq-intro {
      margin-bottom: 64px;
    }
    .faq-category {
      margin-bottom: 56px;
    }
    .faq-category-title {
      font-size: 16px;
      font-weight: 900;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 20px;
      letter-spacing: 0.5px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .faq-category-title::before {
      content: '';
      width: 8px;
      height: 8px;
      background: var(--orange);
      border-radius: 50%;
    }
    .faq-category-divider {
      height: 1px;
      background: #ddd;
      margin-bottom: 28px;
    }
    .faq-accordion {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .faq-item {
      background: #fff;
      border: 2px solid #e8e8e8;
      border-radius: 12px;
      overflow: hidden;
      transition: border-color .3s ease, background .3s ease;
    }
    .faq-item.open {
      border-color: var(--orange);
      background: #fff;
    }
    .faq-item-header {
      padding: 24px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      background: #fff;
      transition: background .2s ease;
      user-select: none;
    }
    .faq-item:hover .faq-item-header {
      background: var(--gray);
    }
    .faq-item.open .faq-item-header {
      background: #fff;
    }
    .faq-item-question {
      font-size: 14px;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--dark);
      transition: color .3s ease;
      line-height: 1.4;
      flex: 1;
      letter-spacing: 0.3px;
    }
    .faq-item.open .faq-item-question {
      color: var(--orange);
    }
    .faq-item-toggle {
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform .3s ease;
    }
    .faq-item.open .faq-item-toggle {
      transform: rotate(180deg);
    }
    .faq-item-toggle svg {
      width: 100%;
      height: 100%;
    }
    .faq-item-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s cubic-bezier(.4,0,.2,1);
    }
    .faq-item.open .faq-item-body {
      max-height: 600px;
    }
    .faq-item-body-inner {
      padding: 0 24px 24px;
      font-size: 14px;
      line-height: 1.7;
      color: #555;
    }

    /* ========== CTA BANNER ========== */
    .cta-banner {
      background: var(--dark);
      padding: 48px 56px;
      border-radius: 20px;
      margin: 80px 56px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 32px;
    }
    .cta-banner-text h2 {
      font-size: 36px;
      font-weight: 900;
      color: #fff;
      text-transform: uppercase;
      line-height: 1.1;
      letter-spacing: -0.5px;
    }
    .cta-banner-text h2 span {
      font-style: italic;
      color: var(--orange);
    }
    .cta-banner-text p {
      font-size: 14px;
      color: rgba(255,255,255,0.75);
      margin-bottom: 0;
    }
    .cta-banner .btn-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: var(--orange);
      color: #fff;
      padding: 14px 28px;
      border-radius: 30px;
      border: none;
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      white-space: nowrap;
      transition: background .2s;
      cursor: pointer;
    }
    .cta-banner .btn-cta:hover { background: #d9551a; }

    /* ========== FOOTER ========== */
    .footer {
      background: var(--dark);
      color: #fff;
      padding: 56px 56px 28px;
    }
    .footer-main {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-logo-text {
      font-size: 30px;
      font-weight: 900;
      font-style: italic;
      margin-bottom: 14px;
      letter-spacing: -0.5px;
    }
    .footer-brand p {
      font-size: 13px;
      line-height: 1.6;
      opacity: 0.6;
      margin-bottom: 22px;
      max-width: 280px;
    }
    .btn-rdv-footer {
      display: inline-block;
      background: var(--orange);
      color: #fff;
      padding: 14px 26px;
      border-radius: 30px;
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .btn-rdv-footer:hover { background: #d9551a; }
    .footer-col h4 {
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 20px;
    }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul li a {
      font-size: 13px;
      opacity: 0.55;
      transition: opacity .2s;
    }
    .footer-col ul li a:hover { opacity: 1; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .footer-bottom .copyright { font-size: 12px; opacity: 0.4; }
    .footer-bottom-links { display: flex; gap: 28px; }
    .footer-bottom-links a { font-size: 12px; opacity: 0.45; transition: opacity .2s; }
    .footer-bottom-links a:hover { opacity: 1; }

    /* ========== ANIMATIONS ========== */
    .anim-fade-up {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity .7s cubic-bezier(.25,.46,.45,.94), transform .7s cubic-bezier(.25,.46,.45,.94);
    }
    .anim-fade-up.visible { opacity: 1; transform: translateY(0); }
    .anim-fade-up.delay-1 { transition-delay: .1s; }
    .anim-fade-up.delay-2 { transition-delay: .2s; }
    .anim-fade-up.delay-3 { transition-delay: .3s; }
    .anim-fade-up.delay-4 { transition-delay: .4s; }

    /* Hero entrance */
    .hero-presta-content > * {
      opacity: 0;
      transform: translateY(25px);
      animation: heroFadeIn .7s cubic-bezier(.25,.46,.45,.94) forwards;
    }
    .hero-presta-content > *:nth-child(1) { animation-delay: .1s; }
    .hero-presta-content > *:nth-child(2) { animation-delay: .25s; }
    .hero-presta-content > *:nth-child(3) { animation-delay: .4s; }
    @keyframes heroFadeIn {
      to { opacity: 1; transform: translateY(0); }
    }

    /* ========== RESPONSIVE — TABLET ========== */
    @media (max-width: 1100px) {
      .header { padding: 10px 32px; }
      .header-nav { gap: 18px; }
      .header-nav a { font-size: 13px; }
      .hero-presta h1 { font-size: 42px; }
      .hero-presta-content { padding: 60px 36px 48px; }
      .faq-section { padding: 60px 36px; }
      .cta-banner { margin: 60px 36px; padding: 40px 36px; }
      .footer { padding: 48px 36px 24px; }
      .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
    }

    /* ========== RESPONSIVE — MOBILE ========== */
    @media (max-width: 768px) {
      .header { padding: 10px 20px; }
      .header-nav, .header-actions { display: none; }
      .burger { display: flex; }
      .logo-wrap img { width: 90px; height: 54px; }

      .hero-presta { min-height: 420px; }
      .hero-presta-content { padding: 48px 24px 40px; max-width: 100%; }
      .hero-presta h1 { font-size: 32px; }
      .hero-presta .hero-desc { font-size: 13px; }
      .hero-presta-figure { display: none; }

      .scroll-banner-item { font-size: 11px; padding: 0 14px; }

      .faq-section { padding: 48px 20px; }
      .faq-item-header { padding: 18px; }
      .faq-item-question { font-size: 13px; }
      .faq-item-body-inner { padding: 0 18px 18px; font-size: 13px; }
      .faq-category-title { font-size: 14px; }
      .faq-accordion { gap: 12px; }

      .cta-banner { margin: 48px 20px; padding: 36px 24px; border-radius: 16px; }
      .cta-banner-text h2 { font-size: 26px; }
      .cta-banner-text p { font-size: 13px; }
      .cta-banner .btn-cta { padding: 12px 24px; font-size: 11px; }

      .footer { padding: 36px 20px 20px; }
      .footer-main { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
      .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
    }

    /* ========== MOBILE SMALL ========== */
    @media (max-width: 420px) {
      .header { padding: 8px 16px; }
      .logo-wrap img { width: 75px; height: 42px; }

      .hero-presta h1 { font-size: 26px; }
      .hero-presta-content { padding: 40px 18px 32px; }

      .faq-section { padding: 36px 16px; }
      .faq-item-header { padding: 16px; }
      .faq-item-question { font-size: 12px; }
      .faq-item-body-inner { padding: 0 16px 16px; font-size: 12px; }
      .faq-category-title { font-size: 12px; margin-bottom: 16px; }
      .faq-accordion { gap: 10px; }

      .cta-banner { margin: 36px 16px; padding: 28px 20px; }
      .cta-banner-text h2 { font-size: 22px; }
      .cta-banner-text p { font-size: 12px; }

      .footer { padding: 28px 16px 16px; }
      .footer-logo-text { font-size: 24px; }
      .footer-col h4 { font-size: 11px; margin-bottom: 14px; }
      .footer-col ul li { margin-bottom: 8px; }
      .footer-col ul li a { font-size: 12px; }
    }