 :root {
     --main-color: #13A2EA;
     --secondary-color: #02BDD3;
     --dark-color: #0a7cb5;
     --white-color: #fff;
     --highlight-orange: #ff751f;
     --black-color: #000;
     --gray-color: #d9d9d9;
     --success-color: #10b981;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 html,
 body {
     font-family: 'gilroy', sans-serif;
     background: #fff;
     /* background: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%); */
     height: 100%;
     width: 100%;
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 20px;
 }

 .form-container {
     background: white;
     border-radius: 24px;
     max-width: 730px;
     width: 100%;
     margin: 0 auto;
     padding: 48px 40px;
     padding-bottom: 20px;
     /* box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08); */
     position: relative;
 }

 /* Circular Progress Bar */
 .progress-container {
     display: flex;
     justify-content: center;
     margin-bottom: 40px;
     margin-top: -150px;
 }

 .circular-progress {

     position: relative;
     width: 120px;
     height: 120px;
     background: white;
     border-radius: 50% !important;
     opacity: 1;
     z-index: 4;
 }

 .circular-progress svg {
     transform: rotate(-90deg);
     width: 100%;
     height: 100%;
 }

 .circular-progress circle {
     fill: none;
     stroke-width: 8;
 }

 .progress-bg {
     stroke: #e5e7eb;
 }

 .progress-bar {
     stroke: var(--main-color);
     stroke-linecap: round;
     transition: stroke-dashoffset 0.5s ease;
 }

 .progress-text {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     text-align: center;
 }

 .progress-percentage {
     font-size: 28px;
     font-weight: 700;
     color: var(--main-color);
     line-height: 1;
 }

 .progress-label {
     font-size: 11px;
     color: #6b7280;
     text-transform: uppercase;
     letter-spacing: 0.5px;
     margin-top: 4px;
     font-weight: 600;
 }

 .form-page {
     display: none;
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .form-page.active {
     display: block;
     opacity: 1;
     animation: fadeIn 0.4s ease;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(10px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .section-title {
     color: #1e293b;
     font-size: 24px;
     font-weight: 700;
     margin-bottom: 12px;
     line-height: 1.3;
     text-align: center;
 }

 .form-subtitle {
     font-size: 15px;
     color: #64748b;
     margin-bottom: 32px;
     text-align: center;
     line-height: 1.5;
 }

 .radio-group,
 .checkbox-wrapper {
     display: grid;
     gap: 12px;
     margin-bottom: 24px;
 }

 .radio-group {
     grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
 }

 .checkbox-wrapper {
     grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
 }

 input[type="radio"],
 input[type="checkbox"] {
     display: none;
 }

 .radio-label,
 .checkbox-label {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     padding: 20px 16px;
     border: 2px solid #e2e8f0;
     border-radius: 12px;
     cursor: pointer;
     transition: all 0.25s ease;
     background: white;
     min-height: 110px;
     text-align: center;
 }

 .radio-label:hover,
 .checkbox-label:hover {
     border-color: var(--main-color);
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(19, 162, 234, 0.15);
 }

 .radio-label i,
 .checkbox-label i {
     font-size: 32px;
     margin-bottom: 10px;
     color: var(--main-color);
     transition: all 0.25s ease;
 }

 .radio-label span,
 .checkbox-label span {
     font-size: 14px;
     font-weight: 600;
     color: #334155;
 }

 input[type="radio"]:checked+.radio-label,
 input[type="checkbox"]:checked+.checkbox-label {
     background: linear-gradient(135deg, var(--main-color) 0%, var(--secondary-color) 100%);
     border-color: var(--main-color);
     box-shadow: 0 4px 16px rgba(19, 162, 234, 0.3);
 }

 input[type="radio"]:checked+.radio-label i,
 input[type="checkbox"]:checked+.checkbox-label i,
 input[type="radio"]:checked+.radio-label span,
 input[type="checkbox"]:checked+.checkbox-label span {
     color: white;
 }

 .form-group {
     margin-bottom: 16px;
 }

 input[type="text"],
 input[type="email"],
 input[type="tel"] {
     width: 100%;
     padding: 12px 16px;
     border: 2px solid #e2e8f0;
     border-radius: 10px;
     font-size: 15px;
     font-family: 'Plus Jakarta Sans', sans-serif;
     transition: all 0.25s ease;
     background: #fafbfc;
 }

 input:focus {
     outline: none;
     border-color: var(--main-color);
     background: white;
     box-shadow: 0 0 0 3px rgba(19, 162, 234, 0.1);
 }

 .button-group {
     display: flex;
     gap: 12px;
     margin-top: 28px;
 }

 .btn {
     flex: 1;
     padding: 14px 24px;
     border: none;
     border-radius: 10px;
     font-size: 15px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.25s ease;
     font-family: 'Plus Jakarta Sans', sans-serif;
 }

 .btn-continue {
     background: linear-gradient(135deg, var(--main-color) 0%, var(--secondary-color) 100%);
     color: white;
     box-shadow: 0 4px 12px rgba(19, 162, 234, 0.25);
 }

 .btn-continue:hover {
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(19, 162, 234, 0.35);
 }

 .btn-back {
     background: #f1f5f9;
     color: #475569;
 }

 .btn-back:hover {
     background: #e2e8f0;
 }

 .btn-submit {
     width: 100%;
     padding: 14px 24px;
     background: linear-gradient(135deg, var(--main-color) 0%, var(--secondary-color) 100%);
     color: white;
     border: none;
     border-radius: 10px;
     font-size: 15px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.25s ease;
     margin-top: 16px;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
 }

 .btn-submit:hover {
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(19, 162, 234, 0.35);
 }

 .error-message {
     display: none;
     color: #ef4444;
     font-size: 13px;
     margin-top: 8px;
     text-align: center;
     font-weight: 500;
 }

 .error .error-message {
     display: block;
 }

 .error input {
     border-color: #ef4444;
 }

 .terms-text {
     font-size: 12px;
     color: #64748b;
     margin-top: 16px;
     line-height: 1.6;
     text-align: center;
 }

 .terms-text a {
     color: var(--main-color);
     text-decoration: none;
     font-weight: 600;
 }

 .terms-text a:hover {
     text-decoration: underline;
 }

 .trustpilot-container img {
     width: 100%;
     height: auto;
     display: block;
     margin: 0 auto;
 }

 .highlight-number {
     /* font-size: clamp(4rem, 8vw, 7rem); */
     font-size: clamp(1rem, 6vw, 4rem);
     font-weight: 800;
     color: var(--highlight-orange);
     letter-spacing: -0.02em;
     display: block;
     line-height: 0.9;
     margin-bottom: 0.25rem;
 }

 /* Seconds Text */
 .seconds-text {
     font-size: 21px;
     font-weight: 600;
     color: var(--text-dark);
     text-transform: uppercase;
     letter-spacing: 0.05em;
     margin-top: 0.5rem;
 }
 .highlight-number {
         font-size:  80px !important;
     }

     .seconds-text{
            font-size:20px !important;
            margin-bottom: 5px !important;
     }
     .highlight-text {
         font-size:15px !important;
     }

 /* Calculator Text */
 .highlight-text {
     font-size: 21px;
     font-weight: 600;
     color: var(--highlight-orange);
     text-transform: uppercase;
     letter-spacing: 0.05em;
 }

 .content-area {
     max-width: 680px;
     margin: auto;
     margin-top: -10px !important;
     background: white;
     border-radius: 24px;
     width: 100%;
     /* padding: 20px 20px; */
     /* box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08); */
     position: relative;
 }

 .main-center {
     display: flex;
     place-items: center;
 }

 .h-100 {
     height: 100% !important;
 }

 .content-inner {
     max-width: 400px;
     margin: auto;
 }


 .footer {
     background: linear-gradient(135deg, var(--main-color) 0%, var(--secondary-color) 100%);
     color: white;
     padding: 40px 0 20px;
     margin-top: auto;
 }

 .footer-links {
     display: flex;
     flex-direction: row;
     justify-content: center;
     gap: 30px;
     margin-bottom: 25px;
     flex-wrap: nowrap;
 }

 .footer-links a {
     color: white;
     text-decoration: none;
     font-size: 16px;
     font-weight: 500;
     transition: color 0.3s;
 }

 .footer-links a:hover {
     color: var(--gray-color);
 }

 .footer-links .separator {
     color: rgba(255, 255, 255, 0.5);
 }

 .footer-text {
     font-size: 14px;
     line-height: 1.8;
     text-align: center;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .modal-content {
     border: none !important;
     outline: none !important;
     box-shadow: 0 0 20px -10px gray;
 }

 .footer-text p {
     margin-bottom: 15px;
 }

 .footer-text strong {
     font-weight: 600;
 }

 .banner_section {
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     padding: 50px 0;
     position: relative;
     text-align: center;
     color: var(--white-color);
 }

 .banner_section .overlay {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.5);
     z-index: 1;
 }

 .banner_section .banner_wrapper {
     position: relative;
     z-index: 2;
 }

 .banner_section h1 {
     font-size: 30px;
     font-weight: 400;
     z-index: 3;
 }

 .highlited_text {
     min-height: 165px;
 }

 @media (max-width: 991.98px) {
     .highlight-number {
         font-size:  80px;
     }

     .seconds-text{
            font-size:20px;
     }
     .highlight-text {
         font-size:15px;
     }
 }

 @media (max-width: 768px) {
     .circular-progress circle {
         cx: 50 !important;
         cy: 50 !important;
         r: 44 !important;
     }

     .progress-container {
         margin-top: -125px;
     }

     .form-container {
         padding: 32px 24px;
         border-radius: 20px;
     }

     .section-title {
         font-size: 21px;
     }

     .form-subtitle {
         font-size: 14px;
     }

     .circular-progress {
         width: 100px;
         height: 100px;
     }

     .progress-percentage {
         font-size: 24px;
     }

     .progress-label {
         font-size: 10px;
     }

     .radio-group,
     .checkbox-wrapper {
         grid-template-columns: 1fr;
     }

     .radio-label,
     .checkbox-label {
         padding: 18px 14px;
         min-height: 100px;
     }

     .radio-label i,
     .checkbox-label i {
         font-size: 28px;
         margin-bottom: 8px;
     }

     .radio-label span,
     .checkbox-label span {
         font-size: 13px;
     }

     .button-group {
         flex-direction: column-reverse;
     }

     input[type="text"],
     input[type="email"],
     input[type="tel"] {
         padding: 11px 14px;
         font-size: 14px;
     }

     .btn {
         padding: 12px 20px;
         font-size: 14px;
     }

     .btn-submit {
         padding: 12px 20px;
         font-size: 14px;
     }
 }

 @media (max-width: 480px) {
     .navbar .logo {
         height: 40px !important;
     }

     .highlited_text {
         min-height: 113px;
     }

     .container {
         padding: 12px;
     }

     .form-container {
         padding: 24px 20px;
         padding-left: 0px !important;
         padding-right: 0px !important;
     }

     .section-title {
         font-size: 15px;
     }

     .banner_section h1 {
         font-size: 14px !important;
         margin-bottom: 21px !important;
     }

     .banner_section {
         padding-top: 2px !important;
     }

     #claimForm {
         margin-top: -38px !important;
     }

     .radio-group,
     .checkbox-wrapper {
         display: flex !important;
         flex-direction: row !important;
         flex-wrap: wrap !important;
     }

     .radio-group .radio-label {
         flex: 1 1 43% !important;
         margin: -1px !important;
     }

     .checkbox-wrapper>div {
         flex: 1 1 43% !important;
         margin: -1px !important;
     }
     .footer{
        padding-top: 7px !important;
     }
     .footer-links{
        gap: 3px;
     }
     .footer-links a {
         font-size: 13px;
     }
 }

 .progress-container.hidden_banner {
     margin-top: -54px !important;
 }