﻿:root {
  --brand-deep: #0d4f86;
  --brand-mid: #007DC0;
  --brand-bright: #007DC0;
  --brand-surface: #0b3e6a;
  --brand-soft: #d7eaf6;
  --brand-mist: #eaf3f9;
  --brand-glass: rgba(13, 79, 134, 0.65);
  --ink: #4f5760;
  --ink-soft: #6a737c;
  --slate: #7f8892;
  --mist: #d2d7dd;
  --cloud: #f2f5f8;
  --white: #ffffff;
  --accent: #007DC0;
  --shadow: 0 22px 60px rgba(6, 24, 46, 0.28);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Loos Wide", "News Gothic", "Arial Narrow", sans-serif;
  color: var(--ink);
  background: var(--brand-mist);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
}

.page-backdrop {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(5, 22, 44, 0.6), rgba(5, 22, 44, 0.2)),
    radial-gradient(circle at top left, rgba(58, 160, 216, 0.35), transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(10, 47, 95, 0.35), transparent 60%);
  z-index: 1;
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 2;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  color: var(--white);
  border-bottom: 1px solid transparent;
  z-index: 10;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
  background: var(--brand-glass);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.logo {
  font-family: "Loos Wide", "News Gothic", "Arial Narrow", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo img {
  height: 36px;
  width: auto;
  display: block;
}


.site-nav {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}

.site-nav a:hover {
}

.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
}

.hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
}

.hero .bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  background: #000;
  filter: saturate(1.05) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(120deg, rgba(5, 12, 20, 0.5), rgba(5, 12, 20, 0.2)),
    radial-gradient(circle at top left, rgba(58, 160, 216, 0.3), transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(10, 47, 95, 0.3), transparent 60%);
}

.hero-content,
.hero-media {
  position: relative;
  z-index: 2;
}

.hero-grid {
  grid-template-columns: 1fr;
  justify-items: start;
}

.eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-mid);
  margin-bottom: 12px;
}

.hero h1 {
  font-family: "Loos Wide", "News Gothic", "Arial Narrow", sans-serif;
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
}

.lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: linear-gradient(120deg, var(--brand-deep), var(--brand-bright));
  color: var(--white);
  box-shadow: 0 18px 30px rgba(0, 63, 120, 0.25);
}

.btn.primary:hover {
  transform: translateY(-2px);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: rgba(0, 0, 0, 0.25);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.stat-card,
.hero-highlight {
  background: rgba(10, 47, 95, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(6, 24, 46, 0.25);
  backdrop-filter: blur(10px);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.stat-card {
  position: relative;
  padding: 16px 18px;
  border-radius: 16px;
  overflow: hidden;
}

.stat-card::after {
  z-index: 0;
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top left, rgba(112, 202, 243, 0.22), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}

.stat-card > * {
  position: relative;
  z-index: 1;
}

.stat-value {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
}

.stat-label {
  color: rgba(255, 255, 255, 0.82);
}

.hero-highlight {
  margin-top: 24px;
  padding: 16px 20px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.hero-highlight::before {
  z-index: 0;
  content: "";
  position: absolute;
  inset: -20% 40% auto -10%;
  height: 120%;
  border-radius: 16px;
  background: radial-gradient(circle, rgba(112, 202, 243, 0.25), transparent 70%);
  pointer-events: none;
}

.hero-highlight > * {
  position: relative;
  z-index: 1;
}

.hero-highlight strong {
  color: var(--white);
}

.hero-media {
  position: relative;
  display: grid;
  gap: 20px;
}

.hero-photo {
  min-height: 320px;
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, rgba(10, 47, 95, 0.55), rgba(0, 166, 216, 0.2));
  box-shadow: var(--shadow);
}

.hero-panel {
  position: relative;
  padding: 22px;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.96), rgba(228, 243, 255, 0.92));
  border-radius: var(--radius-md);
  box-shadow: 0 18px 50px rgba(6, 24, 46, 0.22);
  border: 1px solid rgba(0, 166, 216, 0.2);
  overflow: hidden;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: -30% -10% auto -10%;
  height: 60%;
  background: radial-gradient(circle, rgba(0, 166, 216, 0.18), transparent 70%);
  pointer-events: none;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 166, 216, 0.18);
  color: var(--brand-deep);
  font-size: 0.8rem;
  font-weight: 600;
}

