/* ═══════════════════════════════════════════════
   KVCH CORPORATE TRAINING – GLOBAL STYLESHEET
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=DM+Serif+Display:ital@0;1&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --blue: #0A66C2;
  --blue-dark: #0850A0;
  --blue-light: #E8F1FB;
  --blue-mid: #1E80D8;
  --accent: #00C2FF;
  --white: #FFFFFF;
  --grey-50: #F8FAFC;
  --grey-100: #F1F5F9;
  --grey-200: #E2E8F0;
  --grey-400: #94A3B8;
  --grey-500: #64748B;
  --grey-600: #475569;
  --grey-700: #334155;
  --grey-800: #1E293B;
  --grey-900: #0F172A;
  --shadow-sm: 0 1px 3px rgba(10,102,194,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(10,102,194,0.12), 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(10,102,194,0.15), 0 4px 16px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 60px rgba(10,102,194,0.18), 0 8px 24px rgba(0,0,0,0.1);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xl: 24px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--grey-800);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 50px; font-size: 14px; font-weight: 600;
  text-decoration: none; cursor: pointer; border: none; transition: all 0.25s;
  font-family: inherit;
}
.btn-ghost {
  background: transparent; color: var(--grey-700); border: 1.5px solid var(--grey-200);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: white; box-shadow: 0 4px 14px rgba(10,102,194,0.35);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(10,102,194,0.45); }
.btn-outline {
  background: transparent; color: var(--blue); border: 2px solid var(--blue);
}
.btn-outline:hover { background: var(--blue); color: white; }
.btn-white {
  background: white; color: var(--blue); font-weight: 700;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.btn-lg { padding: 14px 30px; font-size: 15px; }

/* ── SECTIONS COMMON ── */
section { padding: 70px 5%; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue-light); color: var(--blue);
  border-radius: 50px; padding: 5px 14px; font-size: 12px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 16px;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3vw, 44px); line-height: 1.2;
  color: var(--grey-900); margin-bottom: 16px;
}
.section-sub {
  font-size: 16px; color: var(--grey-600); max-width: 560px; line-height: 1.7;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-sub { margin: 0 auto; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── NAVBAR ── */
nav#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: nowrap;
  padding: 0 5%; height: 72px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(10,102,194,0.08);
  transition: box-shadow 0.3s, height 0.3s;
}
nav#navbar.mobile-open {
  height: auto;
  min-height: 72px;
  align-items: flex-start;
  padding-top: 16px;
  padding-bottom: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
nav#navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.nav-logo-icon {
  width: 38px; height: 38px; background: linear-gradient(135deg, var(--blue), var(--accent));
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 16px; letter-spacing: -0.5px;
}
.nav-logo-text { font-size: 22px; font-weight: 800; color: var(--grey-900); letter-spacing: -0.5px; }
.nav-logo-text span { color: var(--blue); }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  text-decoration: none; color: var(--grey-600); font-size: 14px; font-weight: 500;
  transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 2px; background: var(--blue); border-radius: 2px;
  transform: scaleX(0); transition: transform 0.25s;
}
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--blue); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 6px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px; background: var(--grey-800);
  border-radius: 2px; transition: all 0.3s;
}

/* ── FOOTER ── */
footer {
  background: var(--grey-900); color: rgba(255,255,255,0.75); padding: 80px 5% 0;
}
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.6fr; gap: 48px;
  padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {}
