/* ═══════════════════════════════════════════════════════════════
   Why Choose Us Page — MentorMinds
   Brand: #FF6B00 · #0A1F44 · #FFFFFF
   ═══════════════════════════════════════════════════════════════ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --orange: #FF6B00;
  --orange-dark: #E05E00;
  --orange-glow: rgba(255, 107, 0, 0.18);
  --navy: #0A1F44;
  --navy-light: #132D5E;
  --white: #FFFFFF;
  --light: #F8F9FA;
  --text-dark: #1A1A2E;
  --text-muted: #6B7280;
  --ff: 'Poppins', sans-serif;
  --ff-body: 'Inter', sans-serif;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--orange) var(--light); }
body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--orange); color: var(--white); }

/* ── Header (matches index.html) ───────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white); transition: var(--transition);
  border-bottom: 1px solid transparent;
}
.header.scrolled { box-shadow: var(--shadow); border-bottom-color: rgba(0, 0, 0, 0.04); }

.top-bar { background: var(--navy); color: var(--white); font-size: 13px; padding: 6px 0; transition: var(--transition); }
.header.scrolled .top-bar { margin-top: -40px; }
.top-bar-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; }
.top-bar a { color: var(--white); transition: color var(--transition); }
.top-bar a:hover { color: var(--orange); }
.top-bar-left { display: flex; gap: 20px; align-items: center; }
.top-bar-left i { color: var(--orange); margin-right: 5px; }
.top-bar-right { display: flex; gap: 16px; align-items: center; }
.top-bar-right .social-links { display: flex; gap: 10px; }

.lang-switch { display: flex; background: rgba(255, 255, 255, 0.12); border-radius: 50px; overflow: hidden; font-size: 12px; font-weight: 600; }
.lang-switch button {
  border: none; outline: none; cursor: pointer; padding: 3px 12px;
  font-family: var(--ff); font-size: 12px; font-weight: 600;
  color: rgba(255, 255, 255, 0.7); background: transparent; transition: var(--transition);
}
.lang-switch button.active { background: var(--orange); color: var(--white); border-radius: 50px; }

.nav-bar {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; transition: height var(--transition);
}
.header.scrolled .nav-bar { height: 62px; }

.logo { display: flex; align-items: center; gap: 10px; font-size: 24px; font-weight: 700; flex-shrink: 0; }
.logo-icon {
  width: 40px; height: 40px; background: linear-gradient(135deg, var(--orange), #ff8a33);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 18px; transition: transform var(--transition);
}
.logo:hover .logo-icon { transform: rotate(-8deg) scale(1.05); }
.logo-text span:first-child { color: var(--navy); }
.logo-text span:last-child { color: var(--orange); }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex; align-items: center; gap: 5px; padding: 8px 16px;
  font-size: 15px; font-weight: 500; color: var(--navy); border-radius: 8px;
  transition: var(--transition); position: relative;
}
.nav-menu > li > a .dd-arrow { font-size: 10px; transition: transform var(--transition); }
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--orange); background: rgba(255, 107, 0, 0.06); }
.nav-menu > li > a.active::after {
  content: ''; position: absolute; bottom: 2px; left: 16px; right: 16px;
  height: 2.5px; background: var(--orange); border-radius: 10px;
}

.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(8px); min-width: 230px;
  background: var(--white); border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12); padding: 10px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease; z-index: 100;
}
.dropdown-menu::before {
  content: ''; position: absolute; top: -6px; left: 50%;
  transform: translateX(-50%) rotate(45deg); width: 12px; height: 12px;
  background: var(--white); border-radius: 2px;
}
.nav-menu > li:hover > .dropdown-menu,
.nav-menu > li.open > .dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-menu > li:hover > a .dd-arrow { transform: rotate(180deg); }
.dropdown-menu li a {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  font-size: 14px; font-weight: 500; color: var(--navy); border-radius: 10px; transition: var(--transition);
}
.dropdown-menu li a:hover { background: rgba(255, 107, 0, 0.07); color: var(--orange); padding-left: 18px; }
.dropdown-menu li a i {
  width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
  background: rgba(255, 107, 0, 0.1); color: var(--orange); border-radius: 8px;
  font-size: 13px; flex-shrink: 0; transition: var(--transition);
}
.dropdown-menu li a:hover i { background: var(--orange); color: var(--white); }

.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.btn-whatsapp {
  width: 42px; height: 42px; border-radius: 50%; background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
  border: none; cursor: pointer; transition: var(--transition); position: relative;
}
.btn-whatsapp::before {
  content: ''; position: absolute; inset: -3px; border-radius: 50%;
  border: 2px dashed #25D366; opacity: 0.4; animation: spin 8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.btn-whatsapp:hover { transform: scale(1.1); box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35); }
.btn-cta {
  padding: 10px 26px; background: var(--orange); color: var(--white);
  font-family: var(--ff); font-size: 14px; font-weight: 600;
  border: 2px solid var(--orange); border-radius: 50px; cursor: pointer;
  transition: var(--transition); white-space: nowrap;
}
.btn-cta:hover {
  background: var(--orange-dark); border-color: var(--orange-dark);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3); transform: translateY(-1px);
}

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px; border: none; background: none; z-index: 1100;
}
.hamburger span {
  display: block; width: 24px; height: 2.5px; background: var(--navy);
  border-radius: 10px; transition: var(--transition); transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(10, 31, 68, 0.5); backdrop-filter: blur(4px);
  z-index: 1049; opacity: 0; transition: opacity var(--transition);
}
.mobile-overlay.show { opacity: 1; display: block; }
.mobile-menu {
  display: none; position: fixed; top: 0; right: -320px; width: 320px; max-width: 85vw;
  height: 100vh; background: var(--white); z-index: 1050;
  padding: 80px 24px 30px; overflow-y: auto;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
}
.mobile-menu.open { right: 0; }
.mobile-menu .mobile-nav li { border-bottom: 1px solid rgba(0, 0, 0, 0.06); }
.mobile-menu .mobile-nav > li > a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; font-size: 16px; font-weight: 600; color: var(--navy); transition: color var(--transition);
}
.mobile-menu .mobile-nav > li > a:hover,
.mobile-menu .mobile-nav > li > a.active { color: var(--orange); }
.mobile-menu .mobile-dropdown { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.mobile-menu .mobile-dropdown.open { max-height: 500px; }
.mobile-menu .mobile-dropdown li a {
  display: flex; align-items: center; gap: 10px; padding: 10px 0 10px 16px;
  font-size: 14px; font-weight: 500; color: var(--text-muted); transition: var(--transition);
}
.mobile-menu .mobile-dropdown li a:hover { color: var(--orange); padding-left: 22px; }
.mobile-menu .mobile-dropdown li a i { color: var(--orange); font-size: 13px; width: 20px; text-align: center; }
.mobile-menu .mobile-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.mobile-menu .mobile-cta .btn-cta { text-align: center; display: block; }
.mobile-menu .mobile-cta .btn-whatsapp-full {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px; border-radius: 50px; background: #25D366; color: var(--white);
  font-weight: 600; font-size: 14px; border: none; cursor: pointer;
  transition: var(--transition); font-family: var(--ff);
}
.mobile-menu .mobile-cta .btn-whatsapp-full:hover { background: #1fba59; }
.mobile-lang { display: flex; justify-content: center; margin-top: 20px; }
.mobile-lang button {
  padding: 6px 20px; border: 2px solid var(--navy); background: transparent;
  color: var(--navy); font-family: var(--ff); font-size: 13px; font-weight: 600; cursor: pointer; transition: var(--transition);
}
.mobile-lang button:first-child { border-radius: 50px 0 0 50px; border-right: none; }
.mobile-lang button:last-child { border-radius: 0 50px 50px 0; }
.mobile-lang button.active { background: var(--navy); color: var(--white); }

/* Page hero strip */
.page-hero {
  padding: 140px 24px 40px;
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
  text-align: center;
}
.page-hero h1 {
  font-family: var(--ff);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.page-hero p { color: var(--text-muted); font-size: 15px; max-width: 520px; margin: 0 auto; }
.page-hero .breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 13px; color: var(--text-muted); margin-bottom: 14px;
}
.page-hero .breadcrumb a { color: var(--orange); font-weight: 500; }
.page-hero .breadcrumb a:hover { text-decoration: underline; }