.panel-note {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--slate);
}

.section {
  padding: 90px 0;
}

.section-alt {
  background: rgba(234, 243, 249, 0.9);
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  color: var(--brand-deep);
  margin-bottom: 10px;
}

.section h2 {
  font-family: "Loos Wide", "News Gothic", "Arial Narrow", sans-serif;
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  margin-bottom: 20px;
}

.topic-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 24px;
}

.topic-chips span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 166, 216, 0.15);
  color: var(--brand-deep);
  font-size: 0.85rem;
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
}

.split-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-photos {
  display: grid;
  gap: 16px;
}

.about-photos img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

@media (min-width: 900px) {
  .about-photos img:first-child {
    transform: translateY(-6px);
  }
}

.split-media figcaption {
  margin-top: 12px;
  color: var(--slate);
  font-size: 0.9rem;
}

.icon-list {
  list-style: none;
  margin: 20px 0 26px;
  display: grid;
  gap: 8px;
}

.icon-list li::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-bright);
  display: inline-block;
  content: "";
  margin-right: 8px;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  align-items: center;
}

.cards-grid,
.brand-grid,
.principles-grid,
.structure-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.info-card,
.brand-card,
.principle-card,
.structure-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.62);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  border: 1px solid rgba(10, 47, 95, 0.08);
  backdrop-filter: blur(10px);
}

.info-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  border: 1px solid rgba(10, 47, 95, 0.12);
  backdrop-filter: blur(10px);
}

.info-card ul,
.brand-card ul {
  margin-top: 14px;
  padding-left: 18px;
}

.info-card li {
  margin-bottom: 6px;
}

.brand-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(228, 243, 255, 0.86));
  border: 1px solid rgba(10, 47, 95, 0.18);
  backdrop-filter: blur(8px);
}

.brand-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 6px;
  background: linear-gradient(90deg, var(--brand-bright), var(--brand-deep));
}

.brand-defence {
  position: relative;
  background: linear-gradient(135deg, rgba(6, 12, 10, 0.45), rgba(6, 12, 10, 0.2)),
    url("brand-defence-bg.jpg") center/cover;
  border-color: rgba(45, 86, 52, 0.35);
  backdrop-filter: blur(2px);
}

.brand-defence::after {
  background: linear-gradient(90deg, #2d5634, #3f6f3f);
}

.brand-commercial {
  position: relative;
  background: linear-gradient(135deg, rgba(8, 18, 26, 0.4), rgba(8, 18, 26, 0.15)),
    url("brand-commercial-bg.jpg") center/cover;
  border-color: rgba(0, 125, 192, 0.35);
  backdrop-filter: blur(2px);
}

.brand-commercial::after {
  background: linear-gradient(90deg, #00a6d8, #3aa0d8);
}

.brand-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  background: rgba(10, 47, 95, 0.12);
  color: var(--brand-deep);
}

.brand-tag-defence {
  background: rgba(45, 86, 52, 0.2);
  color: #2d5634;
}.brand-tag-commercial {
  background: rgba(0, 166, 216, 0.18);
  color: #007ca8;
}

.brand-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.brand-card p {
  color: var(--ink-soft);
}

.brand-card a {
  position: relative;
  padding-right: 18px;
  display: inline-block;
  margin-top: 12px;
  color: var(--brand-deep);
  font-weight: 600;
}

.brand-card a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
}
.principle-card {
  border: 1px solid rgba(10, 47, 95, 0.14);
}

.structure-card .subline {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--slate);
}


.structure-card {
  position: relative;
  padding-left: 36px;
}

.structure-card::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: linear-gradient(180deg, rgba(0, 166, 216, 0.6), rgba(10, 47, 95, 0.2));
}

.structure-card::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brand-bright);
  box-shadow: 0 0 0 4px rgba(0, 166, 216, 0.15);
}
.team-group {
  margin-top: 32px;
}

