:root {
  --ink: #05070a;
  --ink-2: #0b1018;
  --paper: #f8fafc;
  --paper-2: #f1f5f9;
  --card: #ffffff;
  --brass: #f59e0b;
  --brass-dark: #d97706;
  --teal: #06b6d4;
  --teal-light: rgba(6, 182, 212, 0.1);
  --charcoal: #334155;
  --muted: #64748b;
  --line: #e2e8f0;
  --radius: 16px;
  --wrap: 1180px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-xl:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--charcoal);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Film Grain & Cursor Glow */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.035;
  mix-blend-mode: overlay;
}
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.06) 0%,
    rgba(6, 182, 212, 0.03) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s ease,
    height 0.3s ease,
    background 0.3s ease;
  mix-blend-mode: screen;
}

h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 0.5em 0;
  letter-spacing: -0.03em;
  font-weight: 700;
}
.mono {
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.02em;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  max-width: 100%;
  display: block;
}
.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass-dark);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  background: rgba(245, 158, 11, 0.08);
  padding: 6px 12px;
  border-radius: 6px;
  border: 1px solid rgba(245, 158, 11, 0.15);
}
.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--brass);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--brass);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.6;
  }
}

section {
  padding: 60px 0;
  position: relative;
}
@media (max-width: 720px) {
  section {
    padding: 70px 0;
  }
}
p.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  font-family: "Space Grotesk", sans-serif;
}
.btn:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  box-shadow: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brass) 0%, var(--brass-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 12px -2px rgba(245, 158, 11, 0.4);
  animation: pulse-glow 2.5s infinite;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(245, 158, 11, 0.5);
}
@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(245, 158, 11, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
  }
}
.btn-ghost {
  border-color: rgba(15, 23, 42, 0.15);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  border-color: var(--ink);
  background: rgba(15, 23, 42, 0.04);
  transform: translateY(-2px);
}
.btn-ghost.on-dark {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}
.btn-ghost.on-dark:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Nav */
header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 250, 252, 0.6);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
header.site.scrolled {
  background: rgba(248, 250, 252, 0.9);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
}
header.site::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: var(--scroll-progress, 0%);
  background: linear-gradient(90deg, var(--teal), var(--brass));
  transition: width 0.1s linear;
  box-shadow: 0 0 8px var(--brass);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--wrap);
  margin: 0 auto;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.logo .brand-icon {
  height: 45px;
}
.logo .dot {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--brass), var(--brass-dark));
  transform: rotate(45deg);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
  animation: rotate-dot 4s linear infinite;
}
@keyframes rotate-dot {
  0% {
    transform: rotate(45deg);
  }
  100% {
    transform: rotate(405deg);
  }
}

nav.links {
  display: flex;
  gap: 36px;
  font-size: 16px;
  font-weight: 500;
}
nav.links a {
  color: var(--ink);
  opacity: 0.7;
  position: relative;
  transition: opacity 0.2s;
}
nav.links a.active {
  color: #de810c;
}
nav.links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
nav.links a:hover {
  opacity: 1;
}
nav.links a:hover::after {
  transform: scaleX(1);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.call {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14.5px;
  transition: color 0.2s;
}
.call:hover {
  color: var(--brass-dark);
}
.call svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
}

/* Mobile Menu Fixes */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  padding: 4px;
  z-index: 101;
}

/* Dropdown */
.dropdown {
  position: relative;
}
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.dropdown-toggle .chevron-down {
  width: 20px;
  height: 20px;
  opacity: 0.7;
  transition: transform 0.3s ease;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  min-width: 240px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  opacity: 0.8;
  white-space: nowrap;
  position: relative;
}
.dropdown-menu li a::after {
  display: none;
}
.dropdown-menu li a:hover {
  background: var(--paper-2);
  opacity: 1;
  color: var(--brass-dark);
}
@media (min-width: 861px) {
  .dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .dropdown:hover > .dropdown-toggle .chevron-down {
    transform: rotate(180deg);
  }
}
@media (max-width: 860px) {
  nav.links {
    display: none;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-right .btn-primary {
    display: none;
  } /* Hide CTA on mobile to free up space */
  .call span.txt {
    display: none;
  }
  .cursor-glow {
    display: none;
  }

  nav.links.active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--line);
    border-radius: 0 0 8px 8px;
    gap: 16px;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 100; /* Z-index increased to 100 */
  }
  .dropdown {
    width: 100%;
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    width: 100%;
    display: none;
  }
  .dropdown.active-mobile > .dropdown-menu {
    display: block;
  }
  .dropdown.active-mobile > .dropdown-toggle .chevron-down {
    transform: rotate(180deg);
  }
}

/* Hero */
.hero {
  background: linear-gradient(160deg, #101c3d 0%, #16294f 55%, #0f1b33 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 50px 0 50px;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
  mix-blend-mode: luminosity;
  z-index: 0;
  pointer-events: none;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(6, 182, 212, 0.15),
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(245, 158, 11, 0.12),
      transparent 40%
    );
  animation: aurora-move 15s ease-in-out infinite alternate;
  z-index: 1;
}
@keyframes aurora-move {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-30px, 20px) scale(1.1);
  }
  100% {
    transform: translate(20px, -30px) scale(0.95);
  }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 50% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(
    circle at 50% 50%,
    black 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}
