/* ============================================================
   STATISTICS – Main Stylesheet
   ============================================================ */

:root {
  --blue-primary:   #265ABF;
  --blue-dark:      #1C3553;
  --blue-btn-start: #3468D8;
  --blue-icon:      #265ABF;
  --text-body:      #4a5a72;
  --text-light:     #8a97b0;
  --border:         #dce5f5;
  --card-bg:        #ffffff;
  --navbar-h:       72px;
}

/* ---- BASE ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(270deg, #FCFCFE 0%, #EBF0FB 50%, #F6F9FD 100%);
  background-attachment: fixed;
  color: var(--text-body);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ============================================================
   HEADING GRADIENT — applied to every h1/h2/h3/h4 heading
   ============================================================ */
h1, h2, h3, h4,
.section-heading,
.hero-heading,
.service-title,
.step-title,
.testimonial-name,
.perk-label,
.stat-number,
.stat-logo {
  background: linear-gradient(270deg, #265ABF 0%, #1C3553 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Override -webkit-text-fill for elements that need solid color */
.stat-logo { font-size: 1.35rem; font-weight: 800; letter-spacing: -0.5px; text-decoration: none; }
.stat-logo:hover { opacity: 0.85; }

/* ============================================================
   NAVBAR
   ============================================================ */
.stat-navbar {
  background: rgba(252, 252, 254, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(220, 229, 245, 0.8);
  height: var(--navbar-h);
  transition: box-shadow 0.3s;
}
.stat-navbar.scrolled { box-shadow: 0 2px 24px rgba(28,53,83,0.09); }

.stat-nav-link {
  color: var(--text-body) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.4rem 0.8rem !important;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  /* override gradient for nav links */
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}
.stat-nav-link:hover  { color: var(--blue-dark) !important; background: rgba(38,90,191,0.07); }
.stat-nav-link.active { color: var(--blue-dark) !important; font-weight: 700; background: rgba(38,90,191,0.07); }

/* ============================================================
   BUTTONS
   ============================================================ */
.stat-btn-primary {
  background: linear-gradient(135deg, #3468D8 0%, #265ABF 100%);
  color: #fff !important;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  /* reset gradient text */
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #fff;
  background-clip: unset;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.25s;
}
.stat-btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(38,90,191,0.38);
}

.stat-btn-outline {
  background: #fff;
  color: var(--blue-dark) !important;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  -webkit-text-fill-color: var(--blue-dark);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.stat-btn-outline:hover {
  background: var(--blue-primary);
  border-color: var(--blue-primary);
  transform: translateY(-1px);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  box-shadow: 0 8px 28px rgba(38,90,191,0.38);
}

/* ============================================================
   SECTION DOT NAV
   ============================================================ */
.section-dots {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 900;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #b8c8e4;
  opacity: 0.55;
  display: block;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  transition: background 0.3s, opacity 0.3s, transform 0.3s;
}
.dot::before {
  content: attr(data-label);
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--blue-dark);
  -webkit-text-fill-color: #fff;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.dot:hover::before { opacity: 1; }
.dot.active { background: var(--blue-primary); opacity: 1; transform: scale(1.3); }
@media (max-width: 767px) { .section-dots { display: none; } }

/* ============================================================
   SHARED SECTION
   ============================================================ */
.stat-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--navbar-h) + 64px) 0 80px;
}

.section-heading {
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  /* plain text, no gradient */
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: var(--text-light);
  background-clip: unset;
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section { text-align: center; }

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text-body);
  -webkit-text-fill-color: var(--text-body);
  padding: 0.45rem 1.3rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(6px);
}

.hero-heading {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.13rem);
  color: var(--text-body);
  -webkit-text-fill-color: var(--text-body);
  line-height: 1.72;
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.hero-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light);
  -webkit-text-fill-color: var(--text-light);
}
.hero-trust span { display: flex; align-items: center; gap: 6px; }

/* ============================================================
   SERVICES
   ============================================================ */
.service-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(28,53,83,0.1); }

.service-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(38,90,191,0.09);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.service-icon-wrap i {
  font-size: 1.4rem;
  color: var(--blue-icon);
  -webkit-text-fill-color: var(--blue-icon);
}

.service-title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
}