.team-group h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--brand-deep);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.person-card {
  position: relative;
  padding: 18px 18px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 250, 255, 0.9));
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px rgba(9, 19, 31, 0.12);
  display: grid;
  gap: 8px;
  border: 1px solid rgba(0, 125, 192, 0.15);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.person-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120px 120px at 100% 0%, rgba(0, 125, 192, 0.18), transparent 60%),
    linear-gradient(120deg, rgba(0, 125, 192, 0.08), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.person-card::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 16px;
  width: 36px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-bright), rgba(0, 125, 192, 0));
}

.person-card h4 {
  position: relative;
  margin: 0;
  font-size: 1.05rem;
  color: var(--ink);
}

.person-card .role {
  position: relative;
  color: rgba(12, 26, 44, 0.65);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-contact-note {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 2px 0 0;
  color: var(--brand-deep);
  font-size: 0.92rem;
  font-weight: 500;
}

.team-contact-note::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 125, 192, 0.35);
  box-shadow: 0 0 0 4px rgba(0, 125, 192, 0.12);
  flex: 0 0 auto;
}

.person-card a {
  position: relative;
  color: var(--brand-deep);
  font-size: 0.92rem;
}

.person-card a:hover {
}

.person-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(9, 19, 31, 0.18);
}
.person-card a,
.contact-block a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.person-card a::before,
.contact-block a::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 125, 192, 0.35);
  box-shadow: 0 0 0 4px rgba(0, 125, 192, 0.12);
  flex: 0 0 auto;
}

.person-card a[href^="tel"]::before,
.contact-block a[href^="tel"]::before {
  background: rgba(0, 125, 192, 0.5);
}

.person-card a[href^="mailto"]::before,
.contact-block a[href^="mailto"]::before {
  background: rgba(0, 85, 152, 0.5);
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
}

.contact-block {
  position: relative;
  margin-top: 16px;
  padding: 18px 18px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 249, 255, 0.9));
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px rgba(9, 19, 31, 0.12);
  border: 1px solid rgba(0, 125, 192, 0.14);
  overflow: hidden;
}

.contact-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(140px 140px at 100% 0%, rgba(0, 125, 192, 0.16), transparent 60%),
    linear-gradient(120deg, rgba(0, 125, 192, 0.06), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.contact-block::after {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 40px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-bright), rgba(0, 125, 192, 0));
}

.contact-block > * {
  position: relative;
}

.contact-form {
  padding: 24px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  border: 1px solid rgba(10, 47, 95, 0.1);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0 20px;
}

.form-grid label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid rgba(10, 47, 95, 0.18);
  border-radius: 12px;
  padding: 10px 12px;
  font-family: inherit;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: none;
  border-
  box-shadow: 0 0 0 2px rgba(0, 166, 216, 0.18);
}

.form-grid .full {
  grid-column: 1 / -1;
}

.form-note {
  font-size: 0.85rem;
  color: var(--slate);
  margin-top: 12px;
}

.site-footer {
  padding: 60px 0 30px;
  background:
    linear-gradient(0deg, rgba(0, 85, 152, 0.88), rgba(0, 85, 152, 0.88)),
    url("footer-bg.jpg") center/cover;
  color: rgba(255, 255, 255, 0.85);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
  margin-bottom: 30px;
}

.footer-grid h3,
.footer-grid h4 {
  color: var(--white);
  margin-bottom: 10px;
}

.footer-grid a {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.85);
}

