 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --forest:       #2D4A2D;
      --forest-mid:   #3E6B3E;
      --forest-light: #5A8F5A;
      --forest-pale:  #C5D9C0;
      --beige:        #F5F0E8;
      --beige-warm:   #EDE5D5;
      --beige-deep:   #D4C4A8;
      --accent:       #8B6914;
      --accent-light: #C9A84C;
      --cream:        #FAF7F2;
      --text-dark:    #1A2A1A;
      --text-mid:     #3D5C3D;
      --text-muted:   #7A8C7A;
      --white:        #FFFFFF;
      --error:        #C0392B;
      --error-bg:     #FDF0EE;
      --error-border: #E8A89E;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      background: var(--beige-warm);
      color: var(--text-dark);
      overflow-x: hidden;
    }

    
    /* ════════════════════════
       PAGE WRAPPER
    ════════════════════════ */
    .page-body {
      min-height: 100vh;
      padding: 8rem 2rem 6rem;
      background: var(--beige-warm);
    }
    .page-inner {
      max-width: 1160px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 35% 1fr;
      gap: 4rem;
      align-items: start;
    }

    /* ════════════════════════
       TRUST PANEL — LEFT (35%)
    ════════════════════════ */
    .trust-panel {
      position: sticky;
      top: 7rem;
    }
    .trust-eyebrow {
      font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--forest-mid);
      display: flex; align-items: center; gap: 0.75rem;
      margin-bottom: 1.25rem;
    }
    
    .trust-heading {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.75rem, 2.5vw, 2.4rem);
      line-height: 1.2; color: var(--text-dark);
      margin-bottom: 1.1rem;
    }
    .trust-heading em { color: var(--forest); font-style: italic; }
    .trust-sub {
      font-size: 0.95rem; line-height: 1.8;
      color: var(--text-mid); font-weight: 300;
      margin-bottom: 2rem;
    }

    /* Founder card */
    .founder-card {
      background: var(--white);
      border-radius: 1.5rem;
      padding: 1.5rem;
      box-shadow: 0 8px 32px rgba(45,74,45,0.08);
      margin-bottom: 1.5rem;
    }
    .founder-card-inner { display: flex; gap: 1rem; align-items: center; }
    .founder-avatar {
      width: 52px; height: 52px; border-radius: 50%;
      background: var(--forest-pale);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.25rem; flex-shrink: 0;
    }
    .founder-name {
      font-size: 0.9rem; font-weight: 500; color: var(--text-dark);
      margin-bottom: 0.2rem;
    }
    .founder-title { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }
    .founder-quote {
      font-size: 0.85rem; line-height: 1.7;
      color: var(--text-mid); font-weight: 300;
      font-style: italic; margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid var(--beige-deep);
    }

    /* Trust points */
    .trust-points { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
    .trust-point {
      display: flex; align-items: flex-start; gap: 0.75rem;
      font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; font-weight: 300;
    }
    .trust-point-icon {
      width: 22px; height: 22px; border-radius: 50%;
      background: var(--forest); color: var(--white);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.6rem; flex-shrink: 0; margin-top: 0.1rem;
    }

    /* Time badge */
    .time-badge {
      display: inline-flex; align-items: center; gap: 0.6rem;
      font-size: 0.78rem; font-weight: 500; color: var(--forest);
      background: var(--forest-pale);
      padding: 0.55rem 1.1rem; border-radius: 2rem;
    }
    .time-badge::before {
      content: '⏱'; font-size: 0.85rem;
    }

    /* ════════════════════════
       FORM CARD — RIGHT (65%)
    ════════════════════════ */
    .form-card {
      background: var(--white);
      border-radius: 2rem;
      padding: 3rem 3rem 2.5rem;
      box-shadow: 0 20px 80px rgba(45,74,45,0.09);
    }

    /* Form header */
    .form-card-header { margin-bottom: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid var(--beige-deep); }
    .form-card-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.65rem; color: var(--text-dark);
      margin-bottom: 0.5rem;
    }
    .form-card-sub { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; font-weight: 300; }

    /* Section dividers within form */
    .form-section {
      margin-bottom: 2.5rem;
      padding-bottom: 2.5rem;
      border-bottom: 1px solid var(--beige);
    }
    .form-section:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

    .form-section-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.1rem; color: var(--text-dark);
      margin-bottom: 0.35rem;
    }
    .form-section-note {
      font-size: 0.78rem; color: var(--text-muted); font-weight: 300;
      margin-bottom: 1.5rem; line-height: 1.5;
    }

    /* Individual field groups */
    .form-group { margin-bottom: 1.4rem; }
    .form-group:last-child { margin-bottom: 0; }

    .form-label {
      font-size: 0.78rem; font-weight: 500; letter-spacing: 0.07em;
      text-transform: uppercase; color: var(--text-muted);
      display: flex; align-items: center; gap: 0.4rem;
      margin-bottom: 0.55rem;
    }
    .form-label .required-star { color: var(--error); font-size: 0.85rem; }
    .form-label .optional-tag {
      font-size: 0.65rem; font-weight: 400; letter-spacing: 0.08em;
      color: var(--text-muted); background: var(--beige);
      padding: 0.15rem 0.5rem; border-radius: 1rem; text-transform: uppercase;
    }

    .form-input, .form-select, .form-textarea {
      width: 100%; padding: 0.75rem 1rem;
      border: 1px solid #E0D8CC; border-radius: 0.75rem;
      font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
      color: var(--text-dark); background: var(--cream);
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none; line-height: 1.5;
    }
    .form-input:focus, .form-select:focus, .form-textarea:focus {
      border-color: var(--forest);
      box-shadow: 0 0 0 3px rgba(45,74,45,0.08);
    }
    .form-input.error, .form-select.error, .form-textarea.error {
      border-color: var(--error-border);
      background: var(--error-bg);
      box-shadow: 0 0 0 3px rgba(192,57,43,0.07);
    }
    .form-textarea { resize: vertical; min-height: 110px; }

    /* Two-col row for name + whatsapp */
    .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

    /* Inline error messages */
    .field-error {
      display: none;
      font-size: 0.76rem; color: var(--error);
      margin-top: 0.4rem; font-weight: 400;
      align-items: center; gap: 0.35rem;
    }
    .field-error.visible { display: flex; }
    .field-error::before { content: '⚠'; font-size: 0.7rem; }

    /* Checkbox pill rows */
    .checkbox-row {
      display: flex; flex-wrap: wrap; gap: 0.5rem;
    }
    .checkbox-pill {
      display: flex; align-items: center; gap: 0.4rem;
      font-size: 0.82rem; font-weight: 400;
      padding: 0.42rem 0.95rem;
      border-radius: 2rem;
      border: 1px solid var(--beige-deep);
      cursor: pointer; transition: all 0.18s;
      color: var(--text-mid);
      user-select: none;
      background: var(--cream);
    }
    .checkbox-pill input[type="checkbox"],
    .checkbox-pill input[type="radio"] { display: none; }
    .checkbox-pill:hover {
      border-color: var(--forest);
      color: var(--forest);
    }
    .checkbox-pill:has(input:checked) {
      background: var(--forest);
      color: var(--white);
      border-color: var(--forest);
    }
    /* Error state for pill group */
    .checkbox-row.error-group .checkbox-pill {
      border-color: var(--error-border);
      background: var(--error-bg);
    }
    .checkbox-row.error-group .checkbox-pill:has(input:checked) {
      background: var(--forest); border-color: var(--forest); color: var(--white);
    }

    /* Radio pill rows — same visual treatment, single-select feel */
    .radio-row {
      display: flex; flex-wrap: wrap; gap: 0.5rem;
    }
    .radio-pill {
      display: flex; align-items: center; gap: 0.4rem;
      font-size: 0.82rem; font-weight: 400;
      padding: 0.42rem 0.95rem;
      border-radius: 2rem;
      border: 1px solid var(--beige-deep);
      cursor: pointer; transition: all 0.18s;
      color: var(--text-mid);
      user-select: none;
      background: var(--cream);
    }
    .radio-pill input[type="radio"] { display: none; }
    .radio-pill:hover { border-color: var(--forest); color: var(--forest); }
    .radio-pill:has(input:checked) {
      background: var(--forest); color: var(--white); border-color: var(--forest);
    }

    /* Consent block */
    .consent-block {
      background: var(--beige);
      border-radius: 0.75rem;
      padding: 1.1rem 1.25rem;
      margin-bottom: 1.5rem;
    }
    .consent-text {
      font-size: 0.8rem; color: var(--text-muted);
      line-height: 1.75; font-weight: 300;
    }
    .consent-text a { color: var(--forest); text-decoration: underline; }
    .consent-text a:hover { color: var(--accent); }

    /* Submit button */
    .form-submit {
      width: 100%; padding: 1.1rem 2rem;
      background: var(--forest); color: var(--white);
      border: none; border-radius: 3rem;
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem; font-weight: 500;
      cursor: pointer; transition: background 0.2s, transform 0.2s;
      display: flex; align-items: center; justify-content: center; gap: 0.6rem;
      letter-spacing: 0.02em;
    }
    .form-submit:hover { background: var(--forest-mid); transform: translateY(-1px); }
    .form-submit:disabled { background: var(--text-muted); cursor: not-allowed; transform: none; }

    .form-submit-note {
      text-align: center; margin-top: 0.85rem;
      font-size: 0.78rem; color: var(--text-muted); line-height: 1.6;
    }

    /* Top-level validation banner */
    .form-error-banner {
      display: none;
      background: var(--error-bg);
      border: 1px solid var(--error-border);
      border-radius: 0.85rem;
      padding: 1rem 1.25rem;
      margin-bottom: 1.75rem;
      font-size: 0.85rem; color: var(--error);
      line-height: 1.65;
    }
    .form-error-banner.visible { display: block; }
    .form-error-banner strong { font-weight: 500; }

    /* ════════════════════════
       SUCCESS CONFIRMATION
    ════════════════════════ */
    .form-success {
      display: none;
      text-align: center;
      padding: 4rem 2rem;
    }
    .form-success.visible { display: block; }
    .success-icon {
      width: 72px; height: 72px; border-radius: 50%;
      background: var(--forest);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.75rem; margin: 0 auto 1.75rem;
    }
    .success-heading {
      font-family: 'Playfair Display', serif;
      font-size: 1.75rem; color: var(--text-dark);
      margin-bottom: 1rem;
    }
    .success-body {
      font-size: 0.95rem; color: var(--text-mid);
      line-height: 1.8; max-width: 480px; margin: 0 auto 2rem;
      font-weight: 300;
    }
    .success-link {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: var(--forest); color: var(--white);
      padding: 0.85rem 1.75rem; border-radius: 3rem;
      font-size: 0.9rem; font-weight: 500; text-decoration: none;
      transition: background 0.2s;
    }
    .success-link:hover { background: var(--forest-mid); }

    
    /* ════════════════════════
       RESPONSIVE
    ════════════════════════ */
    @media (max-width: 1024px) {
      
    }
    @media (max-width: 768px) {
      
      .page-body { padding: 6rem 1.25rem 4rem; }
      .page-inner { grid-template-columns: 1fr; gap: 2rem; }
      .trust-panel { position: static; }
      .form-card { padding: 2rem 1.5rem; }
      .form-row-2 { grid-template-columns: 1fr; }
      
    }