/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --bg:        #0B0E14;
  --surf:      #161B27;
  --surf-2:    #1C2235;
  --bdr:       #1E2637;
  --bdr-2:     #2A3548;
  --accent:    #00E5FF;
  --accent-h:  #00BFDB;
  --text:      #F4F8FF;
  --muted:     #7A8BA8;
  --muted-2:   #4A5A72;

  --font-hd:   'Bebas Neue', sans-serif;
  --font-bd:   'Outfit', sans-serif;

  --r:         14px;
  --r-sm:      8px;
  --r-lg:      18px;

  /* Easing */
  --ease-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in:    cubic-bezier(0.7, 0, 0.84, 0);

  --max-w: 1200px;
}

/* ============================================================
   GRAIN OVERLAY — fixed, pointer-events-none pseudo
   ============================================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 998;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
  opacity: 0.032;
  mix-blend-mode: overlay;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--accent) var(--bg);
  scrollbar-width: thin;
}
::-webkit-scrollbar        { width: 5px; }
::-webkit-scrollbar-track  { background: var(--bg); }
::-webkit-scrollbar-thumb  { background: var(--accent); border-radius: 3px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-bd);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
h1, h2, h3 { text-wrap: balance; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
}

section { padding: 8.5rem 0; }

/* Section heading block */
.section-head {
  text-align: center;
  margin-bottom: 5rem;
}

section h2 {
  font-family: var(--font-hd);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  letter-spacing: 5px;
  line-height: 1;
  margin-top: 0.35rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 46ch;
  margin: 0.85rem auto 0;
}

/* Eyebrow tag */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow-pulse {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent), 0 0 16px rgba(0,229,255,0.4);
  animation: pulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%       { transform: scale(1.6); opacity: 0.5; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-bd);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  border-radius: var(--r-sm);
  white-space: nowrap;
  transition:
    background     0.28s var(--ease-expo),
    border-color   0.28s var(--ease-expo),
    color          0.28s var(--ease-expo),
    transform      0.28s var(--ease-expo),
    box-shadow     0.28s var(--ease-expo);
}
.btn:active { transform: scale(0.97) translateY(1px) !important; }

.btn--pill { border-radius: 50px; }

.btn-accent {
  background: var(--accent);
  color: #050810;
  border-color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.2px;
}
.btn-accent:hover {
  background: var(--accent-h);
  border-color: var(--accent-h);
  transform: translateY(-2px);
  box-shadow:
    0 6px 20px rgba(0, 229, 255, 0.4),
    0 2px 6px rgba(0, 229, 255, 0.25),
    inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border-color: var(--bdr-2);
}
.btn-ghost:hover {
  border-color: rgba(0, 229, 255, 0.45);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 229, 255, 0.1);
}

/* Button-in-button icon ring */
.btn-icon-ring {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  flex-shrink: 0;
  transition: transform 0.28s var(--ease-expo);
}
.btn-accent:hover .btn-icon-ring {
  transform: translate(2px, -1px) scale(1.08);
}

.btn-icon-ring--sm { width: 1.35rem; height: 1.35rem; font-size: 0.72rem; }
.btn--sm   { padding: 0.65rem 1.3rem; font-size: 0.83rem; }
.btn--large { padding: 1.1rem 2.6rem; font-size: 1rem; }

/* Small nav button arrow */
.btn-arrow {
  font-size: 0.9rem;
  opacity: 0.75;
  transition: transform 0.25s var(--ease-expo);
}
.btn-accent:hover .btn-arrow { transform: translate(1px, -1px); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.ri {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(6px);
  transition:
    opacity   0.7s var(--ease-expo),
    transform 0.7s var(--ease-expo),
    filter    0.7s var(--ease-expo);
  transition-delay: calc(var(--i, 0) * 88ms);
}
.ri.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .ri { opacity: 1; transform: none; filter: none; transition: none; }
  .eyebrow-pulse { animation: none; }
}

