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

    /* ── Base ── */
    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background-color: #0a0a0a;
      color: #b0b0b0;
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      display: block;
    }

    /* ── Header ── */
    header {
      background-color: #0a0a0a;
      border-bottom: 2px solid #C9973A;
      padding: 20px 24px;
      display: flex;
      justify-content: center;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    header img {
      max-height: 80px;
      width: auto;
    }

    /* ── Hero ── */
    .hero {
      background: radial-gradient(ellipse 110% 90% at 50% 0%, rgba(201, 151, 58, 0.28) 0%, #0a0a0a 72%);
      padding: 100px 24px;
      text-align: center;
    }

    .hero h1 {
      font-size: clamp(32px, 5vw, 64px);
      font-weight: 700;
      color: #ffffff;
      line-height: 1.2;
      max-width: 900px;
      margin: 0 auto 24px;
    }

    .hero p {
      font-size: 18px;
      color: #b0b0b0;
      max-width: 620px;
      margin: 0 auto 36px;
    }

    .hero hr {
      width: 80px;
      border: none;
      border-top: 2px solid #C9973A;
      margin: 0 auto;
    }

    /* ── VSL ── */
    .vsl {
      background: radial-gradient(ellipse 60% 70% at 100% 50%, rgba(201, 151, 58, 0.13) 0%, #0a0a0a 65%);
      padding: 60px 24px;
    }

    .vsl-card {
      background: #111111;
      border: 1px solid #C9973A;
      border-radius: 12px;
      box-shadow: 0 0 24px rgba(201, 151, 58, 0.15);
      max-width: 800px;
      margin: 0 auto;
      overflow: hidden;
    }

    .vsl-ratio {
      position: relative;
      padding-top: 56.25%;
    }

    .vsl-ratio iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
    }

    /* ── Stats ── */
    .stats {
      background: radial-gradient(ellipse 55% 80% at 0% 50%, rgba(201, 151, 58, 0.14) 0%, #0a0a0a 65%);
      padding: 80px 24px 110px;
    }

    .stats-header {
      text-align: center;
      max-width: 680px;
      margin: 0 auto 64px;
    }

    .stats-title {
      font-size: clamp(18px, 2.2vw, 24px);
      font-weight: 700;
      color: #ffffff;
      line-height: 1.5;
      margin-bottom: 24px;
    }

    .stats-divider {
      width: 80px;
      border: none;
      border-top: 2px solid #C9973A;
      margin: 0 auto;
    }

    .stats-scatter {
      display: flex;
      flex-wrap: wrap;
      gap: 28px;
      justify-content: center;
      max-width: 1100px;
      margin: 0 auto;
      align-items: stretch;
    }

    /* Fly-in base state */
    .stat-wrap {
      --fly-x: 0px;
      --fly-y: 0px;
      flex: 0 0 calc(33.333% - 20px);
      max-width: 320px;
      opacity: 0;
      transform: translateX(var(--fly-x)) translateY(var(--fly-y));
      transition: transform 6.6s cubic-bezier(0.16, 1, 0.3, 1),
                  opacity 6.0s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .stat-wrap.is-visible {
      opacity: 1;
      transform: translateX(0) translateY(0);
    }

    /* Masonry stagger + fly directions: left / bottom / right */
    .stat-wrap:nth-child(1) { --fly-x: -110px; --fly-y: 0px;  margin-top: 0;    }
    .stat-wrap:nth-child(2) { --fly-x: 0px;    --fly-y: 90px; margin-top: 32px; }
    .stat-wrap:nth-child(3) { --fly-x:  110px; --fly-y: 0px;  margin-top: -14px;}
    .stat-wrap:nth-child(4) { --fly-x: -110px; --fly-y: 0px;  margin-top: 20px; }
    .stat-wrap:nth-child(5) { --fly-x: 0px;    --fly-y: 90px; margin-top: -10px;}
    .stat-wrap:nth-child(6) { --fly-x:  110px; --fly-y: 0px;  margin-top: 24px; }

    /* Float keyframes */
    @keyframes float-a { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
    @keyframes float-b { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
    @keyframes float-c { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

    .stat-wrap.is-floating:nth-child(1) .stat-card { animation: float-a 3.2s ease-in-out infinite 0.0s; }
    .stat-wrap.is-floating:nth-child(2) .stat-card { animation: float-b 3.8s ease-in-out infinite 0.5s; }
    .stat-wrap.is-floating:nth-child(3) .stat-card { animation: float-c 3.5s ease-in-out infinite 1.1s; }
    .stat-wrap.is-floating:nth-child(4) .stat-card { animation: float-a 4.0s ease-in-out infinite 0.3s; }
    .stat-wrap.is-floating:nth-child(5) .stat-card { animation: float-b 3.3s ease-in-out infinite 0.8s; }
    .stat-wrap.is-floating:nth-child(6) .stat-card { animation: float-c 3.7s ease-in-out infinite 0.2s; }

    .stat-card {
      background: #111111;
      border: 1px solid rgba(201, 151, 58, 0.4);
      border-radius: 12px;
      padding: 36px 28px;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
      transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
      cursor: default;
    }

    .stat-wrap:hover .stat-card {
      animation-play-state: paused;
      transform: translateY(-4px);
      border-color: #C9973A;
      box-shadow: 0 0 28px rgba(201, 151, 58, 0.35);
    }

    .stat-number {
      font-size: 52px;
      font-weight: 700;
      color: #C9973A;
      line-height: 1;
      margin-bottom: 14px;
    }

    .stat-label {
      font-size: 14px;
      color: #b0b0b0;
      line-height: 1.55;
    }

    /* ── Hook ── */
    .hook {
      background: radial-gradient(ellipse 60% 70% at 100% 50%, rgba(201, 151, 58, 0.13) 0%, #0a0a0a 60%);
      padding: 80px 24px;
      text-align: center;
    }

    .hook em {
      display: block;
      font-style: italic;
      font-size: 20px;
      color: #ffffff;
      max-width: 720px;
      margin: 0 auto;
      line-height: 1.75;
    }

    /* ── CTA / Booking ── */
    .booking {
      background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(201, 151, 58, 0.16) 0%, #111111 65%);
      border-top: 3px solid #C9973A;
      padding: 80px 24px 60px;
      text-align: center;
    }

    .booking h2 {
      font-size: clamp(22px, 3.5vw, 38px);
      font-weight: 700;
      color: #ffffff;
      max-width: 680px;
      margin: 0 auto 48px;
      line-height: 1.3;
    }

    .tidycal-embed {
      max-width: 1050px;
      width: 100%;
      margin: 0 auto;
      padding: 0 16px;
      box-sizing: border-box;
    }

    /* ── Footer ── */
    footer {
      background-color: #0a0a0a;
      border-top: 2px solid #C9973A;
      padding: 32px 24px;
      text-align: center;
    }

    footer p {
      font-size: 13px;
      color: #b0b0b0;
    }

    /* ── Responsive ── */
    @media (max-width: 768px) {
      .hero {
        padding: 70px 20px;
      }

      .hero p {
        font-size: 16px;
      }

      .stats {
        padding: 60px 20px 80px;
      }

      .stats-scatter {
        flex-direction: column;
        align-items: center;
      }

      .stat-wrap {
        max-width: 100%;
        width: 100%;
        --fly-x: 0px;
        --fly-y: 60px;
        margin-top: 0 !important;
      }

      .stat-card {
        min-height: 160px;
      }

      .stat-wrap.is-visible {
        transform: translateX(0) translateY(0);
      }

      @keyframes float-a { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
      @keyframes float-b { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }
      @keyframes float-c { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

      .hook em {
        font-size: 17px;
      }

      .booking {
        padding: 60px 16px 40px;
      }

      .booking-frame {
        height: 750px;
      }
    }


    /* ── FAQ ── */
    .faq {
      background: #0a0a0a;
      padding: 80px 24px;
    }

    .faq-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .faq-title {
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 700;
      color: #ffffff;
      margin: 0 0 20px;
    }

    .faq-divider {
      width: 80px;
      border: none;
      border-top: 2px solid #C9973A;
      margin: 0 auto;
    }

    .faq-list {
      max-width: 860px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .faq-item {
      background: #111111;
      border: 1px solid rgba(201, 151, 58, 0.35);
      border-radius: 10px;
      overflow: hidden;
      transition: border-color 0.25s ease;
    }

    .faq-item:hover {
      border-color: rgba(201, 151, 58, 0.65);
    }

    .faq-question {
      width: 100%;
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 22px 24px;
      text-align: left;
      font-family: inherit;
      font-size: 16px;
      font-weight: 700;
      color: #ffffff;
      line-height: 1.4;
    }

    .faq-icon {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      border: 2px solid #C9973A;
      border-radius: 50%;
      color: #C9973A;
      font-size: 18px;
      font-weight: 400;
      line-height: 20px;
      text-align: center;
      transition: transform 0.3s ease;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.3s ease;
      padding: 0 24px;
    }

    .faq-item.open .faq-answer {
      max-height: 300px;
      padding: 0 24px 22px;
    }

    .faq-answer p {
      margin: 0;
      font-size: 15px;
      color: #b0b0b0;
      line-height: 1.7;
      border-top: 1px solid rgba(201, 151, 58, 0.15);
      padding-top: 16px;
    }

    @media (max-width: 640px) {
      .faq-question {
        font-size: 15px;
        padding: 18px 20px;
      }

      .faq-answer {
        padding: 0 20px;
      }

      .faq-item.open .faq-answer {
        padding: 0 20px 18px;
      }
    }

    /* ── Guarantee ── */
    .guarantee {
      background: #0a0a0a;
      padding: 80px 24px;
    }

    .guarantee-card {
      background: #111111;
      border-top: 3px solid #C9973A;
      border-radius: 12px;
      box-shadow: 0 0 32px rgba(201, 151, 58, 0.12);
      max-width: 900px;
      margin: 0 auto;
      padding: 56px 48px 60px;
      text-align: center;
    }

    .guarantee-icon {
      font-size: 32px;
      color: #C9973A;
      margin-bottom: 20px;
      display: block;
    }

    .guarantee-headline {
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 700;
      color: #ffffff;
      margin: 0 0 20px;
      line-height: 1.15;
    }

    .guarantee-oneliner {
      font-size: clamp(16px, 1.8vw, 20px);
      font-style: italic;
      color: #C9973A;
      margin: 0 auto 48px;
      max-width: 680px;
      line-height: 1.5;
    }

    .guarantee-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      text-align: left;
    }

    .guarantee-item {
      background: #0a0a0a;
      border: 1px solid rgba(201, 151, 58, 0.35);
      border-radius: 10px;
      padding: 28px 28px 32px;
      transition: box-shadow 0.3s ease, border-color 0.3s ease;
    }

    .guarantee-item:hover {
      box-shadow: 0 0 20px rgba(201, 151, 58, 0.25);
      border-color: rgba(201, 151, 58, 0.7);
    }

    .guarantee-item-label {
      font-size: 13px;
      font-weight: 700;
      color: #C9973A;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 12px;
    }

    .guarantee-item-body {
      font-size: 15px;
      color: #d0d0d0;
      line-height: 1.65;
    }

    @media (max-width: 640px) {
      .guarantee-card {
        padding: 40px 24px 44px;
      }

      .guarantee-grid {
        grid-template-columns: 1fr;
      }
    }