.footer-logo {
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
}
.footer-logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 14px;
}
.footer-logo-text { font-size: 20px; font-weight: 800; color: white; }
.footer-desc { font-size: 13px; line-height: 1.7; margin-bottom: 24px; max-width: 300px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 13px; font-weight: 700;
  transition: all 0.25s; text-decoration: none;
}
.social-link:hover { background: var(--blue); color: white; border-color: var(--blue); }
.footer-col-title {
  font-size: 12px; font-weight: 700; color: white;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a {
  font-size: 13px; color: rgba(255,255,255,0.6);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: white; }
.footer-newsletter .footer-newsletter-title {
  font-size: 12px; font-weight: 700; color: white;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px;
}
.footer-newsletter p { font-size: 13px; line-height: 1.7; margin-bottom: 20px; }
.newsletter-input {
  display: flex; gap: 0;
  border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; overflow: hidden;
}
.newsletter-input input {
  flex: 1; padding: 11px 14px; background: rgba(255,255,255,0.06);
  border: none; outline: none; color: white; font-size: 13px; font-family: inherit;
}
.newsletter-input input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-input button {
  padding: 11px 18px; background: var(--blue); color: white;
  border: none; cursor: pointer; font-size: 13px; font-weight: 600; font-family: inherit;
  transition: background 0.25s;
}
.newsletter-input button:hover { background: var(--blue-mid); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 0; font-size: 12px; color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: white; }
.footer-bottom-links { display: flex; gap: 24px; }

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10,20,40,0.7); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
  padding: 16px; overflow-y: auto;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: white; border-radius: 20px; width: 100%; max-width: 860px;
  position: relative; margin: auto; overflow: hidden;
  display: flex; flex-direction: row;
  transform: translateY(24px) scale(0.97); transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 32px 80px rgba(10,20,40,0.3);
  max-height: calc(100vh - 32px);
}
.modal-overlay.open .modal-box { transform: none; }
/* ── Left purple panel ── */
.modal-panel-left {
  background: linear-gradient(145deg, #3B1FA3 0%, #2563EB 60%, #1D4ED8 100%);
  padding: 44px 36px; width: 42%; flex-shrink: 0;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.modal-panel-left::before {
  content:''; position:absolute; top:-60px; left:-60px;
  width:220px; height:220px; background:rgba(255,255,255,0.06); border-radius:50%;
}
.modal-panel-left::after {
  content:''; position:absolute; bottom:-80px; right:-40px;
  width:260px; height:260px; background:rgba(255,255,255,0.05); border-radius:50%;
}
.modal-left-tag {
  display:inline-flex; align-items:center; gap:6px;
  background:rgba(255,255,255,0.15); color:white;
  border-radius:50px; padding:5px 14px; font-size:11px; font-weight:700;
  letter-spacing:0.5px; text-transform:uppercase; margin-bottom:24px;
  width:fit-content; position:relative; z-index:1;
}
.modal-panel-left h3 {
  font-family:'DM Serif Display',serif; font-size:30px; color:white;
  line-height:1.2; margin-bottom:8px; position:relative; z-index:1;
}
.modal-panel-left h3 em { font-style:italic; color:#93C5FD; }
.modal-panel-left p {
  font-size:13px; color:rgba(255,255,255,0.75); line-height:1.6;
  margin-bottom:24px; position:relative; z-index:1;
}
.modal-benefits { list-style:none; padding:0; margin:0; position:relative; z-index:1; }
.modal-benefits li {
  display:flex; align-items:flex-start; gap:10px;
  font-size:13px; color:rgba(255,255,255,0.85); padding:5px 0; line-height:1.45;
}
.modal-benefits li::before {
  content:'✓'; width:20px; height:20px; min-width:20px;
  background:rgba(255,255,255,0.2); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:11px; font-weight:700; color:white;
}
/* ── Right form panel ── */
.modal-panel-right {
  padding: 40px 36px; flex: 1; overflow-y: auto; overflow-x: hidden; min-width: 0;
}
.modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 32px; height: 32px; border-radius: 50%; background: rgba(0,0,0,0.08);
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: #fff; transition: all 0.2s;
}
.modal-close:hover { background: rgba(0,0,0,0.2); }
.modal-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue-light); color: var(--blue);
  border-radius: 50px; padding: 4px 12px; font-size: 11px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 12px;
}
.modal-title {
  font-family: 'DM Serif Display', serif; font-size: 24px;
  color: var(--grey-900); margin-bottom: 6px; line-height: 1.25;
}
.modal-sub { font-size: 13px; color: var(--grey-600); margin-bottom: 20px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; min-width: 0; }
.form-row .form-group { min-width: 0; }
.form-group select { width: 100%; min-width: 0; box-sizing: border-box; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--grey-700); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 13px; border: 1.5px solid var(--grey-200); border-radius: var(--radius-sm);
  font-size: 13.5px; font-family: inherit; outline: none; color: var(--grey-800);
  transition: border-color 0.2s, box-shadow 0.2s; background: var(--grey-50);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue); background: white;
  box-shadow: 0 0 0 3px rgba(10,102,194,0.08);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey-400); }
