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

:root {
  --rouge:       #da4d4d;
  --rouge-fonce: #b83535;
  --rouge-pale:  rgba(218,77,77,0.08);
  --anthracite:  #2d2d2d;
  --noir:        #111111;
  --texte:       #3a3a3a;
  --texte-doux:  #6b6b6b;
  --fond:        #f9f8f6;
  --fond-clair:  #f2f0ec;
  --border:      #e4e1dc;
  --blanc:       #ffffff;
  --vert:        #22c55e;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.12);
  --trans:       0.22s ease;
  --container:   1140px;
  --nav-h:       68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--texte);
  background: var(--fond);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

h1, h2, h3, h4, .subtitle, .hero-desc {
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-wrap: balance;
}
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.18;
  color: var(--noir);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(1.75rem, 3.5vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); }
h3 { font-size: clamp(1.05rem, 1.8vw, 1.25rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p  { color: var(--texte-doux); line-height: 1.75; font-size: 1rem; text-wrap: pretty; }
strong { font-weight: 700; color: var(--texte); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}
.section { padding: clamp(3rem, 6vw, 5.5rem) 0; }
.bg-clair     { background: var(--fond-clair); }
.bg-dark      { background: var(--anthracite); }
.bg-rouge     { background: var(--rouge); }
.text-center  { text-align: center; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--rouge);
  flex-shrink: 0;
}
.eyebrow span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rouge);
}

.tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  background: var(--rouge);
  color: #fff;
}
.tag-outline {
  background: transparent;
  border: 1.5px solid var(--rouge);
  color: var(--rouge);
}
.tag-dark {
  background: var(--anthracite);
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--rouge);
  color: #fff;
  border-color: var(--rouge);
}
.btn-primary:hover {
  background: var(--rouge-fonce);
  border-color: var(--rouge-fonce);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(218,77,77,0.3);
}
.btn-outline {
  background: transparent;
  border-color: var(--anthracite);
  color: var(--anthracite);
}
.btn-outline:hover {
  background: var(--anthracite);
  color: #fff;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--rouge);
  border-color: #fff;
}
.btn-white:hover { background: var(--fond-clair); }
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1db954;
  border-color: #1db954;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}
.btn-lg { padding: 1rem 2.2rem; font-size: 1rem; }
.btn-full { width: 100%; }

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(249,248,246,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--trans);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.07); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 1rem;
}

.nav-logo img { height: 32px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.nav-menu a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--texte);
  padding: 0.45rem 0.7rem;
  border-radius: 6px;
  transition: var(--trans);
  white-space: nowrap;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--rouge);
  background: var(--rouge-pale);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.nav-tel {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--rouge);
  padding: 0.45rem 0.8rem;
  border-radius: 6px;
  transition: var(--trans);
  white-space: nowrap;
}
.nav-tel:hover { background: var(--rouge-pale); }
.nav-tel svg { flex-shrink: 0; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: var(--trans);
}
.burger:hover { background: var(--fond-clair); }
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--anthracite);
  border-radius: 2px;
  transition: var(--trans);
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.hero {
  min-height: 100svh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  background: var(--fond);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(218,77,77,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem 0;
  width: 100%;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.hero-eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--rouge);
}
.hero-eyebrow span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rouge);
}
.hero h1 {
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hero h1 em { font-style: normal; color: var(--rouge); }
.hero-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.8rem;
  max-width: 500px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--rouge);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--texte-doux);
  margin-top: 0.25rem;
}

.hero-card {
  background: var(--blanc);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.hero-card-top {
  background: var(--rouge);
  padding: 1rem 1.5rem;
}
.hero-card-top span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.hero-card ul {
  padding: 0.5rem 0;
}
.hero-card li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--texte);
}
.hero-card li:last-child { border-bottom: none; }
.hero-card li::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--rouge);
  flex-shrink: 0;
}
.hero-card-bottom {
  padding: 1rem 1.5rem;
  background: var(--fond-clair);
  display: flex;
  gap: 0.6rem;
}
.hero-card-bottom .btn { flex: 1; font-size: 0.88rem; padding: 0.7rem 1rem; }

.dist-band {
  background: var(--anthracite);
  padding: 1.5rem 0;
  overflow: hidden;
}
.dist-track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.2rem 2.5rem;
}
.dist-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
}
.dist-item .icon { font-size: 1.1rem; flex-shrink: 0; }

