/* Existing form and checkout components, isolated for the new landing. */
  /* Right — form card */
  .hero-form-card {
    background: white;
    border-radius: 28px;
    padding: 48px 40px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.12);
    border: 2px solid #b8e8ff;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero-form-card h2 {
    font-size: 30px;
    font-weight: 900;
    color: var(--navy);
    text-align: center;
    line-height: 1.2;
    margin-bottom: 26px;
  }
  .form-field {
    width: 100%;
    background: #f0f2f5;
    border: 2px solid transparent;
    border-radius: 50px;
    padding: 16px 24px;
    font-family: 'HelveticaNeue', Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 16px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
  }
  .form-field:focus { border-color: #b8e8ff; background: white; }
  .form-field::placeholder { color: #aaa; }
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .phone-field {
    width: 100%;
    min-height: 58px;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 50px;
    background: #f0f2f5;
    transition: border-color .2s, background .2s;
  }
  .phone-field:focus-within {
    border-color: #b8e8ff;
    background: #fff;
  }
  .phone-field.invalid {
    border-color: #ef8b8b;
    background: #fff7f7;
    margin-bottom: 4px;
  }
  .phone-country {
    position: relative;
    flex: 0 0 72px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(15,34,64,.1);
  }
  .phone-country-select {
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--navy);
    cursor: pointer;
    font-size: 21px;
    text-align: center;
    text-align-last: center;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  }
  .phone-prefix {
    width: 44px;
    flex: 0 0 44px;
    height: 54px;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--navy);
    font: 900 18px "HelveticaNeue", Arial, sans-serif;
    text-align: right;
  }
  .phone-local-input {
    min-width: 0;
    flex: 1;
    height: 54px;
    padding: 0 18px 0 7px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--navy);
    font: 800 17px "HelveticaNeue", Arial, sans-serif;
  }
  .phone-local-input::placeholder { color: #929292; }
  .phone-error {
    display: none;
    margin: 0 18px 10px;
    color: #c74646;
    font-size: 12px;
    font-weight: 800;
  }
  .phone-field.invalid + .phone-error { display: block; }
  .consent-field {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 0 4px 20px;
    color: #687386;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    text-align: left;
  }
  .consent-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  .consent-mark {
    width: 23px;
    height: 23px;
    flex: 0 0 23px;
    display: grid;
    place-items: center;
    border: 2px solid #cbd3dd;
    border-radius: 7px;
    background: #fff;
    transition: background .18s, border-color .18s, box-shadow .18s;
  }
  .consent-checkbox:checked + .consent-mark {
    border-color: var(--orange);
    background: var(--orange);
  }
  .consent-checkbox:checked + .consent-mark::after {
    content: "✓";
    color: #fff;
    font-size: 16px;
    font-weight: 900;
  }
  .consent-checkbox:focus-visible + .consent-mark {
    box-shadow: 0 0 0 4px rgba(244,99,42,.18);
  }
  .consent-field a {
    color: var(--navy);
    text-underline-offset: 3px;
  }
  .form-privacy {
    font-size: 13px;
    color: #999;
    font-weight: 600;
    text-align: center;
    margin: 16px 0 24px;
    line-height: 1.6;
  }
  .form-privacy a { color: var(--navy); }
  .btn-form {
    width: 100%;
    background: var(--orange);
    color: white;
    border: none;
    padding: 20px;
    border-radius: 50px;
    font-family: 'HelveticaNeue', Arial, sans-serif;
    font-weight: 900;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 24px rgba(244,99,42,0.4);
  }
  .btn-form:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(244,99,42,0.5); }

  .lead-status {
    margin-top: 12px;
    min-height: 44px;
    border-radius: 14px;
    padding: 11px 13px;
    display: none;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
  }
  .lead-status.show { display: flex; }
  .lead-status.loading {
    background: #eef5ff;
    border: 1px solid #cfe3ff;
    color: #214f86;
  }
  .lead-status.error {
    background: #fff2f2;
    border: 1px solid #ffd2d2;
    color: #a92e2e;
  }
  .lead-status.success {
    background: #16633d;
    border: 1px solid #0f482c;
    color: #ffffff;
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(22,99,61,0.25);
  }
  .lead-status .icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 900;
    margin-top: 1px;
  }
  .lead-status.loading .icon { background: #dbe9ff; color: #2761a0; }
  .lead-status.error .icon { background: #ffdede; color: #b53030; }
  .lead-status.success .icon {
    background: #ffffff;
    color: #16633d;
    animation: statusPop 0.35s ease-out, statusPulse 1.1s ease-out 0.35s 1;
  }
  .lead-capture-form.success .field-group,
  .lead-capture-form.success .form-field,
  .lead-capture-form.success .phone-field,
  .lead-capture-form.success .phone-error,
  .lead-capture-form.success .consent-field,
  .lead-capture-form.success .form-privacy,
  .lead-capture-form.success .required-note,
  .lead-capture-form.success .btn-form,
  .lead-capture-form.success .lead-status {
    display: none !important;
  }
  .lead-social-success {
    display: none;
    margin-top: 0;
    padding: 24px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(4, 0, 45, 0.06);
  }
  .lead-capture-form.success .lead-social-success {
    display: block !important;
    animation: fadeUp 0.35s ease-out;
  }
  .lead-success-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 16px;
  }
  .lead-success-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .lead-success-title {
    font: 700 20px/1.2 Gilroy, Arial, sans-serif;
    color: var(--navy, #04002d);
    margin: 0 0 3px 0;
  }
  .lead-success-subtitle {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
  }
  .lead-success-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }
  .lead-success-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f8fafc;
    border-radius: 12px;
    padding: 12px 14px;
    border: 1px solid #edf2f7;
  }
  .lead-success-item .item-icon {
    font-size: 18px;
    line-height: 1.2;
    flex-shrink: 0;
    margin-top: 1px;
  }
  .lead-success-item .item-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .lead-success-item strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy, #04002d);
  }
  .lead-success-item span {
    font-size: 13px;
    line-height: 1.45;
    color: #5f6676;
  }
  .lead-success-footer {
    margin-top: 4px;
  }
  .btn-telegram-channel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    background: #229ed9;
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgba(34, 158, 217, 0.25);
    border: none;
  }
  .btn-telegram-channel:hover {
    background: #1d8abf;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(34, 158, 217, 0.35);
    color: #ffffff !important;
    text-decoration: none !important;
  }
  @keyframes statusPop {
    0% { transform: scale(0.5); opacity: 0; }
    70% { transform: scale(1.12); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
  }
  @keyframes statusPulse {
    0% { box-shadow: 0 0 0 0 rgba(47,190,108,0.38); }
    100% { box-shadow: 0 0 0 14px rgba(47,190,108,0); }
  }

  .lead-modal {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.55);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1200;
    padding: 18px;
  }
  .lead-modal.open { display: flex; }
  .lead-modal-card {
    width: min(560px, 100%);
    max-height: 92vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 24px;
    border: 2px solid #b8e8ff;
    box-shadow: 0 28px 70px rgba(0,0,0,0.28);
    padding: 30px 24px 24px;
    position: relative;
  }
  .lead-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: none;
    background: #eef2f7;
    color: var(--navy);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    font-weight: 700;
  }
  .lead-modal-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--navy);
    text-align: center;
    line-height: 1.15;
    margin: 2px 0 24px;
  }
  body.modal-open { overflow: hidden; }

  .paywall-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,34,64,.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
  }
  .paywall-overlay.open { opacity: 1; pointer-events: auto; }
  .paywall-modal {
    background: #fff;
    border: 1.5px solid rgba(15,34,64,.08);
    border-radius: 28px;
    width: 520px;
    max-width: 95vw;
    max-height: 90vh;
    box-shadow: 0 20px 50px rgba(15,34,64,.12);
    padding: 36px 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    font-family: 'HelveticaNeue', Arial, sans-serif;
    animation: paywallSlide .3s cubic-bezier(.34,1.56,.64,1);
  }
  @keyframes paywallSlide { from { transform: translateY(20px) scale(.96); opacity: 0; } to { transform: translateY(0) scale(1); opacity: 1; } }
  .paywall-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f5f9;
    border: none;
    cursor: pointer;
    display: grid;
    place-items: center;
    font-size: 14px;
    color: #64748b;
    transition: all .2s;
    z-index: 10;
  }
  .paywall-close:hover { background: #e2e8f0; color: #334155; }
  .paywall-header { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 24px; }
  .paywall-crown-container { display: flex; flex-direction: column; align-items: center; margin-bottom: 12px; }
  .paywall-crown-emoji { font-size: 42px; line-height: 1; filter: drop-shadow(0 4px 10px rgba(249,200,70,.45)); margin-bottom: 6px; animation: paywallFloat 3s ease-in-out infinite; }
  @keyframes paywallFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
  .paywall-brand { font-size: 32px; font-weight: 900; color: var(--navy); letter-spacing: -.5px; display: flex; align-items: center; justify-content: center; }
  .paywall-brand em { font-family: 'Gochi Hand', cursive; font-style: normal; color: var(--orange); }
  .paywall-brand .plus-sign { font-weight: 900; color: var(--orange); margin-left: 2px; font-size: 28px; }
  .paywall-title { font-size: 24px; font-weight: 900; color: var(--navy); margin-bottom: 6px; }
  .paywall-subtitle { font-size: 14px; font-weight: 700; color: #71819a; line-height: 1.5; }
  .paywall-options { width: 100%; margin-bottom: 16px; display: flex; flex-direction: column; gap: 12px; }
  .paywall-option {
    width: 100%;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 18px 20px;
    cursor: pointer;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: inherit;
    text-align: left;
  }
  .paywall-option:hover { border-color: #cbd5e1; box-shadow: 0 6px 16px rgba(15,34,64,.06); }
  .paywall-option.selected { border-color: var(--orange); background: linear-gradient(180deg,#fff 0%,rgba(244,99,42,.02) 100%); box-shadow: 0 8px 24px rgba(244,99,42,.12); }
  .paywall-option-info { display: flex; flex-direction: column; flex: 1; }
  .paywall-option-title { font-size: 17px; font-weight: 900; color: var(--navy); display: flex; align-items: center; gap: 6px; }
  .paywall-badge { background: var(--orange); color: #fff; font-size: 11px; font-weight: 900; padding: 3px 8px; border-radius: 99px; text-transform: uppercase; box-shadow: 0 4px 10px rgba(244,99,42,.2); }
  .paywall-option-sub { font-size: 13px; font-weight: 700; color: #71819a; margin-top: 4px; }
  .paywall-option-right { display: flex; align-items: center; gap: 16px; }
  .paywall-option-price { text-align: right; font-size: 18px; font-weight: 900; color: var(--navy); }
  .paywall-option-period { display: block; font-size: 12px; font-weight: 700; color: #71819a; }
  .paywall-radio-checkmark { width: 22px; height: 22px; border-radius: 50%; border: 2px solid #cbd5e1; display: flex; align-items: center; justify-content: center; transition: all .2s; flex-shrink: 0; color: #fff; }
  .paywall-option.selected .paywall-radio-checkmark { border-color: var(--orange); background: var(--orange); }
  .paywall-promo-link { font: 800 13px 'HelveticaNeue', Arial, sans-serif; color: var(--orange); text-decoration: none; cursor: pointer; margin: 0 0 16px; text-align: center; display: block; background: none; border: none; }
  .paywall-promo-link:hover { text-decoration: underline; }
  .paywall-promo-container { display: none; width: 100%; margin-bottom: 16px; gap: 8px; }
  .paywall-promo-container.open { display: flex; }
  .paywall-promo-input { flex: 1; min-width: 0; min-height: 42px; padding: 10px 14px; border-radius: 12px; border: 1.5px solid var(--gray2); font-family: inherit; font-size: 14px; font-weight: 750; text-transform: uppercase; }
  .paywall-promo-input:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 4px rgba(244,99,42,.1); }
  .paywall-promo-btn { min-height: 42px; padding: 0 18px; border-radius: 12px; background: var(--navy); color: #fff; border: none; font-size: 13px; font-weight: 900; cursor: pointer; }
  .paywall-promo-status { display: none; font-size: 12px; font-weight: 800; margin-top: -8px; margin-bottom: 16px; width: 100%; text-align: left; }
  .paywall-benefits { width: 100%; background: rgba(15,34,64,.02); border-radius: 20px; border: 1px solid rgba(15,34,64,.05); padding: 20px; margin-bottom: 24px; display: flex; flex-direction: column; gap: 14px; }
  .paywall-benefit-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; font-weight: 800; color: var(--navy); line-height: 1.4; }
  .paywall-benefit-icon { font-size: 18px; width: 28px; height: 28px; background: #fff; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 2px 6px rgba(15,34,64,.05); }
  .paywall-benefit-text { flex: 1; }
  .paywall-benefit-title { font-weight: 900; color: var(--navy); margin-bottom: 2px; }
  .paywall-benefit-desc { font-size: 12.5px; font-weight: 600; color: #71819a; }
  .paywall-btn {
    width: 100%;
    padding: 16px;
    border-radius: 16px;
    border: none;
    background: linear-gradient(135deg,var(--orange) 0%,#ff7a45 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(244,99,42,.35);
    transition: all .2s cubic-bezier(.4,0,.2,1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'HelveticaNeue', Arial, sans-serif;
  }
  .paywall-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(244,99,42,.45); }
  .paywall-btn:disabled { background: #cbd5e1; color: #94a3b8; box-shadow: none; cursor: not-allowed; }

  .btn-primary {
    background: var(--orange);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-family: 'HelveticaNeue', Arial, sans-serif;
    font-weight: 800;
    font-size: 17px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 24px rgba(244,99,42,0.45);
    text-decoration: none;
  }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(244,99,42,0.5); }
  .btn-ghost {
    color: var(--navy);
    font-weight: 700;
    font-size: 16px;
    opacity: 0.6;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s;
  }
  .btn-ghost:hover { opacity: 1; }