.footer-logos {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-logos img {
  max-height: 46px;
  background: var(--white);
  padding: 6px 10px;
  border-radius: 8px;
}

.footer-bottom {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

[data-reveal] {
  opacity: 1;
  transform: translateY(14px);
  transition: transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .site-nav {
    position: absolute;
    top: 64px;
    right: 16px;
    flex-direction: column;
    background: rgba(9, 19, 31, 0.95);
    padding: 16px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: none;
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .hero {
  position: relative;
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
}

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.lang-switch {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.lang-btn {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

.lang-btn[aria-pressed="true"] {
  background: var(--brand-bright);
  color: var(--ink);
  border-color: transparent;
}

.lang-et,
.lang-en {
  display: none;
}

body[data-lang="et"] .lang-et {
  display: inline;
}

body[data-lang="en"] .lang-en {
  display: inline;
}

body[data-lang="et"] .lang-et.lang-block,
body[data-lang="en"] .lang-en.lang-block {
  display: block;
}

















.quality-card {
  margin: 32px 0 40px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(228, 243, 255, 0.92));
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 166, 216, 0.2);
  box-shadow: 0 18px 50px rgba(6, 24, 46, 0.2);
}

.quality-header h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--brand-deep);
}

.quality-header p {
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.quality-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.quality-pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 166, 216, 0.14);
  color: var(--brand-deep);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.map-embed {
  margin-top: 14px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 166, 216, 0.2);
}

.map-embed iframe {
  width: 100%;
  height: 260px;
  border: 0;
  display: block;
}








.structure-holding {
  margin: 28px 0 24px;
}

.structure-holding-card {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid rgba(0, 166, 216, 0.3);
  background: rgba(255, 255, 255, 0.7);
}

.structure-subs {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

@media (min-width: 1200px) {
  .structure-subs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


.brand-logo {
  height: 42px;
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}

.brand-logo img {
  max-height: 42px;
  width: auto;
  display: block;
}

.brand-defence .brand-tag {
  background: rgba(45, 86, 52, 0.7);
}

.brand-defence .brand-card a {
  color: #ffffff;
}

.brand-commercial .brand-tag {
  background: rgba(0, 166, 216, 0.65);
}




.hero-info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: stretch;
}

.hero-info-row .hero-highlight {
  margin-top: 24px;
  padding: 16px 20px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.hero-info-row .hero-stats {
  flex: 3 1 420px;
}









.brand-commercial .brand-logo {
  justify-content: flex-end;
  margin-left: auto;
}

.brand-commercial .brand-logo img {
  margin-left: auto;
}




.site-header .logo {
  background: transparent;
  padding: 2px 6px;
  border-radius: 8px;
  backdrop-filter: none;
}

.site-header .logo img {
  border: 0;
  box-shadow: none;
}

.info-card h3,
.brand-card h3,
.principle-card h3,
.structure-card h3,
.quality-card h3 {
  color: var(--ink);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.info-card p,
.brand-card p,
.principle-card p,
.structure-card p,
.quality-card p {
  color: var(--ink-soft);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.25);
}

.info-card li,
.brand-card li,
.principle-card .subline,
.structure-card .subline {
  color: var(--ink-soft);
}




.brand-defence h3,
.brand-defence p,
.brand-defence a,
.brand-defence .brand-tag,
.brand-commercial h3,
.brand-commercial p,
.brand-commercial a,
.brand-commercial .brand-tag {
  color: #ffffff;
}

.brand-defence .brand-tag {
  background: rgba(45, 86, 52, 0.65);
}

.brand-commercial .brand-tag {
  background: rgba(0, 125, 192, 0.65);
}


.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.24);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}







.cert-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 125, 192, 0.25);
  background: rgba(255, 255, 255, 0.9);
}

.cert-embed iframe,
.cert-embed img {
  width: 100%;
  height: auto;
  border: 0;
  display: block;
}

/* About section refresh */
#about.section-alt {
  position: relative;
  background: linear-gradient(135deg, rgba(224, 238, 248, 0.95), rgba(244, 249, 255, 0.95));
  overflow: hidden;
}

#about.section-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(420px 420px at 8% 10%, rgba(0, 125, 192, 0.12), transparent 60%),
    radial-gradient(380px 380px at 90% 80%, rgba(0, 85, 152, 0.12), transparent 65%),
    linear-gradient(115deg, rgba(0, 125, 192, 0.05), transparent 55%);
  pointer-events: none;
}

#about .container {
  position: relative;
  z-index: 1;
}

#about .split-text {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 24px 60px rgba(9, 19, 31, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(0, 125, 192, 0.16);
}

#about .split-text h2 {
  margin-top: 6px;
}

