 
  /* @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400&family=Outfit:wght@300;400;500;600&display=swap'); */

  * { box-sizing: border-box; margin: 0; padding: 0; }
body{
    font-family: 'Inter',sans-serif;
}
  .pg {
    font-family: 'Inter',sans-serif;
    background: #f4f2ec;
    /*min-height: 100vh;*/
    color: #1a1a18;
  }

  /*.topbar {*/
  /*  display: flex;*/
  /*  align-items: center;*/
  /*  justify-content: space-between;*/
  /*  padding: 20px 52px;*/
  /*  background: #fff;*/
  /*  border-bottom: 0.5px solid #e0ddd5;*/
  /*}*/

  /*.logo {*/
  /*  font-family:'Inter',sans-serif;*/
  /*  font-size: 16px;*/
  /*  font-weight: 600;*/
  /*  letter-spacing: 0.1em;*/
  /*  color: #1a1a18;*/
  /*}*/

  /*.logo-dot { color: #1D9E75; }*/

  /*.top-tag {*/
  /*  font-size: 11px;*/
  /*  letter-spacing: 0.14em;*/
  /*  color: #b4b2a9;*/
  /*  text-transform: uppercase;*/
  /*}*/

  /*.top-cta {*/
  /*  font-size: 12px;*/
  /*  font-weight: 500;*/
  /*  color: #1D9E75;*/
  /*  border: 0.5px solid #1D9E75;*/
  /*  padding: 7px 18px;*/
  /*  border-radius: 40px;*/
  /*  text-decoration: none;*/
  /*  letter-spacing: 0.04em;*/
  /*  transition: background 0.18s;*/
  /*}*/

  /*.top-cta:hover { background: rgba(29,158,117,0.07); }*/

  .layout {
    display: grid;
    grid-template-columns: 1fr 1.55fr;
    min-height: calc(100vh - 62px);
  }

  .left-panel {
    padding: 64px 52px;
    background: #fff;
    border-right: 0.5px solid #e0ddd5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
  }

  .left-panel::before {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 280px; height: 280px;
    border-radius: 50%;
    border: 1px solid rgba(29,158,117,0.12);
  }

  .left-panel::after {
    content: '';
    position: absolute;
    bottom: 60px; left: 60px;
    width: 140px; height: 140px;
    border-radius: 50%;
    border: 1px solid rgba(29,158,117,0.07);
  }

  .eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    letter-spacing: 0.14em;
    color: #1D9E75;
    text-transform: uppercase;
    margin-bottom: 28px;
  }

  .eyebrow-line {
    width: 24px; height: 1px;
    background: #1D9E75;
  }

  .left-title {
    font-family: 'Inter',sans-serif;
    font-size: 42px;
    font-weight: 400;
    line-height: 1.13;
    color: #1a1a18;
    margin-bottom: 18px;
  }

  .left-title em {
    font-style: italic;
    color: #0F6E56;
  }

  .left-desc {
    font-size: 14px;
    color: #888780;
    line-height: 1.75;
    max-width: 260px;
    margin-bottom: 48px;
  }

  .stats-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .stat-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
  }

  .stat-num {
    font-family: 'Inter',sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #1a1a18;
  }

  .stat-label {
    font-size: 12px;
    color: #b4b2a9;
    letter-spacing: 0.04em;
  }

  .stat-divider {
    width: 1px; height: 28px;
    background: #e0ddd5;
  }

  .left-bottom { margin-top: auto; padding-top: 52px; }

  .step-list { display: flex; flex-direction: column; gap: 14px; }

  .step-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #c5c3bc;
  }

  .step-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #d3d1c7;
    flex-shrink: 0;
  }

  .step-item.active { color: #5F5E5A; }
  .step-item.active .step-dot { background: #1D9E75; }

  .right-panel {
    padding: 56px 60px;
    background: #f4fdf6;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .form-card {
    background: #fff;
    border: 0.5px solid #e0ddd5;
    border-radius: 14px;
    padding: 40px 44px;
  }

  .form-section-title {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.13em;
    color: #b4b2a9;
    text-transform: uppercase;
    margin-bottom: 5px;
  }

  .form-section-sub {
    font-size: 19px;
    font-weight: 300;
    color: #1a1a18;
    letter-spacing: -0.01em;
    margin-bottom: 28px;
  }

  .fields-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  .fgroup { display: flex; flex-direction: column; gap: 6px; }
  .fgroup.full { grid-column: 1 / -1; }

  .fgroup label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: #888780;
    text-transform: uppercase;
  }

  .fgroup label span { color: #D85A30; }

  .fgroup input,
  .fgroup select,
  .fgroup textarea {
    font-family: 'Inter',sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #1a1a18;
    background: white;
    border: 0.5px solid #d3d1c7;
    border-radius: 8px;
    padding: 12px 15px;
    outline: none;
    transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
  }

  .fgroup input::placeholder,
  .fgroup textarea::placeholder { color: #c5c3bc; }

  .fgroup input:focus,
  .fgroup select:focus,
  .fgroup textarea:focus {
    border-color: #1D9E75;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(29,158,117,0.08);
  }

  .fgroup select option { background: #fff; color: #1a1a18; }

  .sel-wrap { position: relative; }
  .sel-wrap::after {
    content: '';
    position: absolute;
    right: 14px; top: 50%;
    transform: translateY(-50%);
    width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #888780;
    pointer-events: none;
  }

  .fgroup textarea {
    resize: none;
    min-height: 100px;
    line-height: 1.65;
  }

  .sep {
    border: none;
    border-top: 0.5px solid #e8e5de;
    margin: 24px 0;
  }

  .bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
  }

  .req-note { font-size: 11px; color: #c5c3bc; }
  .req-note span { color: #D85A30; }

  .sbtn {
    font-family: 'Inter',sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 13px 28px;
    background: #1a1a18;
    color: #fff;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.18s, transform 0.1s;
  }

  .sbtn:hover { background: #2e2e2b; }
  .sbtn:active { transform: scale(0.97); }
  .sbtn i { font-size: 15px; }

  .toast {
    display: none;
    align-items: center;
    gap: 10px;
    background: #E1F5EE;
    border: 0.5px solid #5DCAA5;
    border-radius: 8px;
    padding: 12px 16px;
    margin-top: 18px;
    font-size: 13px;
    color: #0F6E56;
  }

  .toast.show { display: flex; }
  .toast i { font-size: 17px; }

  /*.foot {*/
  /*  border-top: 0.5px solid #e0ddd5;*/
  /*  background: #fff;*/
  /*  padding: 18px 52px;*/
  /*  display: flex;*/
  /*  justify-content: space-between;*/
  /*  font-size: 11px;*/
  /*  color: #c5c3bc;*/
  /*  letter-spacing: 0.04em;*/
  /*}*/
.error-msg {
  font-size: 12px;
  color: #D85A30;
  margin-top: 4px;
  display: none;
}
.error-msg.show {
  display: block;
}

@media (max-width: 1024px) {

  .layout {
    grid-template-columns: 1fr;
  }

  .left-panel {
    padding: 50px 40px;
    border-right: none;
    border-bottom: 0.5px solid #e0ddd5;
  }

  .right-panel {
    padding: 40px;
  }

  .fields-grid {
    grid-template-columns: 1fr;
  }

  .left-desc {
    max-width: 100%;
  }

}

@media (max-width: 768px) {

  .left-title {
    font-size: 32px;
  }

  .form-section-sub {
    font-size: 17px;
  }

  .left-panel {
    padding: 40px 24px;
  }

  .right-panel {
    padding: 30px 20px;
  }

  .form-card {
    padding: 30px 22px;
  }

  .bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sbtn {
    width: 100%;
    justify-content: center;
  }

}

@media (max-width: 480px) {

  .left-title {
    font-size: 26px;
    line-height: 1.2;
  }

  .left-desc {
    font-size: 13px;
  }

  .form-section-sub {
    font-size: 15px;
  }

  .fgroup input,
  .fgroup select,
  .fgroup textarea {
    font-size: 13px;
    padding: 10px 12px;
  }

  .sbtn {
    font-size: 12px;
    padding: 12px;
  }

  .eyebrow {
    font-size: 10px;
  }

}


