@font-face {
  font-family: "Good Timing";
  src: url("../font.woff2") format("woff2"),
       url("../font.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #0a1628;
  --secondary: #1a3a5c;
  --accent: #1a65e0;
  --accent-alt: #4db8ff;
  --font-body: "IBM Plex Sans", "Segoe UI", sans-serif;
  --font-display: "Barlow Condensed", "IBM Plex Sans", sans-serif;
  --text: #e8f0fc;
  --text-muted: #6b87ae;
  --surface: #061529;
  --surface-strong: #0b2240;
  --border: #0f2f54;
  --success: #10b981;
  --white: #ffffff;
  --danger: #ef4444;
  --shadow-soft: 0 18px 60px rgb(0 0 0 / 0.40), 0 6px 20px rgb(26 101 224 / 0.14);
  --shadow-gold: 0 14px 42px rgb(26 101 224 / 0.30);
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --container: 1180px;
  --header-height: 82px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 320px;
  background-image:
    radial-gradient(circle at top left, rgb(13 59 232 / 0.18), transparent 30rem),
    radial-gradient(circle at bottom right, rgb(56 178 255 / 0.08), transparent 28rem),
    linear-gradient(135deg, #020b1a 0%, var(--primary) 46%, #030a16 100%);
  background-attachment: fixed;
  background-size: cover;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: rgb(26 101 224 / 0.38);
  color: var(--white);
}

.brand-font {
  font-family: "Good Timing", var(--font-display);
  letter-spacing: 0;
}

.container {
  width: min(100% - 1.25rem, var(--container));
  margin-inline: auto;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: var(--primary);
  transition: opacity 0.45s var(--ease), visibility 0.45s var(--ease);
}

.loader::before {
  content: "";
  position: absolute;
  width: 9rem;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgb(56 178 255 / 0.40);
  animation: loaderPulse 1.2s var(--ease) infinite;
}

.loader-brand {
  position: relative;
  color: var(--white);
  font-size: clamp(1rem, 4vw, 1.75rem);
}

body.is-loaded .loader {
  opacity: 0;
  visibility: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem max(1rem, calc((100vw - var(--container)) / 2));
  background: linear-gradient(180deg, rgb(10 22 40 / 0.88), rgb(10 22 40 / 0.56));
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
  backdrop-filter: blur(18px);
  transition: min-height 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgb(10 22 40 / 0.94);
  box-shadow: 0 14px 42px rgb(0 0 0 / 0.24);
}

.brand,
.footer-brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.brand-title,
.footer-brand {
  color: var(--white);
  font-size: clamp(0.8rem, 3.2vw, 1.05rem);
  white-space: nowrap;
}

.brand-tagline {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
}

.site-nav {
  position: fixed;
  inset: var(--header-height) 0 auto 0;
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  background: rgb(10 22 40 / 0.97);
  border-bottom: 1px solid var(--border);
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}

.site-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.site-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--white);
  background: rgb(255 255 255 / 0.08);
}

.nav-call {
  color: var(--white);
  background: linear-gradient(135deg, #0d3be8, #1a65e0 42%, #38b2ff);
  box-shadow: 0 8px 28px rgb(13 59 232 / 0.32);
}

.site-nav .nav-call:hover,
.site-nav .nav-call:focus-visible {
  color: var(--white);
  background: linear-gradient(135deg, #38b2ff, #1a65e0 52%, #0d3be8);
}

.nav-toggle {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  gap: 0;
  padding: 0.75rem;
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: 50%;
  background: rgb(255 255 255 / 0.08);
  color: var(--white);
}

.nav-toggle span {
  width: 19px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero,
.page-hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--header-height) + 3rem) 0 4rem;
  isolation: isolate;
}

.page-hero {
  min-height: 62svh;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate3d(0, var(--hero-shift, 0), 0) scale(1.05);
  transition: transform 0.1s linear;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgb(10 22 40 / 0.92) 0%, rgb(10 22 40 / 0.64) 42%, rgb(10 22 40 / 0.9) 100%),
    linear-gradient(0deg, var(--primary), transparent 54%);
}

.hero-inner { display: grid; gap: 2rem; align-items: center; text-align: center; }

.hero-content, .page-hero-inner { position: relative; max-width: 900px; margin-inline: auto; display: flex; flex-direction: column; align-items: center; } .hero-content::after, .page-hero-inner::after { content: ""; position: absolute; inset: -10vw; background: radial-gradient(circle at center, rgb(0 180 216 / 0.08) 0, transparent 65%); z-index: -1; pointer-events: none; }

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 { margin-bottom: 1rem; font-size: clamp(2.45rem, 8vw, 5.6rem); max-width: 18ch; margin-inline: auto; }

.page-hero h1 { max-width: 22ch; font-size: clamp(2.25rem, 6vw, 4.8rem); margin-inline: auto; }

h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.85rem, 4.6vw, 3.4rem);
}

h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.15rem, 2.6vw, 1.45rem);
}

p {
  color: var(--text-muted);
}

.hero-motto {
  margin-bottom: 1rem;
  color: var(--accent);
  font-size: clamp(1.25rem, 4vw, 2rem);
  font-weight: 900;
}

.hero-copy, .page-hero p { max-width: 680px; margin-inline: auto; font-size: clamp(0.88rem, 1.6vw, 1.05rem); }

.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }

.hero-actions { width: 100%; justify-content: center; }

.hero-cta {
  width: min(10em, 100%);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5em;
  padding: 0 1.25rem;
  border: 3px ridge #149cea;
  border-radius: 0.3em;
  background-color: transparent;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), color 0.35s var(--ease);
}

.hero-cta span {
  position: relative;
  z-index: 1;
}