/* ══════════════════════════════════════════════
   PART A — Why Choose Us
   ══════════════════════════════════════════════ */
.why-us {
  padding: 80px 0 90px;
  background: var(--white);
  position: relative;
}
.why-us-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-us-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: var(--orange-glow);
  color: var(--orange);
  font-family: var(--ff);
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 18px;
  letter-spacing: 0.2px;
}
.why-us-badge i { font-size: 11px; }

.why-us-title {
  font-family: var(--ff);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 32px;
}

.feature-list { display: flex; flex-direction: column; gap: 26px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 50%;
  background: var(--orange-glow);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 16px; margin-top: 2px;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.feature-item:hover .feature-icon {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.08);
}
.feature-text h4 {
  font-family: var(--ff);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.feature-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

.why-us-visual { position: relative; display: flex; justify-content: center; }
.why-us-img {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4 / 3.5;
  border-radius: 24px;
  background: linear-gradient(145deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(10, 31, 68, 0.2);
}
.why-us-img > i.main-icon {
  font-size: 90px;
  color: rgba(255, 255, 255, 0.07);
}
.why-us-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10, 31, 68, 0.35) 100%);
  pointer-events: none;
}
.why-us-ring {
  position: absolute;
  width: 108%;
  height: 108%;
  top: -4%;
  left: -4%;
  border: 2px dashed rgba(255, 107, 0, 0.14);
  border-radius: 26px;
  pointer-events: none;
}