.service-powered {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-body);
  -webkit-text-fill-color: var(--text-body);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  margin-bottom: 1rem;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  -webkit-text-fill-color: var(--text-body);
  background: none; -webkit-background-clip: unset; background-clip: unset;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.service-link {
  color: var(--blue-primary);
  -webkit-text-fill-color: var(--blue-primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none; -webkit-background-clip: unset; background-clip: unset;
  transition: gap 0.2s, color 0.2s;
}
.service-link:hover { gap: 9px; color: var(--blue-dark); -webkit-text-fill-color: var(--blue-dark); }

/* ============================================================
   HOW IT WORKS — 3 columns always on desktop
   ============================================================ */
.steps-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
}

.step-col {
  flex: 1 1 0;
  min-width: 0;        /* prevent flex children overflowing */
}

.step-arrow {
  flex: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0;
  padding-top: 0;
  color: #b8c8e4;
  -webkit-text-fill-color: #b8c8e4;
  font-size: 1.3rem;
}

.step-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2.25rem 1.5rem;
  
  position: relative;
  text-align: center;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}
.step-card:hover { transform: translateY(-4px); border: 1px solid var(--blue-primary); box-shadow: 0 16px 48px rgba(28,53,83,0.1); }
.step-card.highlighted {
  
  border-color: var(--blue-primary);
  box-shadow: 0 8px 32px rgba(38,90,191,0.13);
}

.step-num {
  position: absolute;
  top: -14px; right: 18px;
  width: 30px; height: 30px;
  background: var(--blue-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  /* solid white text, not gradient */
  background: var(--blue-dark);
  -webkit-text-fill-color: #fff;
  color: #fff;
}
/* override gradient that h4 rule would catch */
.step-num { background-clip: unset; -webkit-background-clip: unset; }

.step-icon-wrap {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, #3468D8 0%, #265ABF 100%);
  border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.step-icon-wrap i { font-size: 1.4rem; color: #fff; -webkit-text-fill-color: #fff; }

.step-title { font-size: 1rem; font-weight: 700; margin-bottom: 0.65rem; }

.step-desc {
  font-size: 0.88rem;
  color: var(--text-body);
  -webkit-text-fill-color: var(--text-body);
  background: none; -webkit-background-clip: unset; background-clip: unset;
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   TRUST SIGNALS
   ============================================================ */
.testimonial-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2.5rem 2.5rem;
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: clamp(1.05rem, 2.5vw, 1.4rem);
  font-weight: 500;
  color: var(--text-body);
  -webkit-text-fill-color: var(--text-body);
  background: none; -webkit-background-clip: unset; background-clip: unset;
  line-height: 1.6;
  margin: 0;
}

.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3468D8, #1C3553);
  flex-shrink: 0;
}

.testimonial-name { font-size: 0.95rem; font-weight: 700; margin: 0; }

.testimonial-role {
  font-size: 0.84rem;
  color: var(--text-light);
  -webkit-text-fill-color: var(--text-light);
  background: none; -webkit-background-clip: unset; background-clip: unset;
  margin: 0;
}

.stat-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(28,53,83,0.09); }

.stat-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(38,90,191,0.08);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.stat-icon-wrap i { font-size: 1.4rem; color: var(--blue-icon); -webkit-text-fill-color: var(--blue-icon); }

.stat-number { font-size: 2.5rem; font-weight: 900; letter-spacing: -0.03em; margin: 0 0 0.25rem; }

.stat-label {
  font-size: 0.88rem;
  color: var(--text-light);
  -webkit-text-fill-color: var(--text-light);
  background: none; -webkit-background-clip: unset; background-clip: unset;
  margin: 0; font-weight: 500;
}

/* ============================================================
   COMMITMENT-FREE
   ============================================================ */
.commitment-section { text-align: center; position: relative; }

/* Reading progress bar — fills as the visitor scrolls through this section */
.reading-progress {
  position: fixed;
  top: var(--navbar-h);
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--blue-btn-start), var(--blue-dark));
  z-index: 1030;
  transition: width 0.1s linear;
}

.commitment-perks {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 3.5rem;
}

.perk-item { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }

.perk-icon {
  width: 68px; height: 68px;
  background: rgba(255,255,255,0.95);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(28,53,83,0.05);
  transition: transform 0.25s, box-shadow 0.25s;
}
.perk-icon i { font-size: 1.55rem; color: var(--blue-icon); -webkit-text-fill-color: var(--blue-icon); }
.perk-item:hover .perk-icon { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(38,90,191,0.16); }