.hero-cta::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 3%;
  width: 95%;
  height: 40%;
  background-color: var(--primary);
  transition: transform 0.5s var(--ease);
  transform-origin: center;
}

.hero-cta::before {
  content: "";
  position: absolute;
  top: 80%;
  left: 3%;
  width: 95%;
  height: 40%;
  background-color: var(--primary);
  transition: transform 0.5s var(--ease);
  transform-origin: center;
}

.hero-cta:hover::before,
.hero-cta:hover::after,
.hero-cta:focus-visible::before,
.hero-cta:focus-visible::after {
  transform: scale(0);
}

.hero-cta:hover,
.hero-cta:focus-visible {
  color: var(--white);
  box-shadow: inset 0 0 25px #1479ea;
  transform: translateY(-2px);
}

.hero-cta:active {
  transform: translateY(0);
}

.hero-cta:focus-visible {
  outline: none;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
}

.btn:hover,
.btn:focus-visible,
.project-card:hover,
.service-card:hover,
.team-card:hover,
.values-grid article:hover {
  transform: translateY(-2px);
}

.btn-primary {
  width: 140px;
  height: auto;
  float: left;
  transition: .5s linear;
  position: relative;
  display: block;
  overflow: hidden;
  padding: 15px;
  text-align: center;
  margin: 0 5px;
  background: transparent;
  text-transform: uppercase;
  font-weight: 900;
}

.btn-primary:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  border-bottom: 4px solid transparent;
  border-left: 4px solid transparent;
  box-sizing: border-box;
  transform: translateX(100%);
}

.btn-primary:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  border-top: 4px solid transparent;
  border-right: 4px solid transparent;
  box-sizing: border-box;
  transform: translateX(-100%);
}

.btn-primary:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.btn-primary:hover:before {
  border-color: #262626;
  height: 100%;
  transform: translateX(0);
  transition: .3s transform linear, .3s height linear .3s;
}

.btn-primary:hover:after {
  border-color: #262626;
  height: 100%;
  transform: translateX(0);
  transition: .3s transform linear, .3s height linear .5s;
}

btn-primary {
  color: black;
  text-decoration: none;
  cursor: pointer;
  outline: none;
  border: none;
  background: transparent;
}

.btn:active {
  transform: translateY(0);
}

.hero-badge,
.glass-panel,
.contact-panel,
.info-panel {
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgb(255 255 255 / 0.12), rgb(255 255 255 / 0.045));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.hero-badge {
  width: min(100%, 340px);
  padding: 1.35rem;
}

.hero-badge span,
.hero-badge small {
  display: block;
  color: var(--text-muted);
}

.hero-badge strong {
  display: block;
  margin: 0.15rem 0;
  color: var(--white);
  font-size: clamp(2rem, 8vw, 3.4rem);
  line-height: 1;
}

.stats-band {
  position: relative;
  margin-top: -1px;
  border-block: 1px solid rgb(255 255 255 / 0.08);
  background: rgb(5 13 26 / 0.96);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.stats-band::after {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--steel), transparent);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  gap: 0;
}

.stat-item {
  padding: 1.75rem 1.5rem;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-right: 1px solid rgb(255 255 255 / 0.06);
  transition: background 0.3s ease;
}

.stat-item:last-child { border-right: none; }

.stat-item:hover {
  background: linear-gradient(135deg, rgb(26 101 224 / 0.09), rgb(77 184 255 / 0.05));
}

.stat-item strong {
  display: block;
  font-family: var(--font-brand);
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1;
}

.stat-content > span:last-child {
  display: block;
  margin-top: 0.3rem;
  color: var(--cyan);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section {
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.section-muted {
  background: transparent;
  border-block: 1px solid rgb(255 255 255 / 0.08);
}

.section-head {
  max-width: 780px;
  margin-bottom: 2rem;
  text-align: center;
}

.section-head p {
  font-size: 1.05rem;
}

.align-left {
  text-align: left;
  margin-bottom: 0;
}

.card-grid,
.project-grid,
.team-grid,
.values-grid,
.mission-grid,
.footer-grid {
  display: grid;
  gap: 1rem;
}

.service-card,
.project-card,
.team-card,
.values-grid article {
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgb(255 255 255 / 0.09), rgb(255 255 255 / 0.035));
  box-shadow: 0 14px 40px rgb(0 0 0 / 0.18);
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  overflow: hidden;
}

.service-card:hover,
.project-card:hover,
.team-card:hover,
.values-grid article:hover {
  border-color: rgb(56 178 255 / 0.32);
  box-shadow: var(--shadow-soft);
}

.service-card,
.team-card,
.values-grid article {
  padding: 1.25rem;
}

.icon-box {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 1rem;
  color: var(--accent);
  background: linear-gradient(135deg, rgb(26 101 224 / 0.22), rgb(56 178 255 / 0.12));
  border: 1px solid rgb(56 178 255 / 0.20);
}

.icon-box svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.project-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 0.35s var(--ease);
}

.project-card:hover img {
  transform: scale(1.045);
}

.project-card-body {
  position: relative;
  padding: 1.15rem;
}

.status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  margin-bottom: 0.8rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  color: var(--white);
  background: rgb(255 255 255 / 0.12);
  font-size: 0.78rem;
  font-weight: 900;
}

.status-success {
  background: rgb(16 185 129 / 0.16);
  color: #8af0c9;
}

.status-progress {
  background: rgb(0 180 216 / 0.16);
  color: #7be7ff;
}

.section-action {
  margin-top: 2rem;
  text-align: center;
}

.split-layout {
  display: grid;
  gap: 2rem;
}

.feature-list {
  display: grid;
  gap: 0.8rem;
}

.feature-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
}