.hero .wrap {
  position: relative;
  z-index: 2;
}
.breadcrumb {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: rgba(226, 232, 240, 0.5);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.breadcrumb a {
  color: rgba(226, 232, 240, 0.8);
}
.breadcrumb a:hover {
  color: #fff;
}
.hero h1 {
  color: #fff;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.hero h1 span {
  background: linear-gradient(90deg, #fbbf24, #f59e0b, #fbbf24);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine-text 3s linear infinite;
}
@keyframes shine-text {
  to {
    background-position: 200% center;
  }
}
.hero .eyebrow {
  color: #fbbf24;
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.2);
}
.hero .eyebrow::before {
  background: #fbbf24;
  box-shadow: 0 0 8px #fbbf24;
}
.hero p.lead {
  color: rgba(226, 232, 240, 0.8);
  font-size: 19px;
}
.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.hero-strip {
  display: flex;
  gap: 26px;
  margin-top: 36px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
}
.hero-strip .item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(226, 232, 240, 0.7);
}
.hero-strip svg {
  width: 16px;
  height: 16px;
  stroke: var(--teal);
  flex: none;
}

/* Section Headers */
.sec-head {
  max-width: 100%;
  margin-bottom: 56px;
}
.sec-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.sec-head h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 16px;
}
.sec-head.center .eyebrow {
  justify-content: center;
}

/* Intro Grid */
.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 860px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.intro-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--line);
}

/* Pain/Solution Grid */
.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 860px) {
  .ps-grid {
    grid-template-columns: 1fr;
  }
}
.ps-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.ps-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.ps-card.pain {
  background: #fff5f5;
  border-color: rgba(239, 68, 68, 0.15);
}
.ps-card.solution {
  background: #f0fdfa;
  border-color: rgba(6, 182, 212, 0.15);
}
.ps-card h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "IBM Plex Mono", monospace;
  margin-bottom: 20px;
  color: var(--ink);
}
.ps-card.pain h3 {
  color: #dc2626;
}
.ps-card.solution h3 {
  color: var(--teal);
}
.ps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ps-list li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.5;
}
.ps-list li .mark {
  flex: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}
.pain .mark {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}
.solution .mark {
  background: rgba(6, 182, 212, 0.1);
  color: var(--teal);
}

/* Services Breakdown */
.breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 860px) {
  .breakdown {
    grid-template-columns: 1fr;
  }
}
.breakdown-row {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  gap: 18px;
  padding: 24px;
  align-items: flex-start;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.breakdown-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(245, 158, 11, 0.06),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 2;
}
.breakdown-row:hover::before {
  opacity: 1;
}
.breakdown-row:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(6, 182, 212, 0.2);
}
.breakdown-row .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--teal-light);
  border: 1px solid rgba(6, 182, 212, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: all 0.3s ease;
}
.breakdown-row:hover .icon-box {
  background: linear-gradient(135deg, var(--teal), #0891b2);
  box-shadow: 0 8px 16px -4px rgba(6, 182, 212, 0.3);
}
.breakdown-row .icon-box svg {
  width: 24px;
  height: 24px;
  stroke: var(--teal);
  transition: stroke 0.3s ease;
}
.breakdown-row:hover .icon-box svg {
  stroke: #fff;
}
.breakdown-row h4 {
  font-size: 17px;
  margin: 0 0 6px;
  position: relative;
  z-index: 3;
}
.breakdown-row p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  max-width: 50ch;
  position: relative;
  z-index: 3;
}

/* Results */
.results {
  background: linear-gradient(160deg, #101c3d 0%, #16294f 55%, #0f1b33 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.results::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(6, 182, 212, 0.15) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(245, 158, 11, 0.1) 0%,
      transparent 40%
    );
  animation: aurora-move 18s ease-in-out infinite alternate;
  z-index: 0;
}
.results .wrap {
  position: relative;
  z-index: 1;
}
.results .sec-head h2 {
  color: #fff;
}
.results .sec-head p {
  color: rgba(226, 232, 240, 0.7);
}
.results .eyebrow {
  background: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 860px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.result-card {
  padding: 32px 24px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}
.result-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-5px);
}
.result-card .num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 12px;
  display: block;
  text-shadow: 0 0 15px rgba(251, 191, 36, 0.2);
}
.result-card .lbl {
  font-size: 14px;
  color: rgba(226, 232, 240, 0.7);
  line-height: 1.5;
}

/* Case Study Card (Results) */
.case-card {
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 28px 44px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: center;
  backdrop-filter: blur(10px);
}
@media (max-width: 860px) {
  .case-card {
    grid-template-columns: 1fr;
  }
}
.case-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.case-tag {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  color: #fbbf24;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  background: rgba(245, 158, 11, 0.1);
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 16px;
}
.case-card h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 12px;
}
.case-card p {
  color: rgba(226, 232, 240, 0.8);
  font-size: 15px;
  line-height: 1.6;
}
.case-card p b {
  color: #fbbf24;
}

