@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* Lufga Font */
@font-face {
    font-family: 'Lufga';
    src: url('../fonts/Lufga-SemiBold.eot');
    src: url('../fonts/Lufga-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Lufga-SemiBold.woff2') format('woff2'),
        url('../fonts/Lufga-SemiBold.woff') format('woff'),
        url('../fonts/Lufga-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lufga';
    src: url('../fonts/Lufga-Bold.eot');
    src: url('../fonts/Lufga-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Lufga-Bold.woff2') format('woff2'),
        url('../fonts/Lufga-Bold.woff') format('woff'),
        url('../fonts/Lufga-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lufga';
    src: url('../fonts/Lufga-Medium.eot');
    src: url('../fonts/Lufga-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Lufga-Medium.woff2') format('woff2'),
        url('../fonts/Lufga-Medium.woff') format('woff'),
        url('../fonts/Lufga-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lufga';
    src: url('../fonts/Lufga-ExtraBold.eot');
    src: url('../fonts/Lufga-ExtraBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Lufga-ExtraBold.woff2') format('woff2'),
        url('../fonts/Lufga-ExtraBold.woff') format('woff'),
        url('../fonts/Lufga-ExtraBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lufga';
    src: url('../fonts/Lufga-Regular.eot');
    src: url('../fonts/Lufga-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Lufga-Regular.woff2') format('woff2'),
        url('../fonts/Lufga-Regular.woff') format('woff'),
        url('../fonts/Lufga-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



/* Reset CSS */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button, input, select, textarea {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
ul, ol { list-style: none; }
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  display: none;
  -webkit-appearance: none;
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variables */
:root { 
    --title-font: 'Lufga', sans-serif;
    --body-font: 'Poppins', sans-serif;
    --primary-color: #016293;
    --body-color: #464646;
    --dark-color: #222222;
    --light-grey: #E8E8E8;
    --light-blue: #F2FAFF;
    --success-100: #DCFCE7;
    --success-500: #4ADE80;
    --success-700: #16A34A;
    --error-100: #FEE2E2;
    --error-500: #EF4444;
}

/* Global CSS */
body { font-family: var(--body-font); font-size: 16px; line-height: 1.5; background-color: #F9FAFB; color: var(--body-color); min-height: 100vh; display: flex; flex-direction: column  ; }
main { flex: 1; }
img { width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: var(--title-font); font-weight: 500; color: var(--dark-color); line-height: 1.25; }
h1 { font-size: clamp(36px, 4vw, 64px); }
h2 { font-size: clamp(30px, 3vw, 48px); }
h3 { font-size: clamp(20px, 2.5vw, 30px); }
h4 { font-size: clamp(18px, 2.5vw, 25px); }
h5 { font-size: clamp(16px, 2.5vw, 20px); }
h6 { font-size: 18px; font-weight: 400; }
small { font-size: 14px; }
b { font-weight: 700; }
i { font-style: italic; }
.bg-primary { background-color: var(--primary-color); }

/* Custom CSS */
.container { width: 100%; max-width: 1530px; margin: 0 auto; padding: 0 15px; }
.row { display: flex; flex-wrap: wrap; }
.col-4 { width: 100%; max-width: 33.333333%; padding: 0 15px; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.text-center { text-align: center; }
.site-btn { font-size: 16px; border-radius: 30px; line-height: 1.25; display: inline-block; padding: 18px 35px; background-color: var(--primary-color); color: #fff; appearance: none; -webkit-appearance: none; cursor: pointer; transition: all 0.4s; -webkit-transition: all 0.4s; }
.site-btn:hover { background-color: var(--dark-color); }
.site-btn.btn-2 { display: flex; align-items: center; justify-content: center; gap: 15px; background-color: #fff; color: var(--dark-color); }
.site-btn.btn-2 img { max-width: 24px; }
.site-btn.btn-2:hover { background-color: var(--dark-color); color: #fff; }
.btn-group { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 15px; }
.section-space { padding: 100px 0; }
.section-heading { width: 100%; max-width: 800px; margin: 0 auto; margin-bottom: 50px; }
.section-heading .para { font-size: clamp(16px, 1.5vw, 20px); margin-top: 10px; }
.divider { margin: 15px 0; }
.divider span { position: relative; display: block; padding: 0 15px; display: flex; align-items: center; justify-content: center; gap: 15px; }
.divider span::before,
.divider span::after { content: ''; width: 50%; height: 1px; background-color: #E9EAEB; }
.btn-item .site-btn { display: block; text-align: center;}
.btn-item small { display: block; margin-top: 10px; }

/* Header */
.home .header { position: absolute; top: 0; left: 0; right: 0; z-index: 99; padding: 20px 0; }
.header { position: relative; padding: 20px 0; }
.header.sticky { position: fixed; z-index: 9999; top: 0px; width: 100%; background-color: #fff; box-shadow: 6px 6px 30px 0px #0000001f; -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown; animation: 500ms ease-in-out 0s normal none 1 running fadeInDown; }
@keyframes fadeInDown {
    0% { opacity: 0; -webkit-transform: translateY(-20px); -ms-transform: translateY(-20px); transform: translateY(-20px); }
    100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
}
.header .logo img { max-width: 290px; }
.home .header:not(.sticky) .logo img.dark-logo { display: none; }
.home .header.sticky .logo img.white-logo { display: none; }
.header .right-nav { gap: 30px; }
.header .right-nav ul { gap: 30px; }
.header.sticky .right-nav ul li a { color: var(--dark-color); transition: color 0.4s;  }
.home .header:not(.sticky) .right-nav ul li a { color: #fff; transition: color 0.4s;  }
.header .right-nav ul li a:hover { color: var(--primary-color); }
.header .menu-toggler { display: none; width: 40px; height: 40px; align-items: center; justify-content: center; background-color: transparent; border: none; cursor: pointer; }

/* Hero Section */
.hero-section { min-height: 100vh; padding: 100px 0 60px; background-image: url(../images/home-banner.jpg); background-size: cover; background-repeat: no-repeat; background-position: center; position: relative; overflow: hidden; z-index: 1; color: #fff; display: flex; align-items: flex-end; }
.hero-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.3); z-index: -1; }
.hero-section .hero-content { width: 100%; max-width: 700px; }
.hero-section h1 { font-weight: 400; color: #FFFFFF; max-width: 840px; line-height: 1.1; }
.hero-section .hero-content .hero-top p { font-size: 18px; line-height: 1.5; padding: 20px 0 48px; }
.hero-section h5 { color: #fff; margin-bottom: 10px; }
.hero-section p.note { font-size: 14px; }
.hero-section ul { list-style: disc; padding-left: 20px; margin-bottom: 30px; }

.counter-wrapper .counter-number { font-size: 30px; color: #FFFFFF; font-weight: 500; line-height: 1.313; }
.counter-wrapper .counter-row { gap: 40px; padding-top: 60px; } 
.counter-wrapper .counter-row .counter-col:not(:first-child) { padding-left: 40px; border-left: 1px solid #fff; } 
.counter-wrapper .counter-text { padding-top: 5px; font-size: 16px; color: #FFFFFF; font-weight: 400; line-height: 1.3; }
.counter-wrapper .counter-row .counter-col { max-width: fit-content; width: 100%; }

/* Benefits Section */
.benefits-section .note { margin-top: 60px; }
.benefits-section .benefit-col { display: flex; flex-direction: column; gap: 20px; }
.benefits-section .benefit-box { flex: 1; position: relative; z-index: 1; padding-bottom: 18px; }
.benefits-section .benefit-box .benefit-box-inner { height: 100%; padding: 30px; border-radius: 24px; background-color: #f5f5f5; display: flex; flex-direction: column; }
.benefits-section .benefit-box::before { content: ' '; position: absolute; left: 50%; top: 0; transform: translateX(-50%); background-color: #006495; width: calc(100% - 32px); height: 100%; z-index: -1; border-radius: 24px; }
.benefits-section .benefit-box .icon img { width: 60px; height: 60px; margin-bottom: 20px; }
.benefits-section .benefit-box h4 { flex: 1; margin-bottom: 10px; }
.benefits-section .benefit-image { height: 100%; }
.benefits-section .benefit-image img { height: 100%; border-radius: 24px; object-fit: cover; }

/* CTA */
.cta-section .cta-content h2 { margin-bottom: 30px; color: #fff; }

/* Trust Bar Section */
.testimonial-section { background-color: #F5F5F5; }
.testimonial-section .testimonial { width: 100%; max-width: 800px; margin: 0 auto; }
.testimonial-section .testimonial p { font-family: 'Lufga'; font-size: clamp(20px, 2vw, 30px); font-weight: 400; color: var(--dark-color); text-align: center; margin-bottom: 30px; }
.testimonial-section .testimonial p:before { content: ''; width: 50px; height: 50px; display: inline-block; background-image: url(../images/quotes.svg); background-repeat: no-repeat; background-size: contain; background-position: center; opacity: .2; margin-right: 10px; }
.testimonial-section .testimonial h5 { font-size: 18px; }

/* Footer */
.footer { background-color: #FAFAFA; padding: 60px 0 48px; }
.footer .footer-logo img { max-width: 290px; }
.footer .link-item { gap: 30px; padding-top: 32px; padding-bottom: 64px; }
.footer .contact-detail { gap: 20px; }
.footer .bottom-footer { border-top: 1px solid #E9EAEB; padding-top: 32px; justify-content: space-between; align-items: center; }
.footer a { transition: color 0.4s; }
.footer a:hover { color: var(--primary-color); }

.sign-up-section { padding: 40px 0; }
.sign-up-section .form-box { padding: 40px; border-radius: 24px; background: #F5F5F5; width: 100%; max-width: 600px; margin: 0 auto 30px; }
.sign-up-section .section-heading { max-width: 800px; margin-bottom: 0; }
.sign-up-section .section-heading h2 { font-size: clamp(24px, 2vw, 36px); margin-bottom: 20px; }
.sign-up-section .form-box .site-btn { width: 100%; }
.form-wrapper .input-group { margin-bottom: 20px; }
.form-wrapper .input-group label { font-size: 14px; line-height: 1.25; display: block; margin-bottom: 5px; }
.form-wrapper .input-group .form-control { width: 100%; border-radius: 50px; padding: 15px 20px; font-size: 14px; border: 1px solid #E9EAEB; outline: 0; appearance: none; }
.form-wrapper .input-group select.form-control { background-image: url(../images/icon-down-arrow.svg); background-position: center right 20px; background-repeat: no-repeat; background-size: 16px; }
.form-wrapper .input-group textarea.form-control { border-radius: 16px; }
.text-link { display: block; text-decoration: underline; color: var(--primary-color); text-underline-offset: 5px; margin-top: 15px; }
.text-link:hover { text-decoration: none; }
.microcopy { display: block; margin-top: 15px; }

/* Pricing Table */
.table-responsive { overflow-x: auto; }
.table-responsive .table { margin-bottom: 10px; width: 100%; min-width: 800px; border-collapse: collapse; }
.table-responsive .table th { font-weight: 600; text-align: left; }
.table-responsive .table th, .table-responsive .table td { padding: 12px 16px; border: 1px solid #E9EAEB; }
.table-responsive .table .highlight { background-color: #F5F5F5; }
.table-responsive .table small { font-size: 12px; }

.pricing-comparison-section .pricing-table { width: 100%; max-width: 1000px; margin: 0 auto; }
.pricing-comparison-section .note { font-size: 14px; }
.pricing-comparison-section .action { padding-top: 40px; }

.cta-section .btn-item small { color: #fff; }

.how-it-works-section .how-it-work-row { gap: 15px; justify-content: center; }
.how-it-works-section .how-it-work-content { flex: 1; padding: 30px 15px; position: relative; border-top: 1px dashed #D3D3D3; }
.how-it-works-section .how-it-work-col { overflow: hidden; width: 100%; max-width: calc((100% - 45px) / 4); background-color: #fff; border-radius: 24px; box-shadow: rgba(99, 99, 99, 0.05) 0px 5px 15px 0px; display: flex; flex-direction: column; }
.how-it-works-section .how-it-work-image img { display: block; }
.how-it-works-section .how-it-work-content .step span { background: #fff; width: 40px; height: 40px; display: flex; border-radius: 50%; justify-content: center; align-items: center; color: #000; font-weight: 600; font-size: 18px; margin: auto; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); }
.how-it-works-section .how-it-work-content .step { padding: 0; position: absolute; left: 50%; margin: -20px 0 0 -20px; top: 0; }
.how-it-works-section .step-heading { height: 100%; display: flex; flex-direction: column; align-items: center; }
.how-it-works-section .step-heading h3 { font-weight: 600; font-size: 24px; color: #2F3E46; text-align: center; margin-bottom: 12px; } 
.how-it-works-section .step-heading p { flex: 1; font-size: clamp(16px, 1.05vw, 18px); font-family: 'Lufga'; text-align: center; line-height: 1.316; }
.how-it-works-section .action { padding-top: 40px; }

.faq-section { background-color: #F5F5F5; }
.faq-section .section-heading { margin-bottom: 60px; }
.faq-section .section-heading h2 { margin-bottom: 20px; }
.faq-section .faq-item .faq-question { cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px;  } 
.faq-section .faq-item .faq-question .plus-sign { display: flex; } 
.faq-section .faq-item .faq-question img { width: 24px; } 
.faq-section .faq-item .faq-question .minus-sign { display: none; }
.faq-section .faq-row { max-width: 768px; margin: auto; gap: 32px; flex-direction: column; }
.faq-section .faq-item .faq-question h3 { font-size: 16px; font-weight: 600; color: #181D27; } 
.faq-section .faq-row .faq-item:not(:first-child) { padding-top: 24px; border-top: 1px solid #E9EAEB; }
.faq-answer p { color: #535862; font-weight: 400; font-size: 16px; padding-top: 4px; }
.faq-section .faq-item.active .faq-question .plus-sign { display: none; } 
.faq-section .faq-item.active .faq-question .minus-sign { display: inline; }
.faq-section .faq-item .faq-question span { display: flex; }

.sign-up .site-btn.btn-2:hover { background-color: #fff; color: var(--primary-color); }
.onboarding .section-heading b { color: var(--primary-color); }
.onboarding .form-group { gap: 20px; margin: 40px 0; }
.onboarding .form-group .input-group { width: 33.33%; }
.onboarding .input-group .custom-checkbox { height: 100%; }
.onboarding .input-group .custom-checkbox .box { height: 100%; position: relative; padding: 60px 40px; background-color: #fff; border: 1px solid #E9EAEB; border-radius: 16px; font-size: 16px; line-height: 1.5; cursor: pointer; }
.onboarding .custom-checkbox input { position: absolute; top: 0; left: 0; width: 0; height: 0; opacity: 0; }
.onboarding .custom-checkbox .box > img { max-height: 180px; margin: 0 auto 40px; object-fit: contain; }
.onboarding .custom-checkbox .checkbox-content h3 { font-size: 24px; margin-bottom: 8px; }
.onboarding .custom-checkbox > input:checked + .box { background-color: var(--light-blue); border-color: var(--primary-color); }
.onboarding .custom-checkbox .checkbox-icon { position: absolute; top: 20px; left: 20px; width: 40px; height: 40px; border-radius: 50%; background-color: var(--primary-color); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.onboarding .custom-checkbox .checkbox-icon img { max-width: 50%; }
.onboarding .custom-checkbox > input:checked + .box .checkbox-icon { opacity: 1; visibility: visible; }

.onboarding .import { margin-bottom: 40px; }
.onboarding .import a { display: inline-flex; align-items: center; gap: 10px; }
.onboarding .import img { max-width: 20px; }
.onboarding .import span b { color: var(--primary-color); }

/* Pre-Registration / Investment Section */
.registration-section { padding: 150px 0; background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url(../images/namibia-investment-banner.jpg); background-size: cover; background-repeat: no-repeat; background-position: center bottom; display: flex; align-items: center; justify-content: center; min-height: 500px; }
.registration-section .registration-content { max-width: 900px; width: 100%; margin: 0 auto; } 
.registration-section .registration-content .registration-head { padding-bottom: 20px; font-weight: 700; line-height: 1.2; font-size: clamp(32px, 4vw, 56px); }
.registration-section .input-item input:not(input.site-btn) { width: 100%; color: #000; margin-top: 6px; font-weight: 400; font-size: 16px; line-height: 1.5; display: block; padding: 8px 12px; border-radius: 8px; border: 1px solid #D5D7DA; box-shadow: 0px 1px 2px 0px #0A0D120D; }
.registration-section .input-item input::placeholder { color: #717680; }
.registration-section .input-item input:focus-visible:not(input.site-btn) { outline: none; }
.registration-section .input-item label { font-family: 'Lufga'; font-weight: 500; font-size: 14px; line-height: 1.429; padding-bottom: 30px; display: block; }
.registration-section .input-item { max-width: 50%; width: 100%; padding: 0 10px; }
.registration-section .input-row { margin: 0 -10px; }
.registration-section .input-item label .star { color: #7F56D9; font-size: 21px; display: inline-block; line-height: 20px; vertical-align: middle; }
.registration-section .check-box input[type="checkbox"] { display: none; }
.registration-section .check-box { width: fit-content; position: relative; padding-left: 25px; cursor: pointer; font-size: 16px; user-select: none; margin-bottom: 55px; }
.registration-section .check-box input[type="checkbox"] + span { cursor: pointer; position: absolute; left: 0; top: 0; width: 25px; height: 25px; border: 1px solid #D9D9D9; background-color: #fff; transition: all 0.3s ease; }
.registration-section .check-box input[type="checkbox"]:checked + span::after { content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 16px; height: 16px; background: url(../images/check.svg); background-position: center; background-size: cover; filter: brightness(0); }
.registration-section .check-box label { padding-left: 18px; cursor: pointer; font-family: 'Lufga'; font-weight: 400; font-size: 16px; line-height: 25px; }
.registration-from .input-row:nth-child(3) label { padding-bottom: 45px; }
.registration-section .input-row.preferred-language .input-item { max-width: 100%; }
.select-menu .select2-container { width: 100% !important; margin-top: 6px; } 
.select-menu .select2-container--default .select2-selection--single { border-color: #D5D7DA; height: 40px; border-radius: 8px; } 
.select-menu .select2-container--default .select2-selection--single .select2-selection__rendered {  color: #717680; font-family: 'Lufga'; font-weight: 400; font-size: 16px;  line-height: 40px; padding-left: 12px; padding-right: 35px; } 
.select-menu .select2-container--default .select2-selection--single .select2-selection__placeholder { color: #717680; margin-top: 6px; font-family: 'Lufga'; font-weight: 400; font-size: 16px; } 
.select-menu .select2-container--default .select2-selection--single .select2-selection__arrow { height: 100%; right: 12px; }
body .select2-container--default .select2-results__option--highlighted[aria-selected] { background-color: #006495; }
body .select2-dropdown { border: 1px solid #D5D7DA;  border-radius: 8px; }
.select2-container--open .select2-dropdown--above .select2-results__options { border-radius: 8px 8px 0px 0px; }
.select2-container--open .select2-dropdown--below .select2-results__options { border-radius: 0px 0px 8px 8px; }
body .select2-results__option[aria-selected] { padding: 8px 12px; }

.callout-section { background-color: #F5F5F5; }
.callout-section .callout-img { flex: 1; }
.callout-section .callout-img img { max-width: 1200px; margin: 0 auto; border-radius: 16px; }
.callout-section .callout-heading h2 { margin-bottom: 15px; }
.callout-section .callout-heading p { margin-bottom: 25px; }

/* Features */
.features-section .features-col { margin-bottom: 30px; }
.features-section .features-box { height: 100%; border: 1px solid #D5D7DA; padding: 40px; border-radius: 16px; overflow: hidden; }
.features-section .features-box .features-box-inner .icon { width: 60px; height: 60px; margin-bottom: 20px; }
.features-section .features-box .features-box-inner .icon img { max-width: 100%; }
.features-section .features-box .features-box-inner h4 { margin-bottom: 15px; }
.features-section .features-box .features-box-inner p { margin-bottom: 0; }


/* Responsive */
@media screen and (max-width: 1200px) {
    .onboarding .form-group .input-group { width: calc(50% - 10px); }
}

@media screen and (max-width: 1199px) {
    .site-btn { padding: 15px 25px; }
}

@media screen and (max-width: 991px) {
    .col-4 { max-width: 50%; margin-bottom: 30px; }
    .section-space { padding: 60px 0; }
    .header .logo img { max-width: 180px; }
    .header .right-nav ul { gap: 15px; }
    .how-it-works-section .how-it-work-col { max-width: calc(50% - 15px); }
    .onboarding .custom-checkbox .box > img { max-height: 150px; }
}

@media screen and (max-width: 767px) {
    .section-heading { margin-bottom: 30px; }
    .footer .link-item { gap: 20px; padding-bottom: 32px; }
    .col-4 { max-width: 100%; padding: 0; }
    .col-4:last-child { margin-bottom: 0; }
    .header { padding: 15px 0; }
    .header .logo img { max-width: 160px; }
    .header .site-btn { font-size: 14px; padding: 14px 20px; }
    .header .right-nav { gap: 10px; }
    .header .menu-toggler { display: flex; }
    .header .right-nav nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background-color: #fff; padding: 15px; z-index: 10; }
    .header .right-nav nav ul { flex-direction: column; }
    .home .header:not(.sticky) .right-nav ul li a { color: var(--dark-color); }
    .hero-section .hero-main { border-radius: 16px; padding: 40px 24px; }
    .hero-section .hero-content .hero-top p { font-size: 16px; padding-bottom: 30px; }
    .benefits-section .col-4 { margin-bottom: 40px; }
    .testimonial-section .testimonial p:before { width: 40px; height: 40px; margin-bottom: -5px; }
    .sign-up-section .form-box { padding: 24px; }
    .cta-section .row { text-align: center; justify-content: center; }
    .how-it-works-section .how-it-work-col { max-width: 100%; }
    .onboarding .form-group { gap: 0; }
    .onboarding .form-group .input-group { width: 100%; }
    .onboarding .input-group .custom-checkbox .box { padding: 40px 20px; }
    .onboarding .custom-checkbox .box > img { max-height: 100px; margin-bottom: 20px; }
    .onboarding .form-group, 
    .onboarding .import { margin-bottom: 20px; }
    .registration-section .input-item { padding: 0; max-width: 100%; } 
    .registration-section .input-row { margin: 0; } 
    .registration-section .input-item label,
    .registration-section .input-row:nth-child(3) label,
    .registration-section .registration-cover .registration-head { padding-bottom: 20px; } 
    .registration-section .registration-cover { padding: 30px 20px; }
    .registration-section .check-box input[type="checkbox"] + span { width: 20px; height: 20px; } 
    .registration-section .check-box label { line-height: 20px; padding-left: 6px; font-size: 14px; }
    .registration-section .check-box { margin-bottom: 20px; }
    .counter-wrapper .counter-row { display: block; padding-top: 40px; }
    .counter-wrapper .counter-row .counter-col { width: 100%; }
    .counter-wrapper .counter-row .counter-col br { display: none; }
    .counter-wrapper .counter-row .counter-col:not(:first-child) { padding: 20px 0 0; border: none; }
    .home .header:not(.sticky) .menu-toggler svg path { fill: #fff; }
}