:root {
  --bg: #03050a;
  --bg-2: #071018;
  --panel: rgba(9, 20, 29, 0.88);
  --panel-2: rgba(12, 29, 39, 0.78);
  --cyan: #28e6e1;
  --cyan-2: #11bfc7;
  --cyan-soft: rgba(40, 230, 225, 0.14);
  --white: #f5fbff;
  --muted: #93a8b5;
  --line: rgba(146, 242, 240, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.46);
  --radius: 26px;
  --radius-sm: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 8%, rgba(24, 198, 202, 0.08), transparent 24%),
    linear-gradient(180deg, #03050a 0%, #050910 45%, #03050a 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section-pad {
  padding: 110px 0;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  z-index: 50;
  background-image:
    linear-gradient(rgba(255,255,255,.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.35) 1px, transparent 1px);
  background-size: 4px 4px;
  mix-blend-mode: soft-light;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(3, 7, 12, .84);
  border-color: rgba(40, 230, 225, .14);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .25);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 0 12px rgba(40,230,225,.2));
}

.brand span {
  display: grid;
}

.brand strong {
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  position: relative;
  color: #c7d4db;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(40,230,225,.7);
  transition: right .25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  right: 0;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  cursor: pointer;
  padding: 11px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 99px;
  transition: transform .25s ease, opacity .25s ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 82px;
}

.hero-grid,
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(40,230,225,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40,230,225,.055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent 4%, black 35%, black 75%, transparent 100%);
}

.hero-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 50%, var(--bg) 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.glow-one {
  width: 420px;
  height: 420px;
  right: 8%;
  top: 24%;
  background: rgba(0, 240, 235, .1);
}

.glow-two {
  width: 260px;
  height: 260px;
  left: 3%;
  bottom: 4%;
  background: rgba(0, 122, 255, .08);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 50px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.hero h1,
.section-heading h2,
.specialty-copy h2,
.location-card h2,
.final-copy h2 {
  margin: 14px 0 0;
  font-weight: 950;
  line-height: .95;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 640px;
  font-size: clamp(58px, 8vw, 112px);
}

.hero h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--cyan);
  text-shadow: 0 0 24px rgba(40,230,225,.15);
}

.hero-lead {
  max-width: 590px;
  margin: 28px 0 0;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 760;
  letter-spacing: -.02em;
}

.hero-sub {
  margin: 8px 0 0;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

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

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
  overflow: hidden;
  position: relative;
}

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

.btn-primary {
  color: #011416;
  background: linear-gradient(135deg, #64f8f2, var(--cyan-2));
  box-shadow: 0 10px 30px rgba(40,230,225,.2);
}

.btn-primary:hover {
  box-shadow: 0 12px 40px rgba(40,230,225,.3);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: rgba(40,230,225,.35);
  background: rgba(40,230,225,.06);
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-phones a {
  min-width: 205px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(7,16,24,.58);
  transition: border-color .25s ease, transform .25s ease, background .25s ease;
}

.hero-phones a:hover {
  transform: translateY(-2px);
  border-color: rgba(40,230,225,.34);
  background: rgba(11,33,41,.75);
}

.phone-icon {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #021517;
  background: var(--cyan);
  font-size: 16px;
}

.hero-phones a > span:last-child {
  display: grid;
}

.hero-phones small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-phones strong {
  font-size: 15px;
}

.hero-visual {
  min-height: 630px;
  display: grid;
  place-items: center;
  position: relative;
}

.logo-stage {
  position: relative;
  width: min(100%, 650px);
  aspect-ratio: 1.04 / 1;
  display: grid;
  place-items: center;
}

.logo-frame {
  position: relative;
  width: 88%;
  z-index: 3;
  border-radius: 34px;
}

.logo-frame::before {
  content: "";
  position: absolute;
  inset: 8% 7%;
  z-index: -1;
  background: rgba(40,230,225,.13);
  filter: blur(46px);
  border-radius: 50%;
}

.logo-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 46px rgba(0,0,0,.42));
}

