@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #222;
  --surface: #222;
  --surface-2: #222;
  --surface-3: #17171b;
  --text: #f7f7f8;
  --muted: #9ca3af;
  --soft: #c6d0df;
  --line: rgba(255, 255, 255, .08);
  --line-strong: rgba(255, 255, 255, .14);
  --red: #FFD700;
  --red-2: #FFA500;
  --red-dark: #7a4a00;
  --theme-rgb: 255, 215, 0;
  --theme-contrast: #111827;
  --gold-gradient: linear-gradient(90deg, var(--red) 0%, var(--red-2) 100%);
  --green: #22c55e;
  --radius: 10px;
  --shadow: 0 28px 70px rgba(0, 0, 0, .42);
  --font-main: "Exo 2", Exo2, Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); overflow-x: hidden; }
body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  background: #f4f6f8;
  color: var(--text);
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}
body:not(.admin-body) main { background: #f4f6f8; }
a { color: inherit; text-decoration: none; }
img, svg, iframe { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; letter-spacing: 0; }
button { cursor: pointer; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: 86px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(20px, 7vw, 188px);
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  transition: background .18s ease, border-color .18s ease, backdrop-filter .18s ease, box-shadow .18s ease;
}
.site-header.is-scrolled,
.site-header.open {
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, .035);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
}
.logo {
  position: relative;
  isolation: isolate;
  margin-right: auto;
  color: #fff;
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: clamp(28px, 2.6vw, 48px);
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  letter-spacing: -2.2px;
  transform: skew(-10deg);
  text-shadow: none;
  transition: color .18s ease, text-shadow .18s ease, transform .18s ease;
}
.logo:before,
.logo:after {
  content: "";
  position: absolute;
  inset: -9px -16px;
  z-index: -1;
  border: 2px solid rgba(var(--theme-rgb), .42);
  border-radius: 999px;
  opacity: 0;
  transform: scale(.86);
  pointer-events: none;
}
.logo:hover,
.logo:focus-visible {
  color: #fff;
  transform: skew(-10deg) translateY(-1px);
  text-shadow: 0 0 18px rgba(var(--theme-rgb), .28);
}
.logo:hover:before,
.logo:focus-visible:before {
  animation: logoPulse 1.35s ease-out;
}
.logo:hover:after,
.logo:focus-visible:after {
  animation: logoPulse 1.35s ease-out .18s;
}
.logo span {
  color: var(--red-2);
  margin-right: 2px;
  text-shadow: none;
}
@keyframes logoPulse {
  0% {
    opacity: .55;
    transform: scale(.9);
  }
  100% {
    opacity: 0;
    transform: scale(1.16);
  }
}
.site-header nav { display: flex; align-items: center; gap: clamp(16px, 1.8vw, 30px); }
.site-header nav a {
  color: #cfd2d9;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  transition: color .18s ease;
}
.site-header nav a:hover { color: #fff; }
.site-header.on-light .logo {
  color: #232323;
  text-shadow: none;
}
.site-header.on-light nav a {
  color: #374151;
}
.site-header.on-light nav a:hover {
  color: #111827;
}
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 36px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
}
.language-switch a {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 28px;
  border-radius: 999px;
  color: #cfd2d9;
  font-size: 12px;
  font-weight: 700;
}
.language-switch a.active {
  background: var(--gold-gradient);
  color: var(--theme-contrast);
}
.site-header.on-light .language-switch {
  border-color: rgba(17, 24, 39, .12);
  background: rgba(255, 255, 255, .72);
}
.site-header.on-light .language-switch a:not(.active) { color: #374151; }
.site-header.on-light .menu-btn {
  border-color: rgba(17, 24, 39, .14);
  background: rgba(255, 255, 255, .72);
  color: #111827;
}
.site-header.on-light .menu-btn span { background: #111827; }
.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  color: #fff;
  padding: 0;
}
.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 9px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.btn-red {
  background: var(--gold-gradient);
  color: var(--theme-contrast);
  box-shadow: 0 18px 36px rgba(var(--theme-rgb), .25);
}
.btn-red:hover { transform: translateY(-1px); box-shadow: 0 22px 44px rgba(var(--theme-rgb), .34); }
.btn-dealer {
  border-color: rgba(255, 255, 255, .18);
  background: #101013;
  color: #fff;
}
.btn-dealer:hover {
  border-color: rgba(var(--theme-rgb), .42);
  transform: translateY(-1px);
}
.btn-ghost { background: rgba(255,255,255,.045); border-color: var(--line-strong); color: #fff; }
.btn-ghost:hover { border-color: rgba(255,255,255,.26); background: rgba(255,255,255,.07); }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 16%, rgba(var(--theme-rgb), .20), transparent 32%),
    radial-gradient(circle at 82% 8%, rgba(212, 212, 216, .12), transparent 30%),
    radial-gradient(circle at 74% 76%, rgba(var(--theme-rgb), .10), transparent 34%),
    url('https://hkworks.com.tr/panel/styles/bg.png'),
    #222;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 130px max(20px, calc((100vw - 1240px) / 2)) 78px;
}
#circuit-hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: .62;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(0, 0, 0, .46);
}
.live-pill {
  position: absolute;
  right: max(20px, calc((100vw - 1240px) / 2));
  top: 112px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 999px;
  background: rgba(11, 11, 12, .72);
  color: #f6f6f7;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(12px);
}
.live-pill span { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 16px rgba(34,197,94,.75); }
.live-pill b { color: #fff; font-weight: 700; }
.hero-shell {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 0;
}
.hero-content { position: relative; z-index: 2; width: min(860px, 100%); text-align: center; }
.eyebrow, .red-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(var(--theme-rgb),.34);
  background: rgba(var(--theme-rgb),.11);
  color: var(--red-2);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.section-head > span { display: none; }
h1, h2, h3 {
  margin: 0;
  font-family: var(--font-main);
  line-height: 1.2;
  letter-spacing: 0;
}
.hero h1 {
  margin-top: 22px;
  font-size: clamp(36px, 5.1vw, 64px);
  font-weight: 700;
}
.hero h1 strong {
  color: var(--red-2);
  background: none;
  text-shadow: none;
}
.lead {
  max-width: 720px;
  margin: 20px auto 0;
  color: #c4c9d3;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.7;
}
.stats { display: flex; justify-content: center; align-items: center; gap: clamp(18px, 3.4vw, 42px); margin: 34px 0 36px; }
.stats b { display: block; color: #fff; font-size: clamp(28px, 3vw, 38px); font-weight: 700; }
.stats b em {
  font-style: normal;
}
.stats b span {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stats small { display: block; margin-top: 4px; color: #8d95a4; font-size: 12px; font-weight: 600; }
.stats-divider {
  width: 1px;
  height: 48px;
  display: block;
  background: rgba(255,255,255,.12);
}
.hero-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.scroll-cue {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin: 22px auto 0;
  color: #8d95a4;
  transition: color .18s ease, transform .18s ease;
}
.scroll-cue:hover {
  color: #fff;
  transform: translateY(3px);
}
.scroll-cue svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
}
.section { width: min(1240px, calc(100% - 40px)); margin: 0 auto; padding: 92px 0; }
.section-light {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: max(20px, calc((100vw - 1240px) / 2));
  padding-right: max(20px, calc((100vw - 1240px) / 2));
  color: #111827;
  background: #f4f6f8;
}
.section-light .section-head h1,
.section-light .section-head h2,
.section-light h2,
.section-light h3 { color: #111827; }
.section-light .section-head p,
.section-light p,
.section-light .equipment-head p { color: #4b5565; }
.section-light .section-head > span {
  background: rgba(var(--theme-rgb),.08);
  color: var(--red-2);
  border-color: rgba(var(--theme-rgb),.22);
}
.section-head { max-width: 720px; margin: 0 auto 42px; text-align: center; }
.section-head h1,
.section-head h2 {
  margin-top: 0;
  color: #282828;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}
.section-head p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.vehicle-section {
  padding: 104px 20px;
  background: #f4f6f8;
}
.vehicle-tool {
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: clamp(22px, 3vw, 40px);
  border: 1px solid rgba(17,24,39,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 28px 80px rgba(17,24,39,.12), inset 0 1px 0 rgba(255,255,255,.8);
}
.vehicle-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding-bottom: 0;
  border-bottom: 0;
}
.vehicle-tool.has-result .vehicle-form {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(17,24,39,.1);
}
label { display: grid; gap: 9px; color: #5a6677; font-size: 14px; font-weight: 600; }
input, select, textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(17,24,39,.16);
  border-radius: 10px;
  background: #fff;
  color: #111827;
  padding: 0 16px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
select {
  appearance: auto;
  padding-right: 42px;
}
textarea { min-height: 118px; padding-top: 14px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: rgba(var(--theme-rgb),.72); box-shadow: 0 0 0 3px rgba(var(--theme-rgb),.13); background: #fff; }
select:disabled { opacity: .48; cursor: not-allowed; }

.vehicle-result { min-height: 0; padding-top: 0; }
.vehicle-result.is-hidden { display: none; min-height: 0; padding-top: 0; }
.vehicle-tool.has-result .vehicle-result { min-height: 258px; padding-top: 32px; }
.vehicle-result.is-open { animation: resultReveal .42s cubic-bezier(.2,.8,.2,1) both; }
@keyframes resultReveal {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.vehicle-result.empty {
  display: grid;
  place-items: center;
  color: #8993a4;
  text-align: center;
  font-weight: 700;
}
.result-title { display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; margin-bottom: 24px; }
.result-title h3 { font-size: clamp(22px, 2.4vw, 30px); font-weight: 700; }
.result-title p { margin: 7px 0 0; color: #aebbd0; }
.gain-pill {
  flex: none;
  border: 1px solid rgba(var(--theme-rgb),.35);
  border-radius: 999px;
  background: rgba(var(--theme-rgb),.14);
  color: var(--red-dark);
  padding: 7px 14px;
  font-weight: 700;
}
.gauge-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 22px;
}
.gauge-card {
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  padding: 18px;
}
.analog-gauge {
  width: min(300px, 100%);
  height: 210px;
  margin: 0 auto;
  position: relative;
}
.analog-gauge svg {
  width: 100%;
  height: 136px;
  overflow: hidden;
}
.gauge-track,
.gauge-progress {
  fill: none;
  stroke-linecap: round;
  stroke-width: 16;
}
.gauge-track { stroke: rgba(255,255,255,.09); }
.gauge-progress {
  stroke: var(--red-2);
  filter: drop-shadow(0 0 12px rgba(var(--theme-rgb),.35));
}
.analog-gauge b {
  position: absolute;
  left: 50%;
  top: 70px;
  transform: translateX(-50%);
  color: #fff;
  font-size: 36px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -.04em;
}
.analog-gauge small {
  position: absolute;
  left: 50%;
  top: 109px;
  transform: translateX(-50%);
  color: #8f9bad;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.analog-gauge p {
  position: absolute;
  left: 50%;
  top: 134px;
  transform: translateX(-50%);
  margin: 0;
  color: #7f8a9b;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.analog-gauge p strong { color: #e8edf6; }
.gauge-markers {
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: min(230px, calc(100% - 44px));
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 14px;
  min-height: 44px;
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 7px;
}
.gauge-marker {
  position: static;
  transform: none;
  display: grid;
  justify-items: center;
  gap: 2px;
  min-width: 34px;
  color: #707b8d;
  font-size: 10px;
  font-weight: 600;
}
.gauge-marker i {
  width: 2px;
  height: 9px;
  background: rgba(255,255,255,.22);
}
.gauge-marker em {
  font-style: normal;
  letter-spacing: .06em;
}
.gauge-marker strong {
  color: #9aa5b7;
  font-size: 11px;
}
.gauge-marker.active { color: var(--red-2); }
.gauge-marker.active i {
  width: 7px;
  border-radius: 999px;
  background: var(--gold-gradient);
  box-shadow: 0 0 12px rgba(var(--theme-rgb),.5);
}
.gauge-marker.active strong {
  color: #fff;
}
.analog-gauge .tick {
  position: absolute;
  top: 105px;
  color: #687386;
  font-size: 11px;
  font-weight: 600;
}
.analog-gauge .tick.min { left: 34px; }
.analog-gauge .tick.max { right: 34px; }
.stage-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.stage {
  position: relative;
  min-height: 160px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 14px;
  background: #050506;
  padding: 24px;
  transition: transform .2s ease, border-color .2s ease;
}
.stage-empty {
  min-height: 58px;
  margin: 22px 0 14px;
  color: #aeb8c8;
  font-size: 14px;
  line-height: 1.45;
}
.stage-contact {
  border: 1px solid rgba(var(--theme-rgb),.35);
  border-radius: 8px;
  background: var(--gold-gradient);
  color: var(--theme-contrast);
  padding: 8px 12px;
  font-weight: 600;
}
.section-light .vehicle-result { color: #111827; }
.section-light .result-title h3 { color: #111827; }
.section-light .result-title p { color: #566276; }
.section-light .gauge-card,
.section-light .stage,
.section-light .notes {
  border-color: rgba(17,24,39,.12);
  background: #fff;
  box-shadow: 0 18px 44px rgba(17,24,39,.08);
}
.section-light .gauge-track { stroke: rgba(17,24,39,.12); }
.section-light .gauge-marker i { background: rgba(17,24,39,.22); }
.section-light .gauge-marker.active i { background: var(--gold-gradient); box-shadow: 0 0 12px rgba(var(--theme-rgb),.45); }
.section-light .gauge-marker.active strong { color: #111827; }
.section-light .analog-gauge b,
.section-light .stage b,
.section-light .stage strong,
.section-light .stage h4 { color: #101827; }
.section-light .analog-gauge p strong,
.section-light .stage small,
.section-light .stage span,
.section-light .stage-empty,
.section-light .notes p { color: #4f5b6d; }
.section-light .notes h4 {
  border-bottom-color: rgba(17,24,39,.09);
  color: var(--red-dark);
}
.section-light .notes b { color: var(--red-dark); background: rgba(var(--theme-rgb),.08); }
.section-light .stage.selected,
.section-light .stage.stage1,
.section-light .stage.stage3 {
  background: #fff;
}
.section-light .stage.stage2 { background: #fff; }
.section-light .stage-contact {
  background: var(--gold-gradient);
  border-color: rgba(var(--theme-rgb),.2);
  color: var(--theme-contrast);
  box-shadow: 0 18px 36px rgba(var(--theme-rgb), .25);
}
.stage[data-stage-card] { cursor: pointer; }
.stage:hover { transform: translateY(-3px); border-color: rgba(255,255,255,.16); }
.stage.selected {
  border-color: rgba(var(--theme-rgb),.82);
  box-shadow: 0 0 0 1px rgba(var(--theme-rgb),.18), 0 22px 42px rgba(var(--theme-rgb),.14);
}
.stage.selected:before {
  content: "SEÇİLİ";
  position: absolute;
  right: 12px;
  bottom: 12px;
  border-radius: 999px;
  background: rgba(var(--theme-rgb),.16);
  color: var(--red-dark);
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 700;
}
.stage small { color: #7e8a9d; font-size: 13px; font-weight: 700; letter-spacing: .08em; }
.stage b { display: block; margin-top: 22px; color: #f8fafc; font-size: clamp(34px, 4vw, 46px); line-height: 1; font-weight: 700; letter-spacing: -.04em; }
.stage b span, .stage strong span { margin-left: 5px; font-size: 15px; font-weight: 600; letter-spacing: 0; }
.stage strong { display: block; margin-top: 10px; color: #aebbd0; font-size: 23px; }
.stage em { position: absolute; right: 12px; top: 12px; border-radius: 999px; background: var(--gold-gradient); color: var(--theme-contrast); padding: 5px 9px; font-size: 11px; font-style: normal; font-weight: 700; }
.stage.stage1 { border-color: rgba(var(--theme-rgb),.48); background: rgba(var(--theme-rgb),.16); }
.stage.stage2 { border-color: rgba(var(--theme-rgb),.3); }
.stage.stage3 { border-color: rgba(var(--theme-rgb),.52); background: rgba(var(--theme-rgb),.16); }
.stage.stage1 small, .stage.stage2 small, .stage.stage3 small { color: var(--red-2); }
.notes {
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 14px;
  background: #222;
  color: #c7d2e3;
}
.notes h4 { margin: 0; padding: 17px 20px; border-bottom: 1px solid rgba(255,255,255,.065); color: var(--red-2); font-size: 14px; letter-spacing: .04em; }
.notes p { margin: 0; display: grid; grid-template-columns: 82px 1fr; gap: 14px; align-items: baseline; padding: 12px 20px; }
.notes b { justify-self: start; border: 1px solid rgba(var(--theme-rgb),.38); border-radius: 7px; background: rgba(var(--theme-rgb),.14); color: var(--red-2); padding: 5px 8px; font-size: 12px; }
.power-bar { margin-top: 26px; }
.power-bar { --power: 0%; }
.power-bar > span { display: block; width: var(--power); height: 6px; min-width: 0; border-radius: 99px; background: var(--gold-gradient); box-shadow: 0 0 22px rgba(var(--theme-rgb),.34); transition: width 1.1s cubic-bezier(.2,.8,.2,1); }
.power-bar div { display: flex; justify-content: space-between; gap: 14px; margin-top: 10px; color: #8491a5; }

.services-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: max(20px, calc((100vw - 1240px) / 2));
  padding-right: max(20px, calc((100vw - 1240px) / 2));
  background: #fff;
  color: #2b2d31;
}
.services-section .section-head { color: #2b2d31; }
.services-section .section-head h2 {
  font-family: var(--font-main);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  color: #282828;
  text-transform: uppercase;
}
.services-section .section-head p {
  color: #999;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0;
}
.service-grid, .review-grid, .blog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-options-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin-top: 42px;
  border-top: 1px solid #e3e3e3;
  border-left: 1px solid #e3e3e3;
  background: #fff;
}
.service-option {
  position: relative;
  min-height: 145px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 24px 14px 18px;
  border-right: 1px solid #e3e3e3;
  border-top: 0;
  border-left: 0;
  border-bottom: 1px solid #e3e3e3;
  border-radius: 0;
  appearance: none;
  color: #a7a7a7;
  background: transparent;
  font: inherit;
  text-align: center;
  cursor: default;
  transition: color .18s ease, background-color .18s ease, box-shadow .18s ease;
}
.service-option:hover,
.service-option:focus-visible {
  color: var(--red);
  background: #fbfbfb;
  box-shadow: inset 0 2px 0 var(--red);
  outline: 0;
}
.service-option__icon {
  width: 94px;
  height: 54px;
  display: grid;
  place-items: center;
}
.service-option__icon img {
  max-width: 94px;
  max-height: 54px;
  object-fit: contain;
  filter: grayscale(1) saturate(0) opacity(.58);
  transition: filter .18s ease, transform .18s ease;
}
.service-option:hover .service-option__icon img {
  filter: none;
  transform: translateY(-2px);
}
.service-option:focus-visible .service-option__icon img {
  filter: none;
  transform: translateY(-2px);
}
.service-option__title {
  min-height: 18px;
  color: currentColor;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 600;
  text-transform: uppercase;
}
.service-option__tooltip {
  position: absolute;
  z-index: 20;
  left: calc(100% + 10px);
  top: 50%;
  width: min(345px, calc(100vw - 40px));
  transform: translateY(-50%);
  padding: 14px 15px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(17,24,39,.1);
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  text-align: left;
  text-transform: none;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .14s ease, visibility .14s ease;
}
.service-option__tooltip:before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-left: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
  background: #fff;
  transform: translateY(-50%) rotate(45deg);
}
.service-option:hover .service-option__tooltip,
.service-option:focus-visible .service-option__tooltip {
  visibility: visible;
  opacity: 1;
}
.service-option:nth-child(7n) .service-option__tooltip,
.service-option:nth-child(7n-1) .service-option__tooltip {
  right: calc(100% + 10px);
  left: auto;
}
.service-option:nth-child(7n) .service-option__tooltip:before,
.service-option:nth-child(7n-1) .service-option__tooltip:before {
  right: -8px;
  left: auto;
  border: 0;
  border-top: 1px solid #d9d9d9;
  border-right: 1px solid #d9d9d9;
}
.service-card, .review-card, .contact-card, .lead-form, .cta-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.035);
}
.service-card {
  position: relative;
  min-height: 210px;
  padding: 24px;
  overflow: hidden;
  isolation: isolate;
  border-color: rgba(255,255,255,.095);
  background:
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.018) 46%, rgba(var(--theme-rgb),.075)),
    radial-gradient(circle at 18% 14%, rgba(var(--theme-rgb),.18), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.service-card:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(145deg, #000, transparent 68%);
}
.service-card:after {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  left: 24px;
  right: 24px;
  top: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(var(--theme-rgb),.88), rgba(255,255,255,.22), transparent);
}
.service-card > * {
  position: relative;
  z-index: 2;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--theme-rgb),.38);
  background:
    linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.024) 44%, rgba(var(--theme-rgb),.11)),
    radial-gradient(circle at 18% 14%, rgba(var(--theme-rgb),.22), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.016));
}
.service-card i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(var(--theme-rgb),.22), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
}
.service-card svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3, .review-card h3 { font-size: 20px; font-weight: 700; }
.service-card p, .review-card p, .split p, .contact-card p { color: var(--muted); line-height: 1.75; }

.equipment-section {
  padding: 64px 20px;
  background: #f4f6f8;
}
.equipment-head {
  width: min(760px, 100%);
  margin: 0 auto 30px;
  text-align: center;
}
.equipment-head h2 {
  color: #282828;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}
.equipment-head p { margin: 12px 0 0; color: #4b5565; line-height: 1.7; }
.equipment-grid {
  width: min(1240px, 100%);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}
.equipment-grid img {
  width: 100%;
  height: 112px;
  object-fit: contain;
  border: 1px solid rgba(var(--theme-rgb),.18);
  border-radius: 12px;
  background: #101013;
  padding: 20px;
  filter: saturate(.96) drop-shadow(0 0 10px rgba(255,255,255,.14));
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.equipment-grid img:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--theme-rgb),.34);
  box-shadow: 0 24px 54px rgba(0,0,0,.34);
}

.projects-section {
  overflow: hidden;
  background: #fff;
}
.project-slider {
  position: relative;
  width: min(1240px, 100%);
  margin: 0 auto;
  padding: 0 64px 8px;
}
.project-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0;
}
.project-track::-webkit-scrollbar { display: none; }
.project-card {
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid rgba(17,24,39,.1);
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
}
.project-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.project-body { padding: 20px 18px 22px; }
.project-body h3 { margin-bottom: 14px; color: #24262d; text-align: center; font-size: clamp(20px, 2vw, 26px); font-weight: 700; }
.project-table {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  overflow: hidden;
  border-radius: 8px;
  background: #f0f1f3;
}
.project-table div {
  display: grid;
  gap: 2px;
  min-height: 48px;
  align-content: center;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  padding: 8px 10px;
}
.project-table div:nth-child(3n) { border-right: 0; background: var(--gold-gradient); color: var(--theme-contrast); }
.project-table div:nth-child(5) { grid-column: span 2; }
.project-table span { color: inherit; opacity: .76; font-size: 12px; font-weight: 700; }
.project-table b { color: inherit; font-size: 18px; line-height: 1; }
.slider-btn {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  z-index: 4;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17,24,39,.1);
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  color: #111827;
  padding: 0;
  box-shadow: 0 14px 34px rgba(17,24,39,.16);
}
.slider-btn.prev { left: 12px; }
.slider-btn.next { right: 12px; }
.slider-btn span {
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}
.slider-btn.prev span {
  margin-left: 4px;
  transform: rotate(-135deg);
}
.slider-btn.next span {
  margin-right: 4px;
  transform: rotate(45deg);
}
.project-dots {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 10px;
}
.project-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: #d1d5db;
  padding: 0;
}
.project-dots button.active { background: #94a3a1; }

.reviews {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 94px max(20px, calc((100vw - 1366px) / 2)) 86px;
  background: #f4f6f8;
  color: #2b2d31;
}
.reviews .section-head { color: #2b2d31; }
.reviews .review-intro {
  max-width: 880px;
  margin-bottom: 55px;
}
.reviews .section-head h2 {
  margin-top: 0;
  color: #282828;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.reviews .section-head p {
  margin-top: 5px;
  color: #999;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0;
}
.reviews .review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.review-card {
  position: relative;
  min-height: 309px;
  display: flex;
  flex-direction: column;
  padding: 24px 24px 25px;
  border-color: #dde2e8;
  border-radius: 4px;
  background: #fff;
  box-shadow: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.review-card:hover {
  transform: translateY(-3px);
  border-color: #cfd6df;
  box-shadow: 0 18px 44px rgba(17,24,39,.08);
}
.google-review-head {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 16px;
}
.avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--avatar-bg, #4285f4);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}
.review-card h3 {
  margin: 0;
  color: #2f333b;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}
.review-card small {
  display: block;
  margin-top: 5px;
  color: #687384;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
}
.google-mark {
  font-family: Arial, sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 44%, #fbbc05 0 66%, #ea4335 0 82%, #4285f4 0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stars {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 34px 0 24px;
  color: #f9b400;
  letter-spacing: .1em;
  font-size: 16px;
  line-height: 1;
}
.stars span {
  color: #6b7280;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .02em;
}
.review-card p {
  min-height: 98px;
  margin: 0;
  color: #68707d;
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  letter-spacing: 0;
}
.google-review-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 21px;
  border-top: 1px solid #eef1f4;
}
.review-card b,
.verified {
  color: #15803d;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.google-review-foot a {
  color: #7b8491;
  font-size: 13px;
  transition: color .18s ease;
}
.google-review-foot a:hover { color: var(--red); }
.google-review-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 72px auto 0;
}
.google-reviews-link {
  display: flex;
  width: 209px;
  min-width: 209px;
  min-height: 60px;
  margin: 0;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #444;
  border-color: #e2e5e9;
  background: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  border-radius: 5px;
  box-shadow: none;
}
.google-reviews-link:hover,
.google-reviews-link:focus-visible {
  color: #222;
  border-color: #cbd2dc;
  background: #f7f8fa;
  box-shadow: 0 10px 28px rgba(17,24,39,.08);
  transform: translateY(-1px);
  outline: 0;
}
.google-reviews-link span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 8px;
  height: 8px;
  margin-top: 1px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
.centered { width: max-content; margin: 28px auto 0; }
.reviews .google-reviews-link {
  width: 209px;
}

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.about-rich { grid-template-columns: .92fr 1fr; align-items: stretch; background: #fff; }
.about-panel {
  display: grid;
  align-content: center;
  gap: 18px;
  border: 1px solid rgba(17,24,39,.1);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(17,24,39,.08);
  padding: clamp(24px, 3vw, 34px);
}
.about-panel h3 { font-size: clamp(24px, 3vw, 34px); font-weight: 700; }
.about-panel p { color: #566276; }
.about-rich > div:nth-child(2) {
  display: grid;
  align-content: center;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(var(--theme-rgb),.14);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(17,24,39,.08);
}
.split h2 {
  margin: 16px 0;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}
.split img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border: 1px solid var(--line); border-radius: var(--radius); }
.check-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 22px; }
.check-grid b { border: 1px solid rgba(17,24,39,.11); border-radius: 8px; background: rgba(17,24,39,.035); color: #182033; padding: 12px; font-size: 13px; }
.process-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}
.process-strip span {
  border: 1px solid rgba(17,24,39,.12);
  border-radius: 10px;
  background: #fff;
  padding: 12px;
  color: #111827;
  font-size: 12px;
  font-weight: 700;
}
.process-strip strong { display: block; color: var(--red-dark); font-size: 17px; }
.map-card {
  position: relative;
  grid-column: 1 / -1;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  background: #222;
  box-shadow: var(--shadow);
}
.map-card iframe { width: 100%; height: 100%; min-height: 360px; border: 0; filter: none; opacity: 1; }
.map-pin {
  position: absolute;
  left: 22px;
  bottom: 22px;
  max-width: min(360px, calc(100% - 44px));
  border: 1px solid rgba(var(--theme-rgb),.38);
  border-radius: 12px;
  background: rgba(7,7,8,.86);
  color: #fff;
  padding: 14px 16px;
  backdrop-filter: blur(12px);
}
.map-pin strong { display: block; color: var(--red-2); font-size: 16px; }
.map-pin span { display: block; margin-top: 4px; color: #c5cedc; font-size: 13px; }
.map-pin a {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.final-cta {
  width: 100%;
  max-width: none;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 0;
  border-radius: 0;
  background: #f4f6f8;
  padding: clamp(56px, 6vw, 82px) max(20px, calc((100vw - 1240px) / 2));
  color: #111827;
  box-shadow: none;
}
.final-cta h2 {
  max-width: 760px;
  margin: 16px 0 12px;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}
.final-cta p { max-width: 680px; margin: 0; color: #4b5565; font-size: 16px; line-height: 1.7; }
.final-cta .btn { min-height: 56px; padding: 0 28px; font-size: 15px; }

.contact-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr); gap: 24px; align-items: stretch; }
.contact.section-light {
  position: relative;
  overflow: hidden;
  padding-bottom: 42px;
  background: #fff;
}
.contact.section-light:before {
  content: "";
  position: absolute;
  inset: auto -12% 0 auto;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--theme-rgb),.12), transparent 68%);
  pointer-events: none;
}
.lead-form, .contact-card {
  position: relative;
  display: grid;
  gap: 14px;
  overflow: hidden;
  border-radius: 16px;
}
.lead-form {
  padding: clamp(24px, 3vw, 34px);
}
.lead-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.contact-form-head,
.lead-form textarea,
.lead-form button,
.lead-form .form-status {
  grid-column: 1 / -1;
}
.contact-form-head {
  max-width: 620px;
  margin-bottom: 8px;
}
.contact-form-head span,
.contact-card-head span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border: 1px solid rgba(var(--theme-rgb),.24);
  border-radius: 999px;
  background: rgba(var(--theme-rgb),.08);
  color: var(--red-dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.contact-form-head h3,
.contact-card-head h3 {
  margin: 12px 0 8px;
  color: #111827;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.18;
}
.contact-form-head p {
  margin: 0;
  color: #607086;
  line-height: 1.65;
}
.lead-form input,
.lead-form textarea {
  min-height: 58px;
  border-color: rgba(17,24,39,.12);
  background: #f8fafc;
}
.lead-form textarea {
  min-height: 150px;
  resize: vertical;
}
.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(var(--theme-rgb),.38);
  background: #fff;
}
.section-light .lead-form,
.section-light .contact-card {
  border-color: rgba(17,24,39,.1);
  background:
    linear-gradient(135deg, #fff, #fff 58%, rgba(var(--theme-rgb),.04)),
    radial-gradient(circle at 12% 0%, rgba(var(--theme-rgb),.08), transparent 34%);
  color: #111827;
  box-shadow: 0 18px 50px rgba(17,24,39,.07);
}
.contact-card {
  align-content: start;
  padding: clamp(24px, 3vw, 34px);
}
.contact-card-head {
  padding-bottom: 6px;
}
.contact-methods {
  display: grid;
  gap: 12px;
}
.contact-method {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 74px;
  border: 1px solid rgba(17,24,39,.1);
  border-radius: 12px;
  background: rgba(248,250,252,.78);
  padding: 13px 14px;
  color: #111827;
}
.contact-method.primary {
  grid-template-columns: 46px minmax(0, 1fr) auto;
  border-color: rgba(var(--theme-rgb),.2);
  background: rgba(var(--theme-rgb),.065);
  text-decoration: none;
}
.contact-method i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #111827;
  color: #fff;
  font-size: 18px;
}
.contact-method.primary i {
  background: #16a34a;
}
.contact-method b {
  display: block;
  margin-bottom: 4px;
  color: #111827;
  font-size: 15px;
}
.contact-method small {
  display: block;
  color: #657287;
  font-size: 14px;
  line-height: 1.45;
}
.contact-method em {
  justify-self: end;
  border-radius: 999px;
  background: var(--gold-gradient);
  color: var(--theme-contrast);
  padding: 8px 12px;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
}
.contact-note {
  margin-top: 4px;
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 12px;
  background: #111827;
  color: #fff;
  padding: 18px;
}
.contact-note strong {
  display: block;
  margin-bottom: 7px;
  font-size: 15px;
}
.contact-note p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.65;
}
.contact-card > h3 { margin-top: 4px; font-size: 17px; }
.contact-card > a { color: var(--red-2); font-weight: 600; }
.form-status { min-height: 22px; color: var(--red-dark); }

.winols-license {
  width: min(980px, calc(100% - 40px));
  margin: 26px auto -1px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .62fr);
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(17,24,39,.08);
  border-radius: 14px 14px 0 0;
  background: #fff;
  color: #111827;
  padding: clamp(18px, 2.5vw, 26px);
  box-shadow: 0 12px 34px rgba(17,24,39,.06);
}
.winols-copy span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid rgba(var(--theme-rgb),.34);
  border-radius: 999px;
  background: rgba(var(--theme-rgb),.12);
  color: var(--red-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}
.winols-copy h2 {
  max-width: 520px;
  margin: 11px 0 8px;
  color: #111827;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.2;
  font-weight: 700;
}
.winols-copy p {
  max-width: 520px;
  margin: 0;
  color: #5b6574;
  font-size: 13px;
  line-height: 1.6;
}
.winols-copy a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 14px;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--gold-gradient);
  color: var(--theme-contrast);
  font-size: 13px;
  font-weight: 600;
}
.footer { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 18px; border-top: 1px solid var(--line); background: #222; color: var(--muted); padding: 28px 20px; }
.footer b { color: #fff; }
.evc-license {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 124px;
  border: 1px solid rgba(var(--theme-rgb),.22);
  border-radius: 12px;
  background: #111827;
  padding: 14px;
  overflow: hidden;
  box-shadow: none;
}
.evc-license img {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  max-height: 88px;
  object-fit: contain;
  border-radius: 6px;
}
.whatsapp-float { position: fixed; right: 32px; bottom: 32px; z-index: 45; width: 64px; height: 64px; display: grid; place-items: center; border-radius: 50%; background: #20d65a; color: #fff; font-size: 38px; line-height: 1; font-weight: 700; box-shadow: 0 18px 42px rgba(32,214,90,.42); }
.whatsapp-float:before,
.whatsapp-float:after {
  content: "";
  position: absolute;
  inset: -8px;
  z-index: -1;
  border: 2px solid rgba(32, 214, 90, .55);
  border-radius: 50%;
  animation: whatsappPulse 2.1s ease-out infinite;
}
.whatsapp-float:after {
  animation-delay: .7s;
}
.whatsapp-float i { display: block; line-height: 1; }

@keyframes whatsappPulse {
  0% {
    opacity: .75;
    transform: scale(.88);
  }
  70% {
    opacity: 0;
    transform: scale(1.7);
  }
  100% {
    opacity: 0;
    transform: scale(1.7);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo:hover:before,
  .logo:hover:after,
  .logo:focus-visible:before,
  .logo:focus-visible:after,
  .whatsapp-float:before,
  .whatsapp-float:after {
    animation: none;
    opacity: 0;
  }
}

.page { min-height: 80vh; padding-top: 104px; background: #f4f6f8; color: #111827; }
.page .section-head h1,
.page .section-head h2,
.page h1 { color: #111827; }
.page .section-head p { color: #4b5565; }
.blog-grid { align-items: stretch; }
.blog-card {
  overflow: hidden;
  border: 1px solid rgba(17,24,39,.1);
  border-radius: 14px;
  background: #fff;
  color: #111827;
  box-shadow: 0 18px 46px rgba(17,24,39,.08);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.blog-card:hover { transform: translateY(-5px); border-color: rgba(var(--theme-rgb),.3); box-shadow: 0 26px 60px rgba(17,24,39,.16); }
.blog-placeholder {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f4f7;
  color: rgba(var(--theme-rgb), .42);
  border-bottom: 1px solid rgba(17, 24, 39, .06);
}
.blog-placeholder div {
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 0;
  text-align: center;
}
.blog-placeholder svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.blog-placeholder span {
  color: #8a94a6;
  font-size: 12px;
  font-weight: 600;
}
.blog-card div { padding: 20px; }
.blog-card small, .blog-card b { color: var(--red-2); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.blog-card h2 { margin: 10px 0; font-size: 20px; line-height: 1.25; }
.blog-card p { color: #4b5565; line-height: 1.65; }
.pagination {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.pagination a {
  min-width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 24, 39, .1);
  border-radius: 10px;
  background: #fff;
  color: #111827;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(17, 24, 39, .06);
}
.pagination a:hover,
.pagination a.active {
  border-color: rgba(var(--theme-rgb), .42);
  background: var(--gold-gradient);
  color: var(--theme-contrast);
}
.pagination .pagination-control {
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
}
.pagination a[hidden] { display: none; }
.post { width: min(860px, calc(100% - 40px)); margin: 0 auto; padding: 56px 0 92px; }
.post > a, .post small { color: var(--red-2); font-weight: 600; }
.post h1 { margin: 22px 0; font-size: clamp(32px, 4.6vw, 54px); }
.post .blog-placeholder { height: 140px; margin: 24px 0; border-radius: 14px; }
.post-content { color: #374151; font-size: 17px; line-height: 1.85; }
.post-content p { color: #374151; }
.seo-keywords {
  margin-top: 24px;
  padding: 15px 16px;
  border: 1px solid rgba(var(--theme-rgb), .24);
  border-radius: 12px;
  background: #fff8e1;
  color: #4b5565;
  font-size: 14px;
  line-height: 1.65;
}
.seo-keywords strong {
  color: var(--red-dark);
  font-weight: 700;
}
.related-post {
  margin-top: 24px;
  padding: 16px;
  border: 1px solid rgba(var(--theme-rgb), .28);
  border-radius: 12px;
  background: #fff8e1;
  box-shadow: 0 10px 26px rgba(17, 24, 39, .05);
}
.related-post span {
  display: block;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.related-post a {
  display: block;
  margin-top: 6px;
  color: #111827;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  line-height: 1.25;
}
.related-post p {
  margin-top: 7px;
  color: #4b5565;
  font-size: 14px;
  line-height: 1.65;
}
.cta-box {
  margin-top: 30px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(var(--theme-rgb), .24);
  border-radius: 12px;
  background: #fff;
  color: #111827;
  box-shadow: 0 12px 32px rgba(17,24,39,.06);
}
.cta-box h3 {
  color: #111827;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
}
.cta-box .btn {
  flex: 0 0 auto;
}

.modal { display: none; position: fixed; inset: 0; z-index: 100; place-items: center; padding: 20px; background: rgba(0,0,0,.76); }
.modal[aria-hidden="false"] { display: grid; }
.modal-panel { position: relative; width: min(520px, 100%); display: grid; gap: 13px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface-2); padding: 28px; }
.modal-panel [data-modal-close] { position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; border: 0; border-radius: 8px; background: rgba(255,255,255,.05); color: #fff; font-size: 24px; }

.admin-body { background: #222; }
.admin-login { min-height: 100vh; display: grid; place-items: center; padding: 24px; }
.admin-login form { width: min(420px, 100%); display: grid; gap: 14px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface-2); padding: 32px; box-shadow: var(--shadow); }
.admin-shell { min-height: 100vh; display: grid; grid-template-columns: 270px minmax(0, 1fr); }
.admin-shell aside {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid var(--line);
  background: #222;
  padding: 24px 18px;
}
.admin-shell aside .logo { margin: 0 0 18px; font-size: 28px; }
.admin-shell aside a:not(.logo) { display: flex; align-items: center; min-height: 42px; border-radius: 9px; color: #cfd2d9; padding: 0 14px; font-weight: 600; }
.admin-shell aside a:not(.logo):hover { background: rgba(var(--theme-rgb),.12); color: #fff; }
.admin-shell main { min-width: 0; padding: 30px; overflow-x: auto; }
.admin-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.admin-head span { color: var(--red-2); font-size: 12px; font-weight: 700; text-transform: uppercase; }
.admin-head h1, .admin-shell main > h1 { font-size: 30px; font-weight: 700; }
.admin-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin: 22px 0; }
.admin-stats div, .admin-note, table, .admin-form {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.035);
}
.admin-stats div { padding: 22px; }
.admin-stats b { display: block; color: var(--red-2); font-size: 34px; line-height: 1; }
.admin-stats span { color: var(--muted); font-weight: 600; }
.admin-note { display: flex; gap: 12px; align-items: center; padding: 18px; color: var(--muted); }
.admin-note b { color: #fff; }
.admin-form { display: grid; gap: 12px; margin: 18px 0 24px; padding: 18px; }
.admin-form label {
  display: grid;
  gap: 7px;
}
.admin-form label span {
  color: #c9d1dd;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.settings-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.settings-form textarea {
  min-height: 110px;
  padding-top: 14px;
}
.settings-form button,
.settings-form label:nth-last-child(-n+3) {
  grid-column: 1 / -1;
}
.admin-success {
  border: 1px solid rgba(34,197,94,.28);
  border-radius: 10px;
  background: rgba(34,197,94,.1);
  color: #9ff0ba;
  padding: 12px 14px;
  font-weight: 600;
}
.admin-form .big { min-height: 240px; padding-top: 14px; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; }
table { width: 100%; border-collapse: collapse; overflow: hidden; }
th, td { border-bottom: 1px solid rgba(255,255,255,.065); padding: 13px 14px; text-align: left; vertical-align: top; }
th { color: var(--red-2); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
td { color: #d7dce5; }
.inline { display: inline-flex; gap: 8px; margin-left: 8px; }
.inline button, .vehicle-edit button { border: 1px solid rgba(var(--theme-rgb),.32); border-radius: 8px; background: rgba(var(--theme-rgb),.13); color: #fff; padding: 8px 10px; font-weight: 600; }
.vehicle-edit { display: contents; }
.vehicle-edit input { max-width: 132px; min-height: 36px; margin: 2px; padding: 0 9px; }
.error { color: var(--red-2); }

@media (max-width: 1100px) {
  .site-header { padding: 0 18px; }
  .site-header nav { gap: 14px; }
  .equipment-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .project-track { grid-auto-columns: calc((100% - 18px) / 2); }
  .project-slider { padding: 0 50px 8px; }
  .slider-btn.prev { left: 4px; }
  .slider-btn.next { right: 4px; }
  .stage-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-grid, .review-grid, .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-options-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .service-option:nth-child(n) .service-option__tooltip {
    left: 50%;
    right: auto;
    top: calc(100% + 10px);
    transform: translateX(-50%);
  }
  .service-option:nth-child(n) .service-option__tooltip:before {
    left: 50%;
    right: auto;
    top: -8px;
    border: 0;
    border-left: 1px solid #d9d9d9;
    border-top: 1px solid #d9d9d9;
    transform: translateX(-50%) rotate(45deg);
  }
}

@media (max-width: 820px) {
  .site-header {
    height: auto;
    min-height: 72px;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
    padding: 14px 16px;
  }
  .logo {
    order: 1;
    flex: 1 1 auto;
    min-width: 0;
    margin-right: 0;
    font-size: clamp(27px, 8vw, 36px);
    letter-spacing: -1.4px;
  }
  .menu-btn {
    order: 3;
    display: grid;
    place-items: center;
    flex: 0 0 44px;
  }
  .site-header nav { display: none; width: 100%; flex-direction: column; align-items: stretch; gap: 4px; order: 5; }
  .site-header.open nav { display: flex; }
  .site-header nav a { min-height: 38px; display: flex; align-items: center; border-radius: 8px; padding: 0 8px; background: rgba(255,255,255,.035); }
  .language-switch {
    order: 2;
    flex: 0 0 auto;
    min-height: 34px;
    margin-left: auto;
  }
  .language-switch a {
    min-width: 30px;
    height: 26px;
    font-size: 11px;
  }
  .site-header > .btn {
    order: 4;
    flex: 1 1 calc(50% - 6px);
    min-height: 48px;
    padding: 0 10px;
    font-size: 14px;
  }
  .live-pill { display: none; }
  .hero { min-height: 100svh; padding: 168px 18px 64px; }
  .hero-shell { grid-template-columns: 1fr; }
  .hero-content { text-align: center; margin: 0 auto; }
  .lead { margin-left: auto; margin-right: auto; }
  .hero-actions, .stats { justify-content: center; }
  .hero h1 { font-size: clamp(38px, 12vw, 54px); }
  .equipment-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .equipment-grid img { height: 96px; padding: 16px; }
  .project-track { grid-auto-columns: 86%; }
  .project-slider { padding: 0 0 8px; }
  .slider-btn { top: 46%; }
  .slider-btn.prev { left: 8px; }
  .slider-btn.next { right: 8px; }
  .project-table { grid-template-columns: 1fr 1fr; }
  .project-table div:nth-child(3n) { border-right: 1px solid #fff; }
  .project-table div:nth-child(2n) { border-right: 0; }
  .project-table div:nth-child(3), .project-table div:nth-child(5) { background: var(--gold-gradient); color: var(--theme-contrast); }
  .stats { flex-direction: column; gap: 14px; }
  .stats-divider { display: none; }
  .section { width: 100%; max-width: 100%; padding: 74px 18px; }
  .services-section,
  .reviews,
  .section-light {
    width: 100%;
    max-width: 100%;
    padding-left: 18px;
    padding-right: 18px;
  }
  .vehicle-section { padding: 76px 14px; }
  .vehicle-tool { padding: 18px; border-radius: 14px; }
  .vehicle-form, .split, .contact-grid, .lead-form { grid-template-columns: 1fr; }
  .contact-form-head h3,
  .contact-card-head h3 { font-size: 22px; }
  .contact-method.primary { grid-template-columns: 46px minmax(0, 1fr); }
  .contact-method em {
    grid-column: 2;
    justify-self: start;
  }
  .about-rich { grid-template-columns: 1fr; }
  .about-rich > div:nth-child(2), .map-card { grid-column: auto; }
  .gauge-grid { grid-template-columns: 1fr; }
  .result-title { flex-direction: column; }
  .stage-grid, .service-grid, .review-grid, .blog-grid, .admin-stats, .settings-form { grid-template-columns: 1fr; }
  .service-options-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 30px;
  }
  .service-option {
    min-height: 128px;
    gap: 14px;
    padding: 20px 10px 16px;
  }
  .service-option__tooltip {
    width: min(310px, calc(100vw - 36px));
    padding: 12px 13px;
    font-size: 14px;
    line-height: 1.45;
  }
  .service-option__icon {
    width: 82px;
    height: 48px;
  }
  .service-option__icon img {
    max-width: 82px;
    max-height: 48px;
  }
  .service-option__title { font-size: 12px; }
  .reviews .review-grid { gap: 18px; }
  .review-card {
    min-height: auto;
    padding: 24px;
  }
  .reviews .section-head h2 { font-size: 2rem; }
  .reviews .section-head p { font-size: 16px; }
  .review-card p {
    min-height: auto;
    font-size: 16px;
  }
  .google-review-actions {
    flex-direction: column;
    align-items: center;
    margin-top: 42px;
  }
  .reviews .google-reviews-link {
    width: min(260px, 100%);
  }
  .process-strip { grid-template-columns: 1fr; }
  .final-cta { align-items: flex-start; flex-direction: column; }
  .winols-license {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    margin-top: 28px;
    padding: 20px;
    text-align: left;
    border-radius: 16px 16px 0 0;
  }
  .evc-license {
    min-height: 118px;
  }
  .notes p { grid-template-columns: 1fr; gap: 8px; }
  .power-bar div { flex-direction: column; }
  .cta-box { align-items: flex-start; flex-direction: column; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-shell aside { position: static; height: auto; }
  .admin-shell main { padding: 18px; }
  .admin-head { align-items: flex-start; flex-direction: column; }
}





