:root {
  --bg: #06070a;
  --bg-soft: #0b0e14;
  --panel: rgba(17, 21, 30, 0.76);
  --panel-solid: #11151e;
  --text: #f7f8fb;
  --muted: #9da6b5;
  --line: rgba(255, 255, 255, 0.11);
  --red: #ff3045;
  --red-2: #ff5a36;
  --cyan: #38d7ff;
  --white: #ffffff;
  --max: 1240px;
  --radius: 24px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 48, 69, 0.08), transparent 28%),
    radial-gradient(circle at 88% 42%, rgba(56, 215, 255, 0.06), transparent 24%),
    var(--bg);
  color: var(--text);
  font: 400 1rem/1.7 Manrope, Arial, sans-serif;
}
body.menu-open { overflow: hidden; }
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.container { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.icon { width: 28px; height: 28px; display: block; }
.mini-icon { width: 17px; height: 17px; }
.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 90;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255,48,69,.12), transparent 68%);
  transform: translate(calc(var(--cursor-x, -400px) - 50%), calc(var(--cursor-y, -400px) - 50%));
  mix-blend-mode: screen;
}

h1, h2, h3, .display {
  margin: 0;
  font-family: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  font-weight: 900;
  line-height: .94;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
h1 { font-size: clamp(4.3rem, 10vw, 9.2rem); }
h2 { font-size: clamp(3rem, 5.8vw, 5.5rem); }
h3 { font-size: 1.65rem; line-height: 1.05; }
p { margin: 0 0 20px; color: var(--muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 20px;
  padding: 8px 13px;
  border: 1px solid rgba(255, 48, 69, .28);
  border-radius: 999px;
  background: rgba(255, 48, 69, .07);
  color: #ff7786;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}
.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(255,48,69,.12), 0 0 18px var(--red);
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 56px;
  padding: 0 25px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--white);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .105em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.26), transparent);
  transition: transform .65s ease;
}
.btn:hover::before { transform: translateX(120%) skewX(-22deg); }
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: linear-gradient(135deg, var(--red), #d80d31 70%);
  box-shadow: 0 18px 42px rgba(255,48,69,.28), inset 0 1px rgba(255,255,255,.24);
}
.btn-primary:hover { box-shadow: 0 24px 54px rgba(255,48,69,.4); }
.btn-outline {
  border-color: rgba(255,255,255,.22);
  background: rgba(10,12,17,.46);
  backdrop-filter: blur(14px);
}
.btn-outline:hover { border-color: rgba(56,215,255,.65); background: rgba(56,215,255,.08); }
.arrow { font-size: 1.15rem; }