/* ============================================================
   NAV
   ============================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition:
    background   0.5s var(--ease-expo),
    border-color 0.5s var(--ease-expo);
}
#nav.scrolled {
  background: rgba(11, 14, 20, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--bdr);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  font-family: var(--font-hd);
  font-size: 1.55rem;
  letter-spacing: 2px;
  flex-shrink: 0;
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 2.5rem;
  margin-left: auto;
}
.nav-links a {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  position: relative;
  transition: color 0.22s var(--ease-expo);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-expo);
}
.nav-links a:hover             { color: var(--text); }
.nav-links a:hover::after      { transform: scaleX(1); }

.nav-cta {
  margin-left: 1.5rem;
  padding: 0.62rem 1.25rem;
  font-size: 0.82rem;
  border-radius: 50px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.32s var(--ease-expo), opacity 0.32s var(--ease-expo);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* Animated grid */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right,  rgba(0, 229, 255, 0.042) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 229, 255, 0.042) 1px, transparent 1px);
  background-size: 72px 72px;
  animation: gridScroll 28s linear infinite;
  mask-image: radial-gradient(ellipse 90% 80% at 40% 50%, black 10%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 40% 50%, black 10%, transparent 80%);
}
@keyframes gridScroll {
  from { background-position: 0 0; }
  to   { background-position: 0 72px; }
}

/* Glow orbs */
.hero-orb { position: absolute; pointer-events: none; border-radius: 50%; }

.hero-orb--main {
  top: -18%;
  right: -8%;
  width: 750px;
  height: 750px;
  background: radial-gradient(circle,
    rgba(0,229,255,0.14) 0%,
    rgba(0,229,255,0.05) 38%,
    transparent 68%
  );
  animation: orbDrift 10s ease-in-out infinite alternate;
}
.hero-orb--sub {
  bottom: -12%;
  left: -10%;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle,
    rgba(0,229,255,0.055) 0%,
    transparent 62%
  );
  animation: orbDrift 14s ease-in-out infinite alternate-reverse;
}
@keyframes orbDrift {
  from { transform: scale(1);    opacity: 0.75; }
  to   { transform: scale(1.1); opacity: 1; }
}

/* Bottom gradient */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 260px;
  background: linear-gradient(transparent, var(--bg));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  padding: 8rem 2.5rem 5rem;
  display: grid;
  grid-template-columns: 56% 1fr;
  align-items: center;
  gap: 4rem;
}

/* Hero content: child elements animate via keyframes with manual delays */
.hero-eyebrow  { animation: hIn 0.85s var(--ease-expo) 0.1s  both; }
.hero-line:nth-child(1) { animation: hIn 0.85s var(--ease-expo) 0.22s both; }
.hero-line:nth-child(2) { animation: hIn 0.85s var(--ease-expo) 0.36s both; }
.hero-line:nth-child(3) { animation: hIn 0.85s var(--ease-expo) 0.5s  both; }
.hero-body     { animation: hIn 0.85s var(--ease-expo) 0.62s both; }
.hero-actions  { animation: hIn 0.85s var(--ease-expo) 0.74s both; }

.hero-aside    { animation: hIn 0.85s var(--ease-expo) 0.45s both; }

@keyframes hIn {
  from { opacity: 0; transform: translateY(26px); filter: blur(8px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}

.hero-h1 {
  display: flex;
  flex-direction: column;
  margin: 1.2rem 0 1.8rem;
  line-height: 0.9;
}

.hero-line {
  display: block;
  font-family: var(--font-hd);
  letter-spacing: 2px;
}

/* Supporting lines: muted, medium scale */
.hero-line--sub {
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  color: var(--muted-2);
  letter-spacing: 4px;
}
.hero-line--mid {
  font-size: clamp(4rem, 8.5vw, 7rem);
  color: var(--text);
}

/* GLEAM. — massive, lit */
.hero-line--glow {
  font-size: clamp(6.5rem, 15vw, 12rem);
  color: var(--accent);
  letter-spacing: 2px;
  text-shadow:
    0 0 50px  rgba(0, 229, 255, 0.55),
    0 0 100px rgba(0, 229, 255, 0.25),
    0 0 180px rgba(0, 229, 255, 0.1);
  margin-top: 0.06em;
}

.hero-body {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 44ch;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Decorative ring (right side, desktop) */
.hero-aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero-ring {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(0, 229, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: ringRotate 50s linear infinite;
}

/* Outer ring decoration */
.hero-ring::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(0, 229, 255, 0.06);
}
/* Glowing dot at top of ring */
.hero-ring::after {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent), 0 0 24px rgba(0,229,255,0.5);
}
@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero-ring-content {
  text-align: center;
  animation: ringRotate 50s linear infinite reverse;
}

.hrs-num {
  display: block;
  font-family: var(--font-hd);
  font-size: 1.8rem;
  letter-spacing: 3px;
  color: var(--accent);
  opacity: 0.85;
  line-height: 1;
}
.hrs-sep {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0.2rem 0;
}

.hero-ring-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 0.4rem;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.hero-badge-chip {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--muted);
  border: 1px solid var(--bdr-2);
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  white-space: nowrap;
}

/* ============================================================
   TICKER STRIP
   ============================================================ */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--bdr);
  border-bottom: 1px solid var(--bdr);
  background: var(--surf);
  padding: 0.9rem 0;
  position: relative;
  z-index: 1;
}
.ticker::before, .ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--surf), transparent);
}
.ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--surf), transparent);
}