/* Process */
.process {
  position: relative;
  background: var(--paper);
}
.process-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}
@media (max-width: 900px) {
  .process-track {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.step {
  position: relative;
  padding-top: 64px;
}
@media (max-width: 900px) {
  .step {
    padding-top: 0;
    padding-left: 64px;
    padding-bottom: 40px;
    border-left: 2px solid var(--line);
    margin-left: 20px;
  }
  .step:last-child {
    border-left: 2px solid transparent;
  }
}
.step .num {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  font-size: 16px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--card);
  border: 2px solid var(--line);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.step:hover .num {
  background: var(--ink);
  color: var(--brass);
  border-color: var(--ink);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.1);
}
@media (max-width: 900px) {
  .step .num {
    left: -22px;
    top: 0;
  }
}
.step h4 {
  font-size: 17px;
  margin: 0 0 8px;
}
.step p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}
.track-line {
  position: absolute;
  top: 22px;
  left: 0;
  right: 10%;
  height: 2px;
  z-index: 1;
  overflow: hidden;
}
.track-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background-image: linear-gradient(90deg, var(--brass) 50%, transparent 50%);
  background-size: 20px 100%;
  animation: dash-move 1s linear infinite;
}
@keyframes dash-move {
  to {
    transform: translateX(20px);
  }
}
@media (max-width: 900px) {
  .track-line {
    display: none;
  }
}

/* FAQ */
.faq {
  max-width: 100%;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  transition: background 0.2s ease;
}
.faq-item:hover {
  background: rgba(248, 250, 252, 0.5);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  transition: padding 0.2s ease;
}
.faq-q:hover {
  padding-left: 12px;
}
.faq-q .plus {
  transition:
    transform 0.3s ease,
    background 0.3s ease;
  font-size: 24px;
  color: var(--brass);
  flex: none;
  margin-left: 24px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(245, 158, 11, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.faq-item.open .faq-q .plus {
  transform: rotate(45deg);
  background: var(--brass);
  color: white;
  border-color: var(--brass);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-a p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 15px;
  padding-right: 30px;
  padding-left: 8px;
  line-height: 1.7;
}

/* Internal Links */
.link-row-secondary {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.link-row-secondary a {
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-family: "IBM Plex Mono", monospace;
  transition: all 0.2s ease;
  background: var(--card);
}
.link-row-secondary a:hover {
  color: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Final CTA */
.final-cta {
  background: linear-gradient(160deg, #101c3d 0%, #16294f 55%, #0f1b33 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(6, 182, 212, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(245, 158, 11, 0.1) 0%,
      transparent 50%
    );
  animation: aurora-move 12s ease-in-out infinite alternate;
  z-index: 0;
}
.final-cta .wrap {
  position: relative;
  z-index: 1;
}
.fc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 860px) {
  .fc-grid {
    grid-template-columns: 1fr;
  }
}
.final-cta h2 {
  color: #fff;
  font-size: clamp(28px, 3.5vw, 40px);
}
.final-cta p.lead {
  color: rgba(226, 232, 240, 0.7);
}
.phone-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  font-weight: 600;
  font-size: 18px;
}
.phone-line svg {
  color: var(--brass);
}
.form-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  color: var(--charcoal);
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
}
.form-card h3 {
  font-size: 22px;
  margin-bottom: 24px;
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  background: var(--paper);
  color: var(--ink);
  transition: all 0.2s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.1);
}
.field input:invalid:not(:placeholder-shown) {
  border-color: #ef4444;
}
.field textarea {
  resize: vertical;
  min-height: 80px;
}
.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
}
.form-msg {
  font-size: 14px;
  margin-top: 16px;
  display: none;
  color: var(--teal);
  font-weight: 600;
  text-align: center;
  background: var(--teal-light);
  padding: 12px;
  border-radius: 8px;
}

/* Footer */
footer {
  background: #020303;
  color: rgba(148, 163, 184, 0.8);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 800px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
.foot-grid h5 {
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  margin: 0 0 20px;
  letter-spacing: 0.02em;
  font-weight: 600;
}
.foot-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}
.foot-grid a {
  transition: all 0.2s ease;
  display: inline-block;
}
.foot-grid a:hover {
  color: #fff;
  transform: translateX(4px);
}
.foot-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin-bottom: 16px;
}
.foot-logo .dot {
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, var(--brass), var(--brass-dark));
  border-radius: 4px;
  transform: rotate(45deg);
}
.foot-desc {
  font-size: 14px;
  max-width: 36ch;
  color: rgba(148, 163, 184, 0.7);
  line-height: 1.6;
}
.social-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.social-row a:hover {
  background: var(--brass);
  border-color: var(--brass);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px -2px rgba(245, 158, 11, 0.4);
}
.social-row svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
}
.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(148, 163, 184, 0.6);
}

/* Utilities & Animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
}
.reveal.show {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
    animation: none !important;
  }
  .cursor-glow {
    display: none;
  }
}
