:root {
  --bg: #0b1020;
  --bg2: #0e1630;
  --card: rgba(255, 255, 255, 0.06);
  --card2: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.14);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --muted2: rgba(255, 255, 255, 0.62);
  --accent: #7c5cff;
  --accent2: #43e1ff;
  --good: #39d98a;
  --shadow: 0 16px 44px rgba(0, 0, 0, 0.32);
  --radius: 18px;
  --radius2: 26px;
  --container: 980px;
  --headerH: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
  margin: 0;
  padding: 0;
  background: var(--bg);
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  min-height: 100%;
  background: radial-gradient(900px 520px at 35% 200px, rgba(124, 92, 255, 0.22), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
}

.spotlight {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  background: radial-gradient(520px 320px at 20% 30%, rgba(124, 92, 255, 0.12), transparent 60%),
    radial-gradient(520px 320px at 70% 40%, rgba(67, 225, 255, 0.08), transparent 60%);
  transition: opacity 220ms ease;
}

body > *:not(.spotlight):not(.toTop):not(.scrollProgress) {
  position: relative;
  z-index: 1;
}

.scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  z-index: 55;
  background: transparent;
  border-bottom: 0;
  display: none;
}

.scrollProgressBar {
  height: 3px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.toTop {
  position: fixed;
  left: auto;
  top: auto;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
  transform: translateY(10px);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
  z-index: 110;
}

@supports (bottom: env(safe-area-inset-bottom)) {
  .toTop {
    right: calc(18px + env(safe-area-inset-right));
    bottom: calc(18px + env(safe-area-inset-bottom));
  }
}

.toTop:hover {
  background: rgba(255, 255, 255, 0.12);
  text-decoration: none;
}

.toTop.isVisible {
  opacity: 1;
  transform: translateY(0);
}

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

a:hover {
  text-decoration: underline;
}

.skip {
  position: absolute;
  left: -999px;
  top: -999px;
  background: #fff;
  color: #000;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 999;
}

.skip:focus {
  left: 14px;
  top: 14px;
}

.navLinksMobile {
  display: none;
}

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

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  position: fixed;
  top: env(safe-area-inset-top);
  left: 0;
  right: 0;
  backdrop-filter: blur(14px);
  background: rgba(11, 16, 32, 1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 50;
  height: var(--headerH);
}

main {
  padding-top: 0;
  margin-top: calc(var(--headerH) + env(safe-area-inset-top));
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  height: 100%;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brandMark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 10px;
  color: #060814;
  letter-spacing: -0.02em;
}

.brandText {
  letter-spacing: -0.02em;
}

.navLinks {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-weight: 600;
}

.navLinks a {
  padding: 10px 10px;
  border-radius: 10px;
}

.navLinks a:hover {
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  color: var(--text);
}

.navToggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.navToggleIcon {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  margin: 0 auto;
  position: relative;
}

.navToggleIcon::before,
.navToggleIcon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.navToggleIcon::before {
  top: -6px;
}

.navToggleIcon::after {
  top: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent), rgba(67, 225, 255, 0.75));
  color: #060814;
  font-weight: 800;
  padding: 12px 16px;
  border-radius: 14px;
  border: 0;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(124, 92, 255, 0.18);
  text-decoration: none;
}

.btn:hover {
  text-decoration: none;
  filter: brightness(1.02);
}

.btnGhost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.btnSmall {
  padding: 10px 14px;
  border-radius: 12px;
}

.btnFull {
  width: 100%;
}

.hero {
  padding: 6px 0 32px;
  min-height: auto;
}

.heroGrid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  align-items: start;
}

.heroCopy {
  min-width: 0;
}

.heroVisual {
  display: flex;
  justify-content: flex-end;
}

.heroCard {
  width: min(100%, 420px);
  --mx: 20%;
  --my: 0%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius2);
  padding: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 160ms ease;
}

.heroCard::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(440px 220px at var(--mx) var(--my), rgba(124, 92, 255, 0.28), transparent 60%),
    radial-gradient(360px 200px at 100% 60%, rgba(67, 225, 255, 0.18), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

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

.heroCard > * {
  position: relative;
}

.heroCardTop {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
}

.heroChip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(124, 92, 255, 0.18);
  border: 1px solid rgba(124, 92, 255, 0.35);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  font-size: 0.85rem;
}

.heroChipAlt {
  background: rgba(67, 225, 255, 0.12);
  border-color: rgba(67, 225, 255, 0.30);
}