.perk-label { font-size: 0.95rem; font-weight: 700; margin: 0; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { text-align: center; }
 
/* Form card */
.contact-form-card {
  max-width: 460px;
  margin: 0 auto;
  background: #fff;
  border-radius: 28px;
  padding: 2.25rem 2rem;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(28,53,83,0.08);
  text-align: left;
}
 
.contact-form-modern {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
 
.form-field {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F6F9FD;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 0.85rem 1.1rem;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.form-field i {
  color: var(--blue-icon);
  -webkit-text-fill-color: var(--blue-icon);
  font-size: 1.05rem;
  flex-shrink: 0;
}
.form-field input {
  border: none;
  outline: none;
  background: transparent;
  flex: 1;
  min-width: 0;
  width: 100%;
  font-size: 0.95rem;
  color: var(--text-body);
}
.form-field input::placeholder { color: var(--text-light); }
.form-field:focus-within {
  border-color: var(--blue-primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(38,90,191,0.1);
}
 
.contact-submit-btn-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.85rem 1.5rem !important;
}
 
#responseMessage { max-width: 460px; margin: 0.75rem auto 0; }
 
/* Divider between the form and alternative contact methods */
.contact-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 460px;
  margin: 2rem auto 1.5rem;
  color: var(--text-light);
  -webkit-text-fill-color: var(--text-light);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contact-divider::before,
.contact-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
 
/* Alternative ways to reach us */
.contact-alt-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 460px;
  margin: 0 auto;
}
 
.alt-action-btn {
  flex: 1 1 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 0.8rem 1.1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--blue-dark);
  -webkit-text-fill-color: var(--blue-dark);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.alt-action-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: rgba(38,90,191,0.09);
  font-size: 0.95rem;
}
.alt-action-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(28,53,83,0.12);
  border-color: var(--blue-primary);
}
.whatsapp-action .alt-action-icon { background: rgba(37,211,102,0.12); color: #1ebe5d; }
.whatsapp-action:hover { border-color: #25D366; }
.meet-action .alt-action-icon { color: var(--blue-icon); }
 
 
 
 
 
 
.section-tagline{
    max-width:700px;
    margin:auto;
    font-size:18px;
    color:#666;
    margin-bottom:50px;
}
 
 
 
 
.reveal{
    opacity:0;
    transform:translateY(50px);
    transition:all .8s ease;
}
 
.reveal.active{
    opacity:1;
    transform:translateY(0);
}
 
 
#typed-text::after{
    content:"|";
    animation:blink .8s infinite;
}
 
@keyframes blink{
    50%{opacity:0;}
}
 
.hero-sub-single {
    max-width: 950px;
    margin: 50px auto;
    padding: 45px;
 
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
 
    border-radius: 24px;
 
    border: 1px solid rgba(255,255,255,.4);
 
    box-shadow:
        0 20px 60px rgba(0,0,0,.08);
 
    position: relative;
    overflow: hidden;
 
    font-size: 18px;
    line-height: 1.9;
}
 
.hero-sub-single::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
 
    width: 100%;
    height: 100%;
 
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.4),
        transparent
    );
 
    transition: 1.5s;
}
 
.hero-sub-single:hover::before {
    left: 100%;
}
 
/* Paragraphs inside the commitment card reveal one-by-one, staggered,
   once the parent card has scrolled into view (parent gets .show from
   the IntersectionObserver in index.php). */
.hero-sub-single p.reveal-para {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s cubic-bezier(0.22,0.61,0.36,1),
                transform 0.65s cubic-bezier(0.22,0.61,0.36,1);
    text-align: left;
    margin-bottom: 1.35rem;
}
.hero-sub-single.show p.reveal-para { opacity: 1; transform: translateY(0); }
.hero-sub-single.show p.reveal-para:nth-of-type(1) { transition-delay: 0.05s; }
.hero-sub-single.show p.reveal-para:nth-of-type(2) { transition-delay: 0.15s; }
.hero-sub-single.show p.reveal-para:nth-of-type(3) { transition-delay: 0.25s; }
.hero-sub-single.show p.reveal-para:nth-of-type(4) { transition-delay: 0.35s; }
.hero-sub-single.show p.reveal-para:nth-of-type(5) { transition-delay: 0.45s; }
.hero-sub-single.show p.reveal-para:nth-of-type(6) { transition-delay: 0.55s; }
 
