:root {
  --bg: #050b14;
  --panel: #0f1d33;
  --text: #eaf2ff;
  --muted: #9fb0c7;
  --blue: #2563eb;
  --cyan: #38bdf8;
  --border: rgba(148, 163, 184, 0.22);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.25), transparent 34rem),
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.14), transparent 30rem),
    var(--bg);
  line-height: 1.65;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 11, 20, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand img {
  width: 210px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 12px 30px rgba(56, 189, 248, 0.25));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 14px;
  font-weight: 800;
  color: #dbeafe;
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.menu-btn {
  display: none;
  background: transparent;
  color: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 24px;
}

.hero {
  min-height: calc(100vh - 96px);
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5, 11, 20, 0.94), rgba(5, 11, 20, 0.58)),
    url("https://images.unsplash.com/photo-1510511459019-5dda7724fd87?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 48px;
  align-items: center;
  padding: 90px 0;
}

.hero-logo {
  max-width: 520px;
  width: 100%;
  margin-bottom: 26px;
  filter: drop-shadow(0 26px 70px rgba(56, 189, 248, 0.28));
  border-radius: 28px;
}

.eyebrow,
.section-label {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
  margin: 16px 0;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  margin: 10px 0 18px;
}

h3 {
  font-size: 23px;
  margin-bottom: 8px;
}

.hero-text,
.lead {
  font-size: 19px;
  color: #cbd5e1;
  max-width: 820px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid var(--border);
  cursor: pointer;
}

.btn.primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: white;
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.08);
}

.full-width {
  width: 100%;
}

.hero-panel,
.card,
.service-list article,
.project-card,
.contact-form-area,
.contact-sidebar .info-card,
.process-card,
.trust-item,
.legal-card,
.notice {
  background: rgba(15, 29, 51, 0.86);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.panel-tag,
.info-badge {
  display: inline-block;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hero-panel p,
.card p,
.project-card p,
.service-list p,
.info-card p,
.info-card li,
.process-card p,
.trust-item p,
.cta p,
.legal-card p,
.legal-card li {
  color: #cbd5e1;
}

.hero-panel ul,
.service-list ul,
.info-card ul,
.legal-card ul {
  color: #cbd5e1;
  padding-left: 20px;
}

.section {
  padding: 90px 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.split-section {
  background: rgba(7, 17, 31, 0.84);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}

.process-grid,
.project-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 32px;
}

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

.process-grid span,
.project-card span,
.process-card span {
  color: var(--cyan);
  font-weight: 900;
}

.image-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
}

.image-card::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 11, 20, 0.15), rgba(5, 11, 20, 0.92));
  z-index: 0;
}

.image-card > *,
.page-hero > * {
  position: relative;
  z-index: 1;
}

.image-office {
  background-image:
    linear-gradient(180deg, rgba(5, 11, 20, 0.1), rgba(5, 11, 20, 0.9)),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1200&q=80");
}

.image-awareness {
  background-image:
    linear-gradient(180deg, rgba(5, 11, 20, 0.1), rgba(5, 11, 20, 0.9)),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1200&q=80");
}

.image-pentest {
  background-image:
    linear-gradient(180deg, rgba(5, 11, 20, 0.1), rgba(5, 11, 20, 0.9)),
    url("https://images.unsplash.com/photo-1550751827-4bd374c3f58b?auto=format&fit=crop&w=1200&q=80");
}

.image-building {
  background-image:
    linear-gradient(180deg, rgba(5, 11, 20, 0.1), rgba(5, 11, 20, 0.9)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80");
}

.page-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  padding: 90px 0;
  overflow: hidden;
}

.contact-hero {
  padding: 90px 0;
  background:
    linear-gradient(90deg, rgba(5, 11, 20, 0.92), rgba(5, 11, 20, 0.62)),
    url("https://images.unsplash.com/photo-1510511459019-5dda7724fd87?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
}

.contact-hero-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  align-items: start;
}

.contact-premium {
  padding: 80px 0 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: block;
  margin-bottom: 18px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 15px 16px;
  border-radius: 15px;
  background: #091427;
  border: 1px solid var(--border);
  color: var(--text);
  font: inherit;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.12);
}

.security-notice {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 10px 0 25px;
  padding: 18px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 16px;
  background: rgba(15, 29, 51, 0.72);
}

.privacy-check input[type="checkbox"] {
  width: 28px;
  height: 28px;
  min-width: 28px;
  min-height: 28px;
  cursor: pointer;
  accent-color: #38bdf8;
  margin-top: 2px;
}

.privacy-check label {
  font-size: 15px;
  line-height: 1.6;
  color: #dbeafe;
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 0;
}

.privacy-check:hover {
  border-color: #38bdf8;
  background: rgba(15, 29, 51, 0.9);
}

.form-note {
  color: var(--cyan);
  font-weight: 900;
  margin-top: 16px;
}

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

.highlight-card {
  border-color: rgba(56, 189, 248, 0.45) !important;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.25), rgba(15, 29, 51, 0.92)) !important;
}

.process-section,
.trust-section {
  padding: 60px 0;
}

.trust-item span {
  display: block;
  font-size: 28px;
  margin-bottom: 12px;
}

.cta {
  margin: 30px auto 100px;
  padding: 54px;
  border-radius: 34px;
  text-align: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.35), rgba(56, 189, 248, 0.16));
  border: 1px solid rgba(56, 189, 248, 0.38);
}

.legal-page {
  padding: 80px 0 120px;
}

.legal-page h1 {
  font-size: clamp(40px, 5vw, 64px);
}

.legal-card h2 {
  font-size: 24px;
  margin-top: 30px;
}

.footer {
  border-top: 1px solid var(--border);
  background: #030812;
  padding: 38px 0;
  color: #cbd5e1;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer a {
  display: block;
  margin-bottom: 8px;
  color: #dbeafe;
}

@media (max-width: 1050px) {
  .nav-links {
    gap: 10px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .brand img {
    width: 170px;
  }

  .hero-grid,
  .split,
  .contact-hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 96px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    background: #050b14;
    padding: 24px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .brand img {
    width: 150px;
  }

  .cards,
  .project-grid,
  .form-row,
  .process-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    flex-direction: column;
  }

  h1 {
    font-size: 42px;
  }
}
.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: none;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 22px;
  background: rgba(5, 11, 20, 0.96);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(18px);
}

.cookie-banner p {
  color: #cbd5e1;
  margin: 8px 0 0;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 820px) {
  .cookie-banner {
    grid-template-columns: 1fr;
  }
}