.orbit {
  position: absolute;
  border: 1px solid rgba(40,230,225,.16);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}

.orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
}

.orbit-a {
  width: 92%;
  height: 92%;
}

.orbit-b {
  width: 72%;
  height: 72%;
  animation-duration: 13s;
  animation-direction: reverse;
  opacity: .7;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: 34px;
  height: 54px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px;
}

.scroll-cue span {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 5px;
  height: 9px;
  transform: translateX(-50%);
  border-radius: 5px;
  background: var(--cyan);
  animation: cue 1.8s ease infinite;
}

@keyframes cue {
  0% { opacity: 0; transform: translate(-50%,0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%,20px); }
}

.intro {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255,255,255,.018), rgba(40,230,225,.025));
}

.intro-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 70px;
  align-items: end;
}

.section-heading h2,
.specialty-copy h2,
.location-card h2,
.final-copy h2 {
  font-size: clamp(38px, 5vw, 70px);
}

.intro-copy {
  padding-left: 30px;
  border-left: 1px solid rgba(40,230,225,.28);
}

.intro-copy p {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 740;
}

.intro-copy p + p {
  margin-top: 10px;
  color: var(--cyan);
}

.services {
  position: relative;
}

.section-heading.centered {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow::before {
  display: none;
}

.section-heading p {
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 54px;
}

.service-card {
  position: relative;
  min-height: 225px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(145deg, rgba(255,255,255,.035), rgba(40,230,225,.01)),
    rgba(7,15,23,.68);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease, background .3s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -55px;
  top: -55px;
  border-radius: 50%;
  background: var(--cyan-soft);
  filter: blur(12px);
  transition: transform .3s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(40,230,225,.42);
  box-shadow: 0 18px 45px rgba(0,0,0,.28), inset 0 0 24px rgba(40,230,225,.04);
  background:
    linear-gradient(145deg, rgba(40,230,225,.06), rgba(255,255,255,.025)),
    rgba(7,15,23,.82);
}

.service-card:hover::before {
  transform: scale(1.25);
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(40,230,225,.22);
  border-radius: 15px;
  background: rgba(40,230,225,.065);
  box-shadow: inset 0 0 18px rgba(40,230,225,.04);
}

.service-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  margin: 0;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -.02em;
}

.specialty {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 50%, rgba(40,230,225,.07), transparent 30%),
    linear-gradient(120deg, rgba(5,10,16,.9), rgba(7,18,27,.88));
}

.circuit-lines {
  position: absolute;
  inset: 0;
  opacity: .18;
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(40,230,225,.25) 50%, transparent 50.3%),
    linear-gradient(0deg, transparent 49.7%, rgba(40,230,225,.2) 50%, transparent 50.3%);
  background-size: 190px 190px;
}

.specialty-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}