.feature-item span,
.values-grid article span,
.timeline article span {
  color: var(--accent);
  font-weight: 900;
}

.cta-band {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background:
    repeating-linear-gradient(-55deg, transparent, transparent 44px, rgb(56 178 255 / 0.018) 44px, rgb(56 178 255 / 0.018) 45px),
    linear-gradient(135deg, rgb(13 59 232 / 0.15), rgb(56 178 255 / 0.07));
  border-block: 1px solid rgb(56 178 255 / 0.14);
}

.cta-inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.cta-inner h2 {
  margin-bottom: 0;
}

.rich-text p {
  font-size: 1.05rem;
}

.mini-stats {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.mini-stats div {
  padding: 1rem;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: var(--radius-sm);
  background: rgb(255 255 255 / 0.05);
}

.mini-stats strong {
  display: block;
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
}

.mini-stats span {
  color: var(--text-muted);
  font-weight: 700;
}

.mission-grid .glass-panel {
  padding: 1.35rem;
}

.team-card {
  text-align: center;
}

.avatar {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, #0d3be8, #1a65e0 38%, #38b2ff 72%, #7ec8ff);
  font-weight: 900;
  box-shadow: 0 8px 32px rgb(13 59 232 / 0.40);
}

.team-card a,
.info-list a,
.text-btn {
  color: var(--accent);
}

.values-grid article {
  min-height: 220px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 1rem;
}

.timeline article {
  padding: 1rem 1rem 1rem 1.25rem;
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgb(255 255 255 / 0.05);
  box-shadow: -4px 0 20px -8px rgb(26 101 224 / 0.35);
}

.service-details {
  display: grid;
  gap: 3rem;
}

.service-detail {
  display: grid;
  gap: 1.4rem;
  align-items: center;
}

.service-detail img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgb(255 255 255 / 0.1);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.service-detail-copy {
  max-width: 620px;
}

.check-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--text-muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgb(16 185 129 / 0.12);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.filter-btn,
.text-btn {
  min-height: 44px;
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.07);
  color: var(--text);
  font-weight: 900;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.filter-btn {
  padding: 0.65rem 1rem;
}

.filter-btn.is-active,
.filter-btn:hover,
.filter-btn:focus-visible {
  color: #ffffff;
  background: linear-gradient(135deg, #1a65e0, #38b2ff);
  border-color: transparent;
}

.text-btn {
  margin-top: 0.6rem;
  padding: 0.55rem 0.9rem;
}

.text-btn:hover,
.text-btn:focus-visible {
  color: #ffffff;
  background: linear-gradient(135deg, #1a65e0, #38b2ff);
  border-color: transparent;
}

.project-card.is-hidden {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), visibility 0.2s var(--ease);
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgb(2 8 23 / 0.78);
  backdrop-filter: blur(14px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 920px);
  max-height: min(90svh, 760px);
  overflow: auto;
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

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

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgb(255 255 255 / 0.18);
  border-radius: 50%;
  color: var(--white);
  background: rgb(10 22 40 / 0.78);
}

.modal-content {
  padding: 1.2rem;
}

.project-meta {
  display: grid;
  gap: 0.8rem;
  margin: 0 0 1rem;
}

.project-meta div {
  padding: 0.8rem;
  border-radius: var(--radius-sm);
  background: rgb(255 255 255 / 0.05);
}

.project-meta dt {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.project-meta dd {
  margin: 0.15rem 0 0;
  color: var(--white);
  font-weight: 900;
}

.contact-layout {
  display: grid;
  gap: 1rem;
}

.contact-panel,
.info-panel {
  padding: 1.25rem;
}

.contact-form,
.form-grid,
.info-list {
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--text);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  color: var(--white);
  background: rgb(5 14 28 / 0.72);
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgb(26 101 224 / 0.20);
}

.contact-form input.is-invalid,
.contact-form textarea.is-invalid {
  border-color: var(--danger);
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  font-weight: 800;
}

.form-status.is-success {
  color: #8af0c9;
}

.form-status.is-error {
  color: #fca5a5;
}

.info-list div {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
}

.info-list span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.info-list p {
  margin-bottom: 0;
}

.map-section {
  padding: 0 0 clamp(4rem, 8vw, 6rem);
}

.map-wrap {
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: saturate(0.82) contrast(1.05);
}

.site-footer {
  padding: 0;
  background: rgb(3 7 17 / 0.88);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgb(255 255 255 / 0.1);
}

.site-footer p {
  color: var(--text-muted);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgb(255 255 255 / 0.1);
  color: var(--text-muted);
  font-size: 0.9rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgb(56 178 255 / 0.80);
  outline-offset: 3px;
}

@keyframes loaderPulse {
  0% { transform: scale(0.84); opacity: 0.52; }
  70% { transform: scale(1.16); opacity: 0; }
  100% { transform: scale(1.16); opacity: 0; }
}

@media (min-width: 560px) {
  .container {
    width: min(100% - 2rem, var(--container));
  }

  .stats-grid,
  .mini-stats,
  .form-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .card-grid,
  .team-grid,
  .values-grid,
  .project-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 840px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.15rem;
    padding: 0;
    background: transparent;
    border: 0;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.55rem 0.7rem;
    font-size: 0.86rem;
  }

  .nav-call {
    margin-left: 0.35rem;
    padding-inline: 0.95rem;
  }

  .split-layout,
  .cta-inner,
  .contact-layout {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .hero-badge {
    justify-self: end;
  }

  .service-summary-grid,
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .featured-grid,
  .gallery-grid,
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .service-detail-reverse .service-detail-copy {
    order: 2;
  }

  .service-detail-reverse img {
    order: 1;
  }

  .footer-grid {
    grid-template-columns: 1.25fr 0.75fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1080px) {
  .site-nav a {
    padding-inline: 0.9rem;
    font-size: 0.92rem;
  }

  .hero,
  .page-hero {
    padding-bottom: 5.5rem;
  }

  .contact-panel,
  .info-panel,
  .mission-grid .glass-panel {
    padding: 1.7rem;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

.signature-section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 9vw, 7rem) 0;
  background: radial-gradient(circle at 72% 24%, rgb(26 101 224 / 0.12), transparent 28rem);
  border-bottom: 1px solid rgb(56 178 255 / 0.10);
}

.signature-section::before {
  content: "";
  position: absolute;
  inset: 8% auto 10% 0;
  width: min(18vw, 220px);
  border-block: 1px solid rgb(56 178 255 / 0.18);
  border-right: 1px solid rgb(56 178 255 / 0.18);
  opacity: 0.8;
}

.signature-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.signature-copy {
  max-width: 680px;
}

.signature-points {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.signature-points div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.2rem 0.8rem;
  padding: 0.9rem;
  border: 1px solid rgb(181 215 255 / 0.13);
  border-radius: 1.1rem;
  background: linear-gradient(135deg, rgb(255 255 255 / 0.08), rgb(255 255 255 / 0.025));
}

.signature-points span {
  grid-row: span 2;
  color: var(--cyan);
  font-weight: 900;
}

.signature-points strong {
  color: var(--white);
}

.signature-points small {
  color: rgb(215 228 245 / 0.68);
  line-height: 1.5;
}

.media-mosaic {
  position: relative;
  min-height: 420px;
  border: 1px solid rgb(181 215 255 / 0.16);
  border-radius: 2.2rem;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 0.055) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(0deg, rgb(255 255 255 / 0.04) 1px, transparent 1px) 0 0 / 34px 34px,
    rgb(4 9 21 / 0.6);
  box-shadow: var(--deep-shadow);
  transform: perspective(1200px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transition: transform 0.28s var(--ease);
}

.media-mosaic img {
  position: absolute;
  object-fit: cover;
  border: 1px solid rgb(255 255 255 / 0.14);
  box-shadow: 0 24px 70px rgb(0 0 0 / 0.42);
}

.mosaic-main {
  inset: 1rem 1rem auto 1rem;
  width: calc(100% - 2rem);
  aspect-ratio: 16 / 9;
  border-radius: 1.6rem;
}

.mosaic-float {
  width: min(46%, 250px);
  aspect-ratio: 16 / 10;
  border-radius: 1.1rem;
}

.mosaic-float-top {
  top: -1.2rem;
  right: 1.15rem;
}

.mosaic-float-bottom {
  left: 1.1rem;
  bottom: 1rem;
}

.mosaic-scan {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: min(48%, 250px);
  padding: 1rem;
  border: 1px solid rgb(56 178 255 / 0.28);
  border-radius: 1.2rem;
  background: rgb(3 9 20 / 0.78);
  backdrop-filter: blur(14px);
}

.mosaic-scan::before {
  content: "";
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  top: 0.55rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  animation: scanLine 2.4s var(--ease) infinite;
}

.mosaic-scan span,
.mosaic-scan small {
  display: block;
  color: rgb(215 228 245 / 0.7);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mosaic-scan strong {
  display: block;
  color: var(--white);
  font-size: 1.35rem;
}

@keyframes scanLine {
  0%, 100% { transform: translateY(0); opacity: 0.35; }
  50% { transform: translateY(4.2rem); opacity: 1; }
}

@media (min-width: 840px) {
  .signature-grid {
    grid-template-columns: 0.86fr 1.14fr;
  }

  .media-mosaic {
    min-height: 560px;
  }

  .mosaic-main {
    inset: 2rem 2rem auto auto;
    width: 78%;
  }

  .mosaic-float-top {
    top: 1.1rem;
    left: 1.1rem;
    right: auto;
  }

  .mosaic-float-bottom {
    width: min(42%, 280px);
    left: 2rem;
    bottom: 2rem;
  }

  .mosaic-scan {
    right: 2rem;
    bottom: 2rem;
  }
}

/* Steel-blue contractor direction */
:root {
  --ink: #030912;
  --ink-2: #060f1e;
  --panel: rgb(5 18 36 / 0.82);
  --panel-strong: rgb(7 22 44 / 0.94);
  --line-soft: rgb(56 178 255 / 0.14);
  --gold: #f7b84b;
  --cyan: #4db8ff;
  --steel: #93c5fd;
  --deep-shadow: 0 30px 90px rgb(0 0 0 / 0.50), 0 12px 42px rgb(26 101 224 / 0.14);
}

body {
  background:
    linear-gradient(90deg, rgb(56 178 255 / 0.030) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(0deg, rgb(56 178 255 / 0.025) 1px, transparent 1px) 0 0 / 72px 72px,
    radial-gradient(ellipse 80% 50% at 18% 8%, rgb(13 59 232 / 0.20) 0%, transparent 52%),
    radial-gradient(ellipse 60% 40% at 82% 92%, rgb(26 101 224 / 0.14) 0%, transparent 46%),
    linear-gradient(160deg, #020a18 0%, #06122a 45%, #030914 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0 38%, rgb(26 101 224 / 0.09) 38% 38.25%, transparent 38.25% 100%),
    linear-gradient(250deg, transparent 0 58%, rgb(77 184 255 / 0.06) 58% 58.2%, transparent 58.2% 100%);
  opacity: 0.9;
}

.site-header {
  left: 0.75rem;
  right: 0.75rem;
  top: 0.75rem;
  min-height: 70px;
  padding: 0.7rem 0.75rem;
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 1.4rem;
  background: linear-gradient(135deg, rgb(5 13 26 / 0.82), rgb(12 32 54 / 0.66));
  box-shadow: 0 18px 56px rgb(0 0 0 / 0.28);
}

.site-header.is-scrolled {
  min-height: 64px;
  background: linear-gradient(135deg, rgb(5 13 26 / 0.94), rgb(12 32 54 / 0.82));
}

.brand {
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
}

.brand-mark {
  width: auto;
  height: 52px;
  padding: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.brand-copy {
  display: none;
}

.brand-title {
  font-size: 0.78rem;
}

.brand-tagline {
  font-size: 0.68rem;
  color: rgb(77 184 255 / 0.90);
}

.site-nav {
  inset: 5.7rem 0.75rem auto 0.75rem;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 1.2rem;
  background: rgb(5 13 26 / 0.96);
  box-shadow: var(--deep-shadow);
}

.site-nav a {
  border: 1px solid transparent;
  color: rgb(215 228 245 / 0.72);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  border-color: rgb(255 255 255 / 0.12);
  background: linear-gradient(135deg, rgb(255 255 255 / 0.12), rgb(255 255 255 / 0.04));
}

.btn {
  position: relative;
  isolation: isolate;
  min-height: 52px;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
}

.btn::after,
.nav-call::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background: linear-gradient(105deg, transparent 20%, rgb(255 255 255 / 0.42), transparent 58%);
  transform: translateX(-120%);
  transition: transform 0.55s var(--ease);
}

.btn:hover::after,
.btn:focus-visible::after,
.nav-call:hover::after,
.nav-call:focus-visible::after {
  transform: translateX(120%);
}

.hero,
.page-hero {
  align-items: center;
  padding: 7.5rem 0 3.75rem;
}

.hero-home {
  min-height: 100svh;
}

.page-hero {
  min-height: 72svh;
}

.hero-media img {
  opacity: 0.55;
  filter: saturate(1.04) contrast(1.08);
}

.hero::after,
.page-hero::after {
  background:
    radial-gradient(ellipse 90% 70% at 50% 40%, rgb(3 7 17 / 0.28) 0%, rgb(3 7 17 / 0.86) 100%),
    linear-gradient(180deg, rgb(3 7 17 / 0.65) 0%, transparent 28%),
    linear-gradient(0deg, var(--ink) 0%, transparent 56%),
    radial-gradient(ellipse 60% 50% at 50% 40%, rgb(26 101 224 / 0.12) 0%, transparent 100%);
}

.hero-inner {
  gap: 2.5rem;
}



h1, .page-hero h1 { max-width: 20ch; font-size: 3rem;
  line-height: 0.96;
  text-wrap: balance;
}

h2 {
  font-size: 2.15rem;
  text-wrap: balance;
}

h3 {
  font-size: 1.16rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  min-height: 32px;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgb(56 178 255 / 0.30);
  border-radius: 999px;
  background: rgb(26 101 224 / 0.10);
  color: #93c5fd;
}

.hero-motto {
  position: relative;
  padding-bottom: 1.75rem;
  color: var(--cyan);
  font-size: clamp(0.88rem, 2.4vw, 1.15rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-motto::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--steel), transparent);
  border-radius: 2px;
}

.hero-copy,
.page-hero p,
.section-head p,
.rich-text p {
  color: rgb(215 228 245 / 0.76);
}

.hero h1 {
  line-height: 1;
}

.hero-logo-hero {
  width: min(580px, 88vw);
  height: auto;
  filter: drop-shadow(0 0 52px rgb(26 101 224 / 0.55)) drop-shadow(0 4px 24px rgb(0 0 0 / 0.65));
}

.hero .eyebrow,
.page-hero .eyebrow {
  box-shadow: 0 0 22px rgb(26 101 224 / 0.26);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.75rem;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgb(56 178 255 / 0.24);
  border-radius: 999px;
  background: rgb(26 101 224 / 0.09);
  backdrop-filter: blur(12px);
  font-size: 0.73rem;
  font-weight: 700;
  color: rgb(215 228 245 / 0.72);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.trust-chip svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  stroke: var(--cyan);
  stroke-width: 2.5;
  fill: none;
}

.stats-band {
  background: linear-gradient(135deg, rgb(26 101 224 / 0.09), rgb(56 178 255 / 0.05)), rgb(3 10 22 / 0.98);
  border-top-color: rgb(56 178 255 / 0.22);
}

.stats-grid {
  border-inline: none;
}

.stat-item {
  position: relative;
  background: transparent;
}

.stat-item::before {
  display: none;
}

.stat-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgb(26 101 224 / 0.24), rgb(77 184 255 / 0.14));
  border: 1px solid rgb(77 184 255 / 0.28);
  color: var(--cyan);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover .stat-icon {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgb(77 184 255 / 0.32);
}

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

.stat-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.stat-item strong {
  font-size: clamp(2.3rem, 9vw, 3rem);
  background: linear-gradient(135deg, #60a5fa 0%, var(--steel) 52%, #f0f8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--cyan);
}

.stat-unit {
  display: inline-block;
  font-size: 0.72em;
  line-height: 1;
}

.section {
  position: relative;
}

.section-muted {
  background:
    linear-gradient(90deg, rgb(56 178 255 / 0.022) 1px, transparent 1px) 0 0 / 36px 36px,
    linear-gradient(0deg, rgb(56 178 255 / 0.018) 1px, transparent 1px) 0 0 / 36px 36px,
    transparent;
  border-block: 1px solid rgb(56 178 255 / 0.10);
}

.section-head {
  position: relative;
}

.service-card,
.project-card,
.team-card,
.values-grid article,
.glass-panel,
.contact-panel,
.info-panel {
  position: relative;
  border-color: rgb(56 178 255 / 0.12);
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 0%), rgb(26 101 224 / 0.14), transparent 34%),
    linear-gradient(135deg, rgb(255 255 255 / 0.105), rgb(255 255 255 / 0.035));
  box-shadow: var(--deep-shadow);
}

.service-card::after,
.project-card::after,
.team-card::after,
.values-grid article::after,
.glass-panel::after,
.contact-panel::after,
.info-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  border: 1px solid rgb(255 255 255 / 0.08);
}

.service-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.service-card h3,
.project-card h3,
.team-card h3 {
  letter-spacing: 0;
}

.icon-box {
  width: 62px;
  height: 62px;
  border-radius: 1.2rem;
  background: linear-gradient(135deg, rgb(26 101 224 / 0.26), rgb(77 184 255 / 0.16));
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.22), 0 12px 30px rgb(26 101 224 / 0.18);
}

.project-card {
  border-radius: 0.65rem;
}

.project-card img {
  aspect-ratio: 16 / 10;
  filter: saturate(1.04) contrast(1.04);
}

.project-card-body {
  background: linear-gradient(180deg, rgb(5 13 26 / 0.22), rgb(5 13 26 / 0.78));
}

.gallery-grid .project-card:first-child {
  border-color: rgb(56 178 255 / 0.38);
}

.filter-bar {
  justify-content: center;
}

.filter-btn,
.text-btn {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgb(255 255 255 / 0.1), rgb(255 255 255 / 0.035));
}

