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

    :root {
      --green-cta: #8FB927;
      --green-cta-hover: #7DA521;
      --gray-bg: #F5F6F8;
      --dark-text: #2D2D2D;
      --medium-text: #555;
      --input-bg: #F0F0F0;
      --input-border: #E0E0E0;
      --white: #FFFFFF;
      --shadow: 0 8px 32px rgba(0,0,0,0.08);
      --red: #E53935;
    }

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

    body {
      font-family: 'Nunito', sans-serif;
      background-color: var(--gray-bg);
      color: var(--dark-text);
      min-height: 100vh;
      position: relative;
      overflow-x: hidden;
    }

    /* ── Paw background ── */
    .bg-pattern { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
    .bg-pattern svg { position: absolute; opacity: 0.06; }

    /* ── Main ── */
    .landing {
      position: relative; z-index: 1;
      display: flex; align-items: center; justify-content: center;
      min-height: 100vh; padding: 60px 40px;
    }
    .landing__inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 60px; max-width: 1200px; width: 100%; align-items: center;
    }

    /* ── Left Column ── */
    .info-col { display: flex; flex-direction: column; gap: 24px; }
    .logo-placeholder img {
      width: 180px; border-radius: 8px;
      filter: drop-shadow(0 2px 6px rgba(0,0,0,0.12));
    }
    .info-col h1 {
      font-weight: 900; font-size: 2.8rem; line-height: 1.15; letter-spacing: -0.5px;
    }
    .info-col p { font-size: 1rem; line-height: 1.7; color: var(--medium-text); max-width: 480px; }

    .contact-list { display: flex; flex-direction: column; gap: 20px; margin-top: 16px; }
    .contact-item { display: flex; align-items: center; gap: 16px; }
    .contact-icon {
      width: 48px; height: 48px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .contact-icon svg {
      width: 26px; height: 26px; stroke: var(--dark-text);
      fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
    }
    .contact-info small { display: block; font-size: 0.8rem; color: var(--medium-text); margin-bottom: 2px; }
    .contact-info strong { font-size: 0.95rem; font-weight: 700; letter-spacing: 0.3px; }

    /* ── Right Column / Form Card ── */
    .form-col { display: flex; justify-content: center; }
    .form-card {
      background: var(--white); border-radius: 20px; overflow: hidden;
      box-shadow: var(--shadow); width: 100%; max-width: 500px;
    }
    .form-card__image { width: 100%; height: 260px; object-fit: cover; display: block; }

    .form-body { padding: 32px 32px 36px; }
    .form-group { margin-bottom: 16px; }
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"] {
      width: 100%; padding: 14px 18px;
      background: var(--input-bg); border: 1.5px solid var(--input-border);
      border-radius: 10px; font-family: 'Nunito', sans-serif;
      font-size: 0.95rem; color: var(--dark-text); outline: none;
      transition: border-color 0.25s, box-shadow 0.25s;
    }
    .form-group input::placeholder { color: #AAA; }
    .form-group input:focus {
      border-color: var(--green-cta);
      box-shadow: 0 0 0 3px rgba(143,185,39,0.15);
    }
    .form-group input.input-error {
      border-color: var(--red);
      box-shadow: 0 0 0 3px rgba(229,57,53,0.12);
    }
    .error-msg { color: var(--red); font-size: 0.78rem; margin-top: 5px; display: none; }

    /* Honeypot */
    .hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; pointer-events: none; }

    /* Radio */
    .radio-group { margin-top: 20px; margin-bottom: 24px; }
    .radio-group label.radio-title { display: block; font-weight: 700; font-size: 0.95rem; margin-bottom: 12px; }
    .radio-options { display: flex; gap: 24px; flex-wrap: wrap; }
    .radio-option {
      display: flex; align-items: center; gap: 8px;
      cursor: pointer; font-size: 0.9rem; color: var(--medium-text);
    }
    .radio-option input[type="radio"] {
      appearance: none; -webkit-appearance: none;
      width: 20px; height: 20px; border: 2px solid #CCC;
      border-radius: 50%; cursor: pointer; transition: all 0.2s; position: relative; flex-shrink: 0;
    }
    .radio-option input[type="radio"]:checked { border-color: var(--green-cta); }
    .radio-option input[type="radio"]:checked::after {
      content: ''; position: absolute; width: 10px; height: 10px;
      background: var(--green-cta); border-radius: 50%;
      top: 50%; left: 50%; transform: translate(-50%,-50%);
    }
    .radio-option span { user-select: none; }

    /* CTA */
    .btn-cta {
      display: flex; align-items: center; justify-content: center; gap: 10px;
      width: fit-content; margin: 0 auto; padding: 14px 40px;
      background: var(--green-cta); color: white; border: none; border-radius: 50px;
      font-family: 'Nunito', sans-serif; font-size: 0.9rem; font-weight: 700;
      letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer;
      transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
      box-shadow: 0 4px 16px rgba(143,185,39,0.35);
    }
    .btn-cta:hover { background: var(--green-cta-hover); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(143,185,39,0.45); }
    .btn-cta:active { transform: translateY(0); }
    .btn-cta:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
    .btn-cta svg.btn-star { width: 18px; height: 18px; }

    .btn-spinner {
      width: 18px; height: 18px;
      border: 2.5px solid rgba(255,255,255,0.3); border-top-color: #fff;
      border-radius: 50%; animation: spin 0.6s linear infinite; display: none;
    }
    @keyframes spin { to { transform: rotate(360deg); } }

    /* ══════════════════════════════
       MODAL
    ══════════════════════════════ */
    .modal-overlay {
      display: none; position: fixed; inset: 0;
      background: rgba(0,0,0,0.45); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
      z-index: 1000; align-items: center; justify-content: center; padding: 20px;
    }
    .modal-overlay.active { display: flex; animation: fadeIn 0.3s ease; }

    .modal-card {
      background: var(--white); border-radius: 24px; padding: 48px 40px;
      max-width: 420px; width: 100%; text-align: center;
      box-shadow: 0 24px 64px rgba(0,0,0,0.18);
      animation: scaleIn 0.35s cubic-bezier(0.34,1.56,0.64,1);
      position: relative;
    }

    .modal-icon {
      width: 80px; height: 80px;
      background: linear-gradient(135deg, var(--green-cta), #a8d44a);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      margin: 0 auto 24px;
      box-shadow: 0 8px 24px rgba(143,185,39,0.3);
    }
    .modal-icon svg { width: 38px; height: 38px; stroke: white; stroke-width: 2.5; fill: none; }

    .modal-card h3 { font-weight: 900; font-size: 1.5rem; margin-bottom: 12px; }
    .modal-card p { font-size: 0.95rem; line-height: 1.6; color: var(--medium-text); margin-bottom: 28px; }

    .modal-paw {
      font-size: 2.5rem; margin-bottom: 8px; display: block;
      animation: pawBounce 0.6s ease 0.3s both;
    }

    .modal-btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 40px; background: var(--green-cta); color: white;
      border: none; border-radius: 50px; font-family: 'Nunito', sans-serif;
      font-size: 0.9rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
      cursor: pointer; transition: all 0.3s;
      box-shadow: 0 4px 16px rgba(143,185,39,0.35);
    }
    .modal-btn:hover { background: var(--green-cta-hover); transform: translateY(-2px); }

    /* Error variant */
    .modal-card.error .modal-icon {
      background: linear-gradient(135deg, #E53935, #FF7043);
      box-shadow: 0 8px 24px rgba(229,57,53,0.3);
    }
    .modal-card.error .modal-btn { background: #E53935; box-shadow: 0 4px 16px rgba(229,57,53,0.35); }
    .modal-card.error .modal-btn:hover { background: #C62828; }

    .modal-close {
      position: absolute; top: 16px; right: 16px;
      width: 32px; height: 32px; border-radius: 50%; border: none;
      background: var(--input-bg); cursor: pointer;
      display: flex; align-items: center; justify-content: center; transition: background 0.2s;
    }
    .modal-close:hover { background: #ddd; }
    .modal-close svg { width: 16px; height: 16px; stroke: var(--medium-text); stroke-width: 2; fill: none; }

    /* ── Animations ── */
    @keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
    @keyframes scaleIn { from { opacity: 0; transform: scale(0.85) } to { opacity: 1; transform: scale(1) } }
    @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px) } to { opacity: 1; transform: translateY(0) } }
    @keyframes fadeInRight { from { opacity: 0; transform: translateX(40px) } to { opacity: 1; transform: translateX(0) } }
    @keyframes pawBounce { 0% { opacity:0; transform: scale(0) rotate(-20deg) } 60% { transform: scale(1.2) rotate(5deg) } 100% { opacity:1; transform: scale(1) rotate(0) } }

    .info-col { animation: fadeInUp 0.8s ease-out both; }
    .form-col { animation: fadeInRight 0.8s ease-out 0.2s both; }

    /* ── Responsive ── */
    @media (max-width: 900px) {
      .landing { padding: 40px 20px; }
      .landing__inner { grid-template-columns: 1fr; gap: 36px; }
      .info-col h1 { font-size: 2rem; }
      .contact-list { flex-direction: row; flex-wrap: wrap; gap: 24px; }
      .form-card { max-width: 100%; }
      .form-body { padding: 24px 20px 28px; }
      .modal-card { padding: 36px 24px; }
    }
    @media (max-width: 480px) {
      .info-col h1 { font-size: 1.7rem; }
      .info-col p { font-size: 0.9rem; }
      .radio-options { gap: 16px; }
      .btn-cta { width: 100%; }
    }