/* =========================================
   Bastien, Laverdure CPA Inc. — Style global
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* --- Variables --- */
:root {
  --navy:       #5B3A8C;
  --navy-dark:  #3B1F6B;
  --navy-light: #7B5AB4;
  --gold:       #C8913A;
  --gold-light: #DDA85A;
  --light:      #F5F7FA;
  --white:      #FFFFFF;
  --text:       #2D3748;
  --text-light: #718096;
  --border:     #E2E8F0;
  --shadow:     0 4px 24px rgba(91,58,140,0.10);
  --shadow-lg:  0 8px 48px rgba(91,58,140,0.16);
  --radius:     8px;
  --radius-lg:  16px;
  --transition: all 0.25s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: var(--transition); }

ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; color: var(--text); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  color: var(--text-light);
  font-weight: 400;
  line-height: 1.8;
}

/* --- Layout --- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section--light {
  background: var(--light);
}

.section-label {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-header {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(27,58,107,0.12);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 32px;
  max-width: 1280px;
  margin: 0 auto;
}

.navbar__logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.navbar__logo-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: var(--transition);
  line-height: 1.1;
}

.navbar__logo-title {
  font-size: 0.7rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
}

.navbar.scrolled .navbar__logo-name { color: var(--navy); }
.navbar.scrolled .navbar__logo-title { color: var(--text-light); }

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 2px;
}

.navbar__link {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}

.navbar.scrolled .navbar__link {
  color: var(--text);
}

.navbar.scrolled .navbar__link:hover,
.navbar.scrolled .navbar__link.active {
  color: var(--navy);
  background: var(--light);
}

.navbar__cta {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy) !important;
  background: var(--gold) !important;
  padding: 9px 20px !important;
  border-radius: 6px !important;
  margin-left: 8px;
}

.navbar__cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .navbar__hamburger span { background: var(--navy); }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(123,90,180,0.5) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(200,145,58,0.15) 0%, transparent 50%),
    linear-gradient(135deg, #1e0840 0%, #5B3A8C 50%, #3B1F6B 100%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero__dot {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.hero__dot--1 {
  width: 400px; height: 400px;
  background: var(--gold);
  top: -100px; right: 10%;
}

.hero__dot--2 {
  width: 200px; height: 200px;
  background: var(--navy-light);
  bottom: 10%; left: 5%;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 140px 32px 100px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.hero__title {
  color: var(--white);
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
}

.hero__title span {
  color: var(--gold);
}

.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.70);
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 48px;
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.hero__stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.hero__stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}

.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,145,58,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn--navy:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 36px;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #5B3A8C, #7B5AB4);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--white);
  font-size: 1.3rem;
}

.card__title {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.1rem;
}

.card__text {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
}

/* --- Grid Systems --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* --- Team Cards --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-card__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(20%);
  transition: var(--transition);
}

.team-card:hover .team-card__photo {
  filter: grayscale(0%);
}

.team-card__body {
  padding: 24px 28px;
  border-top: 3px solid var(--gold);
}

.team-card__name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.team-card__bio {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 16px;
}

.team-card__email {
  font-size: 0.82rem;
  color: var(--navy);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.team-card__email:hover { color: var(--gold); }

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: linear-gradient(135deg, #3B1F6B 0%, #5B3A8C 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: 0; bottom: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at right, rgba(200,145,58,0.12), transparent 60%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.page-hero__title {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero__sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 560px;
}

/* --- Breadcrumb --- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
}

.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb__sep { opacity: 0.4; }

/* --- Values --- */
.value-item {
  padding: 36px;
  border-left: 3px solid var(--gold);
  background: var(--white);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.value-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-lg);
}

.value-item__num {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
}