.topbar {
  height: 38px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: #040507;
  color: #aeb5c1;
  font-size: .74rem;
}
.topbar .container { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.topbar-links { display: flex; gap: 26px; }
.topbar a { color: #fff; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  height: 86px;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: rgba(6,7,10,.72);
  backdrop-filter: blur(20px) saturate(145%);
  transition: height .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled { height: 76px; background: rgba(6,7,10,.94); box-shadow: 0 18px 48px rgba(0,0,0,.28); }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 13px; min-width: 225px; }
.brand-mark {
  position: relative;
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 15px;
  background: linear-gradient(145deg, #ff4559, #b8062b);
  box-shadow: 0 12px 28px rgba(255,48,69,.26), inset 0 1px rgba(255,255,255,.3);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -.03em;
}
.brand-mark::after { content: ""; position: absolute; width: 70px; height: 10px; background: rgba(255,255,255,.18); transform: rotate(-32deg); }
.brand-copy strong { display: block; font-size: .86rem; line-height: 1.15; letter-spacing: .055em; text-transform: uppercase; }
.brand-copy span { display: block; margin-top: 4px; color: #7f8998; font-size: .6rem; letter-spacing: .15em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: clamp(14px, 1.7vw, 25px); }
.nav a { position: relative; color: #c7ccd5; font-size: .71rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: color .2s ease; }
.nav a::after { content: ""; position: absolute; left: 50%; bottom: -12px; width: 0; height: 2px; background: linear-gradient(90deg,var(--red),var(--cyan)); transform: translateX(-50%); transition: width .25s ease; }
.nav a:hover, .nav a.active { color: #fff; }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.menu-btn { display: none; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.04); color: #fff; font-size: 1.35rem; }

.hero {
  position: relative;
  min-height: 790px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background-image: url('/assets/hero-garage.webp');
  background-position: 63% center;
  background-size: cover;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4,5,8,.98) 0%, rgba(4,5,8,.88) 38%, rgba(4,5,8,.28) 72%, rgba(4,5,8,.54) 100%),
    linear-gradient(0deg, var(--bg), transparent 30%);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -11vw;
  bottom: -28vw;
  width: 58vw;
  height: 58vw;
  border: 1px solid rgba(56,215,255,.22);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(56,215,255,.018), 0 0 0 140px rgba(255,48,69,.02), inset 0 0 90px rgba(56,215,255,.08);
  animation: orbitPulse 6s ease-in-out infinite;
}
@keyframes orbitPulse { 50% { transform: scale(1.035); opacity: .75; } }
.hero-content { position: relative; max-width: 780px; padding: 122px 0 148px; }
.hero-content::before {
  content: "01 / PRECISION AUTO CARE";
  position: absolute;
  left: calc(100% + 54px);
  top: 165px;
  width: 270px;
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  background: rgba(8,10,14,.44);
  color: rgba(255,255,255,.72);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .15em;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}
.hero-content::after {
  content: "DIAGNOSTICS ONLINE";
  position: absolute;
  left: calc(100% + 88px);
  top: 230px;
  width: max-content;
  color: #c4f5ff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-shadow: 0 0 16px rgba(56,215,255,.7);
}
.hero h1 { max-width: 760px; text-shadow: 0 16px 46px rgba(0,0,0,.36); }
.hero h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.6px rgba(255,255,255,.8);
  background: linear-gradient(100deg, #fff 5%, #87909f 50%, #fff 82%);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-lead { max-width: 650px; margin: 30px 0 35px; color: #c3c9d3; font-size: 1.08rem; }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; }

.trust-strip { position: relative; z-index: 5; margin-top: -66px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(22,26,36,.91), rgba(9,11,16,.86));
  box-shadow: var(--shadow), inset 0 1px rgba(255,255,255,.08);
  backdrop-filter: blur(22px);
}
.trust-item { position: relative; padding: 28px 25px 28px 64px; border-right: 1px solid var(--line); }
.trust-item:last-child { border: 0; }
.trust-item::before {
  position: absolute;
  left: 24px;
  top: 28px;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(255,48,69,.1);
  color: var(--red);
  font-family: "Barlow Condensed";
  font-weight: 900;
  content: "✓";
  box-shadow: inset 0 0 0 1px rgba(255,48,69,.3);
}
.trust-item strong { display: block; font-family: "Barlow Condensed"; font-size: 1.35rem; line-height: 1.05; text-transform: uppercase; }
.trust-item span { display: block; margin-top: 6px; color: #7f8999; font-size: .73rem; }

.section { position: relative; padding: 122px 0; }
.section-dark { background: transparent; }
.section-panel {
  background:
    linear-gradient(120deg, rgba(255,48,69,.035), transparent 40%),
    #0a0c11;
  border-block: 1px solid rgba(255,255,255,.06);
}
.section-light {
  overflow: hidden;
  background: #eef0f4;
  color: #080a0e;
}
.section-light::before { content: ""; position: absolute; left: -8%; top: -55%; width: 58%; aspect-ratio: 1; border-radius: 50%; border: 1px solid rgba(0,0,0,.07); box-shadow: 0 0 0 55px rgba(0,0,0,.02), 0 0 0 110px rgba(0,0,0,.015); }
.section-light p { color: #5e6672; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 48px; margin-bottom: 58px; }
.section-head h2 { max-width: 800px; }
.section-head p { max-width: 430px; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; perspective: 1200px; }
.service-card {
  position: relative;
  min-height: 320px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at var(--card-x, 0%) var(--card-y, 0%), rgba(56,215,255,.1), transparent 34%),
    linear-gradient(145deg, rgba(23,28,39,.88), rgba(10,12,18,.76));
  box-shadow: inset 0 1px rgba(255,255,255,.06), 0 20px 55px rgba(0,0,0,.2);
  transform-style: preserve-3d;
  transition: border-color .3s ease, box-shadow .3s ease, transform .18s ease;
  backdrop-filter: blur(16px);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,48,69,.65), transparent 35%, transparent 65%, rgba(56,215,255,.5));
  opacity: 0;
  transition: opacity .3s ease;
}
.service-card::after { content: ""; position: absolute; right: -54px; bottom: -64px; width: 150px; height: 150px; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; box-shadow: 0 0 0 24px rgba(255,255,255,.016); transition: transform .35s ease; }
.service-card:hover { border-color: transparent; box-shadow: 0 30px 75px rgba(0,0,0,.34), 0 0 44px rgba(255,48,69,.08); }
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { transform: scale(1.15); }
.service-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 48px; }
.service-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,48,69,.36);
  border-radius: 19px;
  background: linear-gradient(145deg, rgba(255,48,69,.16), rgba(255,48,69,.035));
  color: #ff6576;
  box-shadow: inset 0 1px rgba(255,255,255,.09), 0 12px 30px rgba(255,48,69,.12);
}
.service-number { color: rgba(255,255,255,.22); font-family: "Barlow Condensed"; font-size: 1.05rem; font-weight: 800; letter-spacing: .1em; }
.service-card h3 { max-width: 270px; margin-bottom: 16px; }
.service-card p { font-size: .9rem; }
.service-link { display: inline-flex; align-items: center; gap: 10px; margin-top: 8px; color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.service-link span { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; transition: .25s ease; }
.service-card:hover .service-link span { border-color: var(--red); background: var(--red); transform: rotate(45deg); }

.split { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 680px; }
.split-media { position: relative; min-height: 620px; overflow: hidden; }
.split-media::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, transparent 60%, rgba(8,10,14,.8)), linear-gradient(0deg, rgba(6,7,10,.65), transparent 38%); }
.split-media::after { content: "LIVE WORKSHOP"; position: absolute; left: 28px; bottom: 28px; z-index: 2; padding: 10px 14px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: rgba(7,9,13,.6); color: #fff; font-size: .68rem; font-weight: 800; letter-spacing: .13em; backdrop-filter: blur(14px); }
.split-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s cubic-bezier(.2,.7,.2,1); }
.split:hover .split-media img { transform: scale(1.035); }
.split-copy { position: relative; display: flex; flex-direction: column; justify-content: center; padding: 86px clamp(38px, 6vw, 94px); overflow: hidden; background: linear-gradient(145deg, #11151d, #080a0f); }
.split-copy::after { content: ""; position: absolute; right: -80px; top: -80px; width: 250px; height: 250px; border-radius: 50%; background: radial-gradient(circle, rgba(255,48,69,.17), transparent 68%); }
.split-copy h2 { margin-bottom: 28px; }
.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; padding: 0; margin: 16px 0 35px; list-style: none; }
.check-list li { position: relative; padding: 13px 14px 13px 40px; border: 1px solid rgba(255,255,255,.08); border-radius: 12px; background: rgba(255,255,255,.025); color: #dce0e7; font-size: .82rem; }
.check-list li::before { content: "✓"; position: absolute; left: 15px; color: var(--red); font-weight: 900; }

.process { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; counter-reset: step; }
.step { position: relative; min-height: 260px; padding: 31px 25px; overflow: hidden; border: 1px solid rgba(5,8,13,.1); border-radius: 22px; background: rgba(255,255,255,.74); box-shadow: 0 20px 48px rgba(10,12,18,.07); counter-increment: step; }
.step::before { content: "0" counter(step); display: block; margin-bottom: 48px; color: var(--red); font-family: "Barlow Condensed"; font-size: 3.4rem; font-style: italic; font-weight: 900; line-height: 1; }
.step::after { content: ""; position: absolute; right: -45px; top: -45px; width: 120px; height: 120px; border: 1px solid rgba(255,48,69,.12); border-radius: 50%; box-shadow: 0 0 0 18px rgba(255,48,69,.025); }
.step h3 { color: #090b0f; }
.step p { margin-top: 12px; font-size: .86rem; }

.brands { display: grid; grid-template-columns: repeat(7, 1fr); gap: 11px; }
.brand-chip { position: relative; min-height: 82px; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(255,255,255,.09); border-radius: 15px; background: rgba(255,255,255,.03); color: #c7ccd5; font-family: "Barlow Condensed"; font-size: .9rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; transition: .28s ease; }
.brand-chip::after { content: ""; position: absolute; inset: auto 0 0; height: 2px; background: linear-gradient(90deg,var(--red),var(--cyan)); transform: scaleX(0); transition: transform .28s ease; }
.brand-chip:hover { border-color: rgba(255,255,255,.2); color: #fff; transform: translateY(-4px); box-shadow: 0 18px 34px rgba(0,0,0,.25); }
.brand-chip:hover::after { transform: scaleX(1); }

.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 76px; }
.faq-item { margin-bottom: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); border-radius: 17px; background: rgba(255,255,255,.028); transition: border-color .25s ease, background .25s ease; }
.faq-item.open { border-color: rgba(255,48,69,.34); background: rgba(255,48,69,.045); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 21px 23px; border: 0; background: transparent; color: #f3f5f8; text-align: left; font-weight: 750; cursor: pointer; }
.faq-q span:last-child { width: 32px; height: 32px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: rgba(255,255,255,.06); color: var(--red); font-size: 1.2rem; transition: transform .25s ease, background .25s ease; }
.faq-item.open .faq-q span:last-child { background: var(--red); color: #fff; transform: rotate(45deg); }
.faq-a { display: none; padding: 0 72px 22px 23px; }
.faq-a p { margin: 0; }
.faq-item.open .faq-a { display: block; }

.cta-band { position: relative; padding: 82px 0; overflow: hidden; background: linear-gradient(120deg, #ff3045 0%, #e00b32 58%, #8c001e 100%); }
.cta-band::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(120deg, rgba(255,255,255,.16) 0 1px, transparent 1px); background-size: 70px 70px; opacity: .22; transform: skewX(-10deg); }
.cta-band::after { content: "SAQ"; position: absolute; right: -18px; top: -74px; color: rgba(0,0,0,.12); font-family: "Barlow Condensed"; font-size: 18rem; font-style: italic; font-weight: 900; line-height: 1; }
.cta-row { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.cta-row h2 { max-width: 820px; }
.cta-row .btn { background: #08090c; box-shadow: 0 18px 42px rgba(0,0,0,.24); }

.footer { padding: 82px 0 0; border-top: 1px solid var(--line); background: #040507; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .65fr .9fr 1fr; gap: 54px; }
.footer h3 { margin-bottom: 21px; font-size: 1.1rem; letter-spacing: .04em; }
.footer p, .footer a, .footer span { color: #8c94a2; font-size: .84rem; }
.footer a:hover { color: #fff; }
.footer-brand { max-width: 360px; }
.footer-links { display: grid; gap: 11px; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 62px; padding: 24px 0; border-top: 1px solid var(--line); }
.footer-bottom span { font-size: .72rem; }

.inner-hero { position: relative; min-height: 480px; display: flex; align-items: end; overflow: hidden; padding: 124px 0 74px; isolation: isolate; background-image: url('/assets/hero-garage.webp'); background-position: center 45%; background-size: cover; }
.inner-hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(4,5,8,.98), rgba(4,5,8,.65) 55%, rgba(4,5,8,.5)), linear-gradient(0deg, #06070a, transparent 55%); }
.inner-hero::after { content: ""; position: absolute; z-index: -1; right: -140px; bottom: -260px; width: 650px; height: 650px; border: 1px solid rgba(56,215,255,.22); border-radius: 50%; box-shadow: 0 0 0 60px rgba(56,215,255,.018), 0 0 0 120px rgba(255,48,69,.018); }
.inner-hero h1 { max-width: 1050px; font-size: clamp(3.6rem, 7vw, 7rem); }
.crumb { display: inline-flex; gap: 8px; margin-bottom: 24px; padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; background: rgba(8,10,15,.55); color: #adb4c0; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; backdrop-filter: blur(12px); }
.crumb span { color: var(--red); }

.content-grid { display: grid; grid-template-columns: minmax(0,1fr) 350px; gap: 74px; }
.prose h2 { margin: 54px 0 23px; font-size: clamp(2.5rem, 4.7vw, 4.4rem); }
.prose h2:first-of-type { margin-top: 0; }
.prose h3 { margin: 35px 0 14px; }
.prose p { max-width: 830px; color: #b0b7c3; font-size: 1rem; }
.bullet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0; margin: 27px 0 38px; list-style: none; }
.bullet-grid li { position: relative; padding: 17px 18px 17px 49px; border: 1px solid rgba(255,255,255,.09); border-radius: 14px; background: rgba(255,255,255,.03); font-size: .86rem; font-weight: 700; }
.bullet-grid li::before { content: "✓"; position: absolute; left: 17px; top: 16px; color: var(--red); }
.sidebar { position: sticky; top: 110px; align-self: start; }
.side-card { margin-bottom: 18px; padding: 29px; border: 1px solid rgba(255,255,255,.1); border-radius: 21px; background: linear-gradient(145deg, rgba(23,28,39,.9), rgba(10,12,18,.84)); box-shadow: 0 22px 58px rgba(0,0,0,.25); }
.side-card h3 { margin-bottom: 16px; font-size: 1.45rem; }
.side-card .btn { width: 100%; margin-top: 10px; }
.side-links { display: grid; }
.side-links a { padding: 13px 0; border-bottom: 1px solid var(--line); color: #aab1bd; font-size: .82rem; transition: color .2s ease, padding .2s ease; }
.side-links a:hover { padding-left: 7px; color: var(--red); }
.image-callout { position: relative; margin: 46px 0; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); }
.image-callout::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,7,10,.7), transparent 45%); }
.image-callout img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.image-callout figcaption { position: absolute; left: 20px; bottom: 20px; z-index: 2; padding: 9px 13px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: rgba(5,7,10,.62); font-size: .67rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; backdrop-filter: blur(10px); }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 72px; }
.contact-stack { display: grid; gap: 13px; margin-top: 35px; }
.contact-card { position: relative; padding: 24px 25px; overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: rgba(255,255,255,.03); }
.contact-card::after { content: ""; position: absolute; right: -20px; top: -20px; width: 70px; height: 70px; border: 1px solid rgba(255,48,69,.2); border-radius: 50%; }
.contact-card small { display: block; margin-bottom: 6px; color: var(--red); font-size: .67rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-card strong { font-size: 1.02rem; }
.form-panel { padding: 42px; border: 1px solid rgba(255,255,255,.72); border-radius: 26px; background: rgba(244,246,249,.97); color: #0a0c10; box-shadow: 0 35px 95px rgba(0,0,0,.32); }
.form-panel h2 { font-size: 3.25rem; }
.form-panel p { color: #666d78; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1/-1; }
.field label { font-size: .7rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; min-height: 52px; padding: 13px 15px; border: 1px solid #d4d8df; border-radius: 11px; outline: none; background: #fff; color: #101217; transition: border-color .2s ease, box-shadow .2s ease; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); box-shadow: 0 0 0 4px rgba(255,48,69,.1); }
.field textarea { min-height: 130px; resize: vertical; }
.form-panel .btn { width: 100%; margin-top: 18px; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.post-card { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(145deg, rgba(21,25,35,.88), rgba(9,11,16,.86)); transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.post-card:hover { transform: translateY(-7px); border-color: rgba(255,48,69,.35); box-shadow: 0 25px 70px rgba(0,0,0,.34); }
.post-visual { position: relative; height: 190px; display: flex; align-items: end; padding: 22px; overflow: hidden; background: radial-gradient(circle at 70% 25%, rgba(56,215,255,.16), transparent 35%), linear-gradient(135deg,#181d28,#090b10); color: var(--red); font-family: "Barlow Condensed"; font-size: 4rem; font-style: italic; font-weight: 900; }
.post-visual::after { content: ""; position: absolute; right: -30px; bottom: -70px; width: 170px; height: 170px; border: 1px solid rgba(255,255,255,.11); border-radius: 50%; box-shadow: 0 0 0 26px rgba(255,255,255,.018); }
.post-copy { padding: 26px; }
.post-copy small { color: var(--red); font-size: .67rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.post-copy h3 { margin: 12px 0 16px; }
.post-copy p { font-size: .85rem; }

.sticky-contact { position: fixed; right: 20px; bottom: 20px; z-index: 65; display: flex; gap: 9px; }
.sticky-contact a { width: 54px; height: 54px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 17px; background: rgba(15,18,25,.86); color: #fff; box-shadow: 0 16px 38px rgba(0,0,0,.32); font-size: .74rem; font-weight: 900; backdrop-filter: blur(14px); transition: .25s ease; }
.sticky-contact a:last-child { background: linear-gradient(145deg, var(--red), #c2092b); }
.sticky-contact a:hover { transform: translateY(-4px); box-shadow: 0 20px 42px rgba(255,48,69,.22); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.75,.2,1); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .nav { position: fixed; inset: 124px 0 0; display: none; align-items: flex-start; flex-direction: column; padding: 42px 26px; background: rgba(6,7,10,.98); backdrop-filter: blur(20px); }
  .menu-open .nav { display: flex; }
  .nav a { font-size: 1rem; }
  .menu-btn { display: block; }
  .nav-cta { display: none; }
  .hero-content::before, .hero-content::after { display: none; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .split { grid-template-columns: 1fr; }
  .split-media { min-height: 540px; }
  .process { grid-template-columns: repeat(2,1fr); }
  .brands { grid-template-columns: repeat(4,1fr); }
  .faq-grid, .content-grid, .contact-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .container { width: min(var(--max), calc(100% - 28px)); }
  .cursor-glow, .topbar { display: none; }
  .site-header { height: 74px; }
  .nav { inset: 74px 0 0; }
  .brand { min-width: 0; }
  .brand-mark { width: 43px; height: 43px; border-radius: 13px; }
  .brand-copy strong { font-size: .74rem; }
  .brand-copy span { display: none; }
  h1 { font-size: clamp(3.8rem, 18vw, 5.8rem); }
  h2 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .hero { min-height: 740px; align-items: end; background-position: 69% center; }
  .hero::before { background: linear-gradient(90deg, rgba(4,5,8,.92), rgba(4,5,8,.46)), linear-gradient(0deg, #06070a 2%, rgba(4,5,8,.12) 76%); }
  .hero::after { width: 110vw; height: 110vw; right: -58vw; bottom: -18vw; }
  .hero-content { padding: 112px 0 125px; }
  .hero h1 span { -webkit-text-stroke-width: 1px; }
  .hero-lead { font-size: .95rem; }
  .hero-actions { display: grid; }
  .btn { width: 100%; }
  .trust-strip { margin-top: -44px; }
  .trust-grid { grid-template-columns: 1fr 1fr; border-radius: 18px; }
  .trust-item { padding: 22px 15px 22px 48px; }
  .trust-item::before { left: 14px; top: 22px; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .trust-item strong { font-size: 1.05rem; }
  .section { padding: 82px 0; }
  .section-head { display: block; margin-bottom: 38px; }
  .section-head p { margin-top: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; }
  .split-media { min-height: 360px; }
  .split-copy { padding: 58px 24px; }
  .check-list, .bullet-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .step { min-height: 230px; }
  .brands { grid-template-columns: repeat(2,1fr); }
  .faq-grid { gap: 38px; }
  .cta-row { display: block; }
  .cta-row .btn { margin-top: 24px; }
  .cta-band::after { font-size: 11rem; top: -25px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 8px; }
  .inner-hero { min-height: 410px; padding: 108px 0 53px; }
  .inner-hero h1 { font-size: clamp(3.2rem, 15vw, 5rem); }
  .content-grid, .contact-grid { gap: 42px; }
  .form-panel { padding: 29px 20px; }
  .form-panel h2 { font-size: 2.7rem; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .blog-grid { grid-template-columns: 1fr; }
  .sticky-contact { right: 12px; bottom: 12px; }
  .sticky-contact a { width: 50px; height: 50px; border-radius: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .cursor-glow { display: none; }
}

/* Refined luxury typography and spacing */
body {
  font-size: 1.025rem;
  line-height: 1.78;
  letter-spacing: -0.006em;
}

h1, h2, h3, .display {
  font-family: Outfit, Manrope, Arial, sans-serif;
  font-style: normal;
  text-transform: none;
  letter-spacing: -0.038em;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.75rem, 7vw, 6.75rem);
  line-height: 1.015;
}

h2 {
  font-size: clamp(2.55rem, 4.4vw, 4.45rem);
  line-height: 1.08;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

p {
  max-width: 68ch;
  line-height: 1.78;
}

.eyebrow {
  padding: 9px 14px;
  font-size: .76rem;
  letter-spacing: .12em;
}

.btn {
  min-height: 54px;
  padding-inline: 24px;
  border-radius: 15px;
  font-size: .78rem;
  letter-spacing: .075em;
}

.brand-mark {
  font-family: Outfit, sans-serif;
  font-style: normal;
  font-weight: 800;
}

.brand-copy strong {
  font-size: .9rem;
  letter-spacing: .025em;
}

.brand-copy span {
  font-size: .75rem;
  letter-spacing: .11em;
}

.topbar,
.service-link,
.contact-card small,
.field label,
.post-copy small,
.footer-bottom span,
.sticky-contact a {
  font-size: .75rem;
}

.nav a {
  font-size: .76rem;
  letter-spacing: .045em;
}

.hero {
  min-height: 735px;
}

.hero-content {
  max-width: 720px;
  padding: 108px 0 130px;
}

.hero h1 {
  max-width: 710px;
  text-shadow: 0 18px 48px rgba(0,0,0,.4);
}

.hero h1 span {
  margin-top: 7px;
  -webkit-text-stroke: 0;
  color: #eef1f6;
  background: linear-gradient(100deg, #fff 0%, #b9c1cc 55%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 600px;
  margin-block: 28px 33px;
  color: #c8ced7;
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-content::before {
  top: 155px;
  border-radius: 20px;
}

.hero-content::after {
  top: 221px;
}

.trust-strip {
  margin-top: -54px;
}

.trust-grid {
  border-radius: 26px;
}

.trust-item {
  padding: 27px 23px 27px 62px;
}

.trust-item strong {
  font-family: Outfit, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  text-transform: none;
}

.trust-item span {
  margin-top: 7px;
  font-size: .76rem;
  line-height: 1.55;
}

.section {
  padding-block: 108px;
}

.section-head {
  align-items: flex-end;
  margin-bottom: 50px;
}

.section-head h2 {
  max-width: 720px;
}

.section-head p {
  max-width: 410px;
  margin-bottom: 4px;
}

.services-grid {
  gap: 20px;
}

.service-card {
  min-height: 306px;
  padding: 31px;
  border-radius: 26px;
}

.service-card-top {
  margin-bottom: 38px;
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
}

.service-card h3 {
  max-width: 290px;
  margin-bottom: 14px;
}

.service-card p {
  margin-bottom: 16px;
  font-size: .92rem;
  line-height: 1.7;
}

.service-number {
  font-family: Outfit, sans-serif;
  font-size: .9rem;
  letter-spacing: .08em;
}

.service-link {
  margin-top: auto;
  font-size: .74rem;
  letter-spacing: .06em;
}

.split {
  min-height: 640px;
}

.split-copy {
  padding-block: 76px;
}

.split-copy h2 {
  max-width: 600px;
  margin-bottom: 25px;
}

.split-copy p {
  max-width: 590px;
}

.check-list li {
  padding-block: 14px;
  font-size: .86rem;
  line-height: 1.5;
}

.step {
  min-height: 245px;
  padding: 30px 25px;
}

.step::before {
  margin-bottom: 40px;
  font-family: Outfit, sans-serif;
  font-size: 2.65rem;
  font-style: normal;
}

.step h3 {
  font-size: 1.3rem;
}

.step p {
  font-size: .9rem;
  line-height: 1.7;
}

.brand-chip {
  min-height: 78px;
  font-family: Outfit, sans-serif;
  font-size: .84rem;
  letter-spacing: .025em;
  text-transform: none;
}

.faq-q {
  padding: 22px 24px;
  font-size: .96rem;
  line-height: 1.55;
}

.faq-a {
  padding: 0 72px 23px 24px;
}

.faq-a p {
  font-size: .94rem;
}

.cta-band {
  padding-block: 74px;
}

.cta-row h2 {
  max-width: 720px;
  font-size: clamp(2.35rem, 4vw, 3.85rem);
}

.footer h3 {
  font-size: 1.05rem;
}

.inner-hero {
  min-height: 440px;
  padding: 116px 0 68px;
}

.inner-hero h1 {
  max-width: 940px;
  font-size: clamp(3.15rem, 5.7vw, 5.65rem);
  line-height: 1.04;
}

.crumb {
  font-size: .72rem;
  letter-spacing: .075em;
}

.content-grid {
  gap: 68px;
}

.prose {
  max-width: 850px;
}

.prose h2 {
  margin: 48px 0 20px;
  font-size: clamp(2.25rem, 3.7vw, 3.65rem);
  line-height: 1.1;
}

.prose p {
  max-width: 72ch;
  font-size: 1rem;
  line-height: 1.82;
}

.bullet-grid li {
  padding-block: 16px;
  font-size: .9rem;
  line-height: 1.5;
}

.side-card h3 {
  font-size: 1.35rem;
}

.side-card p,
.side-links a {
  font-size: .88rem;
}

.form-panel h2 {
  font-size: 2.75rem;
  line-height: 1.08;
}

.post-visual {
  font-family: Outfit, sans-serif;
  font-style: normal;
}

.post-copy h3 {
  font-size: 1.35rem;
  line-height: 1.25;
}

.post-copy p {
  font-size: .9rem;
  line-height: 1.7;
}

@media (max-width: 1100px) {
  h1 { font-size: clamp(3.55rem, 8vw, 5.75rem); }
  h2 { font-size: clamp(2.45rem, 5.5vw, 4rem); }
  .hero { min-height: 700px; }
  .section { padding-block: 92px; }
}

@media (max-width: 720px) {
  body { font-size: 1rem; line-height: 1.72; }
  h1 { font-size: clamp(3rem, 13vw, 4.35rem); line-height: 1.04; }
  h2 { font-size: clamp(2.25rem, 10vw, 3.35rem); line-height: 1.1; }
  h3 { font-size: 1.35rem; }
  .eyebrow { font-size: .75rem; }
  .hero { min-height: 680px; }
  .hero-content { padding: 102px 0 106px; }
  .hero-lead { font-size: 1rem; line-height: 1.7; }
  .trust-strip { margin-top: -30px; }
  .trust-item { padding: 20px 12px 20px 46px; }
  .trust-item::before { left: 12px; top: 21px; }
  .trust-item strong { font-size: .86rem; line-height: 1.3; }
  .trust-item span { font-size: .75rem; line-height: 1.45; }
  .section { padding-block: 74px; }
  .section-head { margin-bottom: 34px; }
  .service-card { min-height: 284px; padding: 27px; }
  .service-card-top { margin-bottom: 32px; }
  .service-card p { font-size: .9rem; }
  .split-copy { padding: 54px 22px; }
  .inner-hero { min-height: 370px; padding: 100px 0 50px; }
  .inner-hero h1 { font-size: clamp(2.75rem, 12vw, 4rem); line-height: 1.08; }
  .prose h2 { font-size: clamp(2.05rem, 9vw, 2.9rem); }
  .prose p { font-size: .97rem; }
  .cta-row h2 { font-size: clamp(2.15rem, 9vw, 3rem); }
  .form-panel h2 { font-size: 2.35rem; }
}

/* Expanded long-form service pages */
.service-journey .section-head {
  position: relative;
  z-index: 1;
}

.experience-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.experience-card {
  position: relative;
  min-height: 292px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(8, 10, 14, .08);
  border-radius: 26px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 24px 65px rgba(25, 31, 43, .08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.experience-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 32px 78px rgba(25, 31, 43, .14);
}

.experience-count {
  position: absolute;
  top: 30px;
  right: 30px;
  color: rgba(8, 10, 14, .22);
  font: 700 .78rem/1 Outfit, sans-serif;
  letter-spacing: .12em;
}

.experience-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 54px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 48, 69, .14), rgba(255, 48, 69, .04));
  color: var(--red);
  box-shadow: inset 0 0 0 1px rgba(255, 48, 69, .18);
}

.experience-icon .icon { width: 25px; height: 25px; }
.experience-card h3 { margin-bottom: 14px; color: #090b10; font-size: 1.28rem; }
.experience-card p { margin-bottom: 0; color: #626a75; font-size: .9rem; line-height: 1.75; }

.deep-dive {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 80px;
  align-items: start;
}

.deep-dive-copy {
  position: sticky;
  top: 150px;
}

.deep-dive-copy h2 {
  max-width: 600px;
  margin-bottom: 24px;
}

.deep-dive-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 32px;
}

.detail-list {
  border-top: 1px solid var(--line);
}

.detail-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.detail-list article > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(56, 215, 255, .08);
  color: var(--cyan);
  font: 700 .72rem/1 Outfit, sans-serif;
  letter-spacing: .08em;
}

.detail-list h3 { margin-bottom: 9px; font-size: 1.16rem; }
.detail-list p { margin: 0; font-size: .9rem; line-height: 1.72; }

.related-section {
  background:
    radial-gradient(circle at 80% 25%, rgba(56, 215, 255, .06), transparent 25%),
    var(--bg);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.related-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  min-height: 246px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(19, 24, 34, .9), rgba(9, 11, 16, .72));
  box-shadow: 0 20px 55px rgba(0, 0, 0, .2);
  transition: transform .3s ease, border-color .3s ease;
}

.related-card:hover { transform: translateY(-6px); border-color: rgba(56, 215, 255, .36); }
.related-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 18px; background: rgba(255, 48, 69, .1); color: var(--red); }
.related-icon .icon { width: 25px; height: 25px; }
.related-card small { color: #778192; font: 700 .68rem/1 Outfit, sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.related-card h3 { margin: 13px 0 11px; font-size: 1.2rem; }
.related-card p { margin-bottom: 18px; font-size: .84rem; line-height: 1.68; }
.related-card div > span { color: var(--cyan); font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.center-action { display: flex; justify-content: center; margin-top: 38px; }

.local-service-band {
  position: relative;
  overflow: hidden;
  padding: 82px 0;
  border-block: 1px solid rgba(255, 255, 255, .09);
  background:
    linear-gradient(120deg, rgba(255, 48, 69, .2), transparent 44%),
    linear-gradient(300deg, rgba(56, 215, 255, .1), transparent 36%),
    #0b0e14;
}

.local-service-band::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -180px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255, 255, 255, .018), 0 0 0 110px rgba(255, 255, 255, .012);
}

.local-service-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.local-service-row h2 { max-width: 760px; margin-bottom: 16px; }
.local-service-row p:not(.eyebrow) { margin: 0; }
.local-actions { display: flex; gap: 12px; flex: 0 0 auto; }

@media (max-width: 980px) {
  .experience-grid,
  .related-grid { grid-template-columns: 1fr; }
  .experience-card { min-height: 245px; }
  .deep-dive { grid-template-columns: 1fr; gap: 48px; }
  .deep-dive-copy { position: static; }
  .local-service-row { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 720px) {
  .experience-card { min-height: auto; padding: 28px; }
  .experience-icon { margin-bottom: 42px; }
  .detail-list article { grid-template-columns: 44px 1fr; gap: 16px; padding: 24px 0; }
  .related-card { grid-template-columns: 48px 1fr; gap: 17px; min-height: auto; padding: 24px; }
  .related-icon { width: 48px; height: 48px; border-radius: 15px; }
  .local-service-band { padding: 64px 0; }
  .local-actions { width: 100%; flex-direction: column; }
  .local-actions .btn { width: 100%; }
}