.page-header {
  padding-top: var(--nav-h);
  background: var(--fond-clair);
  border-bottom: 1px solid var(--border);
}
.page-header-inner {
  padding: 2.5rem 0 3rem;
  position: relative;
}
.page-header-inner::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--rouge);
  margin-top: 2rem; /* Espace entre le texte/les boutons et la barre */
  border-radius: 2px;
}
.page-header .tag { margin: 0.6rem 0 1rem; }
.page-header h1 { margin-bottom: 0.8rem; }
.page-header .subtitle {
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 1.8rem;
}
.page-header .btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: var(--texte-doux);
  padding-bottom: 1rem;
}
.breadcrumb a { color: var(--rouge); font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.two-col.align-start { align-items: start; }
.two-col.gap-sm { gap: 1.5rem; }

.section-hd { margin-bottom: 2.5rem; }
.section-hd h2 { margin-bottom: 0.5rem; }
.section-hd p { font-size: 1.05rem; max-width: 560px; }

.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.2rem; }

.card {
  background: var(--blanc);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
  display: block;
  color: inherit;
  text-decoration: none;
}
.card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--rouge);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(218,77,77,0.25);
}
.card:hover::after { transform: scaleX(1); }
.card.featured {
  border-color: var(--rouge);
  border-width: 2px;
}
.card-icon {
  width: 48px; height: 48px;
  background: var(--rouge-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1.1rem;
}
.card h3 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.card p  { font-size: 0.92rem; line-height: 1.65; }
.card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--rouge);
}

.dark-card {
  background: var(--anthracite);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  color: #fff;
}
.dark-card-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.4rem;
}
.dark-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.95rem;
  line-height: 1.6;
}
.dark-list li:last-child { border-bottom: none; }
.dark-list .arrow { color: var(--rouge); flex-shrink: 0; margin-top: 0.1rem; }

.hl-box {
  background: linear-gradient(135deg, var(--rouge), var(--rouge-fonce));
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  color: #fff;
}
.hl-box h3 { color: #fff; margin-bottom: 0.7rem; }
.hl-box p  { color: rgba(255,255,255,0.88); }

.info-box {
  border-left: 3px solid var(--rouge);
  background: var(--rouge-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.1rem 1.4rem;
}
.info-box p { color: var(--texte); font-size: 0.95rem; text-wrap: pretty; }

.warn-box {
  border-left: 3px solid #f59e0b;
  background: #fffbeb;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.1rem 1.4rem;
}
.warn-box p { color: #78350f; font-size: 0.95rem; text-wrap: pretty; }

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.38rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--texte-doux);
}
.checklist li::before {
  content: '✓';
  color: var(--rouge);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.checklist-white li { color: rgba(255,255,255,0.88); }
.checklist-white li::before { color: rgba(255,255,255,0.7); }

.steps {}
.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 1.4rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--rouge);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.step h3 { margin-bottom: 0.5rem; font-size: 1.08rem; }
.step p  { font-size: 0.95rem; text-wrap: pretty; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.2rem 0;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--texte);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--trans);
  line-height: 1.4;
}
.faq-btn:hover { color: var(--rouge); }
.faq-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--rouge);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform var(--trans);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
}
.faq-item.open .faq-body { max-height: 400px; padding-bottom: 1.2rem; }
.faq-body p { font-size: 0.95rem; line-height: 1.75; }

.awards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.award-card {
  background: var(--anthracite);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.award-year {
  font-size: 3rem;
  font-weight: 800;
  color: var(--rouge);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
}
.award-title { font-weight: 700; font-size: 0.95rem; color: #fff; margin-bottom: 0.3rem; }
.award-org   { font-size: 0.8rem; color: rgba(255,255,255,0.45); }

.presse-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.presse-item {
  background: var(--blanc);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.65rem 1.3rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--texte-doux);
  transition: var(--trans);
}
.presse-item:hover { border-color: var(--rouge); color: var(--rouge); }

.stats-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.8rem;
}
.stat-mini {
  background: var(--fond-clair);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  text-align: center;
}
.stat-mini-num {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--rouge);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-mini-label {
  font-size: 0.8rem;
  color: var(--texte-doux);
  margin-top: 0.3rem;
}

.zone-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.2rem 0 1.8rem;
}