.modal-submit {
  width: 100%; padding: 13px; background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: white; border: none; border-radius: 50px; font-size: 14px; font-weight: 700;
  font-family: inherit; cursor: pointer; transition: all 0.25s;
  box-shadow: 0 4px 14px rgba(10,102,194,0.35); margin-top: 4px;
}
.modal-submit:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(10,102,194,0.45); }
.modal-privacy { font-size: 11px; color: var(--grey-400); text-align: center; margin-top: 10px; }
.modal-success { text-align: center; padding: 20px 0; display: none; }
.modal-success .success-icon {
  width: 64px; height: 64px; background: #DCFCE7; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 20px;
}
.modal-success h3 { font-family: 'DM Serif Display', serif; font-size: 24px; color: var(--grey-900); margin-bottom: 10px; }
.modal-success p { font-size: 14px; color: var(--grey-600); line-height: 1.6; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 100px 5% 60px;
  background: linear-gradient(160deg, #F0F7FF 0%, #E8F1FB 40%, #FAFEFF 80%, white 100%);
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(10,102,194,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.page-hero-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.page-hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: white; border: 1px solid rgba(10,102,194,0.15);
  border-radius: 50px; padding: 6px 14px; font-size: 12px; font-weight: 600; color: var(--blue);
  margin-bottom: 20px; box-shadow: var(--shadow-sm);
}
.page-hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 4.5vw, 60px); line-height: 1.1;
  color: var(--grey-900); margin-bottom: 20px;
}
.page-hero-title .highlight { color: var(--blue); font-style: italic; }
.page-hero-sub {
  font-size: 17px; color: var(--grey-600); max-width: 560px; line-height: 1.7; margin-bottom: 36px;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--grey-400);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--blue); font-weight: 500; }
.breadcrumb span { color: var(--grey-300); }

