/* ═══════════════════════════════════════════════════════════
   Aquasco - Stylesheet
   ═══════════════════════════════════════════════════════════ */

/* ─── CSS Variables ──────────────────────────────────────── */
:root {
  /* Brand colours */
  --navy:           #0c2040;
  --navy-mid:       #0e2a52;
  --navy-light:     #163970;
  --navy-dark:      #07152b;
  --blue:           #1a9e55;
  --blue-light:     #2dc46d;
  --blue-pale:      #edfaf3;
  --accent:         #1a9e55;
  --accent-hover:   #158943;

  /* Neutrals */
  --white:          #ffffff;
  --off-white:      #f5f8fc;
  --grey-50:        #f9fafb;
  --grey-100:       #eef2f8;
  --grey-200:       #dde4ef;
  --grey-400:       #9aaac4;
  --grey-600:       #6b7a99;

  /* Text */
  --text-dark:      #0c2040;
  --text-body:      #3a4a6b;
  --text-muted:     #6b7a99;

  /* Shadows */
  --shadow-sm:      0 2px 8px rgba(12,32,64,0.07);
  --shadow-md:      0 6px 24px rgba(12,32,64,0.12);
  --shadow-lg:      0 16px 48px rgba(12,32,64,0.18);
  --shadow-blue:    0 8px 32px rgba(26,158,85,0.30);

  /* Misc */
  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --radius-pill:    100px;
  --transition:     0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width:      1160px;
  --nav-height:     70px;
  --topbar-height:  42px;
  --font:           'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }

/* ─── Utilities ──────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: 96px 0; }
.section--navy { background: var(--navy); }
.section--grey { background: var(--off-white); }

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-eyebrow--light { color: rgba(255,255,255,0.55); }

.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.section-title--white { color: var(--white); }

.section-intro {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 680px;
}
.section-intro--white { color: rgba(255,255,255,0.70); }

/* Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(26,158,85,0.40);
}
.btn--outline {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 2px solid rgba(255,255,255,0.35);
}
.btn--outline:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--outline-light {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn--outline-light:hover {
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
}

/* ─── Topbar ─────────────────────────────────────────────── */
.topbar {
  background: var(--navy-dark);
  height: var(--topbar-height);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}
.topbar__contact {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.50);
  transition: color var(--transition);
}
.topbar__item:hover { color: rgba(255,255,255,0.85); }
.topbar__item svg { flex-shrink: 0; width: 14px; height: 14px; }
.topbar__tagline {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.40);
  letter-spacing: 0.02em;
  text-align: center;
}
.topbar__hours {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
}

/* ─── Nav ────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  height: var(--nav-height);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow var(--transition), background var(--transition);
}
.nav.scrolled {
  background: rgba(12,32,64,0.97);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}
.nav__logo img {
  height: 38px;
  width: auto;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__link {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue-light);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav__link:hover,
.nav__link--active {
  color: var(--white);
}
.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}
.nav__cta .btn {
  padding: 10px 22px;
  font-size: 13px;
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile menu backdrop */
.mobile-menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 199;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.mobile-menu-backdrop.open {
  display: block;
}
.mobile-menu-backdrop.visible {
  opacity: 1;
}

/* Mobile menu */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 100vw);
  background: var(--navy);
  z-index: 200;
  padding: 28px 28px 36px;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s linear 0.38s;
  box-shadow: -8px 0 40px rgba(0,0,0,0.35);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0s linear 0s;
}
.mobile-menu__close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 26px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
  padding: 4px;
  line-height: 1;
  transition: color var(--transition), transform var(--transition);
}
.mobile-menu__close:hover {
  color: var(--white);
  transform: rotate(90deg);
}
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}
/* Staggered link slide-in */
.mobile-menu__link {
  font-size: 19px;
  font-weight: 700;
  color: rgba(255,255,255,0.70);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition), opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateX(16px);
}
.mobile-menu.open .mobile-menu__link { opacity: 1; transform: translateX(0); }
.mobile-menu.open .mobile-menu__link:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.open .mobile-menu__link:nth-child(2) { transition-delay: 0.13s; }
.mobile-menu.open .mobile-menu__link:nth-child(3) { transition-delay: 0.18s; }
.mobile-menu.open .mobile-menu__link:nth-child(4) { transition-delay: 0.23s; }
.mobile-menu.open .mobile-menu__link:nth-child(5) { transition-delay: 0.28s; }
.mobile-menu__link:hover { color: var(--white); }
.mobile-menu__cta {
  margin-top: 28px;
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.3s ease 0.32s, transform 0.3s ease 0.32s;
}
.mobile-menu.open .mobile-menu__cta { opacity: 1; transform: translateX(0); }
.mobile-menu__contact {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.3s ease 0.36s, transform 0.3s ease 0.36s;
}
.mobile-menu.open .mobile-menu__contact { opacity: 1; transform: translateX(0); }
.mobile-menu__contact a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.mobile-menu__contact a:hover { color: rgba(255,255,255,0.7); }