#about .split-text .section-kicker {
  color: var(--brand-bright);
}

#about .split-text .icon-list {
  margin-top: 22px;
}

#about .icon-list li {
  display: flex;
  align-items: center;
}

#about .icon-list li::before {
  margin-right: 12px;
  box-shadow: 0 0 0 4px rgba(0, 125, 192, 0.15);
}

#about .split-media {
  position: relative;
}

#about .about-photos {
  position: relative;
  padding: 14px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(0, 125, 192, 0.18);
  box-shadow: 0 24px 60px rgba(9, 19, 31, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#about .about-photos::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 24px;
  background: linear-gradient(140deg, rgba(0, 125, 192, 0.2), transparent 70%);
  z-index: 0;
}

#about .about-photos img {
  position: relative;
  z-index: 1;
}

#about .split-media figcaption {
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  display: inline-block;
  border: 1px solid rgba(0, 125, 192, 0.18);
}

.footer-logo-link {
  display: inline-flex;
}

/* Subtle card motion across sections */
.info-card,
.brand-card,
.principle-card,
.structure-card,
.quality-card,
.stat-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover,
.brand-card:hover,
.principle-card:hover,
.structure-card:hover,
.quality-card:hover,
.stat-card:hover,
#about .split-text:hover,
#about .about-photos:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(9, 19, 31, 0.18), 0 0 0 1px rgba(0, 125, 192, 0.2), 0 0 30px rgba(0, 125, 192, 0.25);
}

.brand-link {
  display: block;
  color: inherit;
  height: 100%;
}

.brand-url {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

/* Premium Services section */
#services {
  position: relative;
  background: radial-gradient(600px 420px at 12% 18%, rgba(0, 125, 192, 0.18), transparent 60%),
    radial-gradient(520px 360px at 88% 85%, rgba(0, 85, 152, 0.18), transparent 60%),
    linear-gradient(140deg, rgba(218, 232, 244, 0.95), rgba(241, 247, 252, 0.95));
  overflow: hidden;
}

#services::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 55%);
  pointer-events: none;
}

#services .container {
  position: relative;
  z-index: 1;
}

#services .cards-grid {
  gap: 28px;
}

#services .info-card {
  position: relative;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(232, 244, 255, 0.88));
  border: 1px solid rgba(0, 125, 192, 0.2);
  box-shadow: 0 22px 50px rgba(9, 19, 31, 0.14);
  overflow: hidden;
}

#services .info-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 40px;
  background: radial-gradient(circle, rgba(0, 125, 192, 0.22), transparent 70%);
  opacity: 0.9;
  pointer-events: none;
}

#services .info-card h3 {
  position: relative;
  font-size: 1.1rem;
}

#services .info-card p,
#services .info-card li {
  position: relative;
  color: rgba(12, 26, 44, 0.72);
}

#services .info-card ul {
  margin-top: 16px;
}

/* Premium section treatments */
#solutions,
#management,
#structure,
#team {
  position: relative;
  background: radial-gradient(520px 360px at 15% 20%, rgba(0, 125, 192, 0.16), transparent 60%),
    radial-gradient(480px 320px at 85% 80%, rgba(0, 85, 152, 0.16), transparent 60%),
    linear-gradient(140deg, rgba(220, 235, 248, 0.9), rgba(243, 248, 253, 0.92));
  overflow: hidden;
}

#solutions::after,
#management::after,
#structure::after,
#team::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 55%);
  pointer-events: none;
}

#solutions .container,
#management .container,
#structure .container,
#team .container {
  position: relative;
  z-index: 1;
}

#solutions .info-card,
#management .quality-card,
#structure .structure-card,
#team .person-card {
  position: relative;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(232, 244, 255, 0.88));
  border: 1px solid rgba(0, 125, 192, 0.2);
  box-shadow: 0 22px 50px rgba(9, 19, 31, 0.14);
}

/* Section separators and refined premiums */
.section {
  position: relative;
}

.section + .section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(860px, 90%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 125, 192, 0.35), transparent);
  opacity: 0.9;
}