.filter-btn.is-active,
.filter-btn:hover,
.filter-btn:focus-visible,
.text-btn:hover,
.text-btn:focus-visible {
  color: #ffffff;
  background: linear-gradient(135deg, #1a65e0, #38b2ff);
  border-color: transparent;
}



.service-detail {
  padding-block: 1rem;
}

.service-detail img {
  border-radius: 0.75rem;
  aspect-ratio: 16 / 10;
}

.contact-form input,
.contact-form textarea {
  background: rgb(3 9 20 / 0.82);
}

.map-wrap {
  border-radius: 0.75rem;
}

.site-footer {
  background:
    linear-gradient(90deg, rgb(255 255 255 / 0.02) 1px, transparent 1px) 0 0 / 58px 58px,
    rgb(3 7 17 / 0.88);
}

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgb(56 178 255 / 0.16);
  background:
    radial-gradient(circle at top left, rgb(26 101 224 / 0.16), transparent 24rem),
    linear-gradient(180deg, rgb(3 9 20 / 0.98), rgb(4 11 23 / 0.96));
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 0.02) 1px, transparent 1px) 0 0 / 58px 58px,
    linear-gradient(0deg, rgb(255 255 255 / 0.015) 1px, transparent 1px) 0 0 / 58px 58px,
    linear-gradient(135deg, transparent 0 42%, rgb(26 101 224 / 0.08) 42% 42.2%, transparent 42.2% 100%);
  opacity: 0.9;
}