.specialty-copy p {
  margin: 20px 0 0;
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.specialty-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.specialty-tags span {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: #d9e7ec;
  font-size: 13px;
  font-weight: 700;
}

.tech-panel {
  min-height: 430px;
  position: relative;
  display: grid;
  place-items: center;
}

.tech-ring {
  width: min(76vw, 330px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(40,230,225,.22);
  border-radius: 50%;
  box-shadow:
    0 0 0 28px rgba(40,230,225,.025),
    0 0 0 58px rgba(40,230,225,.02),
    0 0 80px rgba(40,230,225,.08);
  animation: pulse-ring 4s ease-in-out infinite;
}

@keyframes pulse-ring {
  50% { box-shadow: 0 0 0 32px rgba(40,230,225,.03), 0 0 0 65px rgba(40,230,225,.018), 0 0 100px rgba(40,230,225,.12); }
}

.tech-core {
  width: 62%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(40,230,225,.3);
  background: radial-gradient(circle, rgba(40,230,225,.12), rgba(6,15,23,.95) 68%);
}

.tech-core svg {
  width: 62%;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 2;
  stroke-linecap: round;
}

.tech-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 15px var(--cyan);
}

.dot-a { left: 12%; top: 25%; }
.dot-b { right: 11%; bottom: 24%; }
.dot-c { right: 22%; top: 16%; }

.contact-band {
  position: relative;
  padding: 92px 0;
  background:
    linear-gradient(135deg, rgba(22,193,199,.19), rgba(5,12,18,.88)),
    #061017;
  border-bottom: 1px solid var(--line);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 46px;
}

.contact-card {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(40,230,225,.22);
  border-radius: 20px;
  background: rgba(2,8,12,.52);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.contact-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -50% 40%;
  height: 120px;
  background: rgba(40,230,225,.08);
  filter: blur(25px);
  transform: rotate(-10deg);
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(40,230,225,.52);
  background: rgba(4,15,21,.78);
}

.contact-label {
  display: block;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-card strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(27px, 3vw, 42px);
  letter-spacing: -.025em;
}

.contact-action {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 22px;
  color: #c8dce2;
  font-size: 13px;
  font-weight: 750;
}

.contact-action b {
  color: var(--cyan);
  transition: transform .25s ease;
}

.contact-card:hover .contact-action b {
  transform: translateX(5px);
}

.location {
  position: relative;
}

.location-grid {
  display: grid;
  grid-template-columns: .94fr 1.06fr;
  gap: 46px;
  align-items: stretch;
}

.location-card {
  padding: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.03), rgba(40,230,225,.018));
}

.location-card h2 {
  font-size: clamp(38px, 4.6vw, 64px);
}

.address-line {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 32px 0;
  color: #c4d5dc;
}

.address-line svg {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.6;
}

.address-line p {
  max-width: 410px;
  margin: 0;
  font-size: 18px;
  line-height: 1.65;
}

.location-visual {
  position: relative;
  min-height: 440px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 52% 50%, rgba(40,230,225,.10), transparent 15%),
    #071018;
}

.location-visual .map-grid {
  mask-image: none;
  opacity: .75;
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(40,230,225,.3);
  background: rgba(4,13,20,.88);
  box-shadow: 0 0 0 16px rgba(40,230,225,.04), 0 0 50px rgba(40,230,225,.15);
}

.map-pin svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 1.5;
}

.map-line {
  position: absolute;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(40,230,225,.34), transparent);
}

.line-one {
  left: 4%;
  top: 35%;
  transform: rotate(13deg);
}

.line-two {
  right: 3%;
  bottom: 28%;
  transform: rotate(-17deg);
}

.final-cta {
  position: relative;
  padding: 95px 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #050b10, #020407);
}

.final-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  left: -100px;
  top: -180px;
  border-radius: 50%;
  background: rgba(40,230,225,.07);
  filter: blur(90px);
}

.final-grid {
  position: relative;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 56px;
  align-items: center;
}

.final-logo {
  display: grid;
  place-items: center;
}

.final-logo img {
  width: min(100%, 390px);
  filter: drop-shadow(0 20px 35px rgba(0,0,0,.42));
}

.final-copy p {
  margin: 18px 0 0;
  font-size: 20px;
  font-weight: 700;
}

.final-copy .final-sub {
  margin-top: 6px;
  color: var(--cyan);
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.final-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 26px 0 30px;
}

.final-phones a {
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(40,230,225,.3);
  font-size: 18px;
  font-weight: 800;
}

.site-footer {
  padding: 38px 0;
  border-top: 1px solid var(--line);
  background: #010305;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 30px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
}

.footer-brand div {
  display: grid;
}

.footer-brand strong {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.footer-brand span,
.footer-info,
.footer-nav {
  color: var(--muted);
  font-size: 12px;
}

.footer-info {
  display: grid;
  gap: 4px;
}

.footer-info p {
  margin: 0 0 4px;
}

.footer-info a:hover,
.footer-nav a:hover {
  color: var(--cyan);
}

.footer-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: none;
}

