:root {
  --blue: #3BA9DC;
  --blue-deep: #1F88B8;
  --blue-dark: #0F4D6E;
  --black: #0A0A0A;
  --bg: #0E0F12;
  --card: #16181D;
  --line: #23272F;
  --text: #E9ECF1;
  --muted: #9BA3AF;
  --white: #FFFFFF;
  --shadow: 0 30px 80px -20px rgba(0,0,0,.6), 0 8px 24px -8px rgba(0,0,0,.4);
  --radius: 18px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* === HEADER === */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(10,10,10,.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .3s ease;
}
.site-header.scrolled {
  background: rgba(10,10,10,.95);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 1200px; margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 80px; width: auto; filter: drop-shadow(0 2px 8px rgba(59,169,220,.25)); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-weight: 500; font-size: 14px; color: var(--text);
  transition: color .2s ease; letter-spacing: .02em;
}
.nav-links a:hover { color: var(--blue); }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff;
  padding: 11px 20px; border-radius: 999px;
  font-weight: 700; font-size: 14px; letter-spacing: .02em;
  border: none; cursor: pointer;
  box-shadow: 0 8px 20px -6px rgba(59,169,220,.5);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--blue-deep); box-shadow: 0 14px 28px -8px rgba(59,169,220,.6); }
.btn-outline {
  background: transparent; color: var(--text);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: none;
}
.btn-outline:hover { background: rgba(255,255,255,.05); border-color: var(--blue); color: var(--blue); }

/* Hamburger */
.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 22px; position: relative; z-index: 60;
}
.menu-toggle span {
  display: block; width: 100%; height: 2px; background: #fff;
  position: absolute; left: 0; transition: all .3s ease;
}
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 10px; }
.menu-toggle span:nth-child(3) { top: 20px; }
.menu-toggle.active span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 75% 30%, rgba(59,169,220,.18), transparent 60%),
    radial-gradient(900px 500px at 10% 80%, rgba(31,136,184,.12), transparent 65%),
    linear-gradient(180deg, #0A0B0E 0%, #0E1014 100%);
}
.hero::before {
  content: "";
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'><path d='M10 15 L25 30 L10 45' fill='none' stroke='%233BA9DC' stroke-width='3' stroke-linecap='square' opacity='0.07'/><path d='M28 15 L43 30 L28 45' fill='none' stroke='%233BA9DC' stroke-width='3' stroke-linecap='square' opacity='0.04'/></svg>");
  background-size: 120px 120px;
  opacity: .7;
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(59,169,220,.12); color: var(--blue);
  border: 1px solid rgba(59,169,220,.3);
  font-weight: 600; font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 24px;
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 12px var(--blue); }
h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
h1 .accent {
  background: linear-gradient(180deg, #5DC5F0 0%, #3BA9DC 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: inline-block;
}
h1 .strike {
  display: inline-block; background: var(--blue); color: #0A0A0A;
  padding: 0 14px; transform: skew(-6deg);
}
.hero p.lead {
  font-size: 18px; color: var(--muted); max-width: 560px; margin-bottom: 32px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-meta {
  display: flex; gap: 28px; flex-wrap: wrap;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08);
}
.hero-meta .item { display: flex; flex-direction: column; gap: 2px; }
.hero-meta .k { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; }
.hero-meta .v { font-weight: 700; font-size: 15px; color: #fff; }

.hero-visual {
  position: relative; aspect-ratio: 1/1; max-width: 480px; justify-self: center; width: 100%;
}
.hero-card {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(160deg, #3BA9DC 0%, #1F88B8 60%, #0F4D6E 100%);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.2);
}
.hero-card::after {
  content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='none' stroke='white' stroke-width='4' stroke-linecap='square' opacity='0.18'><path d='M30 50 L60 80 L30 110'/><path d='M70 50 L100 80 L70 110'/><path d='M110 50 L140 80 L110 110'/></g></svg>");
  background-repeat: no-repeat; background-position: right 20px top 20px; background-size: 60%;
}
.hero-logo-wrap {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.hero-logo-wrap img {
  width: 62%;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.4));
}
.hero-badge {
  position: absolute;
  bottom: -24px; left: -24px;
  background: #0A0A0A; color: #fff;
  padding: 18px 22px; border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
  z-index: 3;
  min-width: 220px;
}
.hero-badge .row { display: flex; align-items: center; gap: 12px; }
.hero-badge .icon {
  width: 40px; height: 40px; border-radius: 10px; background: var(--blue);
  display: grid; place-items: center; color: #0A0A0A; font-weight: 800;
}
.hero-badge .label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; }
.hero-badge .val { font-weight: 700; font-size: 16px; color: #fff; }

/* Hero Photo variant */
.hero-photo {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
}

/* === SECTION HEADERS === */
section { padding: 100px 0; position: relative; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 60px; }
.section-eyebrow {
  color: var(--blue); font-weight: 700; font-size: 13px;
  letter-spacing: .2em; text-transform: uppercase; margin-bottom: 16px;
  display: inline-block;
}
.section-eyebrow::before { content: "\203A\203A "; }
h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.05; letter-spacing: .01em;
  text-transform: uppercase; color: #fff; margin-bottom: 16px;
}
h2 .accent { color: var(--blue); }
.section-sub { color: var(--muted); font-size: 17px; }

/* === SERVICES === */
.services {
  background: linear-gradient(180deg, #0E1014 0%, #0A0B0E 100%);
}
.service-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 22px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  position: relative; overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.service-card::before {
  content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(180deg, rgba(59,169,220,.08) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(59,169,220,.4); }
.service-card:hover::before { opacity: 1; }
.service-card.featured {
  background: linear-gradient(160deg, rgba(59,169,220,.14) 0%, var(--card) 70%);
  border-color: rgba(59,169,220,.35);
}
.service-card.featured::after {
  content: "ESPECIALIDADE";
  position: absolute; top: 18px; right: 18px;
  background: var(--blue); color: #0A0A0A;
  font-size: 10px; font-weight: 800; letter-spacing: .15em;
  padding: 5px 9px; border-radius: 6px;
}
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(59,169,220,.14); color: var(--blue);
  display: grid; place-items: center; margin-bottom: 22px;
  border: 1px solid rgba(59,169,220,.25);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 18px; font-weight: 800;
  color: #fff; margin-bottom: 10px; letter-spacing: -.01em;
  position: relative;
}
.service-card p { font-size: 14px; color: var(--muted); line-height: 1.6; position: relative; }
.service-tags {
  margin-top: 18px; display: flex; flex-wrap: wrap; gap: 6px;
  position: relative;
}
.service-tags span {
  font-size: 11px; font-weight: 600; color: var(--blue);
  background: rgba(59,169,220,.08);
  padding: 4px 10px; border-radius: 999px;
  border: 1px solid rgba(59,169,220,.2);
}

/* === SPECIALTY === */
.specialty {
  background:
    radial-gradient(800px 400px at 80% 50%, rgba(59,169,220,.18), transparent 60%),
    #0A0B0E;
}
.specialty-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.specialty-visual {
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #1F88B8 0%, #0F4D6E 100%);
  border-radius: 24px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow);
}
.specialty-visual img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; top: 0; left: 0;
}
.specialty-visual::before {
  content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><g fill='none' stroke='white' stroke-width='2' opacity='0.12'><path d='M20 30 L40 50 L20 70'/><path d='M50 30 L70 50 L50 70'/></g></svg>");
  background-size: 160px; background-repeat: repeat;
  z-index: 1;
}
.gear-emoji {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-size: 200px; opacity: .95;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.4));
}
.specialty-pill {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: rgba(10,10,10,.7); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.1);
  padding: 18px 22px; border-radius: 14px;
}
.specialty-pill .row { display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.specialty-pill .row + .row { margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,.08); }
.specialty-pill .k { font-size: 12px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .1em; }
.specialty-pill .v { font-weight: 800; font-size: 15px; color: #fff; font-family: 'Anton', sans-serif; letter-spacing: .05em; }

.specialty-list {
  list-style: none; margin: 30px 0; display: flex; flex-direction: column; gap: 14px;
}
.specialty-list li {
  display: flex; gap: 14px; align-items: flex-start;
  color: var(--text); font-size: 15px;
}
.specialty-list .check {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--blue); color: #0A0A0A;
  display: grid; place-items: center; font-weight: 800; font-size: 14px;
  margin-top: 1px;
}

/* === DIESEL & PREVENTIVA === */
.diesel-prev {
  background:
    radial-gradient(900px 500px at 20% 50%, rgba(59,169,220,.12), transparent 60%),
    #0E1014;
}
.dp-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.dp-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative; overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
}
.dp-card::before {
  content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background: linear-gradient(180deg, rgba(59,169,220,.06) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s ease;
}
.dp-card:hover { transform: translateY(-6px); border-color: rgba(59,169,220,.4); }
.dp-card:hover::before { opacity: 1; }
.dp-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(59,169,220,.14); color: var(--blue);
  display: grid; place-items: center; margin-bottom: 24px;
  border: 1px solid rgba(59,169,220,.25);
}
.dp-icon svg { width: 28px; height: 28px; }
.dp-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 22px; font-weight: 800;
  color: #fff; margin-bottom: 12px; letter-spacing: -.01em;
  position: relative;
}
.dp-card p { font-size: 15px; color: var(--muted); line-height: 1.6; position: relative; margin-bottom: 20px; }
.dp-tags {
  display: flex; flex-wrap: wrap; gap: 8px; position: relative;
}
.dp-tags span {
  font-size: 12px; font-weight: 600; color: var(--blue);
  background: rgba(59,169,220,.08);
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid rgba(59,169,220,.2);
}
.dp-cta { text-align: center; margin-top: 50px; }

/* === FEATURES === */
.features { background: #0E1014; }
.feature-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.feature {
  text-align: center; padding: 36px 24px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--card);
  transition: border-color .3s ease, transform .3s ease;
}
.feature:hover { border-color: rgba(59,169,220,.4); transform: translateY(-4px); }
.feature-num {
  font-family: 'Anton', sans-serif; font-size: 42px; color: var(--blue);
  line-height: 1; margin-bottom: 14px;
}
.feature h4 { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.feature p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* === LOCATION === */
.location { background: #0A0B0E; }
.loc-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: stretch; }
.loc-info {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 40px;
  display: flex; flex-direction: column; justify-content: center;
}
.loc-info h3 {
  font-family: 'Anton', sans-serif; font-size: 32px;
  text-transform: uppercase; color: #fff; margin-bottom: 24px; letter-spacing: .01em;
}
.loc-row {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-top: 1px solid var(--line);
}
.loc-row:first-of-type { border-top: none; padding-top: 0; }
.loc-row .ico {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: rgba(59,169,220,.12); color: var(--blue);
  display: grid; place-items: center;
  border: 1px solid rgba(59,169,220,.22);
}
.loc-row .ico svg { width: 20px; height: 20px; }
.loc-row .lbl { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .14em; margin-bottom: 4px; }
.loc-row .val { font-size: 16px; color: #fff; font-weight: 600; }
.loc-row .val a { color: #fff; transition: color .2s; }
.loc-row .val a:hover { color: var(--blue); }
.loc-map {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); min-height: 420px;
  background: #0A0B0E;
}
.loc-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: invert(.92) hue-rotate(180deg) saturate(.5); }

/* === CTA BANNER === */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, #1F88B8 0%, #3BA9DC 50%, #1F88B8 100%);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; top: 0; right: 0; bottom: 0; left: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><g fill='none' stroke='white' stroke-width='3' stroke-linecap='square' opacity='0.1'><path d='M20 30 L40 50 L20 70'/><path d='M50 30 L70 50 L50 70'/></g></svg>");
  background-size: 140px;
}
.cta-inner {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap;
}
.cta-inner h2 { color: #0A0A0A; margin-bottom: 6px; }
.cta-inner p { color: rgba(10,10,10,.75); font-size: 17px; font-weight: 500; }
.cta-banner .btn { background: #0A0A0A; color: #fff; font-size: 16px; padding: 16px 28px; }
.cta-banner .btn:hover { background: #fff; color: #0A0A0A; box-shadow: 0 14px 30px -8px rgba(0,0,0,.4); }

/* === FOOTER === */
.site-footer { background: #070809; padding: 70px 0 30px; border-top: 1px solid var(--line); }
.foot-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 50px;
}
.foot-brand img { height: 60px; margin-bottom: 18px; }
.foot-brand p { color: var(--muted); font-size: 14px; line-height: 1.6; max-width: 300px; }
.site-footer h5 {
  font-size: 12px; color: #fff; text-transform: uppercase;
  letter-spacing: .18em; font-weight: 700; margin-bottom: 18px;
}
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.site-footer ul a { color: var(--muted); font-size: 14px; transition: color .2s; }
.site-footer ul a:hover { color: var(--blue); }
.foot-bottom {
  padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  color: var(--muted); font-size: 13px;
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--card); border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--muted);
  transition: all .2s ease;
}
.socials a:hover { color: var(--blue); border-color: rgba(59,169,220,.4); background: rgba(59,169,220,.06); }

/* === WHATSAPP FLOAT === */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 40;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 30px -6px rgba(37,211,102,.6);
  transition: transform .2s ease;
  animation: pulse 2.4s infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }
@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); }
}

/* === GOOGLE REVIEWS === */
.reviews {
  background: var(--bg); padding: 80px 0;
}

/* === CERTIFICATES === */
.certificates { background: #0A0B0E; }
.cert-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.cert-carousel {
  position: relative; overflow: hidden; border-radius: var(--radius);
}
.cert-track {
  display: flex; transition: transform .5s ease;
}
.cert-slide {
  min-width: 100%; padding: 20px;
  display: flex; align-items: center; justify-content: center;
}
.cert-slide img {
  max-height: 420px; width: auto; max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 50px -10px rgba(0,0,0,.5);
}
.cert-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(10,10,10,.7); border: 1px solid rgba(255,255,255,.15);
  color: #fff; cursor: pointer;
  display: grid; place-items: center;
  transition: all .2s ease; z-index: 3;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cert-arrow:hover { background: var(--blue); border-color: var(--blue); }
.cert-prev { left: 12px; }
.cert-next { right: 12px; }
.cert-dots {
  display: flex; justify-content: center; gap: 8px;
  padding-top: 20px;
}
.cert-dots .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.2); border: none; cursor: pointer;
  transition: all .3s ease;
}
.cert-dots .dot.active { background: var(--blue); width: 24px; border-radius: 4px; }

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

/* === RESPONSIVE === */
@media (max-width: 980px) {
  .nav-links {
    display: none; flex-direction: column;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10,10,10,.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 100px 40px 40px;
    gap: 24px;
    align-items: flex-start;
    z-index: 55;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 20px; font-weight: 600; }
  .menu-toggle { display: block; z-index: 60; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { max-width: 380px; margin: 0 auto; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .feature-grid { grid-template-columns: repeat(2,1fr); }
  .specialty-grid { grid-template-columns: 1fr; gap: 40px; }
  .dp-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; gap: 40px; }
  .loc-grid { grid-template-columns: 1fr; }
  .loc-map { min-height: 320px; }
  .loc-map iframe { min-height: 320px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  section { padding: 70px 0; }
}
@media (max-width: 560px) {
  .service-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero { padding: 110px 0 60px; }
  .gear-emoji { font-size: 140px; }
  .hero-badge { left: -10px; bottom: -18px; min-width: auto; padding: 14px 16px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .foot-bottom { flex-direction: column; text-align: center; }
}

/* WP admin bar fix */
body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}