.site-footer > .container,
.footer-bottom-area {
  position: relative;
  z-index: 1;
}

.footer-cta-grid {
  display: grid;
  gap: 1rem;
  padding: 2rem 0 1.8rem;
  border-bottom: 1px solid rgb(56 178 255 / 0.12);
}

.footer-cta-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 0;
  padding: 1.05rem 1.1rem;
  border: 1px solid rgb(56 178 255 / 0.14);
  border-radius: 1.05rem;
  background: linear-gradient(135deg, rgb(255 255 255 / 0.08), rgb(255 255 255 / 0.03));
  box-shadow: 0 18px 44px rgb(0 0 0 / 0.2);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.footer-cta-card:hover,
.footer-cta-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgb(77 184 255 / 0.42);
  box-shadow: var(--deep-shadow);
}

.footer-cta-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgb(26 101 224 / 0.28), rgb(77 184 255 / 0.18));
  border: 1px solid rgb(77 184 255 / 0.24);
  color: var(--cyan);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.18), 0 10px 28px rgb(26 101 224 / 0.18);
}

.footer-cta-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-cta-text {
  min-width: 0;
}

.footer-cta-text h2 {
  margin: 0 0 0.25rem;
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: none;
}

.footer-cta-text span {
  display: block;
  color: rgb(215 228 245 / 0.72);
  font-size: 0.94rem;
  line-height: 1.5;
}

