/* ====================== TOKENS ====================== */
:root {
  --navy: #062a5e;
  --navy-2: #0a3a82;
  --blue: #1565d8;
  --blue-light: #3b88f0;
  --gold: #f5b301;
  --gold-soft: #ffd566;
  --wa: #25d366;
  --wa-dark: #1da851;
  --snap: #fffc00;

  --ink: #10243f;
  --muted: #5b6b80;
  --bg: #f4f8fd;
  --card: #ffffff;
  --line: #e4ecf5;

  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 6px 18px rgba(8, 42, 94, .08);
  --shadow: 0 16px 40px rgba(8, 42, 94, .12);
  --shadow-lg: 0 30px 70px rgba(8, 42, 94, .18);
  --maxw: 1180px;
  --gradient: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 45%, var(--blue) 100%);
}

/* ====================== RESET ====================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Cairo", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { width: min(100% - 36px, var(--maxw)); margin-inline: auto; }
.ico { width: 1.15em; height: 1.15em; fill: currentColor; flex: none; }

/* ====================== BUTTONS ====================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: inherit; font-weight: 800; font-size: 1rem;
  padding: .85rem 1.6rem; border-radius: 999px; border: none; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-lg { padding: 1.05rem 2.1rem; font-size: 1.08rem; }
.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 10px 26px rgba(37, 211, 102, .4); }
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(37, 211, 102, .5); }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 10px 26px rgba(21, 101, 216, .35); }
.btn-primary:hover { background: var(--navy-2); transform: translateY(-2px); }
.btn-ghost { background: rgba(255, 255, 255, .14); color: #fff; border: 1.5px solid rgba(255, 255, 255, .5); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255, 255, 255, .26); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--blue); border: 1.6px solid var(--blue); padding: .7rem 1.3rem; font-size: .95rem; }
.btn-outline:hover { background: var(--blue); color: #fff; }

/* ====================== HEADER ====================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, border-color .3s ease, padding .3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.header-inner { display: flex; align-items: center; gap: 1rem; padding: .7rem 0; }
.brand-logo { height: 52px; width: auto; transition: height .3s ease; }
.site-header.scrolled .brand-logo { height: 44px; }
.source-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%; flex: none;
  box-shadow: var(--shadow-sm);
}
.source-badge .ico { width: 1.25em; height: 1.25em; }
.source-badge--snapchat { background: var(--snap); color: #1a1a00; }
.source-badge--tiktok { background: #010101; color: #fff; }
.main-nav { display: flex; gap: .3rem; margin-inline-start: auto; }
.main-nav a {
  padding: .5rem .85rem; border-radius: 10px; font-weight: 600; color: var(--ink);
  font-size: .98rem; transition: background .2s, color .2s;
}
.main-nav a:hover { background: var(--bg); color: var(--blue); }
.header-cta { margin-inline-start: .6rem; padding: .65rem 1.25rem; font-size: .95rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-inline-start: auto; }
.nav-toggle span { width: 26px; height: 3px; background: var(--navy); border-radius: 3px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.mobile-menu { display: none; flex-direction: column; background: #fff; border-top: 1px solid var(--line); overflow: hidden; max-height: 0; transition: max-height .35s ease; }
.mobile-menu.open { max-height: 360px; }
.mobile-menu a { padding: .95rem 22px; font-weight: 700; border-bottom: 1px solid var(--line); }
.mobile-menu a:hover { background: var(--bg); color: var(--blue); }

/* ====================== HERO ====================== */
.hero { position: relative; color: #fff; overflow: hidden; padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 6rem); }
.hero-bg { position: absolute; inset: 0; background: var(--gradient); z-index: -2; }
.hero-bg::before, .hero-bg::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(10px); opacity: .5;
}
.hero-bg::before { width: 520px; height: 520px; background: radial-gradient(circle, rgba(59,136,240,.55), transparent 70%); top: -180px; left: -120px; }
.hero-bg::after { width: 480px; height: 480px; background: radial-gradient(circle, rgba(245,179,1,.28), transparent 70%); bottom: -200px; right: -100px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 2rem; align-items: center; }
.hero-title { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 900; line-height: 1.15; margin-bottom: 1.1rem; letter-spacing: -.5px; }
.hero-title .hl { color: var(--gold-soft); }
.hero-sub { font-size: clamp(1rem, 2vw, 1.18rem); color: rgba(255, 255, 255, .92); max-width: 540px; margin-bottom: 1.8rem; font-weight: 400; }
.hero-cta { display: flex; gap: .9rem; flex-wrap: wrap; }

