    /* ==============================================
       BASE
    ============================================== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: 'Inter', sans-serif;
      background-color: #f8f7f6;
      color: #171611;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }
    .font-serif { font-family: 'Playfair Display', serif; }

    /* ==============================================
       SCROLL REVEAL
    ============================================== */
    .r {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .r.in {
      opacity: 1;
      transform: translateY(0);
    }
    .r-delay-1 { transition-delay: 0.10s; }
    .r-delay-2 { transition-delay: 0.20s; }
    .r-delay-3 { transition-delay: 0.30s; }
    .r-delay-4 { transition-delay: 0.40s; }

    /* ==============================================
       NAV
    ============================================== */
    #mainNav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.90);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(23, 22, 17, 0.05);
      transition: box-shadow 0.3s ease;
    }
    #mainNav.scrolled {
      box-shadow: 0 2px 24px rgba(23, 22, 17, 0.08);
    }

    /* Mobile Nav Overlay */
    #mobileNav {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(255, 255, 255, 0.98);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
    }
    #mobileNav.open { display: flex; }

    /* ==============================================
       AVA WIDGET
    ============================================== */
    .ava-widget-wrap {
      position: relative;
      border-radius: 1.5rem;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 8px 48px rgba(10, 143, 122, 0.10), 0 2px 12px rgba(23, 22, 17, 0.06);
    }

    /* ==============================================
       WAVE ANIMATION
    ============================================== */
    .wave-bar {
      width: 4px;
      background-color: #0A8F7A;
      border-radius: 2px;
      animation: wave-bounce 1s ease-in-out infinite;
    }
    @keyframes wave-bounce {
      0%, 100% { height: 10px; }
      50%       { height: 28px; }
    }
    .wave-bar:nth-child(2) { animation-delay: 0.10s; }
    .wave-bar:nth-child(3) { animation-delay: 0.20s; }
    .wave-bar:nth-child(4) { animation-delay: 0.30s; }
    .wave-bar:nth-child(5) { animation-delay: 0.40s; }
    .wave-bar:nth-child(6) { animation-delay: 0.50s; }
    .wave-bar:nth-child(7) { animation-delay: 0.40s; }
    .wave-bar:nth-child(8) { animation-delay: 0.30s; }
    .wave-bar:nth-child(9) { animation-delay: 0.20s; }

    /* ==============================================
       SOCIAL PROOF TOASTS
    ============================================== */
    .toast-container {
      position: fixed;
      bottom: 1.5rem;
      left: 1.5rem;
      z-index: 9999;
      pointer-events: none;
    }
    .toast {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      background: #fff;
      border: 1px solid #E8E5E0;
      border-radius: 0.75rem;
      padding: 0.875rem 1.25rem;
      margin-top: 0.5rem;
      box-shadow: 0 8px 32px rgba(0,0,0,.10);
      font-size: 0.8125rem;
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.4s ease, transform 0.4s ease;
      pointer-events: auto;
      max-width: 360px;
    }
    .toast.in {
      opacity: 1;
      transform: translateY(0);
    }
    .toast-av {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: #c79b1a;
      color: #fff;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.75rem; font-weight: 700;
      flex-shrink: 0;
    }
    .toast-body { flex: 1; min-width: 0; }
    .toast-name { font-weight: 600; color: #171611; font-size: 0.8125rem; }
    .toast-msg  { color: #6b6a65; font-size: 0.75rem; }
    .toast-time { color: #9CA3AF; font-size: 0.6875rem; margin-top: 2px; }
    .toast-dot  {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: #0A8F7A;
      flex-shrink: 0;
    }

    /* ==============================================
       STICKY CTA BANNER
    ============================================== */
    #stickyCta {
      position: fixed;
      bottom: 0; left: 0; right: 0;
      z-index: 90;
      background: #171611;
      color: #fff;
      padding: 0.875rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      transform: translateY(100%);
      transition: transform 0.4s ease;
    }
    #stickyCta.visible { transform: translateY(0); }

    /* (exit popup styles are inline with the popup HTML below) */

    /* ==============================================
       CALCULATOR SLIDER
    ============================================== */
    .calc-input {
      -webkit-appearance: none;
      appearance: none;
      width: 100%;
      height: 6px;
      border-radius: 9999px;
      background: #E8E5E0;
      outline: none;
      cursor: pointer;
    }
    .calc-input::-webkit-slider-thumb {
      -webkit-appearance: none;
      width: 20px; height: 20px;
      border-radius: 50%;
      background: #c79b1a;
      cursor: pointer;
      box-shadow: 0 2px 8px rgba(199, 155, 26, 0.35);
    }
    .calc-input::-moz-range-thumb {
      width: 20px; height: 20px;
      border: none;
      border-radius: 50%;
      background: #c79b1a;
      cursor: pointer;
    }

    /* ==============================================
       FAQ ACCORDION
    ============================================== */
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.25s ease;
    }
    .faq-answer.open { max-height: 400px; }
    .faq-chevron { transition: transform 0.3s ease; }
    .faq-item.open .faq-chevron { transform: rotate(180deg); }

    /* ==============================================
       CITY MARQUEE
    ============================================== */
    @keyframes marquee {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .marquee-track {
      display: flex;
      width: max-content;
      animation: marquee 28s linear infinite;
    }

    /* ==============================================
       TIMELINE DOTS (dashed connector)
    ============================================== */
    .timeline-dot::after {
      content: '';
      position: absolute;
      top: 2rem; /* center of the circle icon */
      left: calc(50% + 2rem);
      right: calc(-50% + 2rem);
      border-top: 2px dashed #c79b1a;
      z-index: 0;
    }
    @media (max-width: 768px) {
      .timeline-dot::after { display: none; }
    }

    /* ==============================================
       COMPARISON TABLE
    ============================================== */
    .comparison-table tr td {
      border-bottom: 1px solid #f0f0f0;
    }
    .comparison-table tr:last-child td {
      border-bottom: none;
    }
    .check-icon  { color: #0A8F7A; }
    .cross-icon  { color: #9CA3AF; }
    .partial-icon { color: #6B7280; }

    /* ==============================================
       BUTTONS
    ============================================== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      font-weight: 700;
      border-radius: 0.75rem;
      transition: all 0.2s ease;
      text-decoration: none;
      cursor: pointer;
      border: none;
    }
    .btn-gold {
      background: #c79b1a;
      color: #fff;
      box-shadow: 0 4px 16px rgba(199,155,26,.25);
    }
    .btn-gold:hover {
      background: #d4aa2a;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(199,155,26,.35);
    }
    .btn-lg {
      padding: 0.875rem 2rem;
      font-size: 0.9375rem;
    }
    .btn-ghost {
      background: transparent;
      border: 1px solid rgba(255,255,255,.2);
      color: rgba(255,255,255,.7);
      padding: 0.5rem 1rem;
      font-size: 0.8125rem;
      border-radius: 0.5rem;
    }
    .btn-ghost:hover {
      border-color: rgba(255,255,255,.4);
      color: #fff;
    }

    /* ==============================================
       FOOTER
    ============================================== */
    .footer {
      background: #171611;
      color: rgba(255,255,255,.7);
      padding: 4rem 0 2rem;
    }
    .footer .container {
      max-width: 80rem;
      margin: 0 auto;
      padding: 0 1.5rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr repeat(3, 1fr);
      gap: 3rem;
    }
    @media (max-width: 768px) {
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    }
    @media (max-width: 480px) {
      .footer-grid { grid-template-columns: 1fr; }
    }
    .footer-desc {
      font-size: 0.875rem;
      line-height: 1.6;
      color: rgba(255,255,255,.5);
      margin: 1rem 0;
    }
    .footer-socials {
      display: flex;
      gap: 0.5rem;
      margin-top: 1rem;
    }
    .footer-col-title {
      font-weight: 700;
      color: #fff;
      font-size: 0.875rem;
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .footer-col ul {
      list-style: none;
      padding: 0;
    }
    .footer-col ul li { margin-bottom: 0.5rem; }
    .footer-col ul li a {
      color: rgba(255,255,255,.5);
      text-decoration: none;
      font-size: 0.8125rem;
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: #c79b1a; }
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 3rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255,255,255,.08);
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-copy {
      font-size: 0.75rem;
      color: rgba(255,255,255,.35);
    }
    .footer-chips {
      display: flex;
      gap: 0.5rem;
    }
    .footer-chip {
      font-size: 0.6875rem;
      font-weight: 600;
      padding: 0.25rem 0.625rem;
      border-radius: 9999px;
      background: rgba(255,255,255,.06);
      color: rgba(255,255,255,.5);
    }
    .nav-logo {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
      color: #fff;
      font-size: 1.25rem;
      font-weight: 700;
      font-family: 'Playfair Display', serif;
    }
    .logo-mark {
      width: 2rem; height: 2rem;
      background: #c79b1a;
      border-radius: 0.5rem;
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      font-weight: 700;
      font-size: 0.875rem;
    }

    /* ==============================================
       LAYOUT
    ============================================== */
    .section     { padding: 5rem 0; }
    .section-sm  { padding: 3rem 0; }
    .container   { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }
    .container-xl { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      line-height: 1.15;
      color: #171611;
      margin-bottom: 1rem;
    }
    .section-sub {
      font-size: 1.125rem;
      color: #6b6a65;
      line-height: 1.7;
      max-width: 40rem;
    }
    .tag {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #c79b1a;
      margin-bottom: 1rem;
    }

    /* ==============================================
       AVA SECTION
    ============================================== */
    .ava-section { background: #F5F3EF; }
    .ava-features { display: flex; flex-direction: column; gap: 1.75rem; margin-top: 2rem; }
    .ava-feat {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }
    .ava-feat-icon {
      flex-shrink: 0;
      width: 3rem; height: 3rem;
      background: #fff;
      border-radius: 0.75rem;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 2px 8px rgba(0,0,0,.06);
      color: #0A8F7A;
    }
    .ava-feat-title {
      font-weight: 700;
      font-size: 1rem;
      color: #171611;
      margin-bottom: 0.25rem;
    }
    .ava-feat-text {
      font-size: 0.875rem;
      color: #6b6a65;
      line-height: 1.6;
    }
    .ava-visual {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .ava-orb-wrap, .ava-orb-css { display: none; }
    .ava-waves { display: none; }
    .ava-widget {
      width: 100%;
      max-width: 24rem;
      background: #fff;
      border-radius: 1.5rem;
      padding: 2rem;
      box-shadow: 0 8px 48px rgba(10,143,122,.10), 0 2px 12px rgba(23,22,17,.06);
      border: 1px solid rgba(10,143,122,.12);
      text-align: center;
    }
    .ava-widget-tag {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      margin-bottom: 1.25rem;
      font-size: 0.875rem;
      font-weight: 500;
      color: #0A8F7A;
    }
    .ava-status-dot, #ava-status-dot {
      width: 0.625rem; height: 0.625rem;
      border-radius: 50%;
      background: #0A8F7A;
      display: inline-block;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }
    .ava-voice-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      margin-bottom: 1.5rem;
      flex-wrap: wrap;
    }
    .ava-voice-lbl {
      font-size: 0.8125rem;
      color: #6b6a65;
      font-weight: 500;
    }
    .ava-voice-chips {
      display: flex;
      gap: 0.375rem;
    }
    .ava-voice-chip {
      padding: 0.375rem 0.875rem;
      border-radius: 9999px;
      border: 1px solid #E8E5E0;
      background: #fff;
      font-size: 0.8125rem;
      font-weight: 600;
      color: #6b6a65;
      cursor: pointer;
      transition: all 0.2s;
    }
    .ava-voice-chip:hover { border-color: #c79b1a; color: #c79b1a; }
    .ava-voice-chip.is-active {
      border-color: #0A8F7A;
      background: rgba(10,143,122,.08);
      color: #0A8F7A;
    }
    .ava-call-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      width: 100%;
      padding: 1rem;
      border-radius: 1rem;
      border: none;
      background: linear-gradient(135deg, #0A8F7A 0%, rgba(10,143,122,.8) 100%);
      color: #fff;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.2s;
      box-shadow: 0 4px 16px rgba(10,143,122,.25);
      margin-bottom: 0.75rem;
    }
    .ava-call-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(10,143,122,.35);
    }
    .ava-call-btn.is-active {
      background: #DC3545;
    }
    .ava-call-btn.is-connecting {
      opacity: 0.7;
      cursor: wait;
    }
    .ava-btn-mic { font-size: 1.25rem; }
    .ava-sdk-status {
      font-size: 0.8125rem;
      color: #6b6a65;
      min-height: 1.25rem;
      margin-bottom: 0.5rem;
    }
    .ava-note {
      font-size: 0.75rem;
      color: #9CA3AF;
    }

    /* ==============================================
       STATS
    ============================================== */
    .stats-section { background: #171611; color: #fff; }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
    }
    @media (max-width: 768px) {
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
    }
    .stat-box { text-align: center; padding: 1.5rem 1rem; }
    .stat-num {
      font-size: 2.5rem;
      font-weight: 800;
      color: #c79b1a;
      line-height: 1;
      margin-bottom: 0.5rem;
    }
    .stat-num sup {
      font-size: 1rem;
      font-weight: 600;
      vertical-align: super;
      color: rgba(199,155,26,.7);
    }
    .stat-label {
      font-size: 0.875rem;
      font-weight: 600;
      color: rgba(255,255,255,.9);
      margin-bottom: 0.25rem;
    }
    .stat-note {
      font-size: 0.75rem;
      color: rgba(255,255,255,.4);
    }

    /* ==============================================
       CALCULATOR
    ============================================== */
    .calc-section { background: #fff; }
    .calc-card {
      background: #fff;
      border: 1px solid #E8E5E0;
      border-radius: 1.5rem;
      padding: 2.5rem;
      max-width: 48rem;
      margin: 2rem auto 0;
      box-shadow: 0 4px 24px rgba(0,0,0,.06);
    }
    .calc-results {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin: 2rem 0;
      padding: 1.5rem;
      background: #f8f7f6;
      border-radius: 1rem;
    }
    @media (max-width: 640px) {
      .calc-results { grid-template-columns: 1fr; }
    }
    .calc-result {
      text-align: center;
    }
    .calc-result-val {
      font-size: 2rem;
      font-weight: 800;
      color: #c79b1a;
      line-height: 1;
    }
    .calc-result-val.lost { color: #DC3545; }
    .calc-result-val.gap  { color: #DC3545; }
    .calc-result-val.gain { color: #0A8F7A; }
    .calc-result-label {
      font-size: 0.8125rem;
      color: #6b6a65;
      margin-top: 0.5rem;
    }

    /* ==============================================
       FAQ
    ============================================== */
    .faq-section { background: #fff; }
    .faq-list {
      max-width: 48rem;
      margin: 2rem auto 0;
    }
    .faq-item {
      border-bottom: 1px solid #E8E5E0;
    }
    .faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 1.25rem 0;
      background: none;
      border: none;
      cursor: pointer;
      font-size: 1rem;
      font-weight: 600;
      color: #171611;
      text-align: left;
      transition: color 0.2s;
    }
    .faq-q:hover { color: #c79b1a; }
    .faq-arrow {
      font-size: 1.25rem;
      color: #9CA3AF;
      transition: transform 0.3s;
      flex-shrink: 0;
      margin-left: 1rem;
    }
    .faq-item.open .faq-arrow { transform: rotate(180deg); color: #c79b1a; }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.25s ease;
      font-size: 0.9375rem;
      color: #6b6a65;
      line-height: 1.7;
    }
    .faq-item.open .faq-a {
      max-height: 600px;
      padding-bottom: 1.25rem;
    }

    /* ==============================================
       FINAL CTA
    ============================================== */
    .final-cta {
      padding: 5rem 1.5rem;
      text-align: center;
    }
    .cta-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.75rem, 3.5vw, 2.5rem);
      font-weight: 700;
      color: #171611;
      margin-bottom: 1rem;
      line-height: 1.2;
    }
    .cta-sub {
      font-size: 1.0625rem;
      color: #6b6a65;
      line-height: 1.7;
      max-width: 40rem;
      margin: 0 auto 2rem;
    }
    .cta-actions {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
    }
    .cta-note {
      font-size: 0.8125rem;
      color: #9CA3AF;
    }

    /* ==============================================
       PROCESS
    ============================================== */
    .process-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
    }
    @media (max-width: 768px) {
      .process-grid { grid-template-columns: 1fr; }
    }
    .process-step { text-align: center; }
    .process-num {
      font-size: 2.5rem;
      font-weight: 800;
      color: #c79b1a;
      margin-bottom: 1rem;
    }
    .process-step-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: #171611;
      margin-bottom: 0.5rem;
    }
    .process-step-text {
      font-size: 0.9375rem;
      color: #6b6a65;
      line-height: 1.6;
    }

    /* ==============================================
       PRICING
    ============================================== */
    .pricing-section { background: #fff; }
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-top: 2.5rem;
      align-items: start;
    }
    @media (max-width: 900px) {
      .pricing-grid { grid-template-columns: 1fr; max-width: 28rem; margin-left: auto; margin-right: auto; }
    }
    .price-card {
      background: #fff;
      border: 1px solid #E8E5E0;
      border-radius: 1.25rem;
      padding: 2rem 1.75rem 1.5rem;
      position: relative;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .price-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0,0,0,.08);
    }
    .price-card.pop {
      border: 2px solid #c79b1a;
      box-shadow: 0 8px 32px rgba(199,155,26,.15);
    }
    .pop-chip {
      position: absolute;
      top: -0.75rem;
      left: 50%;
      transform: translateX(-50%);
      background: #c79b1a;
      color: #fff;
      font-size: 0.6875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 0.25rem 1rem;
      border-radius: 9999px;
      white-space: nowrap;
    }
    .price-tier {
      font-size: 0.6875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: #0A8F7A;
      margin-bottom: 0.5rem;
    }
    .price-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: #171611;
      margin-bottom: 0.25rem;
    }
    .price-tagline {
      font-size: 0.875rem;
      color: #6b6a65;
      font-style: italic;
      margin-bottom: 1.25rem;
    }
    .price-amount {
      font-size: 0.875rem;
      color: #6b6a65;
      margin-bottom: 0.25rem;
    }
    .price-num {
      font-size: 2.5rem;
      font-weight: 800;
      color: #171611;
      line-height: 1;
    }
    .price-period {
      font-size: 0.8125rem;
      color: #9CA3AF;
    }
    .price-setup {
      font-size: 0.75rem;
      color: #0A8F7A;
      font-weight: 600;
      margin-bottom: 1rem;
    }
    .price-divider {
      height: 1px;
      background: #E8E5E0;
      margin-bottom: 1rem;
    }
    .price-feats {
      list-style: none;
      padding: 0;
      margin: 0 0 1.25rem;
    }
    .price-feats li {
      font-size: 0.875rem;
      color: #171611;
      padding: 0.375rem 0;
      padding-left: 1.5rem;
      position: relative;
      line-height: 1.5;
    }
    .price-feats li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: #0A8F7A;
      font-weight: 700;
    }
    .price-feats li.off {
      color: #9CA3AF;
    }
    .price-feats li.off::before {
      content: '—';
      color: #D1D5DB;
    }
    .price-vs {
      font-size: 0.8125rem;
      color: #6b6a65;
      line-height: 1.5;
      margin-bottom: 1.25rem;
      padding: 0.75rem;
      background: #f8f7f6;
      border-radius: 0.5rem;
    }
    .price-btn {
      display: block;
      width: 100%;
      text-align: center;
      padding: 0.875rem 1.5rem;
      border-radius: 0.75rem;
      font-size: 0.9375rem;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.2s;
      background: #171611;
      color: #fff;
    }
    .price-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,.15);
    }
    .price-btn.gold {
      background: #c79b1a;
      box-shadow: 0 4px 16px rgba(199,155,26,.25);
    }
    .price-btn.gold:hover {
      background: #d4aa2a;
      box-shadow: 0 8px 24px rgba(199,155,26,.35);
    }
    .garantie-note {
      margin-top: 2rem;
      padding: 1.25rem 1.5rem;
      background: rgba(10,143,122,.06);
      border: 1px solid rgba(10,143,122,.15);
      border-radius: 1rem;
      text-align: center;
      font-size: 0.875rem;
      color: #6b6a65;
      line-height: 1.6;
      max-width: 48rem;
      margin-left: auto;
      margin-right: auto;
    }
    .garantie-badge {
      display: block;
      font-weight: 700;
      color: #0A8F7A;
      font-size: 1rem;
      margin-bottom: 0.5rem;
    }

    /* ==============================================
       TESTIMONIALS
    ============================================== */
    .testi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3rem;
    }
    @media (max-width: 768px) {
      .testi-grid { grid-template-columns: 1fr; }
    }
    .testi-card {
      background: #fff;
      border: 1px solid #E8E5E0;
      border-radius: 1rem;
      padding: 2rem;
    }
    .testi-stars { color: #c79b1a; font-size: 1rem; margin-bottom: 0.5rem; }
    .testi-quote {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      color: #c79b1a;
      line-height: 1;
      opacity: 0.3;
    }
    .testi-text {
      font-size: 0.9375rem;
      color: #6b6a65;
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }
    .testi-author { display: flex; align-items: center; gap: 0.75rem; }
    .author-av {
      width: 2.5rem; height: 2.5rem;
      border-radius: 50%;
      background: #E8E5E0;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.75rem; font-weight: 700; color: #6b6a65;
    }
    .author-name { font-weight: 700; font-size: 0.875rem; color: #171611; }
    .author-role { font-size: 0.75rem; color: #9CA3AF; }

    /* ==============================================
       UTILITIES
    ============================================== */
    .small-caps { font-variant: small-caps; }
    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1.5rem;
    }
    .section-tag::before {
      content: '';
      display: block;
      width: 2rem;
      height: 2px;
      background: #c79b1a;
      flex-shrink: 0;
    }
/* ── EXIT POPUP ── */
    /* ── Popup overlay ── */
    #exit-popup {
      position: fixed; inset: 0; z-index: 9000;
      display: flex; align-items: center; justify-content: center;
      padding: 20px;
    }
    #exit-popup[hidden] { display: none; }
    #exit-popup.ep-visible { display: flex; }

    .ep-backdrop {
      position: absolute; inset: 0;
      background: rgba(23, 22, 17, 0.55);
      backdrop-filter: blur(6px) saturate(1.4);
      animation: epFadeIn .25s ease forwards;
    }

    /* ── Card ── */
    .ep-card {
      position: relative; z-index: 1;
      background: #fff;
      border: 1px solid #E8E5E0;
      border-radius: 24px;
      padding: 48px 44px 36px;
      max-width: 480px; width: 100%;
      box-shadow: 0 32px 80px rgba(0,0,0,.15), 0 0 0 1px rgba(199,155,26,.08);
      animation: epSlideUp .3s cubic-bezier(.34,1.56,.64,1) forwards;
      text-align: center;
    }

    /* ── Close ── */
    .ep-close {
      position: absolute; top: 16px; right: 16px;
      width: 32px; height: 32px; border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: #9CA3AF; transition: color .2s, background .2s;
      background: none; border: none; cursor: pointer;
    }
    .ep-close:hover { color: #171611; background: #f0efec; }

    /* ── Badge ── */
    .ep-badge {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 11px; font-weight: 700;
      text-transform: uppercase; letter-spacing: .12em;
      color: #c79b1a; margin-bottom: 20px;
    }
    .ep-badge::before {
      content: ''; display: block;
      width: 18px; height: 2px;
      background: #c79b1a; border-radius: 1px;
    }
    .ep-badge::after {
      content: ''; display: block;
      width: 18px; height: 2px;
      background: #c79b1a; border-radius: 1px;
    }

    /* ── Title ── */
    .ep-title {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(26px, 4vw, 36px);
      font-weight: 800; line-height: 1.1;
      letter-spacing: -.03em; color: #171611;
      margin-bottom: 14px;
    }
    .ep-title em { font-style: italic; color: #c79b1a; }

    /* ── Sub ── */
    .ep-sub {
      font-size: 15px; color: #6b6a65;
      line-height: 1.6; margin-bottom: 28px;
    }

    /* ── Stats ── */
    .ep-stats {
      display: flex; align-items: center; justify-content: center;
      gap: 20px; margin-bottom: 28px;
      padding: 16px 20px;
      background: #f8f7f6; border-radius: 12px;
      border: 1px solid #E8E5E0;
    }
    .ep-stat { display: flex; flex-direction: column; gap: 2px; }
    .ep-stat-val {
      font-size: 18px; font-weight: 700; color: #c79b1a;
    }
    .ep-stat-label { font-size: 11px; color: #6b6a65; }
    .ep-stat-div { width: 1px; height: 28px; background: #E8E5E0; }

    /* ── CTA ── */
    .ep-cta {
      display: block; width: 100%;
      padding: 15px 24px; border-radius: 12px;
      background: #c79b1a; color: #fff;
      font-size: 15px; font-weight: 700;
      text-decoration: none; text-align: center;
      transition: background .2s, transform .2s, box-shadow .2s;
      margin-bottom: 10px;
    }
    .ep-cta:hover {
      background: #d4aa2a;
      transform: translateY(-2px);
      box-shadow: 0 12px 36px rgba(199,155,26,.28);
    }

    /* ── Note ── */
    .ep-note { font-size: 12px; color: #9CA3AF; margin-bottom: 18px; }

    /* ── Dismiss ── */
    .ep-dismiss {
      font-size: 12px; color: #9CA3AF;
      text-decoration: underline; text-underline-offset: 3px;
      transition: color .2s; background: none; border: none; cursor: pointer;
    }
    .ep-dismiss:hover { color: #6b6a65; }

    /* ── Animations ── */
    @keyframes epFadeIn  { from { opacity: 0; } to { opacity: 1; } }
    @keyframes epSlideUp { from { opacity: 0; transform: translateY(24px) scale(.97); } to { opacity: 1; transform: none; } }

    /* ── Mobile ── */
    @media (max-width: 520px) {
      .ep-card { padding: 40px 24px 28px; border-radius: 20px; }
      .ep-stats { gap: 12px; padding: 14px 14px; }
      .ep-stat-val { font-size: 15px; }
    }