.footer-main-grid {
  display: grid;
  gap: 1.3rem;
  padding: 2rem 0;
}

.footer-company,
.footer-widget {
  position: relative;
  overflow: hidden;
  padding: 1.35rem;
  border: 1px solid rgb(56 178 255 / 0.12);
  border-radius: 1.2rem;
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 0%), rgb(26 101 224 / 0.12), transparent 34%),
    linear-gradient(135deg, rgb(255 255 255 / 0.09), rgb(255 255 255 / 0.035));
  box-shadow: var(--deep-shadow);
}

.footer-company::after,
.footer-widget::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgb(255 255 255 / 0.06);
  border-radius: inherit;
  pointer-events: none;
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  margin: 0 0 1rem;
}

.footer-logo-link img {
  width: min(220px, 100%);
  height: auto;
}

.footer-description {
  margin: 0;
  color: rgb(215 228 245 / 0.74);
  line-height: 1.75;
}

.footer-social {
  margin-top: 1.45rem;
}

.footer-social > span {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--white);
  font-size: 1.05rem;
  font-family: var(--font-display);
  font-weight: 700;
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0;
  border: 1px solid rgb(56 178 255 / 0.16);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.05);
  color: var(--white);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  transform: translateY(-2px);
  border-color: transparent;
  background: linear-gradient(135deg, #1a65e0, #38b2ff);
  color: var(--white);
}