.hero-photo { position: relative; display: grid; place-items: center; }
.photo-ring {
  position: absolute; width: min(108%, 430px); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, rgba(59,136,240,.55), rgba(6,42,94,0) 65%);
  border: 2px dashed rgba(255, 255, 255, .25);
  animation: spin 30s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.doctor-photo-frame {
  position: relative; width: min(96%, 400px); aspect-ratio: 1; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.04));
  box-shadow: var(--shadow-lg); border: 4px solid rgba(255, 255, 255, .35);
}
.doctor-img {
  position: absolute; left: 0; right: 0; top: -8%;
  width: 100%; height: 116%;
  max-width: none;
  object-fit: cover; object-position: center top;
}
.floating-card {
  position: absolute; background: rgba(255, 255, 255, .96); color: var(--ink);
  border-radius: 16px; padding: .7rem 1rem; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: .5rem; font-weight: 700; font-size: .9rem;
  animation: floaty 4s ease-in-out infinite;
}
.card-exp { top: 12%; inset-inline-start: -6%; flex-direction: column; gap: 0; line-height: 1.2; }
.card-exp strong { font-size: 1.6rem; color: var(--blue); }
.card-exp span { color: var(--muted); font-size: .8rem; }
.card-uni { bottom: 14%; inset-inline-end: -4%; color: var(--navy); animation-delay: 1.5s; }
.card-uni .ico { color: var(--gold); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ====================== STATS ====================== */
.stats { margin-top: -2.2rem; position: relative; z-index: 5; }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  background: #fff; border-radius: var(--radius-lg); padding: 1.6rem 1rem; box-shadow: var(--shadow);
}
.stat { text-align: center; padding: .4rem; border-inline-start: 1px solid var(--line); }
.stat:first-child { border: none; }
.stat strong { display: block; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; color: var(--blue); line-height: 1; }
.stat span { color: var(--muted); font-size: .92rem; font-weight: 600; }

/* ====================== QUICK NAV ====================== */
.quicknav { padding: clamp(2.4rem, 5vw, 3.6rem) 0 0; }
.quicknav-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem;
}
.qn-card {
  position: relative; overflow: hidden; isolation: isolate;
  display: flex; flex-direction: column; gap: .9rem;
  padding: 1.5rem 1.3rem 1.3rem;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.qn-card::before {
  content: ""; position: absolute; inset-inline-start: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--blue), var(--blue-light));
  transform: scaleY(0); transform-origin: top; transition: transform .3s ease;
}
.qn-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); border-color: transparent; }
.qn-card:hover::before { transform: scaleY(1); }
.qn-glow {
  position: absolute; z-index: -1; inset-inline-end: -40px; top: -40px;
  width: 130px; height: 130px; border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 101, 216, .16), transparent 70%);
  opacity: 0; transform: scale(.6); transition: opacity .35s ease, transform .35s ease;
}
.qn-card:hover .qn-glow { opacity: 1; transform: scale(1); }
.qn-ico {
  display: grid; place-items: center; width: 54px; height: 54px; border-radius: 15px;
  background: linear-gradient(140deg, rgba(21, 101, 216, .12), rgba(59, 136, 240, .14));
  color: var(--blue); transition: background .3s ease, color .3s ease, transform .3s ease;
}
.qn-ico svg { width: 28px; height: 28px; fill: currentColor; }
.qn-card:hover .qn-ico {
  background: linear-gradient(140deg, var(--blue), var(--blue-light));
  color: #fff; transform: rotate(-6deg) scale(1.05);
}
.qn-text { display: flex; flex-direction: column; gap: .3rem; }
.qn-label {
  font-size: .78rem; font-weight: 800; letter-spacing: .02em;
  color: var(--blue); text-transform: uppercase;
}
.qn-title { font-size: 1.02rem; font-weight: 800; color: var(--navy); line-height: 1.45; }
.qn-arrow {
  display: inline-flex; align-items: center; gap: .4rem; margin-top: auto;
  color: var(--blue); transition: gap .25s ease;
}
.qn-arrow svg { width: 18px; height: 18px; }
.qn-card:hover .qn-arrow { gap: .75rem; }
@media (prefers-reduced-motion: reduce) {
  .qn-card, .qn-card::before, .qn-glow, .qn-ico, .qn-arrow { transition: none; }
}

/* ====================== SECTIONS ====================== */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.eyebrow {
  display: inline-block; color: var(--blue); background: rgba(21, 101, 216, .1);
  font-weight: 800; font-size: .85rem; padding: .35rem .9rem; border-radius: 999px; margin-bottom: .9rem;
}
.section-title { font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 900; line-height: 1.25; color: var(--navy); }
.section-title .hl { color: var(--blue); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 2.6rem; }
.section-desc { color: var(--muted); margin-top: .7rem; font-size: 1.05rem; }

