
/* --- LIGHTBOX MODAL STYLES --- */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 200000;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modal-overlay.is-active {
    display: flex;
    opacity: 1;
}
.modal-content {
    background: var(--color-bg);
    width: 90%;
    max-width: 900px;
    max-height: 80vh;
    padding: 40px;
    border-radius: 12px;
    position: relative;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
}
.modal-close {
    position: absolute;
    top: 20px; right: 20px;
    background: none; border: none;
    font-size: 32px; cursor: pointer;
    color: var(--color-text);
}
.modal-body h1, .modal-body h2 { 
    font-family: var(--font-heading); 
    margin-bottom: 20px; 
    color: var(--color-accent);
}
.modal-body p, .modal-body li { margin-bottom: 12px; }

/* --- CURSOR --- */
/* Cursor styles moved to end of file for adaptive color support */

/* --- FONTS --- */
@font-face { font-family: 'Tenor Sans'; src: url('../fonts/tenor-sans.woff2') format('woff2'); font-weight: 400; font-display: swap; }
/* DM Sans: no local woff2 file in archive – using Google Fonts CDN as fallback */
/* Add assets/fonts/DMSans-Regular.woff2 etc. locally for offline use */

/* ============================================
       DESIGN TOKENS
    ============================================ */
    :root {
      --color-accent:     #f18700;
      --color-accent-dark:#c76f00;
      --color-text:       #424241;
      --color-text-light: #7a7a78;
      --color-bg:         #fafaf9;
      --color-bg-warm:    #f5f3f0;
      --color-bg-dark:    #1e1e1c;
      --color-white:      #ffffff;
      --color-border:     #e8e5e0;

      --font-display: 'Tenor Sans', serif;
      --font-body:    'DM Sans', sans-serif;

      --radius-sm:  6px;
      --radius-md:  12px;
      --radius-lg:  24px;
      --radius-xl:  48px;

      --shadow-sm:  0 2px 8px rgba(66,66,65,.06);
      --shadow-md:  0 8px 32px rgba(66,66,65,.10);
      --shadow-lg:  0 24px 64px rgba(66,66,65,.12);

      --max-w:      1120px;
      --section-py: clamp(64px, 8vw, 120px);
      --section-px: clamp(20px, 5vw, 48px);
    }

    /* ============================================
       RESET & BASE
    ============================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: var(--font-body);
      font-size: 1rem;
      line-height: 1.65;
      color: var(--color-text);
      background: var(--color-bg);
      -webkit-font-smoothing: antialiased;
    }

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

    a { color: inherit; text-decoration: none; }

    /* ============================================
       TYPOGRAPHY SCALE
    ============================================ */
    .display-xl {
      font-family: var(--font-display);
      font-size: clamp(2.8rem, 6vw, 5rem);
      line-height: 1.08;
      letter-spacing: -.01em;
    }
    .display-lg {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3.2rem);
      line-height: 1.12;
      letter-spacing: -.01em;
    }
    .display-md {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 3vw, 2.2rem);
      line-height: 1.2;
    }
    .body-lg { font-size: clamp(1.05rem, 1.5vw, 1.2rem); line-height: 1.7; }
    .body-sm { font-size: .9rem; color: var(--color-text-light); }
    .label   { font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }

    .accent  { color: var(--color-accent); }

    /* ============================================
       LAYOUT UTILITIES
    ============================================ */
    .container {
      max-width: var(--max-w);
      margin-inline: auto;
      padding-inline: var(--section-px);
    }
    .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
    .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

    /* ============================================
       COMPONENTS
    ============================================ */

    /* — Button — */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-body);
      font-size: .95rem;
      font-weight: 600;
      letter-spacing: .02em;
      padding: 14px 32px;
      border-radius: 50px;
      border: 2px solid transparent;
      cursor: pointer;
      transition: all .2s ease;
      text-decoration: none;
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--color-accent);
      color: var(--color-white);
      border-color: var(--color-accent);
    }
    .btn-primary:hover {
      background: var(--color-accent-dark);
      border-color: var(--color-accent-dark);
      transform: translateY(-2px);
      box-shadow: 0 12px 32px rgba(241,135,0,.3);
    }
    .btn-outline {
      background: transparent;
      color: var(--color-text);
      border-color: var(--color-border);
    }
    .btn-outline:hover {
      border-color: var(--color-accent);
      color: var(--color-accent);
      transform: translateY(-2px);
    }
    .btn-white {
      background: var(--color-white);
      color: var(--color-accent);
      border-color: var(--color-white);
    }
    .btn-white:hover {
      background: var(--color-bg-warm);
      transform: translateY(-2px);
    }
    .btn-lg { padding: 18px 40px; font-size: 1.05rem; }

    /* — Badge / Pill — */
    .pill {
      display: inline-block;
      padding: 5px 14px;
      border-radius: 50px;
      font-size: .78rem;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .pill-accent  { background: rgba(241,135,0,.12); color: var(--color-accent); }
    .pill-light   { background: rgba(66,66,65,.07);  color: var(--color-text); }

    /* — Card — */
    .card {
      background: var(--color-white);
      border-radius: var(--radius-lg);
      border: 1px solid var(--color-border);
      padding: 36px;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

    /* — Divider — */
    .divider { height: 1px; background: var(--color-border); margin-block: 0; }

    /* Community photo grid */
    .community-photo-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 16px;
    }
    .community-photo-card {
      border-radius: var(--radius-md);
      overflow: hidden;
      position: relative;
    }
    .community-photo-card img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .4s ease;
    }
    .community-photo-card:hover img { transform: scale(1.04); }
    .community-photo-card--tall { grid-row: span 2; min-height: 360px; }
    .community-photo-card--short { min-height: 165px; }
    .community-photo-overlay {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 16px;
      background: linear-gradient(0deg, rgba(30,30,28,.7) 0%, transparent 100%);
    }
    .community-photo-overlay-text {
      font-size: .78rem;
      color: rgba(255,255,255,.75);
      font-style: italic;
    }

    /* Form select styling */
    .form-field select {
      display: block;
      width: 100%;
      padding: 13px 40px 13px 16px;
      font-family: var(--font-body);
      font-size: .95rem;
      color: var(--color-text);
      background: var(--color-bg);
      border: 1.5px solid var(--color-border);
      border-radius: var(--radius-sm);
      outline: none;
      cursor: pointer;
      transition: border-color .2s ease, box-shadow .2s ease;
      appearance: none;
      -webkit-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237a7a78' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
    }
    .form-field select:focus {
      border-color: var(--color-accent);
      box-shadow: 0 0 0 3px rgba(241,135,0,.12);
    }
    .check-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
    .check-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 1rem;
    }
    .check-list li::before {
      content: '';
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      margin-top: 1px;
      background: rgba(241,135,0,.12);
      border-radius: 50%;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8l3.5 3.5L13 5' stroke='%23f18700' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
    }

    /* ============================================
       HEADER / NAV
    ============================================ */
    .site-header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(250,250,249,.92);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--color-border);
      transition: box-shadow .2s ease;
    }
    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 88px;
    }
    .nav-logo { display: inline-flex; align-items: center; }
    .nav-logo img { height: 52px; width: auto; display: block; }
    .nav-cta { display: flex; align-items: center; gap: 12px; }

    /* ============================================
       HERO SECTION
    ============================================ */
    .hero {
      padding-top: calc(88px + 80px);
      padding-bottom: 100px;
      position: relative;
      overflow: hidden;
      min-height: 90vh;
      display: flex;
      align-items: center;
    }
    /* Full-bleed background image */
    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 30%;
      display: block;
    }
    /* Gradient overlay for readability */
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        105deg,
        rgba(30,30,28,.82) 0%,
        rgba(30,30,28,.65) 50%,
        rgba(30,30,28,.25) 100%
      );
    }
    .hero .container {
      position: relative;
      z-index: 1;
      width: 100%;
    }
    .hero-inner {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
      max-width: 680px;
    }
    .hero-tag { margin-bottom: 20px; }
    .hero-headline { margin-bottom: 20px; color: var(--color-white); }
    .hero-headline .accent { color: var(--color-accent); }
    .hero-subline {
      margin-bottom: 36px;
      max-width: 46ch;
      color: rgba(255,255,255,.8);
    }
    .hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }

    .hero-trust {
      margin-top: 44px;
      display: flex;
      align-items: center;
      gap: 12px;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.18);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border-radius: 50px;
      padding: 10px 20px 10px 10px;
      width: fit-content;
    }
    .hero-trust .body-sm {
      color: rgba(255,255,255,.9);
      font-weight: 500;
      font-size: .9rem;
    }

    /* ============================================
       MOBILE MENU
    ============================================ */
    .nav-hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 42px; height: 42px;
      border: 1.5px solid var(--color-border);
      border-radius: var(--radius-sm);
      background: none;
      cursor: pointer;
      padding: 0;
      transition: border-color .2s;
      flex-shrink: 0;
    }
    .nav-hamburger:hover { border-color: var(--color-accent); }
    .nav-hamburger span {
      display: block;
      width: 20px; height: 2px;
      background: var(--color-text);
      border-radius: 2px;
      transition: transform .3s ease, opacity .3s ease, width .3s ease;
      transform-origin: center;
    }
    /* open state */
    .nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-hamburger.is-open span:nth-child(2) { opacity: 0; width: 0; }
    .nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 88px; left: 0; right: 0;
      z-index: 99;
      background: var(--color-white);
      border-bottom: 1px solid var(--color-border);
      box-shadow: var(--shadow-lg);
      padding: 24px clamp(20px,5vw,48px) 32px;
      transform: translateY(-8px);
      opacity: 0;
      transition: transform .25s ease, opacity .25s ease;
      pointer-events: none;
    }
    .mobile-menu.is-open {
      display: block;
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
    .mobile-menu-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 4px;
      margin-bottom: 20px;
    }
    .mobile-menu-links a {
      display: block;
      padding: 12px 0;
      font-size: 1.05rem;
      font-weight: 500;
      color: var(--color-text);
      border-bottom: 1px solid var(--color-border);
      transition: color .2s;
    }
    .mobile-menu-links a:hover { color: var(--color-accent); }
    .mobile-menu-cta {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 20px;
    }
    .mobile-menu-cta .btn { justify-content: center; text-align: center; }
    .hero .btn-outline {
      color: rgba(255,255,255,.85);
      border-color: rgba(255,255,255,.35);
      background: rgba(255,255,255,.08);
    }
    .hero .btn-outline:hover {
      border-color: var(--color-accent);
      color: var(--color-accent);
      background: rgba(255,255,255,.12);
    }
    .hero-trust-dot {
      width: 28px; height: 28px;
      border-radius: 50%;
      border: 2px solid var(--color-bg);
      background: var(--color-bg-warm);
      font-size: .65rem;
      font-weight: 700;
      color: var(--color-accent);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-left: -6px;
    }
    .hero-trust-dot:first-child { margin-left: 0; }

    /* Hero visual side */
    .hero-visual {
      position: relative;
    }
    .hero-card-main {
      background: var(--color-bg-dark);
      border-radius: var(--radius-xl);
      overflow: hidden;
      aspect-ratio: 4/5;
      position: relative;
      display: flex;
      align-items: flex-end;
    }
    .hero-card-main-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #2a2a28 0%, #1a1a18 100%);
    }
    .hero-card-main-graphic {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-big-text {
      font-family: var(--font-display);
      font-size: clamp(5rem, 12vw, 10rem);
      color: rgba(241,135,0,.06);
      line-height: 1;
      user-select: none;
      text-align: center;
      padding: 0 24px;
    }
    .hero-badge {
      position: absolute;
      bottom: 28px; left: 28px; right: 28px;
      background: var(--color-white);
      border-radius: var(--radius-md);
      padding: 18px 22px;
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .hero-badge-icon {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: var(--color-accent);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .hero-badge-icon svg { width: 20px; height: 20px; fill: white; }
    .hero-badge-title { font-weight: 600; font-size: .95rem; color: var(--color-text); }
    .hero-badge-sub   { font-size: .82rem; color: var(--color-text-light); }

    .hero-float-card {
      position: absolute;
      top: 28px; left: -32px;
      background: var(--color-white);
      border-radius: var(--radius-md);
      padding: 14px 18px;
      box-shadow: var(--shadow-md);
      min-width: 160px;
    }
    .hero-float-num {
      font-family: var(--font-display);
      font-size: 2rem;
      color: var(--color-accent);
      line-height: 1;
    }
    .hero-float-label { font-size: .78rem; color: var(--color-text-light); margin-top: 2px; }

    /* ============================================
       INSIGHT SECTION
    ============================================ */
    .insight {
      padding-top: var(--section-py);
      padding-bottom: clamp(36px, 4vw, 56px);
      background: var(--color-bg-warm);
    }
    .insight-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .insight-quote {
      position: relative;
      padding-left: 28px;
      border-left: 3px solid var(--color-accent);
      margin-block: 28px;
    }
    .insight-quote p {
      font-family: var(--font-display);
      font-size: clamp(1.2rem, 2vw, 1.5rem);
      line-height: 1.45;
      color: var(--color-text);
    }
    .insight-stat-row {
      display: flex;
      gap: 40px;
      margin-top: 36px;
    }
    .insight-stat-row > div {
      flex: 1 1 0;  /* exact 50/50: distribute from 0-base, ignoring content width */
      min-width: 0; /* prevent overflow on long text */
    }
    .insight-stat-num {
      font-family: var(--font-display);
      font-size: 4rem;
      color: var(--color-accent);
      line-height: 1;
    }
    .insight-stat-label { font-size: 1.0rem; color: var(--color-text-light); margin-top: 4px; }
    .insight-visual {
      position: relative;
    }
    /* Photo integration - insight block */
    .insight-block {
      background: var(--color-bg-dark);
      border-radius: var(--radius-xl);
      overflow: hidden;
      color: var(--color-white);
      position: relative;
      min-height: 340px;
    }
    .insight-block-img {
      position: absolute;
      inset: 0;
    }
    .insight-block-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }
    .insight-block-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(30,30,28,.35) 0%, rgba(30,30,28,.82) 60%);
    }
    .insight-block-content {
      position: relative;
      z-index: 1;
      padding: 48px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      min-height: 340px;
    }
    .insight-block-quote {
      font-family: var(--font-display);
      font-size: clamp(1.3rem, 2.5vw, 1.8rem);
      line-height: 1.35;
      margin-bottom: 20px;
    }
    .insight-block-sub { font-size: 1.1rem; color: rgba(255,255,255); }
    .insight-accent-line {
      width: 48px; height: 3px;
      background: var(--color-accent);
      border-radius: 2px;
      margin-bottom: 24px;
    }

    /* ============================================
       HOW IT WORKS
    ============================================ */
    .steps {
      padding-top: var(--section-py);           /* increased: clearer separation from insight */
      padding-bottom: clamp(36px, 4vw, 56px);  /* unchanged */
    }
    .steps-header {
      text-align: center;
      max-width: 560px;
      margin-inline: auto;
      margin-bottom: 64px;
    }
    .steps-header .display-lg { margin-top: 12px; }
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      position: relative;
    }
    .step-card {
      background: var(--color-white);
      border-radius: var(--radius-lg);
      border: 1px solid var(--color-border);
      padding: 36px 28px;
      text-align: center;
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .step-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
    }
    .step-num {
      width: 56px; height: 56px;
      border-radius: 50%;
      background: var(--color-accent);
      color: var(--color-white);
      font-family: var(--font-display);
      font-size: 1.3rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
    }
    .step-title {
      font-family: var(--font-display);
      font-size: 1.2rem;
      margin-bottom: 12px;
    }
    .step-text { font-size: 1rem; color: var(--color-text-light); line-height: 1.65; }

    /* ============================================
       BENEFITS SECTION (SPLIT)
    ============================================ */
    .benefits {
      padding-top: clamp(36px, 4vw, 56px);
      padding-bottom: var(--section-py);
      background: var(--color-bg-warm);
    }
    .benefits-header {
      text-align: center;
      max-width: 560px;
      margin-inline: auto;
      margin-bottom: 56px;
    }
    .benefits-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4px;
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }
    .benefits-col {
      padding: 48px 44px;
    }
    .benefits-col--member { background: var(--color-white); }
    .benefits-col--hero   { background: var(--color-bg-dark); color: var(--color-white); }
    .benefits-col-tag {
      margin-bottom: 8px;
    }
    .benefits-col-headline {
      font-family: var(--font-display);
      font-size: clamp(1.4rem, 2.5vw, 1.9rem);
      line-height: 1.2;
      margin-bottom: 28px;
    }
    .benefits-col--hero .check-list li { color: rgba(255,255,255,.85); }
    .benefits-col--hero .check-list li::before {
      background-color: rgba(241,135,0,.18);
    }
    .benefits-highlight {
      margin-top: 28px;
      padding: 18px 20px;
      background: rgba(241,135,0,.1);
      border-radius: var(--radius-md);
      font-size: 1.15rem;
      color: var(--color-accent);
      font-weight: 500;
    }
    .benefits-col--hero .benefits-highlight {
      background: rgba(241,135,0,.15);
    }

    /* Rewards row */
    .rewards {
      padding-top: clamp(36px, 4vw, 56px);      /* unchanged */
      padding-bottom: var(--section-py);         /* increased: more air below CTA button */
    }
    .rewards-header {
      text-align: center;
      max-width: 560px;
      margin-inline: auto;
      margin-bottom: 56px;
    }
    .rewards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .reward-card {
      background: var(--color-white);
      border: 2px solid var(--color-border);
      border-radius: var(--radius-lg);
      padding: 36px 28px;
      text-align: center;
      transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
      cursor: default;
    }
    .reward-card:hover {
      border-color: var(--color-accent);
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }
    .reward-icon {
      width: 64px; height: 64px;
      border-radius: 50%;
      background: rgba(241,135,0,.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }
    .reward-icon svg { width: 28px; height: 28px; }
    .reward-value {
      font-family: var(--font-display);
      font-size: 1.5rem;
      color: var(--color-accent);
      margin-bottom: 6px;
    }
    .reward-label { font-size: 1rem; color: var(--color-text-light); }

    /* ============================================
       COMMUNITY SECTION
    ============================================ */
    .community {
      padding-block: var(--section-py);
      background: var(--color-bg-dark);
      color: var(--color-white);
      position: relative;
      overflow: hidden;
    }
    .community::before {
      content: '';
      position: absolute;
      top: -50%; left: -20%;
      width: 80%; height: 200%;
      background: radial-gradient(ellipse, rgba(241,135,0,.06) 0%, transparent 60%);
      pointer-events: none;
    }
    .community-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .community-eyebrow {
      color: var(--color-accent);
      margin-bottom: 16px;
    }
    .community-headline {
      color: var(--color-white);
      margin-bottom: 24px;
    }
    .community-text { font-size: 1.15rem; color: rgba(255,255,255); line-height: 1.7; margin-bottom: 16px; }
    .community-text strong { color: var(--color-accent); font-weight: 500; }
    .community-visual {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .community-card {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: var(--radius-md);
      padding: 24px 20px;
      transition: background .2s ease;
    }
    .community-card:hover { background: rgba(255,255,255,.08); }
    .community-card:first-child {
      grid-column: 1 / -1;
      background: rgba(241,135,0,.1);
      border-color: rgba(241,135,0,.2);
    }
    .community-card-quote {
      font-family: var(--font-display);
      font-size: 1.05rem;
      color: var(--color-white);
      line-height: 1.45;
      margin-bottom: 12px;
    }
    .community-card-author { font-size: .82rem; color: rgba(255,255,255,.4); }
    .community-card-num {
      font-family: var(--font-display);
      font-size: 2rem;
      color: var(--color-accent);
    }
    .community-card-desc { font-size: .82rem; color: rgba(255,255,255,.5); margin-top: 4px; }

    /* ============================================
       FORM SECTION
    ============================================ */
    .form-section {
      padding-block: var(--section-py);
      background: var(--color-bg);
    }
    .form-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }
    .form-intro-tag { margin-bottom: 16px; }
    .form-intro-headline { margin-bottom: 16px; }
    .form-intro-text { color: var(--color-text-light); margin-bottom: 32px; }
    .form-guarantee {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 18px;
      background: rgba(241,135,0,.06);
      border-radius: var(--radius-md);
      border: 1px solid rgba(241,135,0,.15);
    }
    .form-guarantee-icon {
      width: 32px; height: 32px;
      border-radius: 50%;
      background: var(--color-accent);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .form-guarantee-icon svg { width: 16px; height: 16px; fill: white; }
    .form-guarantee-title { font-weight: 600; font-size: .9rem; margin-bottom: 2px; }
    .form-guarantee-text  { font-size: 1.0rem; color: var(--color-text-light); }

    /* Form card */
    .form-card {
      background: var(--color-white);
      border-radius: var(--radius-xl);
      border: 1px solid var(--color-border);
      padding: 44px 40px;
      box-shadow: var(--shadow-lg);
    }
    .form-card-title {
      font-family: var(--font-display);
      font-size: 1.4rem;
      margin-bottom: 8px;
    }
    .form-card-sub { font-size: .9rem; color: var(--color-text-light); margin-bottom: 28px; }

    .form-group-label {
      font-size: 1.0rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--color-accent);
      margin-bottom: 16px;
      margin-top: 28px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .form-group-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--color-border);
    }
    .form-group-label:first-child { margin-top: 0; }

    .form-field { margin-bottom: 16px; }
    .form-field label {
      display: block;
      font-size: 1.0rem;
      font-weight: 500;
      color: var(--color-text);
      margin-bottom: 6px;
    }
    .form-field input {
      display: block;
      width: 100%;
      padding: 13px 16px;
      font-family: var(--font-body);
      font-size: .95rem;
      color: var(--color-text);
      background: var(--color-bg);
      border: 1.5px solid var(--color-border);
      border-radius: var(--radius-sm);
      outline: none;
      transition: border-color .2s ease, box-shadow .2s ease;
    }
    .form-field input:focus {
      border-color: var(--color-accent);
      box-shadow: 0 0 0 3px rgba(241,135,0,.12);
    }
    .form-field input::placeholder { color: #bbb; }

    .form-submit {
      margin-top: 28px;
    }
    .form-submit .btn { width: 100%; justify-content: center; }
    .form-legal { margin-top: 12px; text-align: center; font-size: .76rem; color: var(--color-text-light); }
    .form-legal a { color: var(--color-accent); text-decoration: underline; }

    /* ============================================
       FINAL CTA SECTION
    ============================================ */
    .final-cta {
      padding-block: var(--section-py);
      background: var(--color-accent);
      color: var(--color-white);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .final-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,.12)'/%3E%3C/svg%3E");
      pointer-events: none;
    }
    .final-cta-inner { position: relative; max-width: 640px; margin-inline: auto; }
    .final-cta .display-lg { color: var(--color-white); margin-bottom: 16px; }
    .final-cta-text { color: rgba(255,255,255,.8); margin-bottom: 36px; font-size: 1.4rem; }
    .final-cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

    /* ============================================
       FOOTER
    ============================================ */
    .site-footer {
      background: var(--color-bg-dark);
      color: rgba(255,255,255,.45);
      padding-block: 32px;
    }
    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }
    .footer-logo svg { height: 32px; }
    /* Make footer logo white */
    .footer-logo .cls-1 { fill: rgba(255,255,255,.7) !important; }
    .footer-logo .cls-2 { fill: var(--color-accent) !important; }
    .footer-links { display: flex; gap: 24px; font-size: .84rem; }
    .footer-links a { color: rgba(255,255,255,.45); transition: color .2s; }
    .footer-links a:hover { color: var(--color-accent); }
    .footer-copy { font-size: .8rem; }
    h1.footer-copy { font-size: .8rem; font-weight: 400; margin: 0; line-height: inherit; }
    .footer-social { display: flex; gap: 14px; align-items: center; }
    .footer-social a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px; height: 36px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.15);
      color: rgba(255,255,255,.45);
      transition: color .2s, border-color .2s, background .2s;
    }
    .footer-social a:hover {
      color: var(--color-accent);
      border-color: var(--color-accent);
      background: rgba(241,135,0,.1);
    }
    .footer-social a svg { width: 16px; height: 16px; }

    .footer-phone a {
      color: rgba(255,255,255,.65);
      font-size: .88rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 7px;
      transition: color .2s;
      text-decoration: none;
    }
    .footer-phone a:hover { color: var(--color-accent); }
    .footer-phone svg { width: 14px; height: 14px; flex-shrink: 0; }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .animate-in { animation: fadeUp .6s ease both; }
    .delay-1 { animation-delay: .1s; }
    .delay-2 { animation-delay: .2s; }
    .delay-3 { animation-delay: .3s; }
    .delay-4 { animation-delay: .4s; }

    /* ============================================
       SCROLL REVEAL
    ============================================ */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1);
    }
    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }
    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }

    /* ============================================
       TYPEWRITER
    ============================================ */
    .typewriter-wrap { display: inline; }
    .typewriter-cursor {
      display: inline-block;
      width: 3px;
      background: var(--color-accent);
      margin-left: 3px;
      vertical-align: baseline;
      border-radius: 2px;
      animation: blink .75s step-end infinite;
    }
    @keyframes blink {
      0%, 100% { opacity: 1; }
      50%       { opacity: 0; }
    }

    /* ============================================
       RESPONSIVE
    ============================================ */
    @media (max-width: 960px) {
      .hero-inner,
      .insight-inner,
      .community-inner,
      .form-wrapper { grid-template-columns: 1fr; gap: 48px; }

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

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

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

      .grid-2 { grid-template-columns: 1fr; gap: 24px; }
      .grid-3 { grid-template-columns: 1fr; }

      .community-photo-grid { grid-template-columns: 1fr 1fr; }
      .community-photo-card--tall { min-height: 260px; }

      /* Show hamburger, hide desktop nav buttons */
      .nav-hamburger { display: flex; }
      .nav-cta { display: none; }
    }

    @media (max-width: 640px) {
      .form-card { padding: 28px 22px; }
      .benefits-col { padding: 32px 24px; }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .hero-actions .btn { justify-content: center; }
      .final-cta-actions { flex-direction: column; align-items: center; }
      .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
      .community-photo-grid { grid-template-columns: 1fr; }
      .community-photo-card--tall { grid-row: auto; min-height: 220px; }
    }
    /* ============================================
       TESTIMONIALS SLIDER
    ============================================ */
    .testimonials {
      padding-block: var(--section-py);
      background: var(--color-bg-warm);
      overflow: hidden;
    }
    .testimonials-header {
      text-align: center;
      max-width: 560px;
      margin-inline: auto;
      margin-bottom: 56px;
    }
    .testimonials-header .display-lg { margin-top: 12px; }

    /* Track + slides */
    .slider-outer {
      position: relative;
    }
    .slider-track-wrap {
      overflow: hidden;
      border-radius: var(--radius-lg);
    }
    .slider-track {
      display: flex;
      transition: transform .5s cubic-bezier(.4,0,.2,1);
      will-change: transform;
    }
    .testimonial-slide {
      flex: 0 0 100%;
      min-width: 0;
    }
    .testimonial-card {
      background: var(--color-white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      display: grid;
      grid-template-columns: 340px 1fr;
      min-height: 420px;
    }

    /* Photo column */
    .tc-photo {
      position: relative;
      overflow: hidden;
      flex-shrink: 0;
    }
    .tc-photo img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: top center;
      display: block;
      transition: transform .6s ease;
    }
    .testimonial-card:hover .tc-photo img { transform: scale(1.04); }
    .tc-photo-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 40%, rgba(30,30,28,.55) 100%);
    }

    /* Content column */
    .tc-content {
      padding: 48px 52px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 0;
    }
    .tc-name {
      font-family: var(--font-display);
      font-size: 1.5rem;
      color: var(--color-text);
      margin-bottom: 4px;
    }
    .tc-role {
      font-size: .8rem;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--color-accent);
      margin-bottom: 24px;
    }
    .tc-story {
      font-size: 1.02rem;
      color: var(--color-text-light);
      line-height: 1.75;
      margin-bottom: 24px;
    }
    .tc-quote {
      position: relative;
      padding-left: 20px;
      border-left: 3px solid var(--color-accent);
    }
    .tc-quote p {
      font-family: var(--font-display);
      font-size: clamp(1rem, 1.6vw, 1.2rem);
      line-height: 1.45;
      color: var(--color-text);
      font-style: italic;
    }

    /* Navigation arrows */
    .slider-arrow {
      position: absolute;
      top: 50%; transform: translateY(-50%);
      z-index: 2;
      width: 48px; height: 48px;
      border-radius: 50%;
      background: var(--color-white);
      border: 1.5px solid var(--color-border);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: var(--shadow-sm);
      transition: border-color .2s, box-shadow .2s, transform .2s;
    }
    .slider-arrow:hover {
      border-color: var(--color-accent);
      box-shadow: var(--shadow-md);
      transform: translateY(-50%) scale(1.08);
    }
    .slider-arrow svg { width: 20px; height: 20px; stroke: var(--color-text); }
    .slider-arrow--prev { left: -24px; }
    .slider-arrow--next { right: -24px; }
    .slider-arrow:disabled { opacity: .35; pointer-events: none; }

    /* Dots */
    .slider-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 32px;
    }
    .slider-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--color-border);
      border: none;
      cursor: pointer;
      padding: 0;
      transition: background .25s, transform .25s, width .25s;
    }
    .slider-dot.is-active {
      background: var(--color-accent);
      width: 24px;
      border-radius: 4px;
    }
    .slider-dot:hover:not(.is-active) { background: var(--color-text-light); }

    /* Counter */
    .slider-counter {
      text-align: center;
      margin-top: 16px;
      font-size: .8rem;
      color: var(--color-text-light);
      letter-spacing: .06em;
    }

    /* Mobile: stack card */
    @media (max-width: 760px) {
      .testimonial-card {
        grid-template-columns: 1fr;
        grid-template-rows: 260px auto;
        min-height: auto;
      }
      .tc-photo { height: 260px; }
      .tc-content { padding: 32px 28px; }
      .slider-arrow--prev { left: -4px; }
      .slider-arrow--next { right: -4px; }
      .slider-arrow { width: 40px; height: 40px; }
    }

/* ============================================================
   FORM – success message + error banner
   ============================================================ */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 52px 24px;
  gap: 16px;
}

.form-success__check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(241,135,0,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-success__check svg {
  width: 28px;
  height: 28px;
  stroke: #f18700;
}

.form-success__title {
  font-family: var(--font-heading, 'Tenor Sans', serif);
  font-size: 1.45rem;
  color: var(--color-text, #424241);
  margin: 0;
}

.form-success__body {
  font-size: .95rem;
  color: var(--color-text-light, #7a7a78);
  line-height: 1.65;
  max-width: 38ch;
  margin: 0;
}

.form-msg {
  padding: 10px 14px;
  border-radius: 6px;
  font-size: .875rem;
  margin-bottom: 18px;
}

.form-msg--error {
  background: rgba(185,28,28,.07);
  border: 1px solid rgba(185,28,28,.22);
  border-left: 3px solid #b91c1c;
  color: #991b1b;
}

.form-msg--ok {
  background: rgba(21,128,61,.07);
  border: 1px solid rgba(21,128,61,.22);
  border-left: 3px solid #166534;
  color: #14532d;
}

::selection {
  background: var(--color-accent); /* orange */
  color: var(--color-white);       /* weißer Text */
}

/* Safari/Firefox Support */
::-moz-selection {
  background: var(--color-accent);
  color: var(--color-white);
}