.footer-widget-heading h3 {
  position: relative;
  margin: 0 0 1.15rem;
  padding-bottom: 0.9rem;
  color: var(--white);
  font-size: 1.2rem;
}

.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.footer-links-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links-list li {
  margin: 0;
}

.footer-links-list a {
  display: inline-flex;
  align-items: center;
  margin: 0;
  color: rgb(215 228 245 / 0.68);
  font-weight: 600;
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

.footer-links-list a:hover,
.footer-links-list a:focus-visible {
  color: var(--white);
  transform: translateX(3px);
}

.footer-subscribe-form {
  margin-top: 1.2rem;
}

.footer-subscribe-form form {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgb(56 178 255 / 0.16);
  border-radius: 999px;
  background: rgb(3 9 20 / 0.86);
}

.footer-subscribe-form input {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 0;
  background: transparent;
  color: var(--white);
}

.footer-subscribe-form input::placeholder {
  color: rgb(215 228 245 / 0.45);
}

.footer-subscribe-form button {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border: 0;
  padding: 0;
  background: linear-gradient(135deg, #1a65e0, #38b2ff);
  color: var(--white);
  display: grid;
  place-items: center;
}

.footer-subscribe-form button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-bottom-area {
  border-top: 1px solid rgb(56 178 255 / 0.12);
  background: rgb(3 8 18 / 0.8);
}

.footer-bottom {
  margin-top: 0;
  padding: 1.15rem 0 1.4rem;
  align-items: center;
  gap: 0.8rem;
}

.copyright-text p {
  margin: 0;
  color: rgb(215 228 245 / 0.55);
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1.1rem;
}

.footer-bottom-links a {
  display: inline-flex;
  margin: 0;
  color: rgb(215 228 245 / 0.52);
  font-size: 0.88rem;
}

.footer-bottom-links a:hover,
.footer-bottom-links a:focus-visible {
  color: var(--white);
}

.footer-powered {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  color: var(--steel);
  font-size: 0.88rem;
  font-weight: 700;
}

@media (min-width: 700px) {
  .footer-cta-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-main-grid {
    grid-template-columns: 1.1fr 0.9fr 1fr;
  }
}

@media (max-width: 699px) {
  .stat-item:nth-child(3) strong {
    font-size: clamp(1.9rem, 8vw, 2.5rem);
  }

  .stat-item:nth-child(3) .stat-unit {
    display: block;
    margin-top: 0.12em;
    font-size: 0.68em;
  }

  .footer-links-list {
    grid-template-columns: 1fr;
  }

  .footer-bottom-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-powered {
    margin-left: 0;
  }
}

@media (min-width: 560px) {
  .showcase-stack {
    grid-template-columns: repeat(3, 1fr);
  }

  h1,
  .page-hero h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .stat-item strong {
    font-size: 3rem;
  }
}

@media (min-width: 840px) {
  .site-header {
    left: 1rem;
    right: 1rem;
    padding-inline: 1rem;
  }

  .page-hero .page-hero-inner {
    align-items: center;
    text-align: center;
  }

  .page-hero .eyebrow {
    margin-inline: auto;
  }

  .site-nav {
    background: transparent;
    box-shadow: none;
  }

  .gallery-grid .project-card:first-child {
    grid-column: span 2;
  }

  .gallery-grid .project-card:first-child img {
    aspect-ratio: 16 / 7.6;
  }

  h1,
  .page-hero h1 {
    font-size: 5.3rem;
  }

  .stat-item strong {
    font-size: 3.45rem;
  }
}

@media (min-width: 1180px) {
  .site-header {
    left: max(1rem, calc((100vw - 1240px) / 2));
    right: max(1rem, calc((100vw - 1240px) / 2));
  }

  h1 {
    font-size: 6.65rem;
  }

  .page-hero h1 {
    font-size: 5.6rem;
  }

  h2 {
    font-size: 3.35rem;
  }
}

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

  [class],
  [class]::before,
  [class]::after,
  [data-reveal],
  [data-tilt-card],
  .nav-toggle span {
    animation: none;
    transition: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .media-mosaic {
    transform: none;
  }
}



.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 10;
  opacity: 0.7;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-scroll {
    animation: fadeInScroll 1s ease 1.5s both;
  }
}

@keyframes fadeInScroll {
  from { opacity: 0; transform: translate(-50%, 12px); }
  to { opacity: 0.7; transform: translateX(-50%); }
}

.scroll-track {
  display: block;
  width: 1.5px;
  height: 52px;
  background: rgb(215 228 245 / 0.18);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.scroll-bead {
  display: block;
  width: 100%;
  height: 45%;
  background: linear-gradient(180deg, var(--steel), var(--cyan));
  border-radius: 2px;
  animation: scrollBead 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-bead { animation: none; height: 100%; opacity: 0.4; }
}

@keyframes scrollBead {
  0% { transform: translateY(-110%); opacity: 0; }
  15% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateY(240%); opacity: 0; }
}

.scroll-arrow {
  width: 16px;
  height: 8px;
  color: rgb(215 228 245 / 0.55);
  animation: arrowPulse 2s ease-in-out infinite 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-arrow { animation: none; }
}

@keyframes arrowPulse {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50% { transform: translateY(3px); opacity: 0.9; }
}

/* iOS/mobile: background-attachment:fixed çalışmaz, scroll'a fallback */
@media (max-width: 768px) {
  body {
    background-attachment: scroll;
  }
}

/* === Cursor Glow === */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(26 101 224 / 0.07) 0%, rgb(77 184 255 / 0.03) 38%, transparent 68%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: left 0.12s ease, top 0.12s ease;
  mix-blend-mode: screen;
  will-change: left, top;
}