/* Hamburger animates to X when menu is open */
.nav__hamburger span { transition: transform 0.3s ease, opacity 0.3s ease; }
.nav__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height) - var(--topbar-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}
.hero__bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(7,21,43,0.97) 0%,
    rgba(12,32,64,0.93) 40%,
    rgba(14,42,82,0.78) 65%,
    rgba(22,57,112,0.60) 100%
  );
}
/* Dot grid overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero__inner { max-width: 680px; }
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.hero__eyebrow-text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
}
/* Treat p.hero__eyebrow text version */
p.hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 20px;
}
.hero__headline {
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.hero__headline em {
  font-style: normal;
  color: var(--blue-light);
}
.hero__sub {
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin-bottom: 40px;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.30);
  animation: scrollBob 2s ease-in-out infinite;
  transition: color var(--transition);
}
.hero__scroll:hover { color: rgba(255,255,255,0.65); }
@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ─── Sectors Strip ──────────────────────────────────────── */
.sectors-strip {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 0;
}
.sectors-strip__inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.sectors-strip__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 32px;
  flex: 1;
  transition: background var(--transition);
}
.sectors-strip__item:hover {
  background: rgba(255,255,255,0.04);
}
.sectors-strip__divider {
  width: 1px;
  background: rgba(255,255,255,0.07);
  align-self: stretch;
}
.sectors-strip__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(26,158,85,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
}
.sectors-strip__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}
.sectors-strip__sub {
  font-size: 12px;
  color: rgba(255,255,255,0.40);
  line-height: 1.4;
}

/* ─── About Section ──────────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__lead {
  font-size: 19px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 20px;
}
.about__body {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 18px;
}
.about__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 28px 0;
}
.about__pillar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--off-white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.about__pillar:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(26,158,85,0.10);
}
.about__pillar-icon { font-size: 18px; flex-shrink: 0; }
.about__pillar-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

/* About image */
.about__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.about__img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}
.about__img-card {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 16px 22px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about__img-card-num {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--blue-light);
  line-height: 1;
  margin-bottom: 4px;
}
.about__img-card-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  line-height: 1.3;
}

/* ─── GIRS Section ───────────────────────────────────────── */
.girs__header {
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center;
}
.girs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}
.scope-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.scope-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(26,158,85,0.40);
  transform: translateY(-2px);
}
.scope-card__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(26,158,85,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  margin-top: 1px;
}
.scope-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
  line-height: 1.35;
}
.scope-card__desc {
  font-size: 13px;
  color: rgba(255,255,255,0.50);
  line-height: 1.55;
}
.girs__cta {
  text-align: center;
}

/* ─── WIRS Section ───────────────────────────────────────── */
.wirs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.wirs__intro {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 36px;
}
.wirs__scopes {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.wirs__scope {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.wirs__scope:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(26,158,85,0.10);
}
.wirs__scope-check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: var(--blue-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-top: 1px;
}
.wirs__scope-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.wirs__scope-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* WIRS image stack */
.wirs__img-stack {
  position: relative;
  height: 540px;
}
.wirs__img {
  position: absolute;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.wirs__img--top {
  top: 0;
  right: 0;
  width: 78%;
  aspect-ratio: 4/3;
  z-index: 2;
}
.wirs__img--bottom {
  bottom: 0;
  left: 0;
  width: 65%;
  aspect-ratio: 4/3;
  z-index: 1;
  outline: 6px solid var(--off-white);
}

/* ─── Additional Support Section ─────────────────────────── */
.additional__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.additional__body {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
}
.additional__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.additional__feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.additional__feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(26,158,85,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  margin-top: 2px;
}
.additional__feature-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 5px;
}
.additional__feature-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.50);
  line-height: 1.6;
}

/* Additional visual */
.additional__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: var(--shadow-lg);
}
.additional__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.additional__img-wrap:hover .additional__img {
  transform: scale(1.03);
}
.additional__stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.additional__stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 16px 10px;
  text-align: center;
  transition: background var(--transition), border-color var(--transition);
}
.additional__stat:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(26,158,85,0.35);
}
.additional__stat-num {
  font-size: 15px;
  font-weight: 800;
  color: var(--blue-light);
  margin-bottom: 4px;
  line-height: 1;
}
.additional__stat-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.35);
  line-height: 1.3;
}

/* ─── Contact Section ────────────────────────────────────── */
.contact { background: var(--off-white); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact__desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 36px;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact__detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: inherit;
}
.contact__detail:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(26,158,85,0.10);
}
.contact__detail-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--blue-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
.contact__detail-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 2px;
}
.contact__detail-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