.reveal-para-highlight {
    margin-bottom: 0 !important;
    padding-top: 1.35rem;
    border-top: 1px solid var(--border);
    font-weight: 600;
    color: var(--blue-dark) !important;
    -webkit-text-fill-color: var(--blue-dark) !important;
}
 
@media (prefers-reduced-motion: reduce) {
  .hero-sub-single p.reveal-para { opacity: 1 !important; transform: none !important; transition: none !important; }
}
 
/* Scroll Animation */
.animate-scroll-card {
    opacity: 0;
    transform: translateY(80px) scale(.96);
    transition: all 1s ease;
}
 
.animate-scroll-card.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}
 
 
.floating-dot{
    position:absolute;
    top:20px;
    right:20px;
    width:12px;
    height:12px;
    border-radius:50%;
    background:#0d6efd;
    animation:pulse 2s infinite;
}
 
@keyframes pulse{
    0%{transform:scale(1);}
    50%{transform:scale(1.5);}
    100%{transform:scale(1);}
}
 
.content-reader {
    position: relative;
}
 
.content-reader::before {
    content: "";
    position: absolute;
    left: -25px;
    top: 0;
    width: 3px;
    height: 100%;
    background: rgba(13,110,253,.15);
}
 
/* ============================================================
   FOOTER
   ============================================================ */
.stat-footer {
  background: rgba(252,252,254,0.85);
  border-top: 1px solid var(--border);
  padding: 2rem 0;
}

.footer-link {
  color: var(--text-body);
  -webkit-text-fill-color: var(--text-body);
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--blue-primary); -webkit-text-fill-color: var(--blue-primary); }


.phone-wrapper {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    padding: 10px;
}

.phone-wrapper .country-code {
    font-weight: bold;
    margin-right: 8px;
    color: #333;
}

.phone-wrapper input {
    border: none;
    outline: none;
    flex: 1;
}

input:-internal-autofill-selected {
    appearance: menulist-button;
    background-image: none !important;
    background-color: #fff !important;
    color: fieldtext !important;
}
/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
  opacity: 0;
  animation: fadeUp 0.72s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.30s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.60s; }

.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22,0.61,0.36,1),
              transform 0.65s cubic-bezier(0.22,0.61,0.36,1);
}
.animate-on-scroll.delay-1 { transition-delay: 0.12s; }
.animate-on-scroll.delay-2 { transition-delay: 0.24s; }
.animate-on-scroll.delay-3 { transition-delay: 0.36s; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .animate-fade-up, .animate-on-scroll {
    animation: none !important; transition: none !important;
    opacity: 1 !important; transform: none !important;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .stat-section { min-height: auto; padding: calc(var(--navbar-h) + 48px) 0 64px; }
  .contact-card{width: 100%;}
  
  .navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
    background: white;
    padding: 30px;
}
}

/* Tablet: still 3-col for steps, shrink padding */
@media (max-width: 991px) and (min-width: 576px) {
  .step-card { padding: 1.75rem 1rem; }
  .step-arrow { flex: 0 0 24px; font-size: 1rem; }
  .contact-card{width: 100%;}
  
  .navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
    background: white;
    padding: 30px;
}
}

/* Mobile: stack steps */
@media (max-width: 575px) {
  .steps-row { flex-direction: column; gap: 1.5rem; }
  .step-arrow { display: none; }
  .step-col { width: 100%; }
  .hero-trust { gap: 1.25rem; font-size: 0.82rem; }
  .service-card, .step-card { padding: 1.75rem 1.25rem; }
  .testimonial-card { padding: 1.75rem 1.25rem; }
  .commitment-perks { gap: 1.75rem; }
  .contact-inline {
    flex-direction: column;
    border-radius: 16px;
    padding: 12px;
    gap: 10px;
  }
  
  
  .navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
    background: white;
    padding: 30px;
}

  .contact-card{width: 100%;}
  .contact-email-input { width: 100%; text-align: center; }
  .contact-submit-btn { width: 100%; text-align: center; }
  .schedule-meet-btn { width: 100%; justify-content: center; }
}