/* ====================== ABOUT ====================== */
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 2.6rem; align-items: center; }
.lead { color: var(--muted); font-size: 1.08rem; margin: 1rem 0 1.4rem; }
.check-list { display: grid; gap: .7rem; margin-bottom: 1.7rem; }
.check-list li { position: relative; padding-inline-start: 2rem; font-weight: 600; color: var(--ink); }
.check-list li::before {
  content: "✓"; position: absolute; inset-inline-start: 0; top: 1px;
  width: 1.4rem; height: 1.4rem; background: var(--wa); color: #fff; border-radius: 50%;
  display: grid; place-items: center; font-size: .8rem; font-weight: 900;
}
.about-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.mini-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.2rem;
  box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s;
}
.mini-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.mini-ico { font-size: 2rem; display: block; margin-bottom: .6rem; }
.mini-card h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: .3rem; }
.mini-card p { color: var(--muted); font-size: .95rem; }

/* ====================== PROCEDURES ====================== */
.procedures { background: linear-gradient(180deg, #fff, var(--bg)); }
.procedures-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; align-items: center; }
.procedures-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.procedures-image img { width: 100%; }
.proc-list { display: grid; gap: .75rem; }
.proc-list li {
  display: flex; align-items: center; gap: .9rem; background: #fff; border: 1px solid var(--line);
  border-radius: 14px; padding: .85rem 1.1rem; font-weight: 700; color: var(--ink);
  box-shadow: var(--shadow-sm); transition: transform .2s, border-color .2s;
}
.proc-list li:hover { transform: translateX(-6px); border-color: var(--blue); }
.proc-list li span {
  flex: none; width: 2rem; height: 2rem; border-radius: 50%; background: var(--gradient); color: #fff;
  display: grid; place-items: center; font-weight: 900; font-size: .95rem;
}

/* ====================== CAROUSEL ====================== */
.carousel { position: relative; }
.car-viewport { overflow: hidden; border-radius: var(--radius-lg); }
.car-track { display: flex; transition: transform .5s cubic-bezier(.22, .61, .36, 1); }
.car-slide { flex: 0 0 33.333%; padding: 10px; box-sizing: border-box; }
.result-card {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #fff;
  aspect-ratio: 1 / 1; border: 1px solid var(--line);
}
.result-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.result-card:hover img { transform: scale(1.05); }

.car-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 48px; height: 48px; border-radius: 50%; border: none; cursor: pointer;
  background: #fff; color: var(--navy); font-size: 1.8rem; line-height: 1;
  box-shadow: var(--shadow); display: grid; place-items: center; transition: background .2s, color .2s, transform .2s;
}
.car-btn:hover { background: var(--blue); color: #fff; }
.car-prev { inset-inline-end: -10px; }
.car-next { inset-inline-start: -10px; }
.car-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.4rem; flex-wrap: wrap; }
.car-dots button { width: 10px; height: 10px; border-radius: 50%; border: none; background: var(--line); cursor: pointer; transition: .25s; padding: 0; }
.car-dots button.active { background: var(--blue); width: 28px; border-radius: 6px; }

