* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #F5F7FA;
  color: #1B1F23;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* NAVBAR */
.navbar {
  background: white;
  padding: 18px 0;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s ease;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links a {
  margin: 0 15px;
  text-decoration: none;
  color: #1B1F23;
  font-weight: 500;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Header logo sizing */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 80px;        /* same size as header */
  width: auto;         /* keeps aspect ratio */
  object-fit: contain;
  display: block;
}


.login {
  text-decoration: none;
  color: #1B1F23;
  font-weight: 500;
}


/* Hamburger Menu Button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: #1B1F23;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger animation when active */
.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  display: block;
  opacity: 1;
}

/* BUTTONS */
.btn-primary {
  background: #F5B400;
  border: none;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: white;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.large {
  padding: 14px 28px;
  font-size: 16px;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #142C56, #0F2346);
  color: white;
  padding: 120px 0;
  text-align: center;
}

.badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 30px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
}

.hero h1 span {
  color: #F5B400;
}

.hero p {
  margin: 30px auto;
  max-width: 700px;
  font-size: 18px;
  opacity: 0.9;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.stats {
  margin-top: 70px;
  display: flex;
  justify-content: center;
  gap: 80px;
}

.stats h3 {
  font-size: 28px;
  color: #F5B400;
}

.stats p {
  font-size: 14px;
  opacity: 0.8;
}
.hero{
  position: relative;
  overflow: hidden;     /* prevents extra space */
  padding-bottom: 120px; /* gives room for the wave */
}

.hero-wave{
  position: absolute;
  left: 0;
  bottom: -1px; /* kills the tiny gap line */
  width: 100%;
  line-height: 0;
  pointer-events: none;
}

.hero-wave svg{
  display: block;
  width: 100%;
  height: 140px; /* adjust curve height */
}


/* SERVICES SECTION */
.services {
  background: #F5F7FA;
  padding: 90px 0;
}

.section-label {
  text-align: center;
  color: #F5B400;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 12px;
  margin-bottom: 14px;
}

.section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 14px;
}

.section-subtitle {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 50px;
  color: #6B7280;
  line-height: 1.7;
  font-size: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  background: #fff;
  border: 1px solid #E7ECF3;
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: #F2F5FA;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 10px;
}

.service-card p {
  color: #6B7280;
  line-height: 1.7;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 34px; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
}
/* HOW IT WORKS */
.how-it-works {
  padding: 100px 20px;
  background: #F5F7FA;
  text-align: center;
}