.excellence-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  background: var(--orange);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 14px;
  font-family: var(--ff);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  box-shadow: 0 8px 28px rgba(255, 107, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
}
.excellence-badge i { font-size: 18px; opacity: 0.95; }

/* ══════════════════════════════════════════════
   PART B — Stats Counter Bar
   ══════════════════════════════════════════════ */
.stats-bar {
  background: var(--navy);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.07) 0%, transparent 55%);
  pointer-events: none;
}
.stats-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.stats-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 18%;
  height: 64%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 107, 0, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 24px;
  transition: transform 0.3s ease;
}
.stat-item:hover .stat-icon { transform: scale(1.1) rotate(-4deg); }

.stat-number {
  font-family: var(--ff);
  font-size: 64px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -1px;
}
.stat-label {
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.2px;
}

/* ── Footer (matches index.html) ───────────────────────────── */
.newsletter { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); padding: 36px 0; }
.newsletter-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.newsletter-text { color: var(--white); font-family: var(--ff); font-size: clamp(16px, 2.5vw, 22px); font-weight: 700; }
.newsletter-form { display: flex; gap: 0; flex: 1; max-width: 460px; }
.newsletter-form input {
  flex: 1; padding: 13px 20px; border: none; border-radius: 50px 0 0 50px;
  font-family: var(--ff-body); font-size: 14px; outline: none; min-width: 0;
}
.newsletter-form input::placeholder { color: #999; }
.newsletter-form button {
  padding: 13px 28px; background: var(--navy); color: var(--white);
  font-family: var(--ff); font-size: 14px; font-weight: 600;
  border: none; border-radius: 0 50px 50px 0; cursor: pointer; transition: 0.3s ease; white-space: nowrap;
}
.newsletter-form button:hover { background: var(--navy-light); }

.footer { background: var(--navy); color: rgba(255, 255, 255, 0.75); padding: 64px 0 0; }
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.3fr; gap: 40px; margin-bottom: 48px; }
.footer-heading {
  font-family: var(--ff); font-size: 12px; font-weight: 700; color: var(--orange);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px;
}
.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand .footer-logo-icon {
  width: 36px; height: 36px; background: linear-gradient(135deg, var(--orange), #ff8a33);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 16px;
}
.footer-brand .footer-logo-text { font-family: var(--ff); font-size: 20px; font-weight: 700; }
.footer-brand .footer-logo-text span:first-child { color: var(--white); }
.footer-brand .footer-logo-text span:last-child { color: var(--orange); }
.footer-brand .footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 18px; color: rgba(255, 255, 255, 0.6); }
.footer-socials { display: flex; gap: 10px; margin-bottom: 18px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.7); font-size: 15px; transition: 0.3s ease;
}
.footer-socials a:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }
.footer-partner {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px;
  background: rgba(255, 255, 255, 0.06); border-radius: 8px;
  font-size: 11px; font-weight: 600; color: rgba(255, 255, 255, 0.5);
}
.footer-partner i { color: var(--orange); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px; color: rgba(255, 255, 255, 0.6); transition: 0.3s ease;
  display: flex; align-items: center;
}
.footer-links a::before {
  content: '→'; margin-right: 0; font-size: 12px; opacity: 0;
  transition: 0.3s ease; color: var(--orange);
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-links a:hover::before { margin-right: 8px; opacity: 1; }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 14px; color: rgba(255, 255, 255, 0.65);
}
.footer-contact-item i { color: var(--orange); width: 18px; text-align: center; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255, 255, 255, 0.65); transition: color 0.3s ease; }
.footer-contact-item a:hover { color: var(--orange); }
.footer-wa {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 20px;
  background: #25D366; color: var(--white); font-family: var(--ff);
  font-size: 13px; font-weight: 600; border-radius: 50px; border: none;
  cursor: pointer; transition: 0.3s ease; width: fit-content; margin-top: 2px;
}
.footer-wa:hover { background: #1fba59; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3); }
.footer-map {
  width: 100%; height: 120px; border-radius: 12px; background: rgba(255, 255, 255, 0.05);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.15); font-size: 32px; margin-top: 4px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 20px 0; margin-top: 8px; }
