/* ============================================================
   Cabinet Dentaire Dr. Rapha — Design Éditorial v2
   Aesthetic: Minimaliste éditorial · Blanc pur × Noir profond × Vert sauge
   Fonts: Playfair Display (titres) + Outfit (corps)
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Outfit:wght@300;400;500;600&display=swap");

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --black: #0d0d0d;
  --off-white: #f8f7f4;
  --white: #ffffff;
  --sage: #7a9e87;
  --sage-light: #c5dccc;
  --sage-dark: #4a7259;
  --warm-gray: #f0ede8;
  --border: #e8e4de;
  --text-muted: #888580;
  --text-body: #2a2a2a;
  --f-display: "Playfair Display", Georgia, serif;
  --f-body: "Outfit", sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --tr: 0.45s var(--ease);
}

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

/* ── Utilitaires ────────────────────────────────────────────── */
.overline {
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-dark);
  display: block;
  margin-bottom: 18px;
}
.container-wide {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ══════════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════════ */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 247, 244, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
}
.nav-logo {
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
  margin-right: auto;
  flex-shrink: 0;
}
.nav-logo em {
  font-style: italic;
  font-weight: 400;
  color: var(--sage-dark);
}
.nav-logo img {
  max-height: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-right: 48px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  transition: color var(--tr);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--sage-dark);
  transition: width var(--tr);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--black);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-schedule {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--warm-gray);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  margin-right: 20px;
  white-space: nowrap;
}
.nav-schedule i {
  color: var(--sage-dark);
  font-size: 12px;
}

.nav-auth {
  display: flex;
  gap: 8px;
  align-items: center;
}
.btn-nav-ghost {
  padding: 7px 16px;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-body);
  border: 1px solid var(--border);
  border-radius: 50px;
  background: transparent;
  cursor: pointer;
  transition: all var(--tr);
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-nav-ghost:hover {
  border-color: var(--black);
  color: var(--black);
}
.btn-nav-solid {
  padding: 7px 18px;
  font-family: var(--f-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--black);
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--tr);
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-nav-solid:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  transform: translateY(-1px);
}
.nav-toggler {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--black);
  cursor: pointer;
  padding: 4px;
}

/* ══════════════════════════════════════════════════════════════
   HERO — Split asymétrique
══════════════════════════════════════════════════════════════ */
.hero-wrap {
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: 58% 42%;
}
.hero-media {
  position: relative;
  overflow: hidden;
  background: var(--warm-gray);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 10s linear;
}
.hero-media:hover img {
  transform: scale(1.05);
}
.hero-badge {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: var(--white);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 220px;
}
.hero-badge-icon {
  width: 44px;
  height: 44px;
  background: var(--sage-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--sage-dark);
  flex-shrink: 0;
}
.hero-badge-text strong {
  display: block;
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}
.hero-badge-text span {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px 80px 56px;
  background: var(--off-white);
}
.hero-content h1 {
  font-family: var(--f-display);
  font-size: clamp(44px, 4.5vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--black);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero-content h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--sage-dark);
}
.hero-content > p {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 400px;
  margin-bottom: 40px;
}
.hero-infos {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 48px;
}
.hero-infos li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-body);
}
.hero-infos .ico {
  width: 28px;
  height: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--sage-dark);
  flex-shrink: 0;
}
.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.btn-black {
  padding: 14px 32px;
  background: var(--black);
  color: var(--white);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--tr);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-black:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 114, 89, 0.3);
}
.btn-text-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--tr);
}
.btn-text-link:hover {
  color: var(--black);
}
.btn-text-link i {
  transition: transform var(--tr);
}
.btn-text-link:hover i {
  transform: translateX(4px);
}

.hero-stats-row {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hstat {
  display: flex;
  flex-direction: column;
}
.hstat-n {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}
.hstat-n sup {
  font-size: 14px;
  color: var(--sage-dark);
}
.hstat-l {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* ══════════════════════════════════════════════════════════════
   TICKER
══════════════════════════════════════════════════════════════ */
.ticker {
  background: var(--black);
  overflow: hidden;
  padding: 14px 0;
}
.ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: ticker-anim 22s linear infinite;
}
@keyframes ticker-anim {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 40px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  flex-shrink: 0;
}
.ticker-dot {
  width: 4px;
  height: 4px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════════════════════ */
.services-wrap {
  padding: 100px 0;
  background: var(--white);
}
.services-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
.services-top h2 {
  font-family: var(--f-display);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.services-top h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--sage-dark);
}
.services-top p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.svc-card {
  background: var(--white);
  padding: 40px 32px;
  cursor: pointer;
  transition: background var(--tr);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--sage);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr);
}
.svc-card:hover {
  background: var(--off-white);
}
.svc-card:hover::before {
  transform: scaleX(1);
}
.svc-num {
  font-family: var(--f-display);
  font-size: 11px;
  color: var(--border);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.svc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--warm-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--sage-dark);
  margin-bottom: 20px;
  transition: background var(--tr);
}
.svc-card:hover .svc-icon {
  background: var(--sage-light);
}
.svc-card h3 {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.svc-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}
.svc-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-top: 20px;
  opacity: 0;
  transform: translateY(6px);
  transition: all var(--tr);
}
.svc-card:hover .svc-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════════
   MISSION / VISION