.heroCardTitle {
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.heroList {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.8;
}

.heroCardFoot {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
  font-size: 0.92rem;
}

.heroContactCard {
  margin-top: 12px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  display: grid;
  gap: 14px;
}

.heroContactText {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.6;
}

.heroContactMeta {
  display: flex;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  font-weight: 600;
}

.heroForm {
  margin-top: 12px;
}

.heroForm label {
  margin-bottom: 10px;
}

.heroForm label span {
  font-size: 0.88rem;
}

.heroForm input,
.heroForm select,
.heroForm textarea {
  padding: 11px 12px;
  border-radius: 14px;
}

.heroForm textarea {
  resize: none;
}

.heroForm .btnFull {
  margin-top: 4px;
}

.copyFeedback {
  margin-top: 12px;
  padding: 12px;
  background: rgba(57, 217, 138, 0.15);
  border: 1px solid rgba(57, 217, 138, 0.3);
  border-radius: 12px;
  text-align: center;
}

.copyFeedback p {
  margin: 0;
  color: rgba(57, 217, 138, 0.9);
  font-weight: 700;
  font-size: 0.95rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 8px;
}

h1 {
  margin: 0 0 10px;
  font-size: clamp(2.1rem, 3.2vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

h2 {
  margin: 0;
  font-size: clamp(1.7rem, 2.3vw, 2.3rem);
  letter-spacing: -0.02em;
}

h3 {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: -0.015em;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 18px;
}

.ctaRow {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 26px;
}

.contactCtaRow {
  margin: 14px 0 0;
}

.linkRow {
  margin: 0;
  color: var(--muted2);
  font-weight: 600;
}

.mutedLink {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.trustPills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.trustPill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 750;
  font-size: 0.9rem;
}

.section {
  padding: 32px 0;
}

.sectionAlt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sectionHead {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.sectionHead p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 72ch;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.project,
.card {
  backdrop-filter: blur(10px);
}

.card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 440px));
  gap: 16px;
  justify-content: start;
}

.servicesWorkGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.servicesWorkGrid > div {
  display: grid;
  gap: 16px;
  align-content: start;
}

.cards.single {
  grid-template-columns: 1fr;
}

.projects.single {
  grid-template-columns: 1fr;
}

.project {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.projectMedia {
  width: 100%;
  max-width: 100%;
  margin: 12px 0 0;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.10);
  aspect-ratio: 16 / 9;
}

.projectMediaFull {
  padding: 10px;
  background: rgba(0, 0, 0, 0.22);
}

.projectMediaFull .projectImage {
  object-fit: contain;
}

.projectMediaFull .projectGallery .projectImage {
  object-fit: contain;
}

.workSpacer {
  min-height: 1px;
}

.projectGallery {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 8px;
}

.trustedBy {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 12px;
  align-items: center;
}

.trustedByLabel {
  color: rgba(255, 255, 255, 0.56);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.trustedByLogos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px 28px;
  align-items: center;
}

.logoMark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
  white-space: nowrap;
}

.logoMarkImg {
  padding: 0;
}

.logoImg {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.35));
}

.logoMarkLarge .logoImg {
  height: 64px;
}

.logoMarkTV .logoImg {
  height: 72px;
  max-width: 220px;
}

.logoMarkNIWC {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 0;
}

.logoMarkNIWC .niwcName {
  color: #d7b468;
  font-weight: 850;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.logoMarkNIWC .niwcTagline {
  color: rgba(255, 255, 255, 0.62);
  font-weight: 650;
  font-size: 0.75rem;
  letter-spacing: 0.01em;
}

.logoMarkText {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.tvName {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  font-size: 1rem;
}

.comingSoonBadge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
  font-size: 0.75rem;
}

.projectImage {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.06);
}

@media (max-width: 520px) {
  .container {
    padding: 0 12px;
  }

  .section {
    padding: 20px 0;
  }

  .sectionHead {
    margin-bottom: 14px;
  }

  .hero {
    padding: 4px 0 20px;
  }

  .heroCard {
    padding: 14px;
  }

  .projects {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .project {
    padding: 10px;
    border-radius: 14px;
  }

  .projectMedia {
    max-width: 100%;
    aspect-ratio: 16 / 9;
    margin: 6px 0 0;
    border-radius: 10px;
  }

  .project h3 {
    font-size: 0.9rem;
  }

  .projectBadge {
    padding: 4px 6px;
    font-size: 0.7rem;
  }

  .steps {
    gap: 10px;
  }

  .step {
    padding: 14px;
  }

  .footerGrid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer {
    padding: 40px 0 24px;
  }

  .footerBottom {
    margin-top: 32px;
  }

  .trustedByLogos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 12px;
    align-items: center;
  }

  .trustedByLogos .logoMarkNIWC {
    grid-column: 1 / -1;
  }
}

