
  /* =============================================
     FREE TASTE — Section 3
     CIALDINI: Reciprocity — free sample / free resource
     CIALDINI: Commitment & Consistency — once they download 
     they feel connected and are more likely to buy
  ============================================= */
  .free-taste {
    background: var(--rose-light);
    padding: 5rem 8vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--rose);
    border: 1px solid var(--rose);
    padding: 0.35rem 0.9rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
  }

  .section-tag.sage { color: var(--sage-dark); border-color: var(--sage-dark); }
  .section-tag.gold { color: var(--gold); border-color: var(--gold); }
  .section-tag.forest { color: var(--forest); border-color: var(--forest); }

  .section-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--forest);
    margin-bottom: 1rem;
  }

  .section-headline em { font-style: italic; color: var(--rose); }

  .section-body {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--slate);
    margin-bottom: 1.8rem;
  }

  .freebie-card {
    background: var(--white);
    border-radius: 4px;
    padding: 2.5rem;
    box-shadow: 0 8px 40px rgba(44,62,45,0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .freebie-card::before {
    content: 'FREE';
    position: absolute;
    top: 1.2rem;
    right: -1.5rem;
    background: var(--rose);
    color: white;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    padding: 0.3rem 2.5rem;
    transform: rotate(45deg);
  }

  .freebie-icon {
    width: 72px;
    height: 72px;
    background: var(--rose-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.8rem;
  }

  .freebie-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--forest);
    margin-bottom: 0.6rem;
  }

  .freebie-desc {
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  .email-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  .email-form input[type="email"] {
    border: 1px solid var(--ivory-dark);
    border-radius: 2px;
    padding: 0.85rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-main);
    background: var(--ivory);
    outline: none;
    transition: border-color 0.2s;
  }

  .email-form input[type="email"]:focus { border-color: var(--sage); }

  .email-form .btn-primary { width: 100%; text-align: center; }

  .form-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
  }