/** Shopify CDN: Minification failed

Line 21:15 Unexpected "{"
Line 21:20 Expected ":"
Line 21:24 Unexpected "{"
Line 22:15 Expected identifier but found whitespace
Line 22:17 Unexpected "{"
Line 22:20 Expected ":"
Line 23:19 Expected identifier but found whitespace
Line 23:21 Unexpected "{"
Line 23:24 Expected ":"
Line 24:17 Expected identifier but found whitespace
... and 71 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:how-it-works (INDEX:31) */
#how-it-works-{{ sid }} {
    --color-bg: {{ s.c_bg }};
    --color-number: {{ s.c_number }};
    --color-text: {{ s.c_text }};
    background-color: var(--color-bg);
    font-family: 'Inter', system-ui, sans-serif;
  }

  #how-it-works-{{ sid }} .hitw-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 80px);
  }

  /* ── Überschrift ── */
  #how-it-works-{{ sid }} .hitw-header {
    text-align: center;
    margin-bottom: 48px;
  }

  #how-it-works-{{ sid }} .hitw-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin: 0 0 10px;
    color: var(--color-text);
  }

  #how-it-works-{{ sid }} .hitw-subtitle {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 520px;
    color: color-mix(in srgb, var(--color-text) 65%, transparent);
  }

  /* ── Desktop: Grid, Trigger ausblenden, Body immer sichtbar ── */
  #how-it-works-{{ sid }} .hitw-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: var(--col-gap);
    width: 100%;
  }

  #how-it-works-{{ sid }} .hitw-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  #how-it-works-{{ sid }} .hitw-card-trigger {
    display: none;
  }

  #how-it-works-{{ sid }} .hitw-card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  #how-it-works-{{ sid }} .hitw-num-circle {
    display: none;
  }

  #how-it-works-{{ sid }} .hitw-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    display: block;
  }

  #how-it-works-{{ sid }} .hitw-number {
    font-size: 72px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-top: 24px;
    margin-bottom: 0;
  }

  #how-it-works-{{ sid }} .hitw-heading {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.02em;
    margin-top: 12px;
    margin-bottom: 0;
  }

  #how-it-works-{{ sid }} .hitw-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin-top: 12px;
    margin-bottom: 0;
    color: color-mix(in srgb, var(--color-text) 70%, transparent);
  }

  /* ── Tablet ── */
  @media (max-width: 1023px) and (min-width: 768px) {
    #how-it-works-{{ sid }} .hitw-grid { column-gap: 36px; }
    #how-it-works-{{ sid }} .hitw-number { font-size: 60px; }
    #how-it-works-{{ sid }} .hitw-heading { font-size: 22px; }
    #how-it-works-{{ sid }} .hitw-description { font-size: 15px; }
  }

  /* ── Mobile: Accordion ── */
  @media (max-width: 767px) {
    #how-it-works-{{ sid }} {
      padding-top: 40px !important;
      padding-bottom: 40px !important;
    }

    #how-it-works-{{ sid }} .hitw-header {
      margin-bottom: 20px;
    }

    #how-it-works-{{ sid }} .hitw-title { font-size: 22px; }
    #how-it-works-{{ sid }} .hitw-subtitle { font-size: 13px; }

    #how-it-works-{{ sid }} .hitw-grid {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    #how-it-works-{{ sid }} .hitw-card {
      background: white;
      border-radius: 14px;
      border: 1px solid rgba(185,146,111,0.2);
      overflow: hidden;
    }

    #how-it-works-{{ sid }} .hitw-card-trigger {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 16px;
      cursor: pointer;
      width: 100%;
      background: none;
      border: none;
      text-align: left;
    }

    #how-it-works-{{ sid }} .hitw-num-circle {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      min-width: 34px;
      border-radius: 50%;
      background: linear-gradient(135deg, #C09870, #967052);
      color: white;
      font-size: 15px;
      font-weight: 800;
    }

    #how-it-works-{{ sid }} .hitw-trigger-label {
      flex: 1;
      font-size: 14px;
      font-weight: 700;
      color: #0A1620;
      letter-spacing: -0.01em;
    }

    #how-it-works-{{ sid }} .hitw-arrow {
      color: #C09870;
      font-size: 11px;
      transition: transform 0.25s ease;
      flex-shrink: 0;
    }

    #how-it-works-{{ sid }} .hitw-card.hitw-open .hitw-arrow {
      transform: rotate(180deg);
    }

    #how-it-works-{{ sid }} .hitw-card-body {
      display: none;
      padding: 0 16px 16px 16px;
    }

    #how-it-works-{{ sid }} .hitw-card.hitw-open .hitw-card-body {
      display: flex;
    }

    #how-it-works-{{ sid }} .hitw-image {
      height: 160px;
      border-radius: 10px;
    }

    #how-it-works-{{ sid }} .hitw-number {
      display: none;
    }

    #how-it-works-{{ sid }} .hitw-heading {
      font-size: 15px;
      margin-top: 10px;
    }

    #how-it-works-{{ sid }} .hitw-description {
      font-size: 13px;
      line-height: 1.55;
      margin-top: 6px;
      color: #7a6f6a;
    }
  }
/* END_SECTION:how-it-works */