@media (hover: none) {
  .cursor-glow { display: none; }
}

/* === Footer Brand Stamp === */
.brand-reveal-card {
  position: relative;
  display: inline-grid;
  place-content: center;
  width: 210px;
  height: 126px;
  background: rgb(3 10 26 / 0.92);
  border: 1px solid rgb(56 178 255 / 0.22);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease;
  margin-bottom: 1rem;
  text-decoration: none;
}

.brand-reveal-card:hover {
  transform: translateY(-2px);
  border-color: transparent;
}

.brc-border {
  position: absolute;
  inset: 0;
  border: 1.5px solid var(--cyan);
  border-radius: inherit;
  opacity: 0;
  transform: rotate(8deg) scale(0.94);
  transition: all 0.45s ease;
  pointer-events: none;
}

.brand-reveal-card:hover .brc-border {
  inset: 10px;
  opacity: 1;
  transform: rotate(0) scale(1);
}

.brc-body {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brc-logo-wrap {
  display: flex;
  align-items: center;
  height: 36px;
  width: 34px;
  overflow: hidden;
  position: relative;
  transition: width 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-reveal-card:hover .brc-logo-wrap {
  width: 170px;
}

.brc-icon-part {
  flex-shrink: 0;
  width: 34px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brc-icon-part img {
  width: 26px;
  height: auto;
  filter: brightness(0) saturate(100%) invert(58%) sepia(78%) saturate(500%) hue-rotate(195deg) brightness(112%) contrast(96%);
}

.brc-wordmark {
  position: absolute;
  left: 38px;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 900;
  color: var(--cyan);
  letter-spacing: 0.14em;
  opacity: 0;
  transition: opacity 0.28s ease 0.32s;
}

.brand-reveal-card:hover .brc-wordmark {
  opacity: 1;
}

.brc-trail {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
}

.brand-reveal-card:hover .brc-trail {
  animation: brcTrail 0.75s ease-in-out;
}

@keyframes brcTrail {
  0% { background: linear-gradient(90deg, transparent 90%, var(--cyan)); opacity: 0; }
  30% { background: linear-gradient(90deg, transparent 68%, var(--cyan)); opacity: 1; }
  70% { background: linear-gradient(90deg, transparent 68%, var(--cyan)); opacity: 1; }
  100% { background: linear-gradient(90deg, transparent 90%, var(--cyan)); opacity: 0; }
}

.brc-tagline {
  position: absolute;
  bottom: 9px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.48rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--cyan);
  background: rgb(3 10 26 / 0.92);
  padding: 0 5px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.35s ease, letter-spacing 0.35s ease;
}

.brand-reveal-card:hover .brc-tagline {
  opacity: 1;
  letter-spacing: 0.22em;
}

/* === Social Links === */
.social-links {
  display: flex;
  gap: 0.55rem;
  margin-top: 1rem;
}

.social-btn {
  display: grid;
  place-items: center;
  width: 40px;
  height: 44px;
  border-radius: 14px 0 14px 0;
  background: rgb(44 44 44 / 0.7);
  color: rgb(255 255 255 / 0.8);
  border: 1px solid rgb(255 255 255 / 0.08);
  transition: background 0.5s ease, transform 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.social-btn:not(.social-btn-disabled):hover {
  background: var(--sc, rgb(0 180 216));
  transform: translateY(-2px);
}

.social-btn:not(.social-btn-disabled):hover svg {
  animation: socialSlide 0.5s ease both;
}

.social-btn-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

@keyframes socialSlide {
  0% { transform: translateY(-20px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* === 3D Service Cards === */
.service-summary-grid {
  perspective: 1200px;
}

.service-card {
  padding: 0;
  overflow: hidden;
  transform-style: preserve-3d;
  background-color: rgb(7 18 38);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out, background-position 0.5s ease-in-out;
}

/* cursor spotlight + dark gradient overlay on top of bg photo */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgb(26 101 224 / 0.24) 0%, transparent 52%),
    linear-gradient(to bottom, rgb(3 10 26 / 0.14) 0%, rgb(3 10 26 / 0.52) 55%, rgb(3 10 26 / 0.82) 100%);
  transition: background 0.5s ease-in-out;
}

.service-card:hover {
  transform: translateY(-6px);
  background-position: center 40%;
  box-shadow: -18px 18px 50px rgb(0 0 0 / 0.6), 0 0 40px rgb(26 101 224 / 0.24);
  border-color: rgb(56 178 255 / 0.38);
}

.service-card:hover::before {
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgb(56 178 255 / 0.32) 0%, transparent 52%),
    linear-gradient(to bottom, rgb(3 10 26 / 0.06) 0%, rgb(3 10 26 / 0.36) 55%, rgb(3 10 26 / 0.66) 100%);
}

.service-card .icon-box {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: 0;
  transform: translate3d(0, 0, 70px);
  z-index: 2;
}

.svc-inner {
  position: relative;
  z-index: 1;
  padding: 4rem 1.4rem 1.4rem;
  border-radius: inherit;
  transform-style: preserve-3d;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.service-card h3 {
  transform: none;
  transition: transform 0.5s ease-in-out;
  font-size: 1.05rem;
}

.service-card p {
  transform: none;
  transition: transform 0.5s ease-in-out;
  font-size: 0.86rem;
  color: rgb(215 228 245 / 0.85);
}

.service-card:hover h3 {
  transform: none;
}

.service-card:hover p {
  transform: none;
}

@media (max-width: 640px) {
  .service-summary-grid {
    perspective: none;
  }
  .service-card {
    transform: none !important;
  }
  .service-card .icon-box,
  .service-card h3,
  .service-card p {
    transform: none !important;
  }
}
