 :root {
      --purple: #cb2c2c;
      --purple-dark: #5b21b6;
      --purple-light: #ede9fe;
      --purple-border: #ddd6fe;
      --green: #16a34a;
      --green-light: #dcfce7;
      --gray-100: #f8f7ff;
      --gray-200: #e5e7eb;
      --gray-400: #9ca3af;
      --gray-600: #6b7280;
      --gray-800: #1f2937;
      --radius: 14px;
    }
    *, *::before, *::after { box-sizing: border-box; }
    body {
      font-family: 'Manrope', sans-serif;
      background: #f5f3ff;
      min-height: 100vh;
      color: var(--gray-800);
      margin: 0;
    }

    /* ========== NAVBAR ========== */
    .navbar {
      background: #fff;
      border-bottom: 1px solid var(--gray-200);
      padding: 12px 0;
      position: sticky; top: 0; z-index: 100;
    }
    .navbar-brand {
      display: flex; align-items: center; gap: 10px;
      text-decoration: none;
    }
    .brand-icon {
      width: 38px; height: 38px;
      background: var(--purple);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 18px;
    }
    .brand-text { line-height: 1.1; }
    .brand-text .top { font-family: 'Fraunces', serif; font-weight: 900; font-size: 1rem; color: var(--purple); }
    .brand-text .bot { font-size: 0.72rem; color: var(--gray-600); font-weight: 500; }
    .nav-links { display: flex; align-items: center; gap: 4px; }
    .nav-links a { color: var(--gray-800); font-weight: 600; font-size: 0.9rem; padding: 6px 14px; border-radius: 8px; text-decoration: none; transition: background 0.2s; }
    .nav-links a:hover { background: var(--purple-light); color: var(--purple); }
    .lang-wrap { display: flex; gap: 4px; }
    .lang-btn { border: 2px solid var(--gray-200); background: #fff; border-radius: 8px; padding: 4px 10px; font-weight: 700; font-size: 0.8rem; cursor: pointer; color: var(--gray-800); transition: all 0.2s; }
    .lang-btn.active { background: var(--purple); color: #fff; border-color: var(--purple); }
    .call-btn-nav {
      background: var(--purple); color: #fff; border: none;
      border-radius: 10px; padding: 8px 16px;
      font-weight: 700; font-size: 0.86rem;
      display: flex; align-items: center; gap: 6px;
      text-decoration: none; transition: background 0.2s;
    }
    .call-btn-nav:hover { background: var(--purple-dark); color: #fff; }

    /* ========== MAIN CONTENT ========== */
    .main-wrap { padding: 48px 16px 60px; }

    .page-title {
      font-family: 'Fraunces', serif;
      font-size: clamp(2rem, 5vw, 2.8rem);
      font-weight: 900;
      text-align: center;
      margin-bottom: 10px;
    }
    .page-title span {
      background: #cb2c2c;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .page-subtitle { text-align: center; color: var(--gray-600); font-size: 1rem; margin-bottom: 24px; }

    .trust-row {
      display: flex; align-items: center; justify-content: center;
      gap: 24px; flex-wrap: wrap; margin-bottom: 36px;
    }
    .trust-item { display: flex; align-items: center; gap: 7px; font-size: 0.88rem; font-weight: 600; color: var(--gray-600); }
    .trust-item i { color: var(--green); font-size: 17px; }

    /* ========== CARD ========== */
    .form-card {
      background: #fff;
      border: 2px solid var(--purple-border);
      border-radius: 18px;
      max-width: 760px;
      margin: 0 auto;
      overflow: hidden;
      box-shadow: 0 8px 48px rgba(124,58,237,0.09);
    }
    .card-header-strip {
      background: linear-gradient(90deg, #f5f3ff, #eff6ff);
      border-bottom: 1.5px solid var(--purple-border);
      padding: 22px 28px 16px;
    }
    .card-header-strip h3 { font-family: 'Fraunces', serif; font-size: 1.35rem; font-weight: 900; margin-bottom: 4px; }
    .card-header-strip p { color: var(--gray-600); font-size: 0.86rem; margin: 0; }

    .card-body-pad { padding: 28px 28px 24px; }

    /* ========== STEPPER ========== */
    .stepper { display: flex; align-items: flex-start; margin-bottom: 32px; }
    .step-wrap { display: flex; align-items: center; flex: 1; }
    .step-wrap:last-child { flex: 0; }
    .step-circle {
      width: 42px; height: 42px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-weight: 800; font-size: 0.95rem;
      border: 2.5px solid var(--gray-200);
      background: #fff; color: var(--gray-400);
      flex-shrink: 0;
      transition: all 0.3s;
    }
    .step-circle.done { background: var(--green); border-color: var(--green); color: #fff; }
    .step-circle.active { background: var(--purple); border-color: var(--purple); color: #fff; }
    .step-line {
      flex: 1; height: 4px; border-radius: 4px;
      background: var(--gray-200); margin: 0 6px;
      transition: background 0.3s;
    }
    .step-line.done { background: var(--green); }
    .step-labels { display: flex; justify-content: space-between; margin-top: 6px; margin-bottom: 24px; }
    .step-label {
      font-size: 0.72rem; font-weight: 600; color: var(--gray-400);
      text-align: center; flex: 1;
      transition: color 0.3s;
    }
    .step-label.active { color: var(--purple); }
    .step-label.done { color: var(--green); }

    /* ========== FORM FIELDS ========== */
    .field-group { margin-bottom: 18px; }
    .field-group label { font-size: 0.88rem; font-weight: 700; color: var(--gray-800); display: block; margin-bottom: 6px; }
    .field-group input, .field-group select, .field-group textarea {
      width: 100%;
      border: 1.5px solid var(--gray-200);
      border-radius: 10px;
      padding: 12px 14px;
      font-family: 'Manrope', sans-serif;
      font-size: 0.92rem;
      color: var(--gray-800);
      background: #fff;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      appearance: none;
      -webkit-appearance: none;
    }
    .field-group input:focus, .field-group select:focus, .field-group textarea:focus {
      border-color: var(--purple);
      box-shadow: 0 0 0 3px rgba(124,58,237,0.1);
    }
    .field-group .hint { font-size: 0.77rem; color: var(--gray-400); margin-top: 4px; }
    .field-group .err { font-size: 0.77rem; color: #dc2626; margin-top: 4px; display: none; }
    .field-group.has-error input,
    .field-group.has-error select,
    .field-group.has-error textarea { border-color: #dc2626; }
    .field-group.has-error .err { display: block; }

    .select-wrap { position: relative; }
    .select-wrap::after {
      content: '\f078';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
      color: var(--gray-400); pointer-events: none; font-size: 12px;
    }

    .details-box {
      background: #faf7ff;
      border: 2px solid var(--purple-border);
      border-radius: 12px;
      padding: 22px;
      margin-bottom: 20px;
    }
    .details-box h4 { font-weight: 800; font-size: 1.05rem; margin-bottom: 16px; }

    /* ========== FOOTER BUTTONS ========== */
    .step-footer {
      display: flex; justify-content: space-between; align-items: center;
      border-top: 1.5px solid var(--gray-200);
      padding-top: 22px; margin-top: 28px;
    }
    .btn-back {
      background: #fff; color: var(--gray-800);
      border: 1.5px solid var(--gray-200);
      border-radius: 10px; padding: 11px 24px;
      font-family: 'Manrope', sans-serif;
      font-weight: 700; font-size: 0.9rem;
      cursor: pointer;
      display: flex; align-items: center; gap: 8px;
      transition: all 0.2s;
    }
    .btn-back:hover { border-color: var(--purple); color: var(--purple); }
    .btn-continue {
      background: var(--purple); color: #fff;
      border: none; border-radius: 10px;
      padding: 12px 32px;
      font-family: 'Manrope', sans-serif;
      font-weight: 800; font-size: 0.95rem;
      cursor: pointer;
      display: flex; align-items: center; gap: 8px;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-continue:hover { background: var(--purple-dark); transform: translateY(-1px); }

    /* ========== REVIEW SECTION ========== */
    .review-box {
      border: 1.5px solid var(--gray-200);
      border-radius: 12px; overflow: hidden; margin-bottom: 20px;
    }
    .review-row {
      display: flex; justify-content: space-between; align-items: center;
      padding: 13px 18px; border-bottom: 1px solid var(--gray-100);
      font-size: 0.88rem;
    }
    .review-row:last-child { border-bottom: none; }
    .review-row .rlabel { color: var(--gray-600); font-weight: 500; }
    .review-row .rval { font-weight: 700; }

    .consent-box {
      border: 1.5px solid var(--gray-200);
      border-radius: 12px; padding: 18px; margin-bottom: 18px;
    }
    .consent-check { display: flex; align-items: flex-start; gap: 12px; }
    .consent-check input[type="checkbox"] {
      width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
      accent-color: var(--purple); cursor: pointer;
    }
    .consent-check label { font-size: 0.83rem; color: var(--gray-600); line-height: 1.5; cursor: pointer; }
    .consent-check label a { color: var(--purple); font-weight: 700; text-decoration: none; }
    .consent-err { font-size: 0.78rem; color: #dc2626; margin-top: 6px; display: none; }
    .consent-err.show { display: block; }

    .next-box {
      background: #eff6ff; border: 1.5px solid #bfdbfe;
      border-radius: 12px; padding: 18px; margin-bottom: 18px;
    }
    .next-box h6 { font-weight: 800; font-size: 0.9rem; color: #1d4ed8; margin-bottom: 10px; }
    .next-box ul { margin: 0; padding-left: 18px; }
    .next-box ul li { font-size: 0.84rem; color: #1e40af; margin-bottom: 6px; }

    .security-note {
      text-align: center; font-size: 0.8rem; color: var(--gray-600);
      margin-top: 20px; padding: 0 12px;
    }

    .btn-submit {
      background: var(--purple); color: #fff;
      border: none; border-radius: 10px;
      padding: 12px 28px;
      font-family: 'Manrope', sans-serif;
      font-weight: 800; font-size: 0.95rem;
      cursor: pointer;
      display: flex; align-items: center; gap: 8px;
      transition: background 0.2s, transform 0.15s;
    }
    .btn-submit:hover { background: var(--purple-dark); transform: translateY(-1px); }

    /* ========== SUCCESS ========== */
    .success-wrap {
      text-align: center; padding: 40px 20px;
    }
    .success-icon {
      width: 80px; height: 80px; background: var(--green-light);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px; font-size: 36px; color: var(--green);
    }
    .success-wrap h3 { font-family: 'Fraunces', serif; font-weight: 900; font-size: 1.6rem; margin-bottom: 10px; }
    .success-wrap p { color: var(--gray-600); font-size: 0.95rem; max-width: 440px; margin: 0 auto; }

    /* ========== FOOTER ========== */
    footer { background: #fff; border-top: 1px solid var(--gray-200); padding: 50px 0 24px; }
    .footer-brand { font-family: 'Fraunces', serif; font-size: 1.4rem; font-weight: 900; color: var(--purple); margin-bottom: 6px; }
    .footer-tagline { font-size: 0.82rem; color: var(--gray-600); margin-bottom: 14px; }
    .footer-contact a { display: flex; align-items: center; gap: 8px; color: var(--purple); font-size: 0.88rem; font-weight: 700; margin-bottom: 5px; text-decoration: none; }
    .footer-contact .email { color: var(--gray-600); font-weight: 500; }
    .footer-social { display: flex; gap: 8px; margin-top: 14px; }
    .soc-icon { width: 34px; height: 34px; background: var(--purple-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--purple); font-size: 14px; text-decoration: none; transition: all 0.2s; }
    .soc-icon:hover { background: var(--purple); color: #fff; }
    footer h6 { font-weight: 800; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-800); margin-bottom: 14px; }
    footer ul { list-style: none; padding: 0; margin: 0; }
    footer ul li { margin-bottom: 8px; }
    footer ul li a { color: var(--gray-600); font-size: 0.85rem; text-decoration: none; font-weight: 500; transition: color 0.2s; }
    footer ul li a:hover { color: var(--purple); }
    .footer-bottom { border-top: 1px solid var(--gray-200); margin-top: 36px; padding-top: 18px; text-align: center; font-size: 0.8rem; color: var(--gray-600); }

    /* ANIM */
    @keyframes fadeSlideIn {
      from { opacity: 0; transform: translateX(20px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    .step-panel { animation: fadeSlideIn 0.3s ease; }

    @media (max-width: 576px) {
      .card-body-pad { padding: 18px 14px 18px; }
      .card-header-strip { padding: 16px 16px 12px; }
      .step-label { font-size: 0.62rem; }
      .trust-row { gap: 14px; }
    }