#solutions {
  background: radial-gradient(520px 360px at 10% 20%, rgba(0, 125, 192, 0.2), transparent 60%),
    radial-gradient(460px 320px at 90% 80%, rgba(0, 85, 152, 0.18), transparent 60%),
    linear-gradient(140deg, rgba(218, 234, 246, 0.92), rgba(244, 248, 252, 0.95));
}

#management {
  background: radial-gradient(480px 360px at 18% 15%, rgba(0, 125, 192, 0.18), transparent 60%),
    radial-gradient(520px 320px at 82% 85%, rgba(0, 85, 152, 0.2), transparent 60%),
    linear-gradient(150deg, rgba(220, 236, 248, 0.92), rgba(241, 247, 253, 0.95));
}

#structure {
  background: radial-gradient(520px 360px at 12% 25%, rgba(0, 125, 192, 0.18), transparent 60%),
    radial-gradient(520px 360px at 88% 75%, rgba(0, 85, 152, 0.18), transparent 60%),
    linear-gradient(140deg, rgba(222, 236, 248, 0.92), rgba(244, 249, 253, 0.95));
}

#team {
  background: radial-gradient(520px 360px at 10% 20%, rgba(0, 125, 192, 0.16), transparent 60%),
    radial-gradient(520px 360px at 85% 80%, rgba(0, 85, 152, 0.18), transparent 60%),
    linear-gradient(150deg, rgba(220, 236, 248, 0.92), rgba(246, 250, 253, 0.96));
}

#contact {
  background: radial-gradient(520px 360px at 12% 15%, rgba(0, 125, 192, 0.18), transparent 60%),
    radial-gradient(520px 360px at 88% 85%, rgba(0, 85, 152, 0.2), transparent 60%),
    linear-gradient(150deg, rgba(220, 235, 248, 0.92), rgba(244, 249, 253, 0.96));
}

#solutions::after,
#management::after,
#structure::after,
#team::after,
#contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 55%);
  pointer-events: none;
}

#solutions .container,
#management .container,
#structure .container,
#team .container,
#contact .container {
  position: relative;
  z-index: 1;
}

#contact .contact-block,
#contact .map-embed {
  box-shadow: 0 22px 50px rgba(9, 19, 31, 0.14);
  border: 1px solid rgba(0, 125, 192, 0.2);
}

#contact .map-embed iframe {
  border-radius: var(--radius-md);
}

.contact-cards {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 24px;
}

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

@media (max-width: 900px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}


.privacy-content {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.75);
}

.privacy-content h4 {
  margin: 14px 0 6px;
  color: rgba(255, 255, 255, 0.9);
}

.privacy-content .icon-list li::before {
  background: rgba(255, 255, 255, 0.7);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner {
  position: fixed;
  inset: auto 0 16px 0;
  z-index: 999;
  padding: 12px 16px;
  display: flex;
  justify-content: center;
}

.cookie-card {
  width: min(820px, 100%);
  background: rgba(10, 18, 32, 0.9);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.cookie-card h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  letter-spacing: 0.2px;
}

.cookie-card p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.cookie-actions .btn {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.92rem;
}

.cookie-actions .btn.equal {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.cookie-options {
  display: grid;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.cookie-options label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-options input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #007dc0;
}

.cookie-links {
  margin-top: 8px;
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
}

.cookie-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cookie-settings-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cookie-reset-link {
  opacity: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
}

.cookie-reset-link:focus {
  opacity: 1;
  width: auto;
  height: auto;
  overflow: visible;
  pointer-events: auto;
}

@media (max-width: 720px) {
  .cookie-card {
    border-radius: 14px;
    padding: 14px;
  }

  .cookie-actions {
    flex-direction: column;
    align-items: stretch;
  }
}


.privacy-policy details {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.85);
}

.privacy-policy summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.privacy-policy summary::-webkit-details-marker {
  display: none;
}

.privacy-content {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.75);
}

.privacy-content h4 {
  margin: 14px 0 6px;
  color: rgba(255, 255, 255, 0.9);
}

.privacy-content .icon-list li::before {
  background: rgba(255, 255, 255, 0.7);
}