══════════════════════════════════════════════════════════════ */
.mv-wrap {
  background: var(--black);
  overflow: hidden;
  position: relative;
}
.mv-deco-text {
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: var(--f-display);
  font-size: 200px;
  font-weight: 700;
  font-style: italic;
  color: rgba(255, 255, 255, 0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.mv-col {
  padding: 100px 72px;
  position: relative;
}
.mv-col:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.mv-col .overline {
  color: var(--sage);
}
.mv-col h2 {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.mv-col h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--sage);
}
.mv-col > p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-bottom: 40px;
}
.mv-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 48px;
}
.mv-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}
.mv-check {
  width: 22px;
  height: 22px;
  border: 1px solid var(--sage);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--sage);
  flex-shrink: 0;
}
.btn-sage {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 1px solid var(--sage);
  color: var(--sage);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--tr);
}
.btn-sage:hover {
  background: var(--sage);
  color: var(--black);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════════ */
.contact-wrap {
  background: var(--off-white);
  padding: 100px 0;
}
.contact-top {
  max-width: 560px;
  margin-bottom: 72px;
}
.contact-top h2 {
  font-family: var(--f-display);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.contact-top h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--sage-dark);
}
.contact-top p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: start;
}

/* Carte rendez-vous */
.appt-wrap {
  background: var(--black);
  border-radius: 20px;
  padding: 44px 40px;
  position: sticky;
  top: 88px;
}
.appt-wrap .overline {
  color: var(--sage);
}
.appt-wrap h3 {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.appt-wrap > p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  margin-bottom: 32px;
}
.appt-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.appt-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}
.appt-item i {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--sage);
  flex-shrink: 0;
}
.btn-white-full {
  display: block;
  text-align: center;
  padding: 14px;
  background: var(--white);
  color: var(--black);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--tr);
}
.btn-white-full:hover {
  background: var(--sage-light);
  transform: translateY(-1px);
}

/* Formulaire */
.form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  border: 1px solid var(--border);
}
.form-card h3 {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.f-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.f-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.f-input {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-body);
  background: var(--off-white);
  outline: none;
  transition: all var(--tr);
  width: 100%;
}
.f-input:focus {
  border-color: var(--sage);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(122, 158, 135, 0.12);
}
.f-input::placeholder {
  color: #c5c0ba;
}
.f-textarea {
  resize: vertical;
  min-height: 130px;
}
.btn-submit-dark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--tr);
  margin-top: 4px;
}
.btn-submit-dark:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(74, 114, 89, 0.25);
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
}
.footer-brand {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.footer-brand em {
  font-style: italic;
  font-weight: 400;
  color: var(--sage-dark);
}
.footer-brand img {
  max-height: 40px;
}
.footer-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 8px;
}
.footer-social-btn {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-muted);
  transition: all var(--tr);
}
.footer-social-btn:hover {
  border-color: var(--black);
  color: var(--black);
  transform: translateY(-2px);
}
.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 20px;
}
.footer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-list li {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.footer-list i {
  color: var(--sage-dark);
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-list a {
  color: var(--text-muted);
  transition: color var(--tr);
}
.footer-list a:hover {
  color: var(--black);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  transition: color var(--tr);
}
.footer-legal a:hover {
  color: var(--black);
}

/* ══════════════════════════════════════════════════════════════
   ANIMATIONS scroll-reveal
══════════════════════════════════════════════════════════════ */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  animation: slideUp 0.9s var(--ease) both;
  animation-play-state: paused;
}
.reveal.in-view {
  animation-play-state: running;
}
.d1 {
  animation-delay: 0.05s;
}
.d2 {
  animation-delay: 0.15s;
}
.d3 {
  animation-delay: 0.25s;
}
.d4 {
  animation-delay: 0.35s;
}
.d5 {
  animation-delay: 0.45s;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .hero-media {
    height: 60vw;
    max-height: 480px;
    order: -1;
  }
  .hero-content {
    padding: 60px 40px;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 900px) {
  .nav-links,
  .nav-schedule {
    display: none;
  }
  .nav-toggler {
    display: block;
  }
  .mv-grid {
    grid-template-columns: 1fr;
  }
  .mv-col:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .mv-col {
    padding: 64px 40px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .appt-wrap {
    position: static;
  }
  .services-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 640px) {
  .container-wide {
    padding: 0 24px;
  }
  .hero-content {
    padding: 48px 24px;
  }
  .services-wrap,
  .contact-wrap {
    padding: 64px 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .form-card {
    padding: 32px 24px;
  }
  .f-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-stats-row {
    flex-wrap: wrap;
    gap: 20px;
  }
  .hero-badge {
    display: none;
  }
}