/* ── CTA BANNER ── */
#cta, .cta-section {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--blue-mid) 100%);
  position: relative; overflow: hidden; padding: 70px 5%;
}
#cta::before, .cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.cta-inner { max-width: 800px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.cta-title {
  font-family: 'DM Serif Display', serif; font-size: clamp(28px, 3.5vw, 48px);
  color: white; margin-bottom: 16px; line-height: 1.2;
}
.cta-sub { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 40px; line-height: 1.6; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.cta-features { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.cta-feat {
  display: flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.cta-feat::before { content: '✓'; color: #86EFAC; font-weight: 700; }

/* ── TRUSTED LOGOS ── */
#trusted {
  padding: 40px 5%;
  background: white; border-top: 1px solid var(--grey-100); border-bottom: 1px solid var(--grey-100);
}
.trusted-label {
  text-align: center; font-size: 13px; font-weight: 600;
  color: var(--grey-400); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 32px;
}
.logo-track-wrapper {
  overflow: hidden;
  position: relative;
  /* Ensure stable height even before images load */
  min-height: 90px;
}
.logo-track-wrapper::before,
.logo-track-wrapper::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 2; pointer-events: none;
}
.logo-track-wrapper::before { left: 0; background: linear-gradient(to right, white 40%, transparent); }
.logo-track-wrapper::after  { right: 0; background: linear-gradient(to left, white 40%, transparent); }
.logo-track {
  display: flex;
  gap: 80px;
  align-items: center;
  width: max-content;
  /* GPU-composited animation — no layout, no paint, no jitter */
  will-change: transform;
  animation: scroll-logos 32s linear infinite;
  /* Prevent subpixel jitter by anchoring to integer pixels */
  transform: translateZ(0);
  backface-visibility: hidden;
}
.logo-track-wrapper:hover .logo-track {
  animation-play-state: paused;
}
@keyframes scroll-logos {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}
.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  /* Reserve stable space so layout doesn't shift on image load */
  min-width: 130px;
  height: 80px;
  filter: grayscale(1) opacity(0.5);
  transition: filter 0.3s ease;
}
.logo-item:hover { filter: grayscale(0) opacity(1); }
.logo-img {
  height: 56px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  /* Prevent image-load reflow from bumping the track */
  display: block;
}

/* ── STATS SECTION ── */
#stats, .stats-section {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--blue-mid) 100%);
  position: relative; overflow: hidden; padding: 70px 5%;
}
#stats::before, .stats-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}
.stats-inner { max-width: 1100px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.stats-title { font-family: 'DM Serif Display', serif; font-size: clamp(28px, 3vw, 42px); color: white; margin-bottom: 12px; }
.stats-sub { font-size: 16px; color: rgba(255,255,255,0.75); margin-bottom: 64px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.stat-item {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(10px);
  padding: 40px 20px; border: 1px solid rgba(255,255,255,0.12); transition: background 0.3s;
}
.stat-item:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.stat-item:last-child  { border-radius: 0 var(--radius) var(--radius) 0; }
.stat-item:hover { background: rgba(255,255,255,0.15); }
.stat-num { font-family: 'DM Serif Display', serif; font-size: 48px; color: white; line-height: 1; margin-bottom: 8px; }
.stat-num span { font-size: 32px; }
.stat-lbl { font-size: 13px; color: rgba(255,255,255,0.65); font-weight: 500; }

/* ── ANIMATIONS ── */
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50%      { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .modal-box { max-width: 740px; }
  .modal-panel-left { width: 38%; padding: 36px 28px; }
  .modal-panel-right { padding: 32px 28px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  nav#navbar.mobile-open {
    flex-wrap: wrap;
    align-items: flex-start;
    padding-bottom: 0;
  }
  nav#navbar.mobile-open .nav-links {
    display: flex; flex-direction: column; gap: 0;
    width: 100%;
    order: 3;
    background: white; padding: 8px 5% 4px; border-top: 1px solid var(--grey-100);
  }
  nav#navbar.mobile-open .nav-links a {
    padding: 13px 0; border-bottom: 1px solid var(--grey-100); font-size: 16px;
  }
  nav#navbar.mobile-open .nav-links li:last-child a { border-bottom: none; }
  nav#navbar.mobile-open .nav-links a::after { display: none; }
  nav#navbar.mobile-open .nav-links a.active {
    color: var(--blue);
    font-weight: 700;
  }
  nav#navbar.mobile-open .nav-links li:has(a.active) {
    border-left: 3px solid var(--blue);
    padding-left: 10px;
    margin-left: -3px;
  }
  nav#navbar.mobile-open .nav-cta {
    display: flex;
    width: 100%;
    order: 4;
    flex-direction: column;
    gap: 10px;
    padding: 16px 5% 20px;
    background: white;
    border-top: 1px solid var(--grey-100);
    position: static;
    margin-top: 0;
  }
  nav#navbar.mobile-open .nav-cta .whatsapp-btn,
  nav#navbar.mobile-open .nav-cta .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 50px 5%; }
  .form-row { grid-template-columns: 1fr; }
  .modal-overlay { padding: 10px; align-items: flex-start; }
  .modal-box { flex-direction: column; border-radius: 16px; margin: 10px auto; max-height: calc(100vh - 20px); }
  .modal-panel-left { width: 100%; padding: 24px 20px; }
  .modal-panel-left h3 { font-size: 22px; }
  .modal-benefits { display: none; }
  .modal-panel-right { padding: 20px; overflow-y: auto; }
  .modal-title { font-size: 20px; }
  .modal-sub { font-size: 12px; margin-bottom: 14px; }
}

/* ── POPPINS FONT OVERRIDE ── */
*, body {
  font-family: 'Poppins', sans-serif !important;
}

/* ── LOGO IMAGE STYLES ── */
.nav-logo-img {
  height: 42px;
  width: auto;
  display: block;
}

.footer-logo-img {
  height: 38px;
  width: auto;
  display: block;
}

/* ── WHATSAPP BUTTON ── */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s;
  white-space: nowrap;
  animation: whatsapp-pulse 2s infinite;
  position: relative;
}
.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37,211,102,0.35);
  animation: none;
}
@keyframes whatsapp-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  50%  { box-shadow: 0 0 0 8px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ── FOOTER CONTACT BAR ── */
.footer-contact-bar {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  padding: 16px 5%;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 0;
  flex-wrap: wrap;
}
.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-contact-item:hover {
  color: white;
}