.projectVideo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.project h3 a {
  text-decoration: none;
}

.projectTitleRow {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
}

.comingSoon {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.74);
  font-weight: 750;
  font-size: 0.85rem;
  white-space: nowrap;
}

.project h3 a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.projectBadge {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(124, 92, 255, 0.18);
  border: 1px solid rgba(124, 92, 255, 0.35);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  font-size: 0.85rem;
}

.comingSoon {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 193, 7, 0.15);
  border: 1px solid rgba(255, 193, 7, 0.4);
  color: rgba(255, 193, 7, 0.9);
  font-weight: 700;
  font-size: 0.75rem;
  margin-left: 8px;
}

.project p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.projectMeta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

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

@media (max-width: 1120px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}

.stepNum {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(67, 225, 255, 0.14);
  border: 1px solid rgba(67, 225, 255, 0.26);
  font-weight: 900;
  letter-spacing: -0.03em;
}

.step p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}


.contact {
  padding: 40px 0;
}

.contactGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.contactDetails {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contactLine {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.contactKey {
  color: var(--muted2);
  font-weight: 700;
}

.form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius2);
  padding: 18px;
}

.honeypot {
  display: none;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

label span {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  padding: 12px 12px;
  border-radius: 14px;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(124, 92, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(124, 92, 255, 0.18);
}

.formHint {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.5;
}

.afterSubmit {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 10px;
}

.afterTitle {
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.9);
}

.status {
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  line-height: 1.5;
}

.status[data-type='success'] {
  border-color: rgba(57, 217, 138, 0.35);
  background: rgba(57, 217, 138, 0.12);
}

.status[data-type='error'] {
  border-color: rgba(255, 95, 87, 0.35);
  background: rgba(255, 95, 87, 0.12);
}

.status[data-type='info'] {
  border-color: rgba(67, 225, 255, 0.28);
  background: rgba(67, 225, 255, 0.10);
}

.footer {
  padding: 64px 0 32px;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footerGrid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footerBrand {
  display: grid;
  gap: 16px;
}

.brandSmall {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.footerNote {
  color: var(--muted);
  line-height: 1.7;
  max-width: 50ch;
  font-size: 0.95rem;
}

.footerContact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.footerEmail {
  color: var(--accent2);
  font-weight: 700;
  text-decoration: none;
}

.footerEmail:hover {
  text-decoration: underline;
}

.footerPhone {
  color: var(--accent2);
  font-weight: 700;
  text-decoration: none;
}

.footerPhone:hover {
  text-decoration: underline;
}

.footerLocation {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footerCol {
  display: grid;
  gap: 16px;
}

.footerCol h4 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.footerLinks {
  display: grid;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.footerLinks a,
.footerLinks span {
  padding: 4px 0;
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

.footerLinks a:hover {
  color: var(--text);
  text-decoration: none;
}

.footerBottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  font-weight: 600;
}

@media (max-width: 960px) {
  body.navOpen {
    overflow: hidden;
  }

  body.navOpen::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 95;
  }

  .hero {
    padding: 10px 0 34px;
    min-height: auto;
  }

  .heroGrid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .heroVisual {
    justify-content: flex-start;
    margin-top: 16px;
  }

  .navLinks {
    position: fixed;
    top: calc(var(--headerH) + env(safe-area-inset-top));
    left: 12px;
    right: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: rgba(11, 16, 32, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 110;
    max-height: calc(100vh - var(--headerH) - env(safe-area-inset-top) - 20px);
    overflow-y: auto;
  }

  .navLinks a {
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 1rem;
  }

  .navLinks a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .navToggle {
    display: none;
  }

  .navLinks {
    display: none;
  }

  .navLinksMobile {
    display: flex;
    gap: 8px;
  }

  .navLinksMobile a {
    font-size: 0.85rem;
    padding: 8px 12px;
  }

  .cards,
  .projects,
  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .servicesWorkGrid {
    grid-template-columns: 1fr;
  }

  .contactGrid {
    grid-template-columns: 1fr;
  }

  .footerGrid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footerBottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

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

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

  .heroCard {
    transition: none;
  }

  .toTop {
    transition: none;
  }

  .spotlight {
    transition: none;
  }
}
