:root {
  --bg: #061122;
  --bg-2: #0b1d38;
  --bg-3: #10294d;
  --panel: rgba(12, 27, 52, 0.58);
  --panel-strong: rgba(15, 34, 63, 0.78);
  --panel-soft: rgba(255, 255, 255, 0.08);
  --line: rgba(187, 221, 255, 0.16);
  --line-strong: rgba(123, 208, 255, 0.26);
  --white: #f6fbff;
  --text: #dfeeff;
  --muted: #9fb6d3;
  --accent: #54c8ff;
  --accent-2: #8ce1ff;
  --accent-3: #6f8dff;
  --success: #59d7a1;
  --danger: #ff8f9f;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(84, 200, 255, 0.14), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(111, 141, 255, 0.16), transparent 24%),
    linear-gradient(180deg, var(--bg), var(--bg-2) 32%, #081427 100%);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
.container { width: min(1220px, calc(100% - 2rem)); margin: 0 auto; }
.page-shell { position: fixed; inset: 0; pointer-events: none; background: radial-gradient(circle at center, transparent 0, rgba(4, 10, 19, 0.2) 60%, rgba(4, 10, 19, 0.45) 100%); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 17, 34, 0.5);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}
.brand { display: flex; align-items: center; gap: 1rem; min-width: 0; }
.brand img {
  width: 110px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(84,200,255,0.22));
}
.brand strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.02em;
}
.brand span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav {
  display: flex;
  gap: 1.15rem;
  align-items: center;
  color: rgba(223, 238, 255, 0.88);
}
.nav a { transition: color 0.2s ease, opacity 0.2s ease; }
.nav a:hover { color: var(--accent-2); }
.nav-cta,
.primary-btn,
.secondary-btn {
  padding: 0.9rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
}
.primary-btn,
.nav-cta {
  color: #041120;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 30px rgba(84, 200, 255, 0.28);
}
.secondary-btn {
  color: var(--white);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.14);
}
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 2rem 0 4rem;
}
.hero-bg,
.hero-overlay { position: absolute; inset: 0; }
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.16;
  transform: scale(1.08);
}
.hero-overlay {
  background:
    radial-gradient(circle at 22% 18%, rgba(84, 200, 255, 0.12), transparent 24%),
    linear-gradient(135deg, rgba(6,17,34,0.92), rgba(10,29,56,0.8));
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: center;
  min-height: calc(100vh - 100px);
}
.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 800;
  font-size: 0.74rem;
}
.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.9rem, 6vw, 5.6rem);
  line-height: 0.96;
  max-width: 11.5ch;
  color: var(--white);
}
.hero-text,
.section-description,
.card p,
.lead-copy,
.contact-copy p {
  color: var(--muted);
  line-height: 1.8;
}
.hero-text { max-width: 60ch; font-size: 1.08rem; margin-top: 1.1rem; }
.hero-actions,
.pill-row,
.contact-meta { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.hero-actions { margin-top: 1.8rem; }
.hero-metrics {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}
.metric-card {
  padding: 1rem 1.05rem;
  border-radius: 20px;
}
.metric-card strong {
  display: block;
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}
.metric-card span { color: var(--muted); font-size: 0.92rem; }
.hero-side { display: flex; justify-content: flex-end; }
.hero-card { padding: 1.8rem; max-width: 460px; }
.hero-card h3 { margin: 0 0 1rem; font-size: 1.65rem; color: var(--white); }
.contact-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.contact-strip > div,
.glass-chip,
.mini-pill,
.pill {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
}
.contact-strip > div {
  padding: 0.9rem 1rem;
  border-radius: 18px;
}
.contact-strip small {
  display: block;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.contact-strip strong { color: var(--white); font-size: 0.98rem; }

.glass-panel {
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  border-radius: 28px;
}
.soft-glow { position: relative; overflow: hidden; }
.soft-glow::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(84,200,255,0.24), transparent 70%);
  top: -60px;
  right: -70px;
  pointer-events: none;
}
.card { border-radius: 28px; }
.section { padding: 5.25rem 0; position: relative; }
.alt-section { background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.03)); }
.section-heading { margin-bottom: 2rem; }
.split-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: end;
}
.section-heading.center { text-align: center; max-width: 860px; margin-inline: auto 0; }
.section-heading h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.06;
}
.grid-two,
.grid-three,
.grid-five,
.bullet-grid { display: grid; gap: 1.2rem; }
.grid-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-five { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.section-panel { padding: 1.5rem; }
.accent-panel {
  background: linear-gradient(180deg, rgba(122, 194, 255, 0.14), rgba(255,255,255,0.05));
  border-color: var(--line-strong);
}
.stack-list { display: grid; gap: 0.8rem; }
.feature-row {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.feature-row:last-child { border-bottom: 0; }
.feature-row-glass { color: var(--text); }
.icon-dot,
.icon-box,
.industry-icon,
.number-box {
  background: linear-gradient(135deg, rgba(84,200,255,0.98), rgba(111,141,255,0.94));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2), 0 14px 30px rgba(84,200,255,0.18);
}
.icon-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  flex: 0 0 auto;
  margin-top: 0.45rem;
}
.quote-banner {
  margin-top: 1.4rem;
  padding: 1.25rem 1.4rem;
  text-align: center;
  color: var(--white);
  font-size: 1.18rem;
}
.list-clean { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.85rem; }
.list-clean li,
.bullet-card,
.delivery-card { display: flex; gap: 0.8rem; align-items: flex-start; }
.list-bullet,
.checkmark {
  width: 1.45rem;
  height: 1.45rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  flex: 0 0 auto;
  background: rgba(84,200,255,0.14);
  color: var(--accent-2);
  font-weight: 800;
  border: 1px solid rgba(84,200,255,0.2);
}
.area-card,
.industry-card,
.service-stack-card { padding: 1.5rem; }
.area-card h3,
.industry-card h3,
.service-stack-card h3 { margin: 1rem 0 0.75rem; font-size: 1.36rem; color: var(--white); }
.icon-box,
.industry-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
}
.service-stack { display: grid; gap: 1.2rem; margin-top: 1.35rem; }
.service-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}
.align-end { justify-content: flex-end; }
.pill,
.mini-pill {
  padding: 0.68rem 0.92rem;
  border-radius: 999px;
  font-size: 0.92rem;
  color: var(--white);
}
.mini-pill.dark { border-color: rgba(84,200,255,0.16); }
.bullet-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 1.2rem; }
.glass-chip {
  padding: 1rem;
  border-radius: 18px;
  color: var(--text);
}
.industry-card { text-align: center; }
.industry-icon { margin-inline: auto; }
.image-card { padding: 1rem; overflow: hidden; }
.image-card img {
  border-radius: 22px;
  height: 390px;
  width: 100%;
  object-fit: cover;
  opacity: 0.54;
}
.image-pill-row { margin-top: 1rem; }
.delivery-points { display: grid; gap: 1rem; align-content: center; }
.delivery-card { padding: 1.2rem; }
.number-box {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #041120;
  font-weight: 800;
  flex: 0 0 auto;
}
.contact-section { padding-bottom: 4.4rem; }
.contact-copy h2 {
  margin: 0.2rem 0 1rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
}
.contact-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.4rem;
}
.contact-meta-grid .glass-chip {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
}
.contact-meta-grid strong { color: var(--white); }
.contact-meta-grid span { color: var(--muted); word-break: break-word; }
.contact-form { padding: 1.4rem; color: var(--text); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
label { display: grid; gap: 0.5rem; font-weight: 600; color: var(--white); }
input,
textarea,
select {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  padding: 0.95rem 1rem;
  outline: none;
}
input::placeholder,
textarea::placeholder { color: rgba(223,238,255,0.42); }
select option { color: #081427; }
input:focus,
textarea:focus,
select:focus {
  border-color: rgba(84,200,255,0.5);
  box-shadow: 0 0 0 4px rgba(84,200,255,0.12);
}
textarea { resize: vertical; }
.full-span,
.full-width { grid-column: 1 / -1; }
.status-message { margin-top: 1rem; min-height: 1.4rem; color: var(--muted); }
.site-footer {
  padding: 1.3rem 0 1.8rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(5, 13, 26, 0.32);
  backdrop-filter: blur(14px);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.footer-inner strong { color: var(--white); }
.footer-inner p,
.footer-inner small { color: var(--muted); margin: 0.2rem 0; }
.footer-right { text-align: right; }

@media (max-width: 1100px) {
  .hero-inner,
  .grid-two,
  .grid-three,
  .grid-five,
  .bullet-grid,
  .split-heading,
  .contact-meta-grid,
  .hero-metrics,
  .contact-strip {
    grid-template-columns: 1fr;
  }
  .footer-inner,
  .service-header { flex-direction: column; align-items: flex-start; }
  .footer-right { text-align: left; }
}

@media (max-width: 840px) {
  .menu-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 22px;
    background: rgba(7, 18, 36, 0.96);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .hero { padding-top: 1rem; }
  .hero-inner { min-height: auto; }
  .form-grid { grid-template-columns: 1fr; }
}


.contact-actions { margin-top: 1.4rem; display: flex; flex-wrap: wrap; gap: 0.85rem; }
.static-contact-card { padding: 1.7rem; }
.static-contact-card h3 { margin-top: 0; color: var(--white); font-size: 1.7rem; }
.static-contact-grid { display: grid; gap: 0.9rem; margin-top: 1.2rem; }
.contact-link { display: block; padding: 1rem 1.1rem; border-radius: 18px; }
.contact-link strong, .contact-link span { display: block; }
.contact-link strong { color: var(--white); margin-bottom: 0.28rem; }
.contact-link span { color: var(--muted); word-break: break-word; }

@media (max-width: 960px) {
  .contact-actions { justify-content: flex-start; }
}