.value-item__title {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.value-item__text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* --- Service sections --- */
.service-block {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.service-block:last-child { border-bottom: none; }

.service-block__label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.service-block__title {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 0;
}

.service-block__content h4 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 8px;
  margin-top: 20px;
}

.service-block__content h4:first-child { margin-top: 0; }

.service-block__list {
  margin: 12px 0 16px 0;
}

.service-block__list li {
  font-size: 0.92rem;
  color: var(--text);
  padding: 5px 0 5px 20px;
  position: relative;
  line-height: 1.6;
}

.service-block__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.8rem;
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.contact-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #5B3A8C, #7B5AB4);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-info__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-info__value {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

.contact-info__value a:hover { color: var(--gold); }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 32px;
}

.contact-map iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, #3B1F6B, #5B3A8C);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,145,58,0.1), transparent 70%);
}

.cta-banner__content { position: relative; z-index: 1; }

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

/* --- Footer --- */
.footer {
  background: #130530;
  color: rgba(255,255,255,0.6);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.footer__tagline {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer__desc {
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0;
  color: rgba(255,255,255,0.5);
}

.footer__heading {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__links li { margin-bottom: 10px; }

.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer__links a:hover { color: var(--gold); }

.footer__contact-item {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer__contact-item strong {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.footer__bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

.footer__bottom-links a:hover { color: var(--gold); }

/* --- Servicas badge --- */
.servicas-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 20px;
  margin-top: 20px;
}

.servicas-badge img { height: 32px; width: auto; }

.servicas-badge__text {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.3;
}

.servicas-badge__text strong {
  display: block;
  color: var(--text);
  font-size: 0.85rem;
}

/* --- Divider --- */
.divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 16px 0 24px;
}

.divider--center { margin: 16px auto 24px; }

/* --- Highlight box --- */
.highlight-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  color: var(--white);
}

.highlight-box h3 { color: var(--white); margin-bottom: 12px; }
.highlight-box p { color: rgba(255,255,255,0.75); margin: 0; }

/* --- Tag list --- */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--navy);
  background: rgba(27,58,107,0.08);
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

/* --- Layouts responsifs (remplacent les inline styles) --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col--gap-xl { gap: 80px; }
.two-col--gap-md { gap: 48px; }
.two-col--start { align-items: start; }

.stats-grid-inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.team-bottom-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 580px;
  margin: 0 auto;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-block { grid-template-columns: 1fr; gap: 16px; }
  .two-col { gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .navbar__menu { display: none; }
  .navbar__hamburger { display: flex; }
  .navbar__menu.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--navy-dark);
    padding: 32px;
    gap: 8px;
    z-index: 999;
    overflow-y: auto;
  }
  .navbar__link { font-size: 1.1rem; padding: 14px 20px; color: var(--white) !important; }
  .navbar__cta { margin-left: 0; }

  /* Toutes les grilles 2 colonnes passent en 1 colonne */
  .two-col,
  .two-col--gap-xl,
  .two-col--gap-md { grid-template-columns: 1fr; gap: 32px; }
  .stats-grid-inline { grid-template-columns: 1fr 1fr; gap: 20px; }
  .team-bottom-row { grid-template-columns: 1fr; max-width: 440px; }

  .hero__content { padding: 110px 20px 72px; }
  .hero__stats { gap: 24px; flex-wrap: wrap; }
  .hero__stat-num { font-size: 2rem; }
  .hero__actions { flex-direction: column; gap: 12px; }
  .btn { width: 100%; justify-content: center; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .highlight-box { padding: 28px 24px; }
  .highlight-box .stats-grid-inline { grid-template-columns: 1fr 1fr; }

  .page-hero { padding: 110px 0 56px; }
  .page-hero__title { font-size: 2rem; }

  .section-header { margin-bottom: 36px; }
  .cta-banner { padding: 56px 0; }
  .cta-banner h2 { font-size: 1.6rem; }
  .cta-banner .btn { width: auto; }

  .contact-grid { grid-template-columns: 1fr; }
  .card { padding: 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .navbar__inner { padding: 0 16px; }
  .hero__stat-num { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .highlight-box .stats-grid-inline { grid-template-columns: 1fr 1fr; gap: 16px; }
  .footer__bottom-links { flex-direction: column; gap: 8px; }
  .team-card__body { padding: 20px; }
}