/* Contact form */
.contact__form-wrap {}
.contact__form {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form__group { margin-bottom: 18px; }
.form__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 7px;
}
.form__required { color: var(--blue); }
.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--grey-200);
  background: var(--grey-50);
  color: var(--text-dark);
  font-family: var(--font);
  font-size: 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,158,85,0.10);
}
.form__input::placeholder,
.form__textarea::placeholder { color: var(--grey-400); }
.form__textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}
.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7a99' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
  cursor: pointer;
}
.form__select option { background: var(--white); color: var(--text-dark); }
.form__honeypot { display: none; }
.form__error {
  padding: 14px 18px;
  background: rgba(220,38,38,0.07);
  border: 1px solid rgba(220,38,38,0.20);
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 600;
  color: #dc2626;
}
.form__submit {
  width: 100%;
  padding: 15px 28px;
  font-size: 15px;
}

/* Form success */
.form__success {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 56px 36px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.form__success-icon { font-size: 48px; margin-bottom: 16px; }
.form__success-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.form__success-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  padding: 60px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__logo {
  height: 36px;
  width: auto;
  margin-bottom: 16px;
  opacity: 0.85;
}
.footer__desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
  max-width: 320px;
}
.footer__reg {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.footer__reg span {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
}
.footer__col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
  margin-bottom: 16px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.50);
  transition: color var(--transition);
}
.footer__link:hover { color: rgba(255,255,255,0.85); }
.footer__link--contact {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer__link--contact svg { flex-shrink: 0; color: rgba(255,255,255,0.25); }
.footer__hours {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  margin-top: 4px;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}
.footer__legal { display: flex; gap: 20px; }
.footer__legal-link {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  transition: color var(--transition);
}
.footer__legal-link:hover { color: rgba(255,255,255,0.6); }

/* ─── Cookie Banner ──────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 16px 24px;
  z-index: 9999;
}
.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  font-size: 13px;
  color: rgba(255,255,255,0.60);
  line-height: 1.5;
  margin: 0;
}
.cookie-banner__link {
  color: var(--blue-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__link:hover { color: var(--white); }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner__btn {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: opacity 0.2s;
}
.cookie-banner__btn:hover { opacity: 0.80; }
.cookie-banner__btn--outline {
  background: transparent;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.20);
}
.cookie-banner__btn--accept {
  background: var(--blue);
  color: var(--white);
}

/* ─── Form Privacy Note ──────────────────────────────────── */
.form__privacy-note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin: 10px 0 0;
  line-height: 1.5;
}
.form__privacy-link {
  color: rgba(255,255,255,0.50);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}
.form__privacy-link:hover { color: var(--blue-light); }

/* ─── Privacy Policy Page ────────────────────────────────── */
.policy-hero {
  background: var(--navy);
  padding: calc(var(--nav-height) + var(--topbar-height) + 60px) 0 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.policy-hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 12px;
}
.policy-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 10px;
  line-height: 1.15;
}
.policy-hero__sub {
  font-size: 14px;
  color: rgba(255,255,255,0.40);
  margin: 0;
}
.policy-body {
  background: var(--off-white, #f8fafc);
  padding: 60px 0 80px;
}
.policy-content {
  max-width: 760px;
}
.policy-section {
  margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(12,32,64,0.08);
}
.policy-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.policy-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 14px;
}
.policy-section h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 20px 0 8px;
}
.policy-section p {
  font-size: 15px;
  color: #3a4a6b;
  line-height: 1.75;
  margin: 0 0 12px;
}
.policy-section p:last-child { margin-bottom: 0; }
.policy-section ul {
  margin: 0 0 12px 0;
  padding-left: 20px;
}
.policy-section li {
  font-size: 15px;
  color: #3a4a6b;
  line-height: 1.75;
  margin-bottom: 4px;
}
.policy-section a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.policy-section a:hover { color: var(--accent-hover); }
.policy-back {
  margin-top: 48px;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1080px) {
  .sectors-strip__item { padding: 22px 20px; gap: 12px; }
  .sectors-strip__divider { display: none; }
  .sectors-strip__inner { flex-wrap: wrap; }
  .sectors-strip__item { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,0.05); }
}

@media (max-width: 960px) {
  :root { --nav-height: 64px; --topbar-height: 38px; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .topbar__tagline { display: none; }
  .topbar__contact { gap: 14px; }

  .about__grid,
  .wirs__grid,
  .additional__grid,
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }

  .about__img-card { left: 0; }
  .wirs__img-stack { height: 300px; }
  .wirs__img--top { width: 70%; }
  .wirs__img--bottom { width: 55%; }
  .additional__stat-grid { grid-template-columns: repeat(2, 1fr); }

  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  :root { --topbar-height: 0px; }
  .topbar { display: none; }
  .hero { min-height: 90vh; padding: 60px 0 80px; }
  .section { padding: 64px 0; }
  .girs__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .about__pillars { grid-template-columns: 1fr; }
  .wirs__img-stack { height: 220px; }
  .additional__stat-grid { grid-template-columns: repeat(4, 1fr); }
  .sectors-strip__item { flex: 0 0 100%; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .cookie-banner__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 400px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .additional__stat-grid { grid-template-columns: repeat(2, 1fr); }
}