.compat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.compat-card {
  border-radius: var(--radius-lg);
  padding: 1.8rem;
}
.compat-ok { background: #f0faf0; border-left: 3px solid #22c55e; }
.compat-ko { background: #fff1f1; border-left: 3px solid var(--rouge); }

.cta-band { background: var(--rouge); padding: 4rem 0; }
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-inner h2 { color: #fff; }
.cta-inner p  { color: rgba(255,255,255,0.85); margin-top: 0.4rem; }
.cta-btns { display: flex; gap: 0.8rem; flex-wrap: wrap; flex-shrink: 0; }

.contact-link {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--fond-clair);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  border: 2px solid transparent;
  transition: var(--trans);
  margin-bottom: 0.9rem;
  text-decoration: none;
}
.contact-link:hover { border-color: var(--rouge); }
.contact-link-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.contact-link-title { font-weight: 700; color: var(--texte); font-size: 0.9rem; margin-bottom: 0.2rem; }
.contact-link-val   { font-size: 1.05rem; font-weight: 700; }
.contact-link-sub   { font-size: 0.78rem; color: var(--texte-doux); margin-top: 0.1rem; }

footer {
  background: var(--noir);
  color: rgba(255,255,255,0.6);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer-logo { margin-bottom: 0.9rem; }
.footer-logo img { height: 26px; filter: brightness(0) invert(1); opacity: 0.7; }
.footer-desc { font-size: 0.88rem; line-height: 1.7; }
.footer-col h5 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--trans);
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  font-size: 0.8rem;
}
.footer-legal { display: flex; gap: 1.2rem; }
.footer-legal a { font-size: 0.8rem; color: rgba(255,255,255,0.35); transition: color var(--trans); }
.footer-legal a:hover { color: rgba(255,255,255,0.8); }

@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr 360px; gap: 2rem; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  :root { --nav-h: 64px; }
  body { font-size: 15px; }

  .nav-menu {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--fond);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 1rem;
    gap: 0.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a {
    display: block;
    font-size: 1.05rem;
    padding: 1rem;
    border-radius: var(--radius);
    line-height: 1.2;
  }
  .burger { display: flex; }

  .hero { min-height: auto; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 2rem 0 2.5rem;
  }
  .hero-card { display: none; }
  .hero h1 { font-size: clamp(1.7rem, 4.5vw, 2.3rem); }
  .hero-btns { gap: 0.7rem; }
  .hero-stats { gap: 1.5rem; }

  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3  { grid-template-columns: 1fr 1fr; }
  .awards-grid { grid-template-columns: 1fr 1fr; }
  .compat-grid { grid-template-columns: 1fr 1fr; }

  .dist-track { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .dist-item { width: 100%; }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; width: 100%; }
}

@media (max-width: 600px) {
  body { font-size: 15px; }

  .container { padding: 0 1.25rem; }
  .grid-3, .grid-2, .awards-grid, .compat-grid { gap: 1.5rem; }
  .card, .dark-card, .hl-box { padding: 1.8rem 1.4rem; }

  .hero-inner { padding: 1.5rem 0 2rem; gap: 1.5rem; }
  .hero h1 { font-size: 1.65rem; line-height: 1.25; }
  .hero-desc { font-size: 0.95rem; margin-bottom: 1.4rem; }
  .hero-btns { flex-direction: column; gap: 0.6rem; }
  .hero-btns .btn { width: 100%; font-size: 1rem; padding: 1rem; }
  .hero-stats { gap: 1.2rem; }
  .stat-num { font-size: 1.5rem; }
  .stat-label { font-size: 0.78rem; }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .awards-grid { grid-template-columns: 1fr; }
  .compat-grid { grid-template-columns: 1fr; }
  .stats-mini  { grid-template-columns: 1fr 1fr; }

  .page-header .btns { flex-direction: column; }
  .page-header .btns .btn { width: 100%; }

  .step { grid-template-columns: 42px 1fr; gap: 1rem; }
  .step-num { width: 42px; height: 42px; font-size: 1rem; }

  .cta-btns { flex-direction: column; }
  .cta-btns .btn { width: 100%; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .contact-link { padding: 1.1rem; }
  .section { padding: 2.5rem 0; }
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.4rem; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 1.45rem; }
  .btn-lg { padding: 0.9rem 1.4rem; font-size: 0.92rem; }
  .nav-tel span { display: none; }
}