.ticker-track {
  display: inline-flex;
  gap: 2.5rem;
  animation: tickerScroll 35s linear infinite;
  white-space: nowrap;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-track span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
}
.t-sep { color: var(--accent) !important; opacity: 0.55; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--bg); }

/* Grid: featured spans full width, two cards below */
.sv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

/* Outer bezel (double-bezel pattern) */
.cshell {
  padding: 1px;
  background: var(--bdr);
  border-radius: var(--r-lg);
  transition: background 0.35s var(--ease-expo);
}
.cshell:hover {
  background: linear-gradient(135deg, rgba(0,229,255,0.32), rgba(0,229,255,0.07) 60%, rgba(0,229,255,0.14));
}

/* Featured card spans full width */
.cshell--hero {
  grid-column: 1 / -1;
  background: linear-gradient(135deg,
    rgba(0,229,255,0.22) 0%,
    rgba(0,229,255,0.05) 55%,
    var(--bdr) 100%
  );
}
.cshell--hero:hover {
  background: linear-gradient(135deg,
    rgba(0,229,255,0.38) 0%,
    rgba(0,229,255,0.12) 55%,
    rgba(0,229,255,0.22) 100%
  );
}

/* Inner core */
.cinner {
  background: var(--surf);
  border-radius: calc(var(--r-lg) - 1px);
  padding: 2.25rem;
  height: 100%;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    inset 0 -1px 0 rgba(0,0,0,0.1);
  transition:
    box-shadow  0.35s var(--ease-expo),
    transform   0.35s var(--ease-expo);
}
.cshell:hover .cinner {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    inset 0 -1px 0 rgba(0,0,0,0.1),
    0 20px 60px rgba(0,229,255,0.09);
  transform: translateY(-1px);
}

/* Featured card inner: horizontal two-column layout */
.cinner--hero {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
  padding: 3rem 3.5rem;
  background: linear-gradient(135deg, var(--surf-2) 0%, var(--surf) 60%);
}

/* Card content */
.cbadge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(0,229,255,0.3);
  padding: 0.28rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.75rem;
}

.cprice {
  font-family: var(--font-hd);
  font-size: 3.5rem;
  color: var(--accent);
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.cprice sup { font-size: 2rem; opacity: 0.65; vertical-align: super; }

.cprice-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.8;
  min-height: 3.5rem;
  display: flex;
  align-items: center;
}

.cinner h3 {
  font-family: var(--font-hd);
  font-size: 2rem;
  letter-spacing: 1px;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.cdesc {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 32ch;
}

.clist {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.clist li {
  color: var(--muted);
  font-size: 0.9rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.45;
}
.clist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 1.5px;
  background: var(--accent);
  opacity: 0.65;
}

/* ============================================================
   WHY US
   ============================================================ */
.whyus {
  background: linear-gradient(180deg, var(--bg) 0%, var(--surf) 50%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle scanline pattern for industrial texture */
.whyus::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 3px,
    rgba(0,229,255,0.014) 3px,
    rgba(0,229,255,0.014) 4px
  );
  pointer-events: none;
}

.whyus .section-head { margin-bottom: 4rem; }

/* Stats as a unified horizontal band */
.stats-band {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--bg);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 1px 0 rgba(0,229,255,0.04);
}

.stat {
  flex: 1;
  padding: 3.5rem 2.5rem;
  text-align: center;
  transition: background 0.3s var(--ease-expo);
  position: relative;
}
.stat:hover {
  background: rgba(0,229,255,0.025);
}

.stat-rule {
  width: 1px;
  background: var(--bdr);
  flex-shrink: 0;
  margin: 2rem 0;
}

.stat-eyebrow {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 0.2rem;
}