.section-label {
  color: #F4B400;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

.section-header h2 {
  font-size: 36px;
  margin: 15px 0;
  color: #0F172A;
}

.section-header p {
  color: #64748B;
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.step-card {
  background: #FFFFFF;
  padding: 40px 25px;
  border-radius: 16px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #F4B400;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 20px;
}

.step-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.step-card h3 {
  margin-bottom: 15px;
  color: #0F172A;
}

.step-card p {
  font-size: 14px;
  color: #64748B;
}
@media (max-width: 992px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .steps {
    grid-template-columns: 1fr;
  }
}
/* DARK STATS SECTION */
.stats-dark {
  background: linear-gradient(135deg, #0F274F, #152E5C);
  padding: 70px 20px;
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item h3 {
  font-size: 38px;
  font-weight: 700;
  color: #F4B400; /* gold */
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
}
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}
/* CTA SECTION (outer background) */
.cta-section {
  background: #F5F7FA;
  padding: 120px 20px;
}

/* Blue rounded container */
.cta-box {
  background: linear-gradient(135deg, #142C56, #0F2346);
  border-radius: 30px;
  padding: 80px 40px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Headline */
.cta-box h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

/* Paragraph */
.cta-box p {
  max-width: 650px;
  margin: 0 auto 40px auto;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* White outline button */
.btn-outline-light {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.6);
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-outline-light:hover {
  background: #ffffff;
  color: #142C56;
}

.cta-box small {
  display: block;
  margin-top: 15px;
  color: rgba(255,255,255,0.6);
}
/* FOOTER (Exact clone style) */
.footer{
  background: #0f2a4d;              /* deep navy */
  color: rgba(255,255,255,.78);
  padding: 64px 0 28px;
}

.footer-inner{
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

/* Left brand */
.footer-brand .footer-logo{
  width: 72px;
  height: 56px;
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  margin-bottom: 14px;
}
.footer-brand .footer-logo img{
  width: 200%;
  height: auto;
  object-fit: contain;
  padding: 8px;
}

.footer-desc{
  margin: 0 0 18px;
  line-height: 1.6;
  max-width: 320px;
  font-size: 14px;
  color: rgba(255,255,255,.75);
}

.footer-contact{
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.footer-contact-item{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: rgba(255,255,255,.78);
  text-decoration: none;
}
.footer-contact-item:hover{
  color: #ffffff;
}
.footer-contact-item .icon{
  opacity: .9;
  width: 18px;
  text-align: center;
}

/* Columns */
.footer-cols{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.footer-col h4{
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

.footer-col ul{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-col a{
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-size: 14px;
}
.footer-col a:hover{
  color: #ffffff;
}

/* Bottom line */
.footer-bottom{
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.footer-bottom-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-copy{
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,.6);
}

.footer-loc{
  font-size: 13px;
  color: rgba(255,255,255,.62);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Responsive */
@media (max-width: 980px){
  .footer-inner{
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .footer-cols{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px){
  .footer-cols{
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom-inner{
    flex-direction: column;
    align-items: flex-start;
  }
}
/* Modal */
.modal-overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 9999;
}

.modal-overlay.is-open{
  display: flex;
}

.modal-box{
  width: min(720px, 100%);
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  max-height: 85vh;
  overflow: auto;
}

.modal-close{
  position: absolute;
  top: 14px;
  right: 14px;
  border: 0;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
}

.modal-box h3{
  margin: 0 0 16px;
}

.modal-box label{
  display: block;
  margin: 12px 0 6px;
  font-weight: 600;
}

.modal-box input,
.modal-box select,
.modal-box textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dfe6f1;
  border-radius: 10px;
  outline: none;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  transition: all 0.2s ease;
}

.modal-box input:focus,
.modal-box select:focus,
.modal-box textarea:focus {
  border-color: #facc15;
  box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.1);
}

/* Enhanced Select Dropdown Styling */
.modal-box select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23333' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}

.modal-box select:hover {
  border-color: #cbd5e1;
}

.modal-box select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23facc15' d='M8 11L3 6h10z'/%3E%3C/svg%3E");
}

/* Placeholder color for select */
.modal-box select option[value=""] {
  color: #9ca3af;
}

.modal-actions{
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 18px;
}
.modal-overlay.is-open{
  display: flex !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.modal-overlay{
  visibility: hidden;
  opacity: 0;
}

.modal-overlay.is-open{
  visibility: visible;
  opacity: 1;
}

/* ================================
   FORM STEP VISIBILITY CONTROL
================================ */
#verificationForm {
  position: relative;
  min-height: 400px; /* Prevent layout shift between steps */
}

.form-step {
  display: none !important; /* Hide all steps by default */
  opacity: 0;
  visibility: hidden;
  position: absolute;
  pointer-events: none;
  width: 100%;
  top: 0;
  left: 0;
}

.form-step.active {
  display: flex !important; /* Show only active step */
  flex-direction: column;
  opacity: 1;
  visibility: visible;
  position: relative;
  pointer-events: auto;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.modal-box h3 {
  margin-bottom: 15px;
}

.modal-box input[type="file"] {
  padding: 10px 0;
}
/* ================================
   MODAL NAVIGATION BUTTONS (Side by Side)
================================ */

/* Button Container */
.form-step-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* Shared base */
.next-step,
.prev-step {
  flex: 1;
  min-width: 140px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

/* 🔵 BACK BUTTON (Secondary Style) */
.prev-step {
  background: #ffffff;
  color: #2563eb;
  border: 2px solid #2563eb;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
  flex: 0 1 auto; /* Don't stretch as much */
}

.prev-step:hover {
  background: #eff6ff;
  border-color: #1e40af;
  color: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.prev-step:active {
  transform: scale(0.98);
}

/* 🟡 CONTINUE BUTTON (Primary Style) */
.next-step,
button[type="submit"].btn-primary {
  background: linear-gradient(135deg, #facc15 0%, #eab308 100%);
  color: #111827;
  box-shadow: 0 4px 14px rgba(250, 204, 21, 0.4);
  flex: 1 1 auto; /* Stretch more to emphasize */
}

.next-step:hover,
button[type="submit"].btn-primary:hover {
  background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(234, 179, 8, 0.5);
}

.next-step:active,
button[type="submit"].btn-primary:active {
  transform: scale(0.98);
}

/* Disabled state */
.next-step:disabled,
.prev-step:disabled,
button[type="submit"].btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Focus accessibility */
.next-step:focus-visible,
.prev-step:focus-visible,
button[type="submit"].btn-primary:focus-visible {
  outline: 3px solid rgba(250, 204, 21, 0.5);
  outline-offset: 3px;
}

.next-step:active {
  transform: scale(0.96);
}

/* ================================
   BUTTON LAYOUT OVERRIDES
================================ */

/* Wrap buttons side by side - ONLY for active steps */
.modal-box .form-step.active {
  display: flex !important;
  flex-direction: column;
}

/* Create button row container automatically */
.modal-box .form-step .prev-step,
.modal-box .form-step .next-step {
  margin-top: 0; /* Reset margin since we use gap in container */
}

/* First button in step (if it's the only one) */
.modal-box .form-step button:only-of-type {
  margin-top: 24px;
  width: 100%;
}

/* When there are multiple buttons, create flex row */
.modal-box .form-step:has(button.prev-step) button,
.modal-box .form-step:has(button.next-step) button {
  margin-top: 24px;
}

.modal-box .form-step button:first-of-type {
  margin-right: 0;
}

/* ================================
   PROGRESS BAR
================================ */
.form-progress {
  margin: 20px 0 30px;
  text-align: center;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #facc15, #eab308);
  transition: width 0.4s ease;
  border-radius: 999px;
}

.progress-text {
  font-size: 14px;
  color: #6b7280;
  font-weight: 500;
}

/* ================================
   FORM VALIDATION & ERRORS
================================ */
input.error,
select.error,
textarea.error {
  border-color: #ef4444 !important;
  background: #fef2f2 !important;
}

.field-error {
  color: #ef4444;
  font-size: 13px;
  margin-top: 4px;
  display: block;
  font-weight: 500;
}

/* ================================
   LOADING SPINNER
================================ */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ================================
   TERMS BOX
================================ */
.terms-box {
  height: 250px;
  overflow-y: scroll;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fafafa;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.terms-box::-webkit-scrollbar {
  width: 8px;
}

.terms-box::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.terms-box::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

.terms-box::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* ================================
   CHECKBOX LABEL STYLING
================================ */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  cursor: pointer;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.checkbox-label span {
  line-height: 1.5;
}

/* ================================
   FILE INPUT INFO
================================ */
.file-info {
  margin-top: 8px;
  padding: 8px 12px;
  background: #d1fae5;
  border: 1px solid #86efac;
  border-radius: 6px;
  color: #166534;
  font-size: 13px;
  font-weight: 500;
}

/* ================================
   ACCESSIBILITY
================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Focus visible for keyboard navigation */
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.5);
  outline-offset: 2px;
}

/* ================================
   SELECT DROPDOWN STYLING
================================ */
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

select:focus {
  border-color: #facc15;
}

/* ================================
   MOBILE RESPONSIVE IMPROVEMENTS
================================ */


/* Navbar Responsive Styles */
@media (max-width: 992px) {
  .hamburger {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 80px 30px 30px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .nav-links a {
    margin: 0;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    display: block;
  }
  
  .nav-links a:last-child {
    border-bottom: none;
  }
  
  .nav-actions {
    margin-left: auto;
    margin-right: 10px;
  }
  
  /* Stats section on tablets */
  .stats {
    gap: 50px;
    margin-top: 50px;
  }
  
  .stats h3 {
    font-size: 24px;
  }
  
  .stats p {
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .logo img {
    height: 60px;
  }
  
  .nav-actions {
    gap: 8px;
  }
  
  .nav-actions .login {
    display: none; /* Hide login link on very small screens */
  }
  
  .btn-primary {
    padding: 8px 16px;
    font-size: 14px;
  }
  
  .nav-links {
    width: 100%;
    right: -100%;
  }
  
  /* Hero section on mobile */
  .hero {
    padding: 80px 0 80px;
  }
  
  .hero h1 {
    font-size: 32px;
    line-height: 1.2;
  }
  
  .badge {
    font-size: 12px;
    padding: 6px 14px;
    margin-bottom: 20px;
  }
  
  .hero-subtitle {
    font-size: 16px;
    padding: 0 10px;
  }
  
  .hero p {
    font-size: 16px;
    padding: 0 15px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 20px;
  }
  
  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    width: 100%;
    max-width: 300px;
  }
  
  /* Stats section on mobile - stack vertically or reduce gap */
  .stats {
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
    text-align: center;
  }
  
  .stats div {
    padding: 15px;
  }
  
  .stats h3 {
    font-size: 36px;
    margin-bottom: 5px;
  }
  
  .stats p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  /* Stats on smaller tablets - horizontal but tighter */
  .stats {
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .stats div {
    min-width: 120px;
  }
  
  .stats h3 {
    font-size: 28px;
  }
}


@media (max-width: 768px) {
  .modal-box {
    width: 95%;
    max-width: none;
    padding: 20px;
    max-height: 95vh;
  }
  
  .form-progress {
    margin: 15px 0 20px;
  }
  
  .progress-text {
    font-size: 13px;
  }
  
  /* Button responsiveness */
  .form-step-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .next-step,
  .prev-step,
  button[type="submit"].btn-primary {
    width: 100%;
    padding: 12px 24px;
    font-size: 14px;
    min-width: auto;
  }
  
  /* Reverse order on mobile so Continue is on top */
  .form-step-buttons {
    flex-direction: column-reverse;
  }
  
  .terms-box {
    height: 200px;
    font-size: 13px;
  }
}