html { scroll-behavior: smooth; scroll-padding-top: 96px; }
  body { font-family: Inter, system-ui, sans-serif; background: #FAFBF8; color: #1F2937; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
  ::selection { background: #0F6B50; color: #FAFBF8; }
  .container-px { padding-left: 1.25rem; padding-right: 1.25rem; }
  @media (min-width: 640px) { .container-px { padding-left: 2rem; padding-right: 2rem; } }
  @media (min-width: 1024px) { .container-px { padding-left: 3rem; padding-right: 3rem; } }
  .glass-nav { background: rgba(250, 251, 248, 0.78); backdrop-filter: saturate(180%) blur(18px); -webkit-backdrop-filter: saturate(180%) blur(18px); }
  .text-balance { text-wrap: balance; }
  .arabesque { background-image: radial-gradient(circle at 1px 1px, rgba(15,107,80,0.08) 1px, transparent 0); background-size: 28px 28px; }
  .gold-shine { background: linear-gradient(90deg, #C8A96B 0%, #f3e3b8 50%, #C8A96B 100%); background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: shine 6s linear infinite; }
  @keyframes shine { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
  /* Toast */
  #toast-root { position: fixed; top: 24px; left: 50%; transform: translateX(-50%); z-index: 100; display: flex; flex-direction: column; gap: 8px; }
  .toast { background: #0F6B50; color: #FAFBF8; border: 1px solid rgba(200,169,107,0.5); padding: 12px 18px; border-radius: 12px; box-shadow: 0 12px 32px rgba(0,0,0,0.18); font-size: 14px; min-width: 280px; opacity: 0; transform: translateY(-12px); transition: all .25s ease; }
  .toast.show { opacity: 1; transform: translateY(0); }
  .toast.error { background: #b91c1c; }
  .tour-lightbox-open { display: flex !important; }
  .prose-content a { color: #0F6B50; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
  .prose-content strong { color: #1F2937; }
  /* FAQ accordion */
  .faq-content { display: none; }
  .faq-item.open .faq-content { display: block; }
  .faq-item.open .icon-plus { display: none; }
  .faq-item:not(.open) .icon-minus { display: none; }
  .faq-item.open .toggle-circle { background: #0F6B50; color: #FAFBF8; }
  /* Scrollbar */
  ::-webkit-scrollbar { width: 10px; }
  ::-webkit-scrollbar-track { background: #FAFBF8; }
  ::-webkit-scrollbar-thumb { background: #0F6B50; border-radius: 999px; border: 2px solid #FAFBF8; }
  /* Float WA pulse */
  .wa-pulse { position: absolute; inset: 0; border-radius: 9999px; background: rgba(37, 211, 102, 0.4); animation: ping 1.5s cubic-bezier(0,0,.2,1) infinite; }
  @keyframes ping { 75%, 100% { transform: scale(1.6); opacity: 0; } }

  /* ===== Carousel ===== */
  .carousel { position: relative; width: 100%; overflow: hidden; }
  .carousel-track { position: relative; width: 100%; height: 100%; }
  .carousel-slide {
    position: absolute; inset: 0;
    opacity: 0; transform: scale(1.04);
    transition: opacity 1s ease, transform 6s ease;
    pointer-events: none;
  }
  .carousel-slide.active { opacity: 1; transform: scale(1); pointer-events: auto; z-index: 2; }
  .carousel-slide img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  .carousel-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(120deg, rgba(15,107,80,0.78) 0%, rgba(15,107,80,0.45) 45%, rgba(31,95,139,0.35) 100%);
  }
  .carousel-caption {
    position: absolute; inset: 0; z-index: 3;
    display: flex; align-items: center;
    padding: 0 4.5rem;
  }
  @media (min-width: 640px) { .carousel-caption { padding: 0 5rem; } }
  @media (min-width: 1024px) { .carousel-caption { padding: 0 7rem; } }
  .carousel-caption-inner {
    max-width: 720px; color: #FAFBF8;
    opacity: 0; transform: translateY(28px);
    transition: opacity .9s ease .2s, transform .9s ease .2s;
  }
  .carousel-slide.active .carousel-caption-inner { opacity: 1; transform: translateY(0); }
  .carousel-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 5; width: 48px; height: 48px;
    display: grid; place-items: center;
    background: rgba(250,251,248,0.92); color: #0F6B50;
    border-radius: 9999px; cursor: pointer;
    border: none; box-shadow: 0 8px 24px rgba(15,107,80,0.18);
    transition: all .25s ease;
  }
  .carousel-arrow:hover { background: #0F6B50; color: #FAFBF8; transform: translateY(-50%) scale(1.06); }
  .carousel-arrow.prev { left: 1rem; }
  .carousel-arrow.next { right: 1rem; }
  @media (min-width: 1024px) {
    .carousel-arrow { width: 56px; height: 56px; }
    .carousel-arrow.prev { left: 1.5rem; }
    .carousel-arrow.next { right: 1.5rem; }
  }
  .carousel-dots {
    position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
    z-index: 5; display: flex; gap: 8px;
  }
  .carousel-dot {
    width: 32px; height: 4px; border-radius: 999px;
    background: rgba(250,251,248,0.45); cursor: pointer; border: none;
    transition: all .3s ease;
  }
  .carousel-dot.active { background: #C8A96B; width: 48px; }
  .carousel-progress {
    position: absolute; bottom: 0; left: 0; height: 3px;
    background: linear-gradient(90deg, #C8A96B, #84C341);
    width: 0%; z-index: 5;
    transition: width .15s linear;
  }
