@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap");

:root {
  --bg: #070b12;
  --panel: #101720;
  --panel-2: #0d131b;
  --ink: #f3f7fb;
  --muted: #8d98a8;
  --soft: #697586;
  --line: #26313d;
  --blue: #0099e0;
  --blue-2: #26b4ff;
  --glow: 0 0 20px rgba(0, 153, 224, 0.25), 0 0 60px rgba(0, 153, 224, 0.1);
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.36);
  --radius: 12px;
  --max: 1280px;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.28;
  mask-image: linear-gradient(180deg, black 0%, transparent 64%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 22px;
  width: 100%;
  margin: 0 auto;
  padding: 16px max(24px, calc((100vw - var(--max)) / 2 + 24px));
  border-bottom: 1px solid rgba(38, 49, 61, 0.5);
  background: rgba(7, 11, 18, 0.8);
  backdrop-filter: blur(24px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

.brand-logo {
  width: 150px;
  height: 54px;
  max-width: 34vw;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(0, 153, 224, 0.22));
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.brand > span:not(.sr-only) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: white;
  background: var(--blue);
  box-shadow: var(--glow);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand > span:not(.sr-only)::first-letter {
  color: inherit;
}

.brand small {
  color: var(--ink);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--blue-2);
}

.nav-links a::after {
  display: none;
}

.header-phone {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 10px;
  color: white;
  background: var(--blue);
  box-shadow: var(--glow);
  font-size: 13px;
  font-weight: 900;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: white;
}

.mobile-menu {
  display: none;
}

main {
  outline: none;
}

.hero,
.section,
.split,
.why,
.dual,
.final-cta,
.detail-grid,
.process,
.story,
.values,
.testimonials,
.quote,
.contact-layout,
.article {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 76vh;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--bg);
  box-shadow: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  filter: saturate(0.82) contrast(1.12);
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(7, 11, 18, 0.8) 48%, rgba(7, 11, 18, 0.4) 100%),
    linear-gradient(180deg, transparent 44%, var(--bg) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 48px));
  max-width: 610px;
  margin-right: auto;
  margin-left: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  padding: clamp(122px, 15vh, 168px) 0 74px;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 22px;
  padding: 7px 16px;
  border: 1px solid rgba(0, 153, 224, 0.3);
  border-radius: 999px;
  background: rgba(0, 153, 224, 0.1);
  color: var(--blue-2);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.split h2,
.why h2,
.dual h2,
.final-cta h2,
.detail-grid h2,
.process h2,
.story h2,
.contact-panel h2 {
  margin: 0;
  color: white;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(42px, 5.4vw, 64px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.hero p:not(.eyebrow),
.section p,
.split p,
.why p,
.dual p,
.final-cta p,
.detail-grid p,
.process p,
.story p,
.contact-panel p,
.article p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  transition: transform 170ms ease, border-color 170ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: white;
  background: var(--blue);
  box-shadow: var(--glow);
}

.btn.ghost {
  border: 2px solid var(--blue);
  background: transparent;
  color: var(--blue-2);
}

.split,
.dual,
.detail-grid,
.story,
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 20px;
}

.split figure,
.split > div,
.dual article,
.detail-grid article,
.story article,
.contact-panel,
.contact-form,
.section,
.why,
.final-cta,
.process,
.values article,
.testimonials blockquote,
.quote blockquote,
.article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(13, 20, 32, 0.92), rgba(7, 11, 18, 0.96));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.split figure {
  min-height: 320px;
  margin: 0;
  overflow: hidden;
}

.split > div,
.dual article,
.detail-grid article,
.story article,
.contact-panel,
.article {
  padding: clamp(28px, 5vw, 48px);
}

.section {
  margin-top: 0;
  padding: 96px 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-head {
  display: block;
  text-align: center;
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 64px;
}

.section-head a {
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 900;
}

.cards,
.services-grid,
.project-grid,
.plan-grid,
.blog-grid,
.solution-grid,
.bullet-grid,
.why-grid,
.values {
  display: grid;
  gap: 18px;
}

.services-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-card,
.plan-card,
.blog-card,
.project-card,
.why-grid article,
.bullet-grid article,
.process article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.service-card:hover,
.plan-card:hover,
.blog-card:hover,
.project-card:hover,
.why-grid article:hover,
.bullet-grid article:hover,
.process article:hover {
  border-color: rgba(0, 153, 224, 0.42);
  box-shadow: var(--glow);
  transform: translateY(-3px);
}

.service-card,
.plan-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
}

.plan-card {
  padding: 24px;
}

.service-card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  height: auto;
  margin: 0;
  overflow: hidden;
  background: #05080d;
}

.service-card-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(4, 8, 14, 0.04), rgba(4, 8, 14, 0.74));
}

.service-card-media img {
  transition: transform 420ms ease, filter 420ms ease;
}

.service-card:hover .service-card-media img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.08);
}

.service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.service-card .icon,
.why-grid span,
.bullet-grid svg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: white;
  border-radius: 12px;
  background: rgba(0, 153, 224, 0.1);
  color: var(--blue-2);
  box-shadow: none;
  transition: background 160ms ease, color 160ms ease;
}

.service-card:hover .icon,
.why-grid article:hover span {
  background: var(--blue);
  color: white;
}

.service-card-media .icon {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  border: 1px solid rgba(0, 153, 224, 0.34);
  background: rgba(6, 10, 16, 0.78);
  backdrop-filter: blur(16px);
}

.service-card svg,
.why-grid svg {
  width: 24px;
  height: 24px;
}

.service-card h3,
.plan-card h3,
.project-card h3,
.blog-card h3,
.why-grid h3,
.bullet-grid h3,
.process h3,
.values h3 {
  margin: 18px 0 0;
  color: white;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.15;
}

.service-card h3 {
  margin-top: 0;
}

.service-card p,
.plan-card p,
.project-card p,
.blog-card p,
.why-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.service-card b,
.plan-card b {
  margin-top: auto;
  padding-top: 18px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 600;
}

.why {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 28px;
  margin-top: 0;
  padding: clamp(28px, 5vw, 46px);
}

.why-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.why-grid article,
.bullet-grid article,
.process article {
  padding: 22px;
}

.dual article:first-child {
  background:
    linear-gradient(180deg, rgba(9, 16, 28, 0.84), rgba(5, 8, 13, 0.96)),
    url("/images/heroes/home-luxury-smart-home-night.webp") center / cover;
}

.dual article:last-child {
  background:
    linear-gradient(180deg, rgba(9, 16, 28, 0.84), rgba(5, 8, 13, 0.96)),
    url("/images/heroes/business-it-networking.webp") center / cover;
}

.location-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 26px;
  align-items: start;
}

.location-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.location-list a {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #edf5ff;
  font-size: 13px;
  font-weight: 850;
}

.location-list.large {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.location-tools,
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: -28px auto 34px;
}

.location-tools label {
  display: grid;
  gap: 8px;
  min-width: min(100%, 260px);
  color: #dbe8fa;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.location-tools input,
.location-tools select {
  min-height: 44px;
  color: white;
  border: 1px solid rgba(132, 170, 220, 0.26);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  padding: 0 14px;
  outline: none;
}

.location-tools input:focus,
.location-tools select:focus {
  border-color: var(--blue-2);
  box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.16);
}

.filter-tabs button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #dbe8fa;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease, box-shadow 170ms ease;
}

.filter-tabs button:hover,
.filter-tabs button.is-active {
  border-color: rgba(0, 153, 224, 0.5);
  background: rgba(0, 153, 224, 0.15);
  box-shadow: var(--glow);
  transform: translateY(-2px);
}

.service-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.service-groups article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(16, 23, 32, 0.95), rgba(8, 12, 19, 0.95));
}

.service-groups h3 {
  margin: 0 0 8px;
  color: white;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 17px;
}

.service-groups p {
  margin: 0;
  font-size: 14px;
}

.is-filtered-out {
  display: none !important;
}

.location-list span,
.project-card span,
.blog-card span,
.plan-card span {
  color: var(--blue-2);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-card,
.blog-card {
  position: relative;
  overflow: hidden;
}

.project-card img,
.blog-card img {
  aspect-ratio: 16 / 9;
  height: auto;
}

.project-card img {
  transition: transform 420ms ease, filter 420ms ease;
}

.project-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.72) saturate(1.12);
}

.project-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 153, 224, 0.18));
  opacity: 0;
  transition: opacity 180ms ease;
}

.project-card:hover::after {
  opacity: 1;
}

.project-card div,
.blog-card div {
  position: relative;
  z-index: 1;
  padding: 22px;
}

.plan-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan-card ul {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 74px;
}

.testimonials blockquote {
  transition: opacity 240ms ease, transform 240ms ease, border-color 240ms ease;
}

.testimonials[data-active="0"] blockquote:nth-child(1),
.testimonials[data-active="1"] blockquote:nth-child(2),
.testimonials[data-active="2"] blockquote:nth-child(3) {
  border-color: rgba(0, 153, 224, 0.48);
  box-shadow: var(--glow);
  transform: translateY(-4px);
}

blockquote {
  margin: 0;
  color: white;
  font-size: 22px;
  line-height: 1.25;
}

blockquote span {
  display: block;
  margin-top: 16px;
  color: var(--blue-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.testimonials blockquote,
.quote blockquote {
  padding: 28px;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.faq details:first-of-type {
  border-top: 0;
}

.faq summary {
  cursor: pointer;
  color: white;
  font-weight: 850;
}

.process > div {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.process {
  margin-top: 74px;
  padding: clamp(28px, 5vw, 46px);
}

.process span {
  color: var(--blue-2);
  font-size: 28px;
  font-weight: 950;
}

.bullet-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
}

.bullet-grid article {
  display: grid;
  gap: 16px;
}

.bullet-grid svg {
  width: 42px;
  height: 42px;
  padding: 10px;
}

.values {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 20px;
}

.values article {
  padding: 24px;
}

.values svg {
  width: 34px;
  height: 34px;
  color: var(--blue-2);
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-layout {
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 13px;
}

.contact-panel a,
.contact-panel span {
  color: #e7f1ff;
  font-weight: 850;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #dbe8fa;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: white;
  border: 1px solid rgba(132, 170, 220, 0.26);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  padding: 12px 13px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue-2);
  box-shadow: 0 0 0 3px rgba(22, 119, 255, 0.16);
}

.wide {
  grid-column: 1 / -1;
}

.final-cta {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 74px;
  margin-bottom: 72px;
  padding: clamp(30px, 6vw, 58px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(7, 11, 18, 0.96), rgba(7, 11, 18, 0.8)),
    url("/images/heroes/services-network-rack-blue.webp") center / cover;
  box-shadow: var(--shadow);
}

.final-cta > * {
  position: relative;
  z-index: 1;
}

.site-footer {
  display: grid;
  grid-template-columns: 0.9fr 1.35fr 0.75fr;
  gap: 28px;
  align-items: start;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  background: var(--panel);
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
}

.site-footer p,
.footer-contact span {
  color: var(--soft);
  font-size: 13px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: #d9e5f5;
  font-size: 13px;
  font-weight: 800;
}

.footer-contact {
  display: grid;
  gap: 8px;
  justify-items: end;
  color: #eaf3ff;
  font-size: 13px;
  font-weight: 850;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  max-width: 330px;
  padding: 14px 18px;
  color: white;
  border: 1px solid rgba(69, 168, 255, 0.42);
  border-radius: var(--radius);
  background: #0b1220;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lead-hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

body.lead-success::after {
  position: fixed;
  inset: 0;
  z-index: 120;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 30% 28%, rgba(38, 180, 255, 0.42), transparent 8%),
    radial-gradient(circle at 68% 34%, rgba(0, 153, 224, 0.36), transparent 7%),
    radial-gradient(circle at 50% 60%, rgba(255, 255, 255, 0.16), transparent 10%);
  animation: leadSuccessPulse 1200ms ease forwards;
}

@keyframes leadSuccessPulse {
  0% {
    opacity: 0;
    transform: scale(0.96);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

.admin-leads {
  min-height: 70vh;
  padding-top: 128px;
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--muted);
  font-weight: 800;
}

.lead-list {
  display: grid;
  gap: 14px;
}

.lead-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(13, 20, 32, 0.94), rgba(7, 11, 18, 0.98));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.2);
}

.lead-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 8px;
  padding: 4px 9px;
  border: 1px solid rgba(0, 153, 224, 0.34);
  border-radius: 999px;
  color: var(--blue-2);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-card h3 {
  margin: 0;
  color: white;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 20px;
}

.lead-card p,
.lead-card small,
.lead-card time {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.lead-card a {
  display: block;
  color: #f7fbff;
  font-weight: 800;
  line-height: 1.6;
}

.lead-auto-section {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 7vw, 92px) clamp(18px, 3vw, 34px);
  border: 1px solid rgba(38, 180, 255, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 153, 224, 0.18), transparent 34%),
    radial-gradient(circle at 82% 74%, rgba(244, 165, 28, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(10, 18, 30, 0.96), rgba(4, 8, 14, 0.98));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.lead-auto-head {
  display: grid;
  gap: 14px;
  max-width: 840px;
  margin: 0 auto 42px;
  text-align: center;
}

.lead-auto-head h2 {
  margin: 0;
  color: #fff;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
}

.lead-auto-head p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 auto;
  color: #aeb9c8;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}

.lead-auto-stage {
  position: relative;
  display: grid;
  gap: 34px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 18px 14px;
}

.lead-auto-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.lead-auto-lines path {
  fill: none;
  stroke: rgba(131, 144, 155, 0.72);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16 16;
  stroke-dashoffset: 260;
  opacity: 0.34;
}

.lead-auto-lines .line-hot {
  stroke: url(#leadHotGradient);
  stroke-width: 5;
  opacity: 0.7;
}

.lead-auto-section.is-visible .lead-auto-lines path {
  animation: leadPathDraw 1800ms ease forwards, leadPathFlow 2600ms linear 1800ms infinite;
}

@keyframes leadPathDraw {
  to { stroke-dashoffset: 0; opacity: 0.9; }
}

@keyframes leadPathFlow {
  to { stroke-dashoffset: -64; }
}

.lead-auto-main,
.lead-auto-branch {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
}

.lead-auto-main {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.lead-auto-branches {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: repeat(3, auto);
  gap: 18px;
  margin-top: 18px;
}

.lead-auto-branch {
  align-items: stretch;
}

.lead-auto-branch.cold {
  grid-template-columns: minmax(180px, 220px);
  justify-content: end;
}

.lead-auto-branch.warm {
  grid-template-columns: repeat(2, minmax(170px, 220px));
  justify-content: end;
}

.lead-auto-branch.hot {
  grid-template-columns: repeat(6, minmax(145px, 1fr));
}

.lead-auto-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
  min-height: 132px;
  padding: 18px 16px;
  border: 1px solid rgba(38, 180, 255, 0.42);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(8, 30, 52, 0.98), rgba(8, 17, 29, 0.98));
  color: #f4f8ff;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(0, 153, 224, 0.12), 0 16px 38px rgba(0, 153, 224, 0.14);
  opacity: 0;
  transform: translateY(18px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.lead-auto-section.is-visible .lead-auto-card {
  animation: leadCardIn 520ms ease forwards;
  animation-delay: var(--delay);
}

@keyframes leadCardIn {
  to { opacity: 1; transform: translateY(0); }
}

.lead-auto-card:hover,
.lead-auto-card.is-active {
  transform: translateY(-5px);
  border-color: var(--blue-2);
  box-shadow: 0 0 24px rgba(38, 180, 255, 0.36), 0 20px 52px rgba(0, 0, 0, 0.34);
}

.lead-auto-card small {
  position: absolute;
  top: -12px;
  left: 14px;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: #07111f;
  color: #aeb9c8;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lead-auto-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: var(--blue-2);
  background: rgba(38, 180, 255, 0.12);
}

.lead-auto-icon svg {
  width: 22px;
  height: 22px;
}

.lead-auto-card strong {
  align-self: end;
  font-size: 0.96rem;
  line-height: 1.25;
}

.lead-auto-card.hot {
  border-color: rgba(244, 165, 28, 0.68);
  background:
    linear-gradient(180deg, rgba(40, 24, 7, 0.98), rgba(12, 21, 34, 0.98));
  box-shadow: 0 0 0 1px rgba(244, 165, 28, 0.12), 0 18px 42px rgba(244, 165, 28, 0.14);
}

.lead-auto-card.hot .lead-auto-icon {
  color: #ffbf4d;
  background: rgba(244, 165, 28, 0.14);
}

.lead-auto-card.warm {
  border-color: rgba(38, 180, 255, 0.56);
}

.lead-auto-card.cold {
  border-color: rgba(142, 154, 168, 0.48);
}

.lead-auto-card.booked {
  border-color: #16bd7a;
  background:
    linear-gradient(180deg, rgba(10, 57, 42, 0.98), rgba(8, 28, 23, 0.98));
  box-shadow: 0 0 30px rgba(22, 189, 122, 0.22), 0 18px 42px rgba(0, 0, 0, 0.28);
}

.lead-auto-card.booked .lead-auto-icon {
  color: #49f0aa;
  background: rgba(22, 189, 122, 0.15);
}

.lead-auto-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  max-width: 1180px;
  margin: 34px auto 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.lead-auto-footer h3,
.lead-auto-footer p {
  margin: 0;
}

.lead-auto-footer p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.automation-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.integrations-grid .automation-info-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.automation-info-grid article {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.automation-info-grid svg {
  width: 30px;
  height: 30px;
  color: var(--blue-2);
}

.automation-info-grid h3,
.automation-info-grid p {
  margin: 0;
}

.automation-info-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.lead-automation-form {
  margin-top: 40px;
}

.lead-collection-hero .hero-copy {
  padding-top: 140px !important;
  padding-bottom: 64px !important;
}

.lead-collection-page {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 26px;
  width: min(var(--max), calc(100% - 44px));
  margin: 44px auto 0;
  align-items: start;
}

.lead-collection-intro,
.lead-collection-form {
  border: 1px solid rgba(38, 180, 255, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 22% 18%, rgba(0, 153, 224, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(13, 20, 32, 0.96), rgba(7, 11, 18, 0.98));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.lead-collection-intro {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 18px;
  padding: clamp(26px, 4vw, 42px);
}

.lead-collection-intro h2 {
  margin: 0;
  color: #fff;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
}

.lead-collection-intro p:not(.eyebrow) {
  margin: 0;
  color: #aeb9c8;
  font-size: 1.05rem;
  line-height: 1.7;
}

.lead-collection-proof {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.lead-collection-proof span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #eef6ff;
  font-weight: 800;
}

.lead-collection-proof svg {
  width: 21px;
  height: 21px;
  color: var(--blue-2);
}

.lead-collection-form {
  padding: clamp(22px, 3vw, 34px);
}

.lead-collection-next {
  margin-top: 42px;
}

.lead-routing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.lead-routing-grid article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.lead-routing-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-routing-grid h3 {
  margin: 0 0 10px;
}

.lead-routing-grid p {
  margin: 0;
  color: var(--muted);
}

.n-visitor { left: 0; top: 260px; }
.n-chat { left: 250px; top: 260px; }
.n-contact { left: 500px; top: 350px; }
.n-questions { left: 750px; top: 350px; }
.n-score { left: 1000px; top: 350px; }
.n-nurture { left: 1340px; top: 112px; }
.n-text { left: 1340px; top: 270px; }
.n-follow { left: 1340px; top: 430px; }
.n-reply { left: 1340px; top: 570px; }
.n-book { left: 1590px; top: 510px; }
.n-crm { left: 1840px; top: 510px; }
.n-quote { left: 2090px; top: 510px; }
.n-booked { left: 2340px; top: 510px; }
.l-cold { left: 1180px; top: 270px; }
.l-hot-text { left: 1204px; top: 358px; }
.l-warm { left: 1203px; top: 436px; }
.l-hot-reply { left: 1197px; top: 520px; }

.reveal-item,
.section,
.split,
.why,
.dual,
.final-cta {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal-item.is-visible,
.section.is-visible,
.split.is-visible,
.why.is-visible,
.dual.is-visible,
.final-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top {
  position: fixed;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 153, 224, 0.45);
  color: white;
  background: rgba(0, 153, 224, 0.92);
  box-shadow: var(--glow);
  backdrop-filter: blur(18px);
}

.back-to-top {
  right: 22px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

@media (max-width: 1040px) {
  .hero h1 {
    font-size: clamp(38px, 6vw, 48px);
    line-height: 1.1;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .nav-links,
  .header-phone {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .mobile-menu {
    position: fixed;
    top: 78px;
    right: 22px;
    left: 22px;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(4, 7, 12, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .mobile-logo {
    justify-content: flex-start;
    padding: 8px 12px 14px !important;
  }

  .mobile-menu a {
    padding: 13px 12px;
    border-radius: 10px;
    color: #eff6ff;
    font-size: 14px;
    font-weight: 850;
  }

  .mobile-menu a.is-active,
  .mobile-menu a:hover {
    color: var(--blue-2);
    background: rgba(22, 119, 255, 0.16);
  }

  .services-grid,
  .project-grid,
  .blog-grid,
  .plan-grid,
  .values,
  .bullet-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process > div,
  .location-list.large {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lead-collection-page {
    grid-template-columns: 1fr;
  }

  .lead-collection-intro {
    position: static;
  }

  .lead-auto-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lead-auto-branch.hot,
  .lead-auto-branch.warm,
  .lead-auto-branch.cold,
  .automation-info-grid,
  .integrations-grid .automation-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lead-auto-lines {
    display: none;
  }

  .lead-auto-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header,
  .section,
  .split,
  .why,
  .dual,
  .final-cta,
  .detail-grid,
  .process,
  .story,
  .values,
  .testimonials,
  .quote,
  .contact-layout,
  .article,
  .site-footer {
    width: calc(100% - 28px);
  }

  .site-header {
    width: 100%;
  }

  .hero {
    width: 100%;
    min-height: 72vh;
  }

  .hero-copy {
    width: calc(100% - 44px);
    max-width: none;
    margin-right: auto;
    margin-left: auto;
    padding: 132px 0 76px;
  }

  .hero h1,
  .section h2,
  .split h2,
  .why h2,
  .dual h2,
  .final-cta h2,
  .detail-grid h2,
  .process h2,
  .story h2,
  .contact-panel h2 {
    font-size: clamp(32px, 8vw, 48px);
    line-height: 1.1;
  }

  .hero h1 {
    font-size: clamp(31px, 9vw, 38px);
    line-height: 1.12;
  }

  .split,
  .why,
  .dual,
  .detail-grid,
  .story,
  .contact-layout,
  .location-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .project-grid,
  .blog-grid,
  .plan-grid,
  .values,
  .bullet-grid,
  .why-grid,
  .process > div,
  .testimonials,
  .location-list.large,
  .lead-routing-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .service-groups {
    grid-template-columns: 1fr;
  }

  .section {
    margin-top: 0;
    padding: 64px 0;
  }

  .why,
  .process {
    margin-top: 46px;
    padding: 28px 20px;
  }

  .split > div,
  .dual article,
  .detail-grid article,
  .story article,
  .contact-panel,
  .article {
    padding: 24px 20px;
  }

  .section-head,
  .final-cta {
    display: block;
  }

  .section-head {
    margin-bottom: 36px;
  }

  .hero-actions,
  .cta-actions,
  .btn {
    width: 100%;
  }

  .service-card-media {
    height: auto;
  }

  .project-card img,
  .blog-card img,
  .split figure {
    height: 230px;
    min-height: 230px;
  }

  .footer-contact {
    justify-items: start;
  }

  .back-to-top {
    bottom: 22px;
  }

  .lead-auto-section {
    padding: 46px 16px;
    border-radius: 14px;
  }

  .lead-auto-stage {
    padding: 0;
  }

  .lead-auto-main,
  .lead-auto-branch.hot,
  .lead-auto-branch.warm,
  .lead-auto-branch.cold,
  .automation-info-grid,
  .integrations-grid .automation-info-grid {
    grid-template-columns: 1fr;
  }

  .lead-auto-main,
  .lead-auto-branch {
    gap: 12px;
  }

  .lead-auto-main .lead-auto-card,
  .lead-auto-branch .lead-auto-card {
    min-height: 94px;
  }

  .lead-auto-card {
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr;
    align-items: center;
  }

  .lead-auto-card::after {
    position: absolute;
    bottom: -15px;
    left: 34px;
    width: 2px;
    height: 14px;
    content: "";
    background: linear-gradient(180deg, var(--blue-2), rgba(38, 180, 255, 0));
  }

  .lead-auto-branch .lead-auto-card:last-child::after {
    display: none;
  }

  .lead-auto-branches {
    gap: 22px;
  }

  .lead-auto-footer {
    padding: 18px;
  }

  .lead-collection-page {
    width: calc(100% - 28px);
    margin-top: 28px;
  }

  .lead-collection-form {
    padding: 18px;
  }
}

/* Contact page compact hero */
.contact-hero {
  min-height: 260px;
  max-height: 260px;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.contact-hero .hero-bg::after {
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(7, 11, 18, 0.86) 52%, rgba(7, 11, 18, 0.58) 100%),
    linear-gradient(180deg, rgba(7, 11, 18, 0.24), var(--bg) 100%);
}

.contact-hero .hero-copy {
  padding-top: 78px;
  padding-bottom: 26px;
}

.contact-hero h1 {
  font-size: clamp(30px, 3.2vw, 42px);
}

.contact-hero p:not(.eyebrow) {
  max-width: 620px;
}

.contact-hero + .contact-layout {
  margin-top: 0;
}

@media (max-width: 760px) {
  .contact-hero {
    min-height: 180px;
    max-height: 180px;
    margin-bottom: 16px;
  }

  .contact-hero .hero-copy {
    padding-top: 76px;
    padding-bottom: 18px;
  }

  .contact-hero .eyebrow {
    margin-bottom: 10px;
  }

  .contact-hero h1 {
    font-size: clamp(25px, 7vw, 30px);
  }

  .contact-hero p:not(.eyebrow) {
    display: none;
  }

  .lead-card {
    grid-template-columns: 1fr;
  }

  .admin-leads {
    padding-top: 92px;
  }
}

/* Final global hero background system */
.hero {
  display: flex;
  align-items: center;
  min-height: 420px !important;
  max-height: 420px !important;
  height: 420px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 168, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #02070d, #07111f);
}

.hero.hero-compact,
.hero.hero-support {
  min-height: 360px !important;
  max-height: 360px !important;
  height: 360px;
}

.hero.contact-hero {
  min-height: 260px !important;
  max-height: 260px !important;
  height: 260px;
}

.hero-bg,
.hero-bg-home,
.hero-bg-services,
.hero-bg-service-detail,
.hero-bg-support,
.hero-bg-contact,
.hero-bg-location,
.hero-bg-projects {
  background-image:
    var(--hero-image),
    radial-gradient(circle at 20% 20%, rgba(0, 168, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #02070d, #07111f) !important;
  background-size: cover !important;
  background-position: var(--hero-position, center center) !important;
  background-repeat: no-repeat !important;
  filter: saturate(1.02) contrast(1.04) brightness(0.86) !important;
  transform: none !important;
  animation: none !important;
}

.hero-bg-home {
  --hero-position: center center;
}

.hero-bg-services {
  --hero-position: center 42%;
}

.hero-bg-service-detail,
.hero-bg-support {
  --hero-position: center 35%;
}

.hero-bg-contact {
  --hero-position: center 45%;
}

.hero-bg-location {
  --hero-position: center 38%;
}

.hero-bg-projects {
  --hero-position: center center;
}

.hero-veil {
  background:
    linear-gradient(90deg, rgba(2, 8, 18, 0.92), rgba(2, 8, 18, 0.65) 55%, rgba(2, 8, 18, 0.35)),
    linear-gradient(180deg, rgba(2, 8, 18, 0.12), rgba(2, 8, 18, 0.82) 100%) !important;
}

.hero-glow-a {
  top: 7%;
  left: 34%;
  width: min(420px, 36vw);
}

.hero-glow-b {
  right: 9%;
  bottom: -18%;
  width: min(360px, 32vw);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  max-width: 720px !important;
  margin-right: auto;
  margin-left: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  padding-top: 108px !important;
  padding-bottom: 44px !important;
  text-align: left;
}

.hero-compact .hero-copy,
.hero-support .hero-copy {
  padding-top: 92px !important;
  padding-bottom: 34px !important;
}

.contact-hero .hero-copy {
  padding-top: 84px !important;
  padding-bottom: 20px !important;
}

.hero h1 {
  max-width: 720px !important;
  font-size: clamp(34px, 4.1vw, 52px) !important;
  line-height: 1.08 !important;
}

.hero-compact h1,
.hero-support h1 {
  font-size: clamp(30px, 3.6vw, 46px) !important;
}

.contact-hero h1 {
  font-size: clamp(28px, 3vw, 38px) !important;
}

.hero p:not(.eyebrow) {
  max-width: 680px !important;
  color: #c7d2e2 !important;
  font-size: clamp(15.5px, 1.25vw, 17px) !important;
  line-height: 1.62 !important;
}

.hero-status,
.scroll-indicator {
  display: none !important;
}

.hero-actions,
.cta-actions {
  margin-top: 22px !important;
}

.stat-strip {
  margin-top: 24px !important;
}

.hero + .stat-strip {
  margin-top: 28px !important;
}

.detail-grid,
.process,
.section:first-of-type {
  margin-top: 0;
}

@media (max-width: 760px) {
  .hero,
  .hero.hero-compact,
  .hero.hero-support,
  .hero.contact-hero {
    min-height: 260px !important;
    max-height: 260px !important;
    height: 260px;
  }

  .hero-bg,
  .hero-bg-home,
  .hero-bg-services,
  .hero-bg-service-detail,
  .hero-bg-support,
  .hero-bg-contact,
  .hero-bg-location,
  .hero-bg-projects {
    background-position: center center !important;
  }

  .hero-copy,
  .hero-compact .hero-copy,
  .hero-support .hero-copy,
  .contact-hero .hero-copy {
    width: min(100% - 34px, var(--max));
    margin-left: 17px;
    padding-top: 82px !important;
    padding-bottom: 20px !important;
  }

  .hero h1,
  .hero-compact h1,
  .hero-support h1,
  .contact-hero h1 {
    font-size: clamp(26px, 8vw, 34px) !important;
    line-height: 1.1 !important;
  }

  .hero p:not(.eyebrow) {
    display: block !important;
    max-width: 100% !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
  }

  .hero-actions {
    margin-top: 14px !important;
  }
}

/* Premium luxury-tech redesign pass */
:root {
  --bg: #02050b;
  --panel: rgba(9, 16, 28, 0.78);
  --panel-2: rgba(6, 12, 22, 0.92);
  --ink: #f6f9ff;
  --muted: #9aa8bb;
  --soft: #718198;
  --line: rgba(105, 142, 190, 0.18);
  --blue: #008cff;
  --blue-2: #41c3ff;
  --cyan: #7bdcff;
  --glow: 0 0 0 1px rgba(65, 195, 255, 0.16), 0 18px 70px rgba(0, 140, 255, 0.18), 0 0 90px rgba(0, 140, 255, 0.08);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  --radius: 18px;
  --max: 1240px;
  --mx: 0;
  --my: 0;
}

body {
  background:
    radial-gradient(circle at calc(50% + var(--mx) * 18%) calc(0% + var(--my) * 12%), rgba(0, 140, 255, 0.24), transparent 34vw),
    radial-gradient(circle at 88% 18%, rgba(65, 195, 255, 0.11), transparent 28vw),
    linear-gradient(180deg, #02050b 0%, #050914 42%, #02050b 100%);
  letter-spacing: 0;
}

body::before {
  background-image:
    linear-gradient(rgba(65, 195, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(65, 195, 255, 0.045) 1px, transparent 1px);
  background-size: 62px 62px;
  opacity: 0.22;
}

.site-header {
  top: 14px;
  right: 18px;
  left: 18px;
  width: auto;
  padding: 10px 18px;
  border: 1px solid rgba(139, 184, 255, 0.16);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(7, 13, 24, 0.78), rgba(4, 8, 16, 0.62));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px) saturate(1.35);
  transition: transform 240ms ease, background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(4, 8, 16, 0.86);
  border-color: rgba(65, 195, 255, 0.28);
  box-shadow: 0 18px 80px rgba(0, 0, 0, 0.42), 0 0 44px rgba(0, 140, 255, 0.08);
}

.brand-logo {
  width: 132px;
  height: 48px;
}

.nav-links {
  align-items: center;
  gap: 22px;
  font-size: 13px;
}

.nav-links > a,
.nav-item > a {
  position: relative;
  color: #b7c3d4;
  padding: 13px 0;
  transition: color 180ms ease;
}

.nav-links > a::after,
.nav-item > a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  display: block;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--blue-2), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.nav-links > a:hover,
.nav-links > a.is-active,
.nav-item > a:hover,
.nav-item > a.is-active {
  color: white;
}

.nav-links > a:hover::after,
.nav-links > a.is-active::after,
.nav-item > a:hover::after,
.nav-item > a.is-active::after {
  transform: scaleX(1);
}

.nav-item {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 60;
  display: grid;
  grid-template-columns: repeat(3, minmax(210px, 1fr));
  gap: 8px;
  width: min(760px, calc(100vw - 52px));
  padding: 14px;
  border: 1px solid rgba(65, 195, 255, 0.18);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(6, 13, 25, 0.96), rgba(3, 7, 14, 0.94));
  box-shadow: var(--shadow), 0 0 80px rgba(0, 140, 255, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px) scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(22px);
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.mega-menu a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: #dbeaff;
  background: rgba(255, 255, 255, 0.025);
}

.mega-menu a:hover {
  border-color: rgba(65, 195, 255, 0.24);
  background: rgba(0, 140, 255, 0.09);
  box-shadow: 0 0 30px rgba(0, 140, 255, 0.08);
}

.mega-menu svg {
  width: 22px;
  height: 22px;
  color: var(--blue-2);
}

.mega-menu strong {
  display: block;
  color: white;
  font-size: 13px;
}

.mega-menu small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.header-phone,
.btn {
  border: 1px solid rgba(65, 195, 255, 0.25);
  border-radius: 999px;
  letter-spacing: 0.02em;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.btn {
  min-height: 43px;
  padding: 0 18px;
}

.btn.primary,
.header-phone {
  background: linear-gradient(135deg, #0078ff, #21c3ff 55%, #8fe8ff);
  color: #00111f;
  box-shadow: 0 0 28px rgba(0, 140, 255, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.btn.ghost {
  color: #e8f4ff;
  background: rgba(255, 255, 255, 0.035);
}

.btn:hover,
.header-phone:hover {
  transform: translateY(-2px);
  border-color: rgba(65, 195, 255, 0.52);
  box-shadow: 0 0 34px rgba(0, 140, 255, 0.28), 0 16px 40px rgba(0, 0, 0, 0.26);
}

.hero {
  min-height: min(760px, 82vh);
  isolation: isolate;
  background: #02050b;
}

.hero-bg {
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.08) brightness(0.72);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-bg::after {
  display: none;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(2, 5, 11, 0.98) 0%, rgba(2, 5, 11, 0.82) 42%, rgba(2, 5, 11, 0.34) 74%, rgba(2, 5, 11, 0.82) 100%),
    linear-gradient(180deg, rgba(2, 5, 11, 0.18) 0%, rgba(2, 5, 11, 0.18) 52%, #02050b 100%);
}

.hero-glow {
  position: absolute;
  z-index: 0;
  width: 34vw;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(65, 195, 255, 0.34), rgba(0, 140, 255, 0.12) 38%, transparent 68%);
  filter: blur(18px);
  opacity: 0.75;
  pointer-events: none;
}

.hero-glow-a {
  top: 10%;
  left: 48%;
  transform: translate(calc(var(--mx) * 26px), calc(var(--my) * 22px));
}

.hero-glow-b {
  right: -12%;
  bottom: 10%;
  opacity: 0.42;
  transform: translate(calc(var(--mx) * -18px), calc(var(--my) * -16px));
}

.ambient-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.ambient-particles i {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(123, 220, 255, 0.72);
  box-shadow: 0 0 18px rgba(65, 195, 255, 0.86);
  animation: floatParticle 9s ease-in-out infinite;
}

.ambient-particles i:nth-child(1) { top: 24%; left: 18%; animation-delay: 0s; }
.ambient-particles i:nth-child(2) { top: 42%; left: 72%; animation-delay: -2s; }
.ambient-particles i:nth-child(3) { top: 68%; left: 52%; animation-delay: -4s; }
.ambient-particles i:nth-child(4) { top: 30%; left: 86%; animation-delay: -1s; }
.ambient-particles i:nth-child(5) { top: 76%; left: 24%; animation-delay: -5s; }
.ambient-particles i:nth-child(6) { top: 18%; left: 58%; animation-delay: -3s; }

.hero-copy {
  z-index: 2;
  max-width: 720px;
  padding-top: clamp(128px, 16vh, 178px);
  padding-bottom: 120px;
  opacity: 0;
  transform: translateY(22px);
  animation: fadeUp 760ms ease 120ms forwards;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.hero p:not(.eyebrow) {
  max-width: 640px;
  color: #c1cad8;
}

.hero-status {
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  bottom: 72px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(65, 195, 255, 0.17);
  border-radius: 18px;
  background: rgba(4, 10, 20, 0.72);
  box-shadow: var(--glow);
  backdrop-filter: blur(18px);
}

.hero-status span {
  display: grid;
  gap: 3px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.035);
}

.hero-status b {
  color: white;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 20px;
}

.hero-status small {
  color: var(--muted);
  font-size: 11px;
}

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 3;
  width: 28px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  transform: translateX(-50%);
  cursor: pointer;
}

.scroll-indicator span {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--blue-2);
  transform: translateX(-50%);
  animation: scrollDot 1.5s ease-in-out infinite;
}

.section,
.split,
.why,
.dual,
.detail-grid,
.process,
.story,
.values,
.contact-layout,
.article {
  width: min(var(--max), calc(100% - 48px));
}

.section {
  padding-top: 92px;
  padding-bottom: 92px;
}

.section-head {
  max-width: 760px;
}

.section h2,
.split h2,
.why h2,
.dual h2,
.final-cta h2,
.detail-grid h2,
.process h2,
.story h2,
.contact-panel h2 {
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.12;
}

.eyebrow {
  color: var(--blue-2);
  letter-spacing: 0.14em;
}

.stat-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(var(--max), calc(100% - 48px));
  margin: -44px auto 34px;
  overflow: hidden;
  border: 1px solid rgba(65, 195, 255, 0.16);
  border-radius: 20px;
  background: rgba(4, 10, 20, 0.78);
  box-shadow: var(--shadow), 0 0 70px rgba(0, 140, 255, 0.09);
  backdrop-filter: blur(20px);
}

.stat-strip article {
  display: grid;
  gap: 6px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
}

.stat-strip b {
  color: white;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.stat-strip span {
  color: var(--muted);
  font-size: 13px;
}

.split figure,
.split > div,
.dual article,
.detail-grid article,
.story article,
.contact-panel,
.contact-form,
.article,
.service-card,
.plan-card,
.blog-card,
.project-card,
.why-grid article,
.bullet-grid article,
.process article,
.values article,
.location-list a {
  border: 1px solid rgba(105, 142, 190, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(7, 14, 26, 0.72);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.service-card,
.project-card,
.plan-card,
.blog-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.service-card::before,
.project-card::before,
.plan-card::before,
.blog-card::before {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(65, 195, 255, 0), rgba(65, 195, 255, 0.46), rgba(65, 195, 255, 0));
  opacity: 0;
  transition: opacity 240ms ease;
  pointer-events: none;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.service-card:hover::before,
.project-card:hover::before,
.plan-card:hover::before,
.blog-card:hover::before {
  opacity: 1;
}

.service-card:hover,
.project-card:hover,
.plan-card:hover,
.blog-card:hover,
.why-grid article:hover,
.bullet-grid article:hover,
.process article:hover,
.location-list a:hover {
  transform: translateY(-7px);
  border-color: rgba(65, 195, 255, 0.36);
  box-shadow: var(--glow), 0 28px 70px rgba(0, 0, 0, 0.36);
}

.service-card-media::after,
.project-card::after {
  background:
    linear-gradient(180deg, rgba(2, 5, 11, 0.02), rgba(2, 5, 11, 0.78)),
    radial-gradient(circle at 70% 80%, rgba(0, 140, 255, 0.28), transparent 42%);
}

.service-card-media img,
.project-card img,
.blog-card img {
  will-change: transform;
}

.service-card-body {
  padding: 22px;
}

.service-card .icon,
.why-grid span,
.bullet-grid svg {
  background: linear-gradient(135deg, rgba(0, 140, 255, 0.9), rgba(65, 195, 255, 0.72));
  box-shadow: 0 0 24px rgba(0, 140, 255, 0.24);
}

.service-card b,
.plan-card b,
.project-card b {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-groups article,
.admin-toolbar,
.tech-rail,
.mini-service-links {
  border: 1px solid rgba(65, 195, 255, 0.15);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.service-groups article {
  padding: 22px;
}

.timeline-section > div {
  position: relative;
}

.timeline-section > div::before {
  position: absolute;
  top: 33px;
  right: 6%;
  left: 6%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(65, 195, 255, 0.42), transparent);
}

.timeline-section article {
  position: relative;
}

.coverage-map,
.contact-map {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 36px;
  align-items: center;
}

.coverage-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.map-orbit {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(65, 195, 255, 0.17);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 140, 255, 0.2), transparent 31%),
    radial-gradient(circle at 50% 50%, transparent 0 38%, rgba(65, 195, 255, 0.11) 39% 39.4%, transparent 40%),
    radial-gradient(circle at 50% 50%, transparent 0 62%, rgba(65, 195, 255, 0.08) 63% 63.4%, transparent 64%),
    rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.map-orbit.compact {
  min-height: 320px;
}

.map-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(65, 195, 255, 0.45);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(65, 195, 255, 0.92), rgba(0, 140, 255, 0.22) 58%, transparent 70%);
  box-shadow: 0 0 60px rgba(0, 140, 255, 0.42);
  transform: translate(-50%, -50%);
}

.map-orbit a {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  min-width: 92px;
  justify-content: center;
  padding: 8px 10px;
  border: 1px solid rgba(65, 195, 255, 0.18);
  border-radius: 999px;
  color: #e8f4ff;
  background: rgba(3, 8, 16, 0.76);
  font-size: 11px;
  transform:
    translate(-50%, -50%)
    rotate(calc(var(--i) * 30deg))
    translateX(clamp(118px, 16vw, 188px))
    rotate(calc(var(--i) * -30deg));
}

.tech-rail {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 22px;
}

.tech-rail span,
.mini-service-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border: 1px solid rgba(65, 195, 255, 0.18);
  border-radius: 999px;
  color: #e8f4ff;
  background: rgba(0, 140, 255, 0.06);
}

.mini-service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px;
  margin-top: 20px;
}

.mini-service-links svg {
  width: 17px;
  height: 17px;
  color: var(--blue-2);
}

.premium-testimonials,
.testimonials {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  border: 1px solid rgba(65, 195, 255, 0.15);
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 140, 255, 0.16), transparent 38%),
    rgba(255, 255, 255, 0.025);
}

.testimonials blockquote {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.testimonials blockquote.is-active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
}

.project-tabs {
  margin-top: -28px;
}

.masonry-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.masonry-grid .project-card:nth-child(2n) img {
  aspect-ratio: 4 / 5;
}

.masonry-grid .project-card:nth-child(3n) img {
  aspect-ratio: 16 / 10;
}

.contact-hero {
  min-height: 248px;
  max-height: 248px;
}

.contact-hero .hero-status,
.contact-hero .scroll-indicator {
  display: none;
}

.contact-hero .hero-copy {
  padding-top: 88px;
  padding-bottom: 28px;
}

.contact-layout {
  margin-top: 26px;
  gap: 24px;
}

.luxury-form {
  gap: 16px;
}

.luxury-form .field {
  position: relative;
  display: block;
}

.luxury-form .field span {
  position: absolute;
  top: 14px;
  left: 14px;
  color: #aebbd0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
  transition: transform 160ms ease, color 160ms ease, font-size 160ms ease;
}

.luxury-form input,
.luxury-form select,
.luxury-form textarea {
  padding-top: 22px;
  background:
    linear-gradient(180deg, rgba(12, 27, 48, 0.96), rgba(5, 12, 24, 0.98)),
    #07111f;
}

.luxury-form textarea {
  padding-top: 28px;
}

.luxury-form input:focus + span,
.luxury-form input:not(:placeholder-shown) + span,
.luxury-form textarea:focus + span,
.luxury-form textarea:not(:placeholder-shown) + span,
.luxury-form select:focus + span,
.luxury-form select + span {
  color: var(--blue-2);
  font-size: 10px;
  transform: translateY(-9px);
}

.contact-map {
  margin-top: 52px;
}

.mobile-menu {
  border: 1px solid rgba(65, 195, 255, 0.18);
  background: rgba(3, 8, 16, 0.94);
  backdrop-filter: blur(22px);
  transform: translateY(-12px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.mobile-menu.is-open {
  transform: translateY(0);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
}

@keyframes floatParticle {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.25; }
  50% { transform: translate3d(28px, -34px, 0); opacity: 0.95; }
}

@keyframes scrollDot {
  0% { transform: translate(-50%, 0); opacity: 0; }
  35% { opacity: 1; }
  100% { transform: translate(-50%, 18px); opacity: 0; }
}

@media (max-width: 1040px) {
  .site-header {
    top: 10px;
    right: 12px;
    left: 12px;
  }

  .nav-links,
  .header-phone {
    display: none;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .hero {
    min-height: 68vh;
  }

  .hero h1 {
    font-size: clamp(36px, 6vw, 48px);
  }

  .hero-status {
    right: 24px;
    bottom: 60px;
    grid-template-columns: 1fr;
    max-width: 220px;
  }

  .stat-strip,
  .coverage-map,
  .contact-map {
    grid-template-columns: 1fr 1fr;
  }

  .location-list.large {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1320px) and (min-width: 1041px) {
  .nav-links {
    gap: 17px;
    font-size: 12.5px;
  }

  .header-phone {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 8px 12px;
    border-radius: 14px;
  }

  .brand-logo {
    width: 116px;
    height: 42px;
  }

  .hero {
    min-height: 66vh;
  }

  .hero-copy {
    width: min(100% - 34px, var(--max));
    padding-top: 112px;
    padding-bottom: 94px;
  }

  .hero h1 {
    font-size: clamp(32px, 10vw, 38px);
    line-height: 1.08;
  }

  .hero-status {
    right: 17px;
    bottom: 54px;
    left: 17px;
    grid-template-columns: repeat(3, 1fr);
    max-width: none;
  }

  .hero-status span {
    padding: 10px;
  }

  .hero-status small {
    display: none;
  }

  .stat-strip,
  .coverage-map,
  .contact-map,
  .contact-layout,
  .masonry-grid {
    grid-template-columns: 1fr;
  }

  .stat-strip {
    margin-top: -32px;
  }

  .stat-strip article {
    padding: 16px;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section h2,
  .split h2,
  .why h2,
  .dual h2,
  .final-cta h2,
  .detail-grid h2,
  .process h2,
  .story h2,
  .contact-panel h2 {
    font-size: clamp(26px, 8vw, 32px);
  }

  .map-orbit {
    min-height: 300px;
  }

  .map-orbit a {
    min-width: 72px;
    font-size: 10px;
    transform:
      translate(-50%, -50%)
      rotate(calc(var(--i) * 30deg))
      translateX(112px)
      rotate(calc(var(--i) * -30deg));
  }

  .contact-hero {
    min-height: 178px;
    max-height: 178px;
  }

  .contact-hero .hero-copy {
    padding-top: 76px;
    padding-bottom: 18px;
  }

  .contact-hero h1 {
    font-size: clamp(26px, 8vw, 32px);
  }

  .contact-hero p:not(.eyebrow) {
    display: none;
  }
}

/* Hero background system - absolute final override */
.hero {
  display: flex !important;
  align-items: center !important;
  min-height: 420px !important;
  max-height: 420px !important;
  height: 420px !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 168, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #02070d, #07111f) !important;
}

.hero.hero-compact,
.hero.hero-support {
  min-height: 360px !important;
  max-height: 360px !important;
  height: 360px !important;
}

.hero.contact-hero {
  min-height: 260px !important;
  max-height: 260px !important;
  height: 260px !important;
  margin-bottom: 18px !important;
}

.hero-bg,
.hero-bg-home,
.hero-bg-services,
.hero-bg-service-detail,
.hero-bg-support,
.hero-bg-contact,
.hero-bg-location,
.hero-bg-projects {
  background-image:
    var(--hero-image),
    radial-gradient(circle at 20% 20%, rgba(0, 168, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #02070d, #07111f) !important;
  background-size: cover !important;
  background-position: var(--hero-position, center center) !important;
  background-repeat: no-repeat !important;
  filter: saturate(1.02) contrast(1.04) brightness(0.86) !important;
  transform: none !important;
  animation: none !important;
}

.hero-bg-home { --hero-position: center center; }
.hero-bg-services { --hero-position: center 42%; }
.hero-bg-service-detail,
.hero-bg-support { --hero-position: center 35%; }
.hero-bg-contact { --hero-position: center 45%; }
.hero-bg-location { --hero-position: center 38%; }
.hero-bg-projects { --hero-position: center center; }

.hero-veil {
  background:
    linear-gradient(90deg, rgba(2, 8, 18, 0.92), rgba(2, 8, 18, 0.65) 55%, rgba(2, 8, 18, 0.35)),
    linear-gradient(180deg, rgba(2, 8, 18, 0.12), rgba(2, 8, 18, 0.82) 100%) !important;
}

.hero-copy {
  width: min(var(--max), calc(100% - 48px)) !important;
  max-width: 720px !important;
  margin-right: auto !important;
  margin-left: max(24px, calc((100vw - var(--max)) / 2 + 24px)) !important;
  padding-top: 108px !important;
  padding-bottom: 44px !important;
  text-align: left !important;
}

.hero-compact .hero-copy,
.hero-support .hero-copy {
  padding-top: 92px !important;
  padding-bottom: 34px !important;
}

.contact-hero .hero-copy {
  padding-top: 84px !important;
  padding-bottom: 20px !important;
}

.hero h1 {
  max-width: 720px !important;
  font-size: clamp(34px, 4.1vw, 52px) !important;
  line-height: 1.08 !important;
}

.hero-compact h1,
.hero-support h1 {
  font-size: clamp(30px, 3.6vw, 46px) !important;
}

.contact-hero h1 {
  font-size: clamp(28px, 3vw, 38px) !important;
}

.hero p:not(.eyebrow) {
  max-width: 680px !important;
  color: #c7d2e2 !important;
  font-size: clamp(15.5px, 1.25vw, 17px) !important;
  line-height: 1.62 !important;
}

.hero-status,
.scroll-indicator {
  display: none !important;
}

.hero + .stat-strip {
  margin-top: 28px !important;
}

@media (max-width: 760px) {
  .hero,
  .hero.hero-compact,
  .hero.hero-support,
  .hero.contact-hero {
    min-height: 260px !important;
    max-height: 260px !important;
    height: 260px !important;
  }

  .hero-bg,
  .hero-bg-home,
  .hero-bg-services,
  .hero-bg-service-detail,
  .hero-bg-support,
  .hero-bg-contact,
  .hero-bg-location,
  .hero-bg-projects {
    background-position: center center !important;
  }

  .hero-copy,
  .hero-compact .hero-copy,
  .hero-support .hero-copy,
  .contact-hero .hero-copy {
    width: min(100% - 34px, var(--max)) !important;
    margin-left: 17px !important;
    padding-top: 82px !important;
    padding-bottom: 20px !important;
  }

  .hero h1,
  .hero-compact h1,
  .hero-support h1,
  .contact-hero h1 {
    font-size: clamp(26px, 8vw, 34px) !important;
    line-height: 1.1 !important;
  }

  .hero p:not(.eyebrow) {
    display: block !important;
    max-width: 100% !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
  }
}

/* Hero background system - final enforcement after legacy overrides */
.hero {
  display: flex !important;
  align-items: center !important;
  min-height: 420px !important;
  max-height: 420px !important;
  height: 420px !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 168, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #02070d, #07111f) !important;
}

.hero.hero-compact,
.hero.hero-support {
  min-height: 360px !important;
  max-height: 360px !important;
  height: 360px !important;
}

.hero.contact-hero {
  min-height: 260px !important;
  max-height: 260px !important;
  height: 260px !important;
  margin-bottom: 18px !important;
}

.hero-bg,
.hero-bg-home,
.hero-bg-services,
.hero-bg-service-detail,
.hero-bg-support,
.hero-bg-contact,
.hero-bg-location,
.hero-bg-projects {
  background-image:
    var(--hero-image),
    radial-gradient(circle at 20% 20%, rgba(0, 168, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #02070d, #07111f) !important;
  background-size: cover !important;
  background-position: var(--hero-position, center center) !important;
  background-repeat: no-repeat !important;
  filter: saturate(1.02) contrast(1.04) brightness(0.86) !important;
  transform: none !important;
  animation: none !important;
}

.hero-bg-home {
  --hero-position: center center;
}

.hero-bg-services {
  --hero-position: center 42%;
}

.hero-bg-service-detail,
.hero-bg-support {
  --hero-position: center 35%;
}

.hero-bg-contact {
  --hero-position: center 45%;
}

.hero-bg-location {
  --hero-position: center 38%;
}

.hero-bg-projects {
  --hero-position: center center;
}

.hero-veil {
  background:
    linear-gradient(90deg, rgba(2, 8, 18, 0.92), rgba(2, 8, 18, 0.65) 55%, rgba(2, 8, 18, 0.35)),
    linear-gradient(180deg, rgba(2, 8, 18, 0.12), rgba(2, 8, 18, 0.82) 100%) !important;
}

.hero-copy {
  width: min(var(--max), calc(100% - 48px)) !important;
  max-width: 720px !important;
  margin-right: auto !important;
  margin-left: max(24px, calc((100vw - var(--max)) / 2 + 24px)) !important;
  padding-top: 108px !important;
  padding-bottom: 44px !important;
  text-align: left !important;
}

.hero-compact .hero-copy,
.hero-support .hero-copy {
  padding-top: 92px !important;
  padding-bottom: 34px !important;
}

.contact-hero .hero-copy {
  padding-top: 84px !important;
  padding-bottom: 20px !important;
}

.hero h1 {
  max-width: 720px !important;
  font-size: clamp(34px, 4.1vw, 52px) !important;
  line-height: 1.08 !important;
}

.hero-compact h1,
.hero-support h1 {
  font-size: clamp(30px, 3.6vw, 46px) !important;
}

.contact-hero h1 {
  font-size: clamp(28px, 3vw, 38px) !important;
}

.hero p:not(.eyebrow) {
  max-width: 680px !important;
  color: #c7d2e2 !important;
  font-size: clamp(15.5px, 1.25vw, 17px) !important;
  line-height: 1.62 !important;
}

.hero-status,
.scroll-indicator {
  display: none !important;
}

.hero + .stat-strip {
  margin-top: 28px !important;
}

@media (max-width: 760px) {
  .hero,
  .hero.hero-compact,
  .hero.hero-support,
  .hero.contact-hero {
    min-height: 260px !important;
    max-height: 260px !important;
    height: 260px !important;
  }

  .hero-bg,
  .hero-bg-home,
  .hero-bg-services,
  .hero-bg-service-detail,
  .hero-bg-support,
  .hero-bg-contact,
  .hero-bg-location,
  .hero-bg-projects {
    background-position: center center !important;
  }

  .hero-copy,
  .hero-compact .hero-copy,
  .hero-support .hero-copy,
  .contact-hero .hero-copy {
    width: min(100% - 34px, var(--max)) !important;
    margin-left: 17px !important;
    padding-top: 82px !important;
    padding-bottom: 20px !important;
  }

  .hero h1,
  .hero-compact h1,
  .hero-support h1,
  .contact-hero h1 {
    font-size: clamp(26px, 8vw, 34px) !important;
    line-height: 1.1 !important;
  }

  .hero p:not(.eyebrow) {
    display: block !important;
    max-width: 100% !important;
    font-size: 14px !important;
    line-height: 1.45 !important;
  }
}

/* Contact page compact hero - final override */
.contact-hero {
  min-height: 260px;
  max-height: 260px;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.contact-hero .hero-bg::after {
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(7, 11, 18, 0.86) 52%, rgba(7, 11, 18, 0.58) 100%),
    linear-gradient(180deg, rgba(7, 11, 18, 0.24), var(--bg) 100%);
}

.contact-hero .hero-copy {
  padding-top: 78px;
  padding-bottom: 26px;
}

.contact-hero h1 {
  font-size: clamp(30px, 3.2vw, 42px);
}

.contact-hero p:not(.eyebrow) {
  max-width: 620px;
}

.contact-hero + .contact-layout {
  margin-top: 0;
}

@media (max-width: 760px) {
  .contact-hero {
    min-height: 180px;
    max-height: 180px;
    margin-bottom: 16px;
  }

  .contact-hero .hero-copy {
    padding-top: 76px;
    padding-bottom: 18px;
  }

  .contact-hero .eyebrow {
    margin-bottom: 10px;
  }

  .contact-hero h1 {
    font-size: clamp(25px, 7vw, 30px);
  }

  .contact-hero p:not(.eyebrow) {
    display: none;
  }
}

@media (min-width: 1281px) {
  .site-header {
    padding-right: calc((100vw - var(--max)) / 2 + 24px);
    padding-left: calc((100vw - var(--max)) / 2 + 24px);
  }
}

/* UI refinement pass */
.hero {
  min-height: 70vh;
}

.hero-copy {
  max-width: 680px;
  padding-top: clamp(112px, 13vh, 148px);
  padding-bottom: 62px;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(40px, 4.8vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.018em;
}

.section h2,
.split h2,
.why h2,
.dual h2,
.final-cta h2,
.detail-grid h2,
.process h2,
.story h2,
.contact-panel h2 {
  max-width: 850px;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.16;
  letter-spacing: -0.014em;
}

.section p,
.split p,
.why p,
.dual p,
.final-cta p,
.detail-grid p,
.process p,
.story p,
.contact-panel p,
.article p,
.hero p:not(.eyebrow) {
  max-width: 780px;
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.72;
}

.section {
  padding-top: 84px;
  padding-bottom: 84px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.split,
.dual,
.detail-grid,
.story,
.contact-layout {
  gap: 22px;
  margin-top: 18px;
}

.split figure {
  min-height: 280px;
}

.split > div,
.dual article,
.detail-grid article,
.story article,
.contact-panel,
.article {
  padding: clamp(26px, 4vw, 40px);
}

.about-preview > div,
.story article {
  max-width: 850px;
}

.btn {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 9px;
  font-size: 12px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  box-shadow: 0 0 18px rgba(0, 153, 224, 0.28), 0 0 44px rgba(0, 153, 224, 0.12);
}

.btn:disabled,
.btn[disabled] {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.service-card h3,
.plan-card h3,
.project-card h3,
.blog-card h3,
.why-grid h3,
.bullet-grid h3,
.process h3,
.values h3,
.service-groups h3 {
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.2;
}

.service-card p,
.plan-card p,
.project-card p,
.blog-card p,
.why-grid p,
.service-groups p {
  font-size: 14.5px;
  line-height: 1.65;
}

.contact-form {
  gap: 18px;
  padding: clamp(22px, 3vw, 30px);
}

.contact-form label,
.location-tools label {
  gap: 10px;
  letter-spacing: 0.06em;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.location-tools input,
.location-tools select {
  min-height: 46px;
  border: 1px solid rgba(38, 180, 255, 0.28);
  border-radius: 12px;
  color: #f7fbff;
  background:
    linear-gradient(180deg, rgba(12, 27, 48, 0.96), rgba(7, 17, 31, 0.98)),
    #07111f;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), 0 0 0 rgba(0, 153, 224, 0);
  color-scheme: dark;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, transform 180ms ease;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.location-tools input::placeholder {
  color: #b8c7dc;
}

.contact-form select,
.location-tools select {
  appearance: none;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, #26b4ff 50%),
    linear-gradient(135deg, #26b4ff 50%, transparent 50%),
    linear-gradient(180deg, rgba(12, 27, 48, 0.96), rgba(7, 17, 31, 0.98));
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%,
    0 0;
  background-size:
    6px 6px,
    6px 6px,
    100% 100%;
  background-repeat: no-repeat;
}

.contact-form select option,
.location-tools select option {
  color: white;
  background: #07111f;
}

.contact-form select option:checked,
.location-tools select option:checked {
  color: white;
  background: #0099e0;
}

.contact-form select option:hover,
.location-tools select option:hover {
  color: white;
  background: #0ea5ff;
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover,
.location-tools input:hover,
.location-tools select:hover {
  border-color: rgba(38, 180, 255, 0.42);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.location-tools input:focus,
.location-tools select:focus {
  border-color: var(--blue-2);
  background:
    linear-gradient(180deg, rgba(13, 32, 58, 0.98), rgba(7, 17, 31, 1)),
    #07111f;
  box-shadow: 0 0 0 3px rgba(0, 153, 224, 0.16), 0 0 26px rgba(0, 153, 224, 0.12);
  transform: translateY(-1px);
}

.contact-form .btn.primary {
  min-height: 44px;
}

.final-cta {
  margin-top: 62px;
  margin-bottom: 62px;
  padding: clamp(28px, 4.6vw, 46px);
}

.service-card,
.plan-card,
.blog-card,
.project-card,
.why-grid article,
.bullet-grid article,
.process article,
.location-list a {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.service-card:hover,
.plan-card:hover,
.blog-card:hover,
.project-card:hover,
.why-grid article:hover,
.bullet-grid article:hover,
.process article:hover,
.location-list a:hover {
  transform: translateY(-5px);
}

@media (max-width: 1040px) {
  .hero h1 {
    font-size: clamp(36px, 5.2vw, 48px);
  }

  .section h2,
  .split h2,
  .why h2,
  .dual h2,
  .final-cta h2,
  .detail-grid h2,
  .process h2,
  .story h2,
  .contact-panel h2 {
    font-size: clamp(29px, 4.2vw, 38px);
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 62vh;
  }

  .hero-copy {
    padding-top: 112px;
    padding-bottom: 50px;
  }

  .hero h1 {
    font-size: clamp(30px, 8vw, 34px);
    line-height: 1.13;
  }

  .section h2,
  .split h2,
  .why h2,
  .dual h2,
  .final-cta h2,
  .detail-grid h2,
  .process h2,
  .story h2,
  .contact-panel h2 {
    font-size: clamp(24px, 7vw, 28px);
    line-height: 1.18;
  }

  .section p,
  .split p,
  .why p,
  .dual p,
  .final-cta p,
  .detail-grid p,
  .process p,
  .story p,
  .contact-panel p,
  .article p,
  .hero p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.65;
  }

  .section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .section-head {
    margin-bottom: 30px;
  }

  .contact-form {
    gap: 14px;
    padding: 18px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  .location-tools input,
  .location-tools select {
    min-height: 44px;
    font-size: 16px;
  }

  .split > div,
  .dual article,
  .detail-grid article,
  .story article,
  .contact-panel,
  .article {
    padding: 22px 18px;
  }

  .btn {
    min-height: 40px;
  }

  .service-card h3,
  .plan-card h3,
  .project-card h3,
  .blog-card h3,
  .why-grid h3,
  .bullet-grid h3,
  .process h3,
  .values h3,
  .service-groups h3 {
    font-size: 18px;
  }
}

/* Contact page compact hero - final override */
.contact-hero {
  min-height: 260px;
  max-height: 260px;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.contact-hero .hero-bg::after {
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(7, 11, 18, 0.86) 52%, rgba(7, 11, 18, 0.58) 100%),
    linear-gradient(180deg, rgba(7, 11, 18, 0.24), var(--bg) 100%);
}

.contact-hero .hero-copy {
  padding-top: 78px;
  padding-bottom: 26px;
}

.contact-hero h1 {
  font-size: clamp(30px, 3.2vw, 42px);
}

.contact-hero p:not(.eyebrow) {
  max-width: 620px;
}

.contact-hero + .contact-layout {
  margin-top: 0;
}

@media (max-width: 760px) {
  .contact-hero {
    min-height: 180px;
    max-height: 180px;
    margin-bottom: 16px;
  }

  .contact-hero .hero-copy {
    padding-top: 76px;
    padding-bottom: 18px;
  }

  .contact-hero .eyebrow {
    margin-bottom: 10px;
  }

  .contact-hero h1 {
    font-size: clamp(25px, 7vw, 30px);
  }

  .contact-hero p:not(.eyebrow) {
    display: none;
  }
}
/* Admin blog editor */
.admin-blog-page {
  min-height: 100vh;
  padding: 132px max(22px, calc((100vw - var(--max)) / 2)) 72px;
  background:
    radial-gradient(circle at 20% 8%, rgba(0, 153, 224, 0.16), transparent 34%),
    linear-gradient(135deg, #02070d, #07111f 48%, #02070d);
}

.admin-blog-login,
.admin-blog-layout,
.admin-blog-head {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.admin-blog-login {
  max-width: 560px;
  padding: 30px;
  border: 1px solid rgba(65, 195, 255, 0.24);
  border-radius: 22px;
  background: rgba(6, 14, 26, 0.82);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.32), 0 0 40px rgba(0, 153, 224, 0.12);
}

.admin-blog-login h1,
.admin-blog-head h1 {
  margin: 0;
  color: #fff;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
}

.admin-blog-login p,
.admin-blog-head p,
.admin-save-note {
  color: var(--muted);
  line-height: 1.65;
}

.admin-blog-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
  gap: 22px;
  margin-top: 28px;
}

.admin-blog-list,
.admin-blog-editor {
  min-width: 0;
  border: 1px solid rgba(65, 195, 255, 0.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 153, 224, 0.12), transparent 34%),
    rgba(6, 14, 26, 0.74);
  box-shadow: 0 22px 78px rgba(0, 0, 0, 0.28);
}

.admin-blog-list {
  padding: 16px;
}

.admin-blog-tools {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.admin-blog-tools input {
  width: 100%;
  border: 1px solid rgba(65, 195, 255, 0.18);
  border-radius: 14px;
  padding: 0 14px;
  color: #fff;
  background: rgba(3, 9, 18, 0.72);
}

.admin-blog-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.admin-blog-row + .admin-blog-row {
  margin-top: 10px;
}

.admin-blog-row h3 {
  margin: 4px 0;
  color: #fff;
  font-size: 16px;
}

.admin-blog-row span,
.admin-blog-row small {
  color: #9fb4cf;
  font-size: 12px;
}

.admin-blog-row button {
  display: block;
  width: 74px;
  margin-bottom: 8px;
  border: 1px solid rgba(65, 195, 255, 0.22);
  border-radius: 999px;
  color: #e9f7ff;
  background: rgba(0, 153, 224, 0.1);
  cursor: pointer;
}

.admin-blog-editor {
  padding: 20px;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-form-grid .wide {
  grid-column: 1 / -1;
}

.admin-upload,
.admin-published {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 14px;
  border: 1px solid rgba(65, 195, 255, 0.16);
  border-radius: 14px;
  color: #dff4ff;
  background: rgba(255, 255, 255, 0.035);
}

.admin-preview-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 0.55fr);
  gap: 18px;
  margin-top: 18px;
}

.admin-preview-panel figure {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #02070d;
}

.admin-preview-panel img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.admin-markdown-preview {
  max-height: 240px;
  overflow: auto;
  padding: 16px;
  border: 1px solid rgba(65, 195, 255, 0.16);
  border-radius: 16px;
  color: #c9d8ea;
  background: rgba(0, 0, 0, 0.2);
}

.admin-editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.is-filtered-out {
  display: none !important;
}

@media (max-width: 900px) {
  .admin-blog-layout,
  .admin-preview-panel,
  .admin-form-grid {
    grid-template-columns: 1fr;
  }
}
