* {
  box-sizing: border-box;
}

:root {
  --bg: #06111c;
  --line: rgba(255,255,255,0.16);
  --text: #eef6ff;
  --muted: #c5d3e1;
  --blue: #28a8ff;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: min(1320px, 92%);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(3, 10, 18, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid white;
  font-size: 20px;
}

.brand strong {
  display: block;
  font-size: 20px;
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  color: var(--muted);
}

nav {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

nav a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.08em;
  padding: 27px 0 23px;
  border-bottom: 2px solid transparent;
}

nav a:hover {
  border-bottom-color: var(--blue);
}

.hero {
  padding: 72px 0;
  background: linear-gradient(135deg, #06111c, #12365a);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-text {
  max-width: 650px;
}

.hero-image {
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 28px 70px rgba(0,0,0,0.35);
}

.hero-image img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 13px;
}

.hero h1,
.page-header h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.accent-line {
  width: 78px;
  height: 2px;
  margin: 22px 0;
  background: var(--blue);
}

.hero p,
.page-header p {
  max-width: 680px;
  color: var(--muted);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.button,
button {
  display: inline-block;
  border: 1px solid var(--blue);
  padding: 13px 22px;
  background: var(--blue);
  color: #03101c;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  font-size: 15px;
}

.button.secondary {
  background: transparent;
  color: white;
}

.image-section {
  padding: 84px 0 52px;
  background: #07131f;
  border-bottom: 1px solid var(--line);
}

.image-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.image-band figure {
  margin: 0;
}

.image-band img {
  width: 100%;
  height: 205px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(255,255,255,0.18);
}

.image-band figcaption {
  margin-top: 16px;
  color: var(--blue);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  font-weight: 700;
}

.portfolio {
  padding: 48px 0 46px;
  background: linear-gradient(180deg, #06111c, #092034);
}

.section-label {
  margin: 0 0 34px;
  text-align: center;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 18px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.portfolio-card {
  min-height: 270px;
  padding: 22px 24px;
  border-right: 1px solid var(--line);
}

.portfolio-card:last-child {
  border-right: 0;
}

.card-title {
  min-height: 54px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.icon {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 24px;
  line-height: 1.1;
  margin-top: 1px;
}

.portfolio-card h2 {
  margin: 0;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.portfolio-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--text);
}

.portfolio-card li {
  margin-bottom: 8px;
}

.industries {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #07131f;
  padding: 20px 0;
}

.industry-row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.industry-row strong {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 14px;
}

.page-header {
  padding: 95px 0;
  background: linear-gradient(135deg, #06111c, #123d65);
}

.contact-section,
.legal-section {
  padding: 72px 0;
  background: white;
  color: #172033;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
}

.contact-box,
.contact-form,
.legal-content {
  border: 1px solid #dbe4ef;
  background: #f8fafc;
  border-radius: 18px;
  padding: 30px;
}

.contact-form {
  display: grid;
  gap: 20px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font: inherit;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
}

.checkbox input {
  width: auto;
  margin-top: 6px;
}

.legal-content {
  max-width: 900px;
}

.legal-content h2 {
  margin-top: 42px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.contact-section a,
.legal-section a {
  color: #0b65b9;
}

footer {
  padding: 34px 0;
  background: #02080f;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 34px;
}

footer p {
  margin-bottom: 0;
  color: var(--muted);
}

footer a {
  color: white;
}

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

  .portfolio-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 800px) {
  .nav,
  .contact-grid,
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 0;
  }

  nav {
    gap: 18px;
  }

  nav a {
    padding: 0 0 8px;
  }

  .hero-grid,
  .image-band,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .hero-image img {
    height: 260px;
  }

  .image-band img {
    height: 220px;
  }
}


.contact-form-only {
  max-width: 780px;
  margin: 0 auto;
}


.consent-banner {
  position: fixed;
  inset: auto 24px 24px 24px;
  z-index: 9999;
  display: none;
  justify-content: center;
  pointer-events: none;
}

.consent-banner.is-visible {
  display: flex;
}

.consent-content {
  max-width: 760px;
  width: 100%;
  padding: 24px;
  background: #ffffff;
  color: #172033;
  border: 1px solid #dbe4ef;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  pointer-events: auto;
}

.consent-content h2 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #06111c;
}

.consent-content p {
  margin: 0;
  color: #334155;
}

.consent-content a {
  color: #0b65b9;
  font-weight: 700;
}

.consent-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.consent-btn {
  border: 1px solid #28a8ff;
  padding: 12px 18px;
  background: #28a8ff;
  color: #03101c;
  font-weight: 800;
  cursor: pointer;
}

.consent-btn.secondary {
  background: transparent;
  color: #06111c;
  border-color: #94a3b8;
}

@media (max-width: 700px) {
  .consent-banner {
    inset: auto 12px 12px 12px;
  }

  .consent-content {
    padding: 20px;
  }

  .consent-actions {
    justify-content: stretch;
  }

  .consent-btn {
    width: 100%;
  }
}


.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}