/* ====================== VIDEOS ====================== */
.videos { background: var(--navy); color: #fff; }
.videos .section-title { color: #fff; }
.videos .section-title .hl { color: var(--gold-soft); }
.videos .eyebrow { background: rgba(255, 255, 255, .14); color: #fff; }
.videos .section-desc { color: rgba(255, 255, 255, .8); }
.video-card {
  position: relative; aspect-ratio: 16 / 10; border-radius: var(--radius); overflow: hidden; cursor: pointer;
  background: #000 center/cover no-repeat; box-shadow: var(--shadow-lg); border: 1px solid rgba(255, 255, 255, .12);
}
.video-card--native { background: #1a2a4a; }
.video-card--native .video-poster,
.video-card--native .video-preview {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: contain; object-position: center center;
  pointer-events: none; display: block;
}
.video-card--native .play { background: rgba(255, 252, 0, .95); }
.video-card--native .play svg { fill: #1a1a00; }
.video-card--native::after {
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,.25));
}
.video-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.35));
  transition: background .3s; pointer-events: none;
}
.video-card:hover::after { background: rgba(0, 0, 0, .15); }
.video-card .play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 3;
  width: 64px; height: 64px; border-radius: 50%; background: rgba(255, 0, 0, .92); display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .4); transition: transform .25s, background .25s;
}
.video-card:hover .play { transform: translate(-50%, -50%) scale(1.12); background: #ff0000; }
.video-card .play svg { width: 26px; height: 26px; fill: #fff; margin-inline-start: 3px; }

/* ====================== CLINICS ====================== */
.clinics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.clinic-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.8rem 1.5rem;
  box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; position: relative; overflow: hidden;
}
.clinic-card::before { content: ""; position: absolute; top: 0; inset-inline-start: 0; width: 100%; height: 5px; background: var(--gradient); }
.clinic-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.clinic-card h3 { color: var(--navy); font-size: 1.3rem; margin-bottom: .7rem; }
.clinic-addr { color: var(--ink); font-weight: 600; margin-bottom: .6rem; }
.clinic-time { color: var(--muted); font-size: .95rem; margin-bottom: 1.2rem; }
.pin { margin-inline-end: .3rem; }
.contact-bar {
  margin-top: 2rem; background: var(--gradient); color: #fff; border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2rem);
}
.contact-bar-inner {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1rem;
}
.contact-intro { font-weight: 800; font-size: 1.1rem; margin: 0; }
.contact-phones { display: flex; gap: .8rem; flex-wrap: wrap; justify-content: center; }
.phone-pill {
  background: rgba(255, 255, 255, .16); border: 1px solid rgba(255, 255, 255, .3); color: #fff;
  font-weight: 800; padding: .6rem 1.1rem; border-radius: 999px; transition: background .2s; direction: ltr;
}
.phone-pill:hover { background: rgba(255, 255, 255, .3); }
.contact-wa-note { font-weight: 600; opacity: .92; margin: 0; font-size: 1.02rem; }
.contact-wa-btn { margin-top: .25rem; }

/* ====================== FOOTER ====================== */
.site-footer { background: var(--navy); color: rgba(255, 255, 255, .85); padding-top: 3rem; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr auto; gap: 2rem; align-items: center; padding-bottom: 2rem; }
.footer-logo { height: 56px; background: #fff; border-radius: 12px; padding: 6px 10px; margin-bottom: 1rem; }
.footer-brand p { font-size: .98rem; max-width: 420px; }
.footer-social { display: flex; gap: .7rem; flex-wrap: wrap; justify-content: center; }
.soc {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255, 255, 255, .1); color: #fff; transition: transform .2s, background .2s;
}
.soc .ico { width: 20px; height: 20px; }
.soc:hover { transform: translateY(-4px) scale(1.05); }
.soc-snap:hover { background: var(--snap); color: #1a1a00; }
.soc-fb:hover { background: #1877f2; }
.soc-ig:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.soc-yt:hover { background: #ff0000; }
.soc-tt:hover { background: #010101; }
.soc-x:hover { background: #000; }
.footer-extra { text-align: center; }
.full-site-link { font-weight: 800; color: var(--gold-soft); }
.full-site-link:hover { text-decoration: underline; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .12); text-align: center; padding: 1.2rem 0; font-size: .9rem; }

/* ====================== FLOATING WA ====================== */
.float-wa {
  position: fixed; bottom: 22px; inset-inline-start: 22px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%; background: var(--wa); color: #fff;
  display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37, 211, 102, .5);
  animation: pulse 2.4s infinite;
}
.float-wa .ico { width: 30px; height: 30px; }
.float-wa:hover { background: var(--wa-dark); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .5); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ====================== LIGHTBOX ====================== */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(3, 14, 32, .92);
  display: none; align-items: center; justify-content: center; padding: 18px;
}
.lightbox.open { display: flex; }
.lightbox-inner { width: min(960px, 100%); aspect-ratio: 16 / 9; }
.lightbox-inner iframe,
.lightbox-inner video { width: 100%; height: 100%; border: none; border-radius: 14px; background: #000; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 18px; inset-inline-end: 18px; width: 46px; height: 46px; border-radius: 50%;
  background: #fff; color: var(--navy); border: none; font-size: 1.4rem; cursor: pointer; font-weight: 900;
}

/* ====================== REVEAL ====================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ====================== RESPONSIVE ====================== */
@media (max-width: 980px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .hero-photo { order: -1; margin-bottom: 1rem; }
  .doctor-photo-frame { width: min(72%, 320px); }
  .about-grid, .procedures-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .clinics-grid { grid-template-columns: 1fr; }
  .quicknav-grid { grid-template-columns: repeat(3, 1fr); }
  .car-slide { flex-basis: 50%; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-brand p { margin-inline: auto; }
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: .6rem; }
  .stat:nth-child(3) { border: none; }
  .quicknav-grid { grid-template-columns: 1fr; }
  .qn-card {
    flex-direction: row; align-items: center; gap: 1rem;
    padding: 1rem 1.1rem;
  }
  .qn-ico { width: 46px; height: 46px; }
  .qn-ico svg { width: 24px; height: 24px; }
  .qn-text { flex: 1; }
  .qn-title { font-size: .98rem; }
  .qn-arrow { margin-top: 0; }
  .about-cards { grid-template-columns: 1fr; }
  .car-slide { flex-basis: 100%; }
  .car-prev { inset-inline-end: 4px; }
  .car-next { inset-inline-start: 4px; }
  .car-btn { width: 40px; height: 40px; font-size: 1.5rem; }
  .floating-card { font-size: .8rem; padding: .5rem .7rem; }
  .card-exp strong { font-size: 1.3rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