.stat-num {
  font-family: var(--font-hd);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  letter-spacing: 2px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-num--md { font-size: clamp(2rem, 3.5vw, 3rem); }
.stat-num--sm { font-size: clamp(1.6rem, 2.8vw, 2.4rem); }

.stat-lbl {
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.2px;
  line-height: 1.4;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--bg); }

.tgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.tcard {
  background: var(--surf);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  padding: 2.25rem;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 0 0 0 rgba(0,229,255,0);
  transition:
    border-color 0.3s var(--ease-expo),
    box-shadow   0.3s var(--ease-expo),
    transform    0.3s var(--ease-expo);
}
.tcard:hover {
  border-color: rgba(0,229,255,0.22);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 12px 40px rgba(0,229,255,0.08);
  transform: translateY(-4px);
}

/* Vertical offset on alternating cards for visual rhythm */
.tcard--lift { margin-top: 1.75rem; }

.tcard-stars {
  color: #FFD166;
  font-size: 0.78rem;
  letter-spacing: 3px;
  margin-bottom: 1.2rem;
}

.tcard p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.78;
  font-style: italic;
  margin-bottom: 1.5rem;
  max-width: 52ch;
}

.tcard-name {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--accent);
}
.tcard-name::before { content: '\2014\0020'; opacity: 0.45; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: linear-gradient(180deg, var(--bg) 0%, var(--surf) 100%);
}

/* Outer bezel on contact card */
.ctshell {
  padding: 1px;
  background: linear-gradient(135deg,
    rgba(0,229,255,0.2)  0%,
    rgba(0,229,255,0.05) 50%,
    rgba(0,229,255,0.1)  100%
  );
  border-radius: var(--r-lg);
  max-width: 800px;
  margin: 0 auto;
}

.ctcard {
  background: var(--bg);
  border-radius: calc(var(--r-lg) - 1px);
  padding: 3.75rem;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    inset 0 -1px 0 rgba(0,0,0,0.12);
}

.ctinfo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3.25rem;
}

.ctitem {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: inherit;
  transition: none;
}
a.ctitem:hover .ctval { color: var(--accent); }
a.ctitem .ctval { transition: color 0.22s var(--ease-expo); }

.cticon {
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  border-radius: var(--r-sm);
  border: 1px solid var(--bdr-2);
  background: var(--surf);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--accent);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.ctlabel {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.28rem;
}

.ctval {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.45;
}

.ctcta { text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #060810;
  border-top: 1px solid var(--bdr);
  padding: 4.5rem 0;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-hd);
  font-size: 2.2rem;
  letter-spacing: 3px;
  margin-bottom: 0.75rem;
}
.footer-logo span { color: var(--accent); }

.footer-tag {
  color: var(--muted);
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-credit {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.22s var(--ease-expo);
}
.footer-credit:hover { text-decoration: underline; color: var(--muted); }

.footer-copy {
  font-size: 0.73rem;
  color: var(--muted-2);
  letter-spacing: 0.3px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero-inner       { grid-template-columns: 1fr; }
  .hero-aside       { display: none; }

  .cinner--hero {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  /* Nav mobile */
  .nav-hamburger { display: flex; }
  .nav-cta       { display: none; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(11,14,20,0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--bdr);
  }
  .nav-links.open { display: flex; }
  .nav-links li a {
    display: block;
    padding: 1.1rem 2.5rem;
    font-size: 0.88rem;
    border-bottom: 1px solid var(--bdr);
  }

  /* Services: stack to single column */
  .sv-grid { grid-template-columns: 1fr; }
  .cshell--hero { grid-column: auto; }

  /* Stats band: stack */
  .stats-band   { flex-direction: column; }
  .stat-rule    { width: calc(100% - 5rem); height: 1px; margin: 0 2.5rem; }

  /* Testimonials: stack */
  .tgrid        { grid-template-columns: 1fr; }
  .tcard--lift  { margin-top: 0; }

  /* Contact: single column */
  .ctinfo { grid-template-columns: 1fr; gap: 2rem; }
  .ctcard { padding: 2.25rem 2rem; }

  section { padding: 6rem 0; }
}

@media (max-width: 480px) {
  .hero-actions  { flex-direction: column; align-items: flex-start; }
  .hero-inner    { padding: 7rem 1.75rem 4rem; }
  .container     { padding: 0 1.5rem; }
  section        { padding: 5rem 0; }

  .hero-line--glow {
    font-size: clamp(5.5rem, 22vw, 8rem);
  }
}
