 :root {
     --navy: #05155f;
     --orange: #ef622e;
     --navy-deep: #030e45;
     --navy-mid: #0a2080;
     --orange-deep: #c94d1e;
     --orange-soft: rgba(239, 98, 46, 0.12);
     --navy-soft: rgba(5, 21, 95, 0.07);
     --white: #ffffff;
     --light: #f4f6ff;
     --muted: rgba(5, 21, 95, 0.45);
     --border: rgba(5, 21, 95, 0.13);
     --err: #d32f2f;
 }

 * {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 body,
 .cf-root {
     
 }

 .cf-root {
     padding: 2rem 1.25rem;
     max-width: 860px;
     margin: 0 auto;
 }

 .cf-card {
     border-radius: 22px;
     overflow: hidden;
     border: 1.5px solid var(--border);
     background: var(--white);
 }

 .cf-hero {
     background: linear-gradient(126deg, #05155f 78.01%, #ef622e 100%);
     padding: 2.2rem 2.2rem 2rem;
     position: relative;
     overflow: hidden;
 }

 .cf-hero-circle {
     position: absolute;
     width: 240px;
     height: 240px;
     border-radius: 50%;
     border: 1.5px solid rgba(239, 98, 46, 0.25);
     top: -60px;
     right: -60px;
 }

 .cf-hero-circle2 {
     position: absolute;
     width: 160px;
     height: 160px;
     border-radius: 50%;
     border: 1px solid rgba(239, 98, 46, 0.15);
     bottom: -40px;
     right: 60px;
 }

 .cf-hero-tag {
     display: inline-flex;
     align-items: center;
     gap: 6px;
     background: rgba(239, 98, 46, 0.18);
     border: 1px solid rgba(239, 98, 46, 0.35);
     color: #ffb38e;
     border-radius: 100px;
     padding: 4px 14px;
     font-size: 11px;
     font-weight: 500;
     letter-spacing: 0.06em;
     text-transform: uppercase;
     margin-bottom: 14px;
 }

 .cf-hero-dot {
     width: 6px;
     height: 6px;
     border-radius: 50%;
     background: #ef622e;
 }

 .cf-hero h1 {
     font-size: 22px;
     font-weight: 600;
     color: var(--white);
     margin-bottom: 6px;
     letter-spacing: -0.01em;
 }

 .cf-hero p {
     font-size: 13px;
     color: rgba(255, 255, 255, 0.6);
 }

 .cf-hero-bar {
     height: 3px;
     background: linear-gradient(90deg, #ef622e, rgba(239, 98, 46, 0));
     margin-top: 1.6rem;
     border-radius: 2px;
 }

 .cf-body {
     padding: 2rem 2.2rem;
 }

 @media (max-width: 560px) {
     .cf-body {
         padding: 1.25rem;
     }

     .cf-hero {
         padding: 1.5rem;
     }
 }

 .sec-label {
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 10.5px;
     font-weight: 600;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     color: var(--navy-mid);
     margin-bottom: 1.2rem;
 }

 .sec-pill {
     background: var(--orange-soft);
     color: var(--orange);
     border-radius: 100px;
     padding: 3px 10px;
     font-size: 10px;
     font-weight: 600;
     letter-spacing: 0.08em;
 }

 .sec-line {
     flex: 1;
     height: 1px;
     background: var(--border);
 }

 .field-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 1.1rem;
     margin-bottom: 1.1rem;
 }

 @media (max-width: 560px) {
     .field-row {
         grid-template-columns: 1fr;
     }
 }

 .field-box {
     display: flex;
     flex-direction: column;
     gap: 7px;
 }

 .field-label {
     font-size: 14px;
     font-weight: 600;
     color: var(--navy);
     letter-spacing: 0.02em;
     display: flex;
     align-items: center;
     gap: 7px;
 }

 .label-badge {
     width: 20px;
     height: 20px;
     border-radius: 6px;
     background: var(--navy-soft);
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 .label-badge svg {
     width: 16px;
     height: 16px;
     fill: var(--navy-mid);
 }

 .field-input {
     width: 100%;
     height: 44px;
     padding: 0 14px;
     font-size: 14px;
     color: var(--navy-deep);
     background: var(--light);
     border: 1.5px solid var(--border);
     border-radius: 11px;
     outline: none;    
     transition: border-color 0.16s, background 0.16s;
     appearance: none;
     -webkit-appearance: none;
 }

 .field-input::placeholder {
     color: rgba(5, 21, 95, 0.28);
 }

 .field-input:focus {
     border-color: var(--navy-mid);
     background: #eef0fc;
     box-shadow: 0 0 0 3px rgba(5, 21, 95, 0.07);
 }

 .has-error .field-input,
 .has-error .phone-wrap .field-input,
 .has-error .phone-wrap .phone-code {
     border-color: var(--err);
     background: #fff5f5;
 }

 .select-wrap {
     position: relative;
 }

 .select-wrap::after {
     content: '';
     position: absolute;
     right: 13px;
     top: 50%;
     transform: translateY(-50%);
     width: 0;
     height: 0;
     border-left: 4.5px solid transparent;
     border-right: 4.5px solid transparent;
     border-top: 5px solid var(--navy-mid);
     pointer-events: none;
 }

 .select-wrap .field-input {
     padding-right: 30px;
     cursor: pointer;
 }

 .has-error .select-wrap .field-input {
     border-color: var(--err);
     background: #fff5f5;
 }

 .phone-wrap {
     display: flex;
     gap: 8px;
 }

 .phone-code {
     width: 148px;
     flex-shrink: 0;
     height: 44px;
     padding: 0 10px;
     font-size: 13px;
     color: var(--navy-deep);
     background: var(--light);
     border: 1.5px solid var(--border);
     border-radius: 11px;
     outline: none;
    
     transition: border-color 0.16s;
     appearance: none;
     -webkit-appearance: none;
     cursor: pointer;
 }

 .phone-code:focus {
     border-color: var(--navy-mid);
     background: #eef0fc;
 }

 .phone-code-wrap {
     position: relative;
     width: 148px;
     flex-shrink: 0;
 }

 .phone-code-wrap::after {
     content: '';
     position: absolute;
     right: 10px;
     top: 50%;
     transform: translateY(-50%);
     width: 0;
     height: 0;
     border-left: 4px solid transparent;
     border-right: 4px solid transparent;
     border-top: 4.5px solid var(--navy-mid);
     pointer-events: none;
 }

 .phone-code-wrap select {
     width: 100%;
     padding-right: 26px;
 }

 .phone-wrap .field-input {
     flex: 1;
     width: auto;
 }

 .err-msg {
     font-size: 11.5px;
     color: var(--err);
     display: none;
     align-items: center;
     gap: 5px;
 }

 .err-msg svg {
     width: 12px;
     height: 12px;
     fill: var(--err);
     flex-shrink: 0;
 }

 .has-error .err-msg {
     display: flex;
 }

 .cf-divider {
     border: none;
     border-top: 1.5px solid var(--border);
     margin: 1.8rem 0;
 }

 .sec-gap {
     margin-top: 1.8rem;
 }

 .submit-row {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 1rem;
     flex-wrap: wrap;
 }

 .submit-btn {
     display: flex;
     align-items: center;
     gap: 9px;
     background: linear-gradient(126deg, #05155f 0%, #0a2080 100%);
     color: var(--white);
     border: none;
     border-radius: 12px;
     padding: 0 28px;
     height: 48px;
     font-size: 15px;
     font-weight: 600;
    
     cursor: pointer;
     letter-spacing: 0.01em;
     transition: opacity 0.15s, transform 0.1s;
     position: relative;
     overflow: hidden;
 }

 .submit-btn::after {
     content: '';
     position: absolute;
     inset: 0;
     background: linear-gradient(126deg, transparent 60%, rgba(239, 98, 46, 0.35) 100%);
 }

 .submit-btn:hover {
     opacity: 0.92;
 }

 .submit-btn:active {
     transform: scale(0.98);
 }

 .submit-btn svg {
     width: 15px;
     height: 15px;
     fill: #ffb38e;
     position: relative;
     z-index: 1;
 }

 .submit-btn span {
     position: relative;
     z-index: 1;
 }

 .form-note {
     font-size: 14px;
     color: var(--muted);
     display: flex;
     align-items: center;
     gap: 6px;
 }

 .form-note svg {
     width: 13px;
     height: 13px;
     fill: var(--orange);
 }

 .success-msg {
     display: none;
     align-items: center;
     gap: 12px;
     background: linear-gradient(126deg, rgba(5, 21, 95, 0.05), rgba(239, 98, 46, 0.07));
     border: 1.5px solid rgba(239, 98, 46, 0.25);
     border-radius: 14px;
     padding: 16px 20px;
     margin-top: 1.2rem;
 }

 .success-icon {
     width: 36px;
     height: 36px;
     border-radius: 50%;
     background: linear-gradient(126deg, #05155f, #ef622e);
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 .success-icon svg {
     width: 18px;
     height: 18px;
     fill: white;
 }

 .success-text strong {
     display: block;
     font-size: 14px;
     color: var(--navy);
     font-weight: 600;
     margin-bottom: 2px;
 }

 .success-text span {
     font-size: 12.5px;
     color: var(--muted);
 }