.floating-main {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: #001315;
  background: var(--cyan);
  box-shadow: 0 12px 35px rgba(40,230,225,.28);
  font-size: 22px;
}

.floating-options {
  position: absolute;
  right: 0;
  bottom: 70px;
  width: 190px;
  display: grid;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .25s ease;
}

.floating-call.open .floating-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-options a {
  padding: 12px 14px;
  border: 1px solid rgba(40,230,225,.2);
  border-radius: 12px;
  background: rgba(3,10,15,.95);
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .7s ease, transform .7s ease;
}

/* Las animaciones solo se activan si JavaScript cargó correctamente.
   Así el sitio nunca queda en blanco si el navegador bloquea el JS. */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 60px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero h1,
  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-phones {
    justify-content: center;
  }

  .hero-visual {
    min-height: 500px;
  }

  .logo-stage {
    width: min(78vw, 560px);
  }

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

  .specialty-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .tech-panel {
    min-height: 390px;
  }

  .final-grid {
    grid-template-columns: .9fr 1.1fr;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
    position: relative;
    z-index: 110;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 0;
    padding: 120px 34px 42px;
    display: grid;
    align-content: start;
    gap: 8px;
    background: rgba(2,6,10,.97);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: .25s ease;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 19px;
  }

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

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .intro-copy {
    padding-left: 0;
    border-left: 0;
  }

  .contact-grid,
  .final-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .final-logo {
    order: 2;
  }

  .final-copy {
    text-align: center;
  }

  .final-copy .eyebrow {
    justify-content: center;
  }

  .final-copy .eyebrow::before {
    display: none;
  }

  .final-phones {
    justify-content: center;
  }

  .footer-grid {
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-nav {
    justify-content: center;
  }

  .floating-call {
    display: block;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section-pad {
    padding: 78px 0;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand strong {
    font-size: 13px;
  }

  .brand small {
    font-size: 9px;
  }

  .hero {
    min-height: auto;
    padding-top: 108px;
    padding-bottom: 76px;
  }

  .hero-content {
    padding-top: 0;
  }

  .hero h1 {
    font-size: clamp(52px, 17vw, 76px);
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 20px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .btn {
    padding-inline: 16px;
    font-size: 11px;
  }

  .hero-phones {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-phones a {
    min-width: 0;
  }

  .hero-visual {
    min-height: 380px;
  }

  .logo-stage {
    width: min(95vw, 450px);
  }

  .orbit-a {
    width: 96%;
    height: 96%;
  }

  .orbit-b {
    width: 76%;
    height: 76%;
  }

  .scroll-cue {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 36px;
  }

  .service-card {
    min-height: 160px;
    padding: 22px;
  }

  .service-card h3 {
    left: 22px;
    right: 22px;
    bottom: 22px;
    font-size: 18px;
  }

  .service-icon {
    width: 46px;
    height: 46px;
  }

  .specialty-copy h2,
  .location-card h2,
  .final-copy h2,
  .section-heading h2 {
    font-size: clamp(36px, 12vw, 54px);
  }

  .specialty-tags {
    gap: 8px;
  }

  .specialty-tags span {
    font-size: 11px;
    padding: 9px 11px;
  }

  .tech-panel {
    min-height: 310px;
  }

  .contact-band {
    padding: 74px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .contact-card {
    padding: 25px;
  }

  .contact-card strong {
    font-size: 27px;
  }

  .location-card {
    padding: 30px 24px;
  }

  .address-line p {
    font-size: 16px;
  }

  .location-visual {
    min-height: 330px;
  }

  .final-cta {
    padding: 76px 0;
  }

  .final-logo img {
    width: min(100%, 310px);
  }

  .site-footer {
    padding-bottom: 90px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