.footer-bottom-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copy, .footer-legal, .footer-made { font-size: 13px; color: rgba(255, 255, 255, 0.4); }
.footer-legal { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.footer-legal a { color: rgba(255, 255, 255, 0.4); transition: color 0.3s ease; }
.footer-legal a:hover { color: var(--orange); }
.footer-legal span { color: rgba(255, 255, 255, 0.15); }
.footer-made span { color: #e74c3c; }

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .nav-menu > li > a { padding: 8px 10px; font-size: 14px; }
}

@media (max-width: 992px) {
  .top-bar-left span:not(:first-child) { display: none; }
  .nav-menu { display: none; }
  .nav-actions .btn-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }

  .why-us-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-us-visual { order: -1; }
  .why-us-img { max-width: 420px; margin: 0 auto; }
  .why-us-badge { margin-left: auto; margin-right: auto; }
  .why-us-content { text-align: left; }
  .feature-item { text-align: left; }

  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 44px 28px; }
  .stat-item:nth-child(2)::after,
  .stat-item:nth-child(4)::after { display: none; }
  .stat-number { font-size: 52px; }
}

@media (max-width: 768px) {
  .stat-number { font-size: 48px; }
}

@media (max-width: 576px) {
  .top-bar { font-size: 12px; }
  .top-bar-right .social-links { display: none; }
  .nav-bar { padding: 0 16px; height: 64px; }
  .logo { font-size: 20px; }
  .logo-icon { width: 34px; height: 34px; font-size: 15px; border-radius: 10px; }
  .page-hero { padding: 120px 16px 32px; }
  .why-us { padding: 56px 0 64px; }
  .why-us-container { padding: 0 16px; }
  .why-us-img { max-width: 100%; border-radius: 18px; }
  .excellence-badge { bottom: 16px; left: 16px; padding: 12px 18px; font-size: 13px; }
  .feature-icon { width: 38px; height: 38px; min-width: 38px; font-size: 14px; }
  .stats-bar { padding: 52px 0; }
  .stats-bar-container { padding: 0 16px; }
  .stats-row { gap: 36px 20px; }
  .stat-number { font-size: 40px; }
  .stat-icon { width: 48px; height: 48px; font-size: 20px; border-radius: 12px; }
  .stat-item:not(:last-child)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { max-width: 100%; width: 100%; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
