*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #050810;
  --dark: #0b0f1a;
  --card: #0f1624;
  --border: rgba(0, 160, 255, 0.15);
  --blue-lo: #0057b8;
  --blue-hi: #00bfff;
  --text: #d4dff0;
  --muted: #7a90b0;
  --white: #f0f6ff;
  --grad: linear-gradient(135deg, var(--blue-lo), var(--blue-hi));
  --grad-diag: linear-gradient(160deg, #040c1c 0%, #0b1930 60%, #040c1c 100%);
  --radius: 12px;
  --shadow: 0 4px 40px rgba(0, 80, 180, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--black);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── NAV ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  height: 72px;
  background: rgba(5, 8, 16, 0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}

.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--blue-hi);
}

.nav-cta {
  display: inline-block;
  padding: .55rem 1.4rem;
  border-radius: 6px;
  background: var(--grad);
  color: #fff !important;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity .2s, box-shadow .2s;
}

.nav-cta:hover {
  opacity: .88;
  box-shadow: 0 0 20px rgba(0, 191, 255, .35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: .3s;
}

/* ─── HERO ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--grad-diag);
  padding: 6rem clamp(1.5rem, 8vw, 6rem) 5rem;
  position: relative;
  overflow: hidden;
}

/* Decorative circuit-like grid */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 120, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 120, 255, .05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Glow orb */
.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: min(600px, 100vw);
  height: min(600px, 100vw);
  background: radial-gradient(circle, rgba(0, 140, 255, .12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.hero-logo {
  width: min(480px, 85vw);
  margin: 0 auto 3rem;
  animation: fadeUp .8s ease both;
}

.hero-tagline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: .75rem;
  animation: fadeUp .8s .15s ease both;
}

.hero-tagline span {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub-em {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
  animation: fadeUp .8s .22s ease both;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  animation: fadeUp .8s .3s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp .8s .45s ease both;
}

.btn-primary {
  padding: .85rem 2.2rem;
  border-radius: 8px;
  background: var(--grad);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .04em;
  transition: opacity .2s, box-shadow .2s, transform .2s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  opacity: .88;
  box-shadow: 0 0 28px rgba(0, 191, 255, .4);
  transform: translateY(-1px);
}

.btn-outline {
  padding: .85rem 2.2rem;
  border-radius: 8px;
  background: transparent;
  color: var(--blue-hi);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: .04em;
  border: 1px solid rgba(0, 191, 255, .45);
  transition: background .2s, border-color .2s, transform .2s;
}

.btn-outline:hover {
  background: rgba(0, 191, 255, .08);
  border-color: var(--blue-hi);
  transform: translateY(-1px);
}

.hero-trust {
  margin-top: 1.6rem;
  font-size: .82rem;
  color: var(--muted);
  letter-spacing: .03em;
  animation: fadeUp .8s .6s ease both;
}

.hero-trust span {
  color: rgba(0, 191, 255, .55);
  margin: 0 .45rem;
}

/* ─── CREDIBILITY BAR ─────────────────────────────── */
.cred-bar {
  background: rgba(0, 40, 100, 0.3);
  border-bottom: 1px solid var(--border);
  padding: 2rem clamp(1.5rem, 8vw, 6rem);
}

.cred-items {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .9rem 1rem;
}

.cred-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(0, 120, 255, .12);
  border: 1px solid rgba(0, 140, 255, .2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cred-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--blue-hi);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cred-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
}

/* ─── BADGES ──────────────────────────────────────── */
.badges-section {
  background: var(--black);
  padding: 3rem clamp(1.5rem, 8vw, 6rem);
  border-bottom: 1px solid var(--border);
}

.badges-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.badges-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}

.badges-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.badge-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  opacity: 0.75;
  transition: opacity .2s;
}

.badge-img:hover {
  opacity: 1;
}

/* ─── SECTION BASE ────────────────────────────────── */
section {
  padding: 6rem clamp(1.5rem, 8vw, 6rem);
}

.section-label {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue-hi);
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-body {
  color: var(--muted);
  max-width: 620px;
  font-weight: 300;
  font-size: 1.05rem;
}

/* ─── SERVICES ────────────────────────────────────── */
.services {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-header {
  max-width: 1200px;
  margin: 0 auto 3.5rem;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue-lo);
  border-radius: var(--radius);
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-top-color: var(--blue-hi);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(0, 120, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(0, 140, 255, .2);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--blue-hi);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-outcome {
  font-size: .92rem;
  font-weight: 600;
  color: var(--blue-hi);
  margin-bottom: .9rem;
  line-height: 1.4;
}

.service-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .75rem;
}

.service-card>p {
  color: var(--muted);
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.65;
}

.service-card ul {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  flex: 1;
}

.service-card ul li {
  color: var(--muted);
  font-size: .88rem;
  display: flex;
  align-items: flex-start;
  gap: .55rem;
}

.service-card ul li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-hi);
  margin-top: .55rem;
}

.service-cta {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--blue-hi);
  text-decoration: none;
  letter-spacing: .02em;
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}

.service-cta:hover {
  border-color: var(--blue-hi);
}

/* ─── HOW IT WORKS ────────────────────────────────── */
.how-it-works {
  background: var(--black);
}

.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.how-header {
  margin-bottom: 3.5rem;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  margin-bottom: 3rem;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 1px;
  background: linear-gradient(90deg, var(--blue-lo), var(--blue-hi));
  opacity: 0.3;
  pointer-events: none;
}

.step {
  text-align: center;
  padding: 0 .5rem;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  position: relative;
  z-index: 1;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  background: var(--grad);
  color: #fff;
}

.step h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .6rem;
}

.step p {
  font-size: .875rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
}

.how-cta {
  text-align: center;
}

/* ─── CLIENT SNAPSHOTS ────────────────────────────── */
.snapshots {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.snapshots-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.snapshot-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue-lo);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  flex: 0 0 100%;
  min-width: 0;
  transition: border-color .25s;
}

.snapshot-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 3rem;
  font-family: Georgia, serif;
  color: var(--blue-hi);
  opacity: 0.45;
  line-height: 1;
}

.snapshot-card::after {
  content: '\201D';
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-size: 3rem;
  font-family: Georgia, serif;
  color: var(--blue-hi);
  opacity: 0.45;
  line-height: 1;
}

.snapshot-card:hover {
  border-color: rgba(0, 191, 255, .4);
}

.snapshot-quote {
  font-size: .95rem;
  color: var(--text);
  font-weight: 300;
  line-height: 1.65;
  padding-top: 1.5rem;
}

.snapshot-quote + .snapshot-quote {
  padding-top: 0;
  margin-top: 1rem;
}

.snapshot-attr {
  margin-top: 1.2rem;
  font-size: .82rem;
  color: var(--muted);
  font-weight: 500;
}

/* ── Carousel viewport ── */
.testimonial-carousel {
  overflow: hidden;
  margin-top: 3rem;
  position: relative;
}

/* ── Sliding track ── */
.carousel-track {
  display: flex;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

/* ── Dots container ── */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: .6rem;
  margin-top: 1.75rem;
}

.carousel-dots.hidden {
  display: none;
}

/* ── Individual dots ── */
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(0, 140, 255, .25);
  transition: background .2s, transform .2s;
}

.carousel-dot:hover {
  background: rgba(0, 191, 255, .5);
}

.carousel-dot.active {
  background: var(--blue-hi);
  transform: scale(1.35);
}

/* ─── WHY Blue Reef ────────────────────────────────── */
.why {
  background: var(--black);
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.pillar {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: border-color .25s;
}

.pillar:hover {
  border-color: rgba(0, 191, 255, .4);
}

.pillar-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: .5rem;
}

.pillar h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .4rem;
}

.pillar p {
  font-size: .82rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.55;
}

/* ─── CONTACT ─────────────────────────────────────── */
.contact {
  background: var(--dark);
  border-top: 1px solid var(--border);
}

.contact-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-inner .section-body {
  margin: 0 auto 3rem;
}

.contact-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: clamp(2rem, 5vw, 3rem);
  text-align: left;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: .85rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: .03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(0, 140, 255, .2);
  border-radius: 8px;
  padding: .8rem 1rem;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  outline: none;
  transition: border-color .2s, background .2s;
  width: 100%;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a90b0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: #0b0f1a;
  color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-hi);
  background: rgba(0, 140, 255, .06);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}

.hcaptcha-wrap {
  display: flex;
  justify-content: flex-start;
  margin: 1.5rem 0;
}

.form-submit {
  width: 100%;
  padding: .95rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  background: var(--grad);
  color: #fff;
  cursor: pointer;
  transition: opacity .2s, box-shadow .2s, transform .2s;
}

.form-submit:hover {
  opacity: .88;
  box-shadow: 0 0 28px rgba(0, 191, 255, .35);
  transform: translateY(-1px);
}

.form-submit:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none;
}

#form-status {
  margin-top: 1rem;
  text-align: center;
  font-size: .9rem;
  min-height: 1.5rem;
}

#form-status.success {
  color: #4ade80;
}

#form-status.error {
  color: #f87171;
}

/* ─── FOOTER ──────────────────────────────────────── */
footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 2.5rem clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

footer img {
  height: 30px;
  opacity: .6;
}

footer p {
  font-size: .82rem;
  color: var(--muted);
}

/* ─── STICKY CTA ──────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .3s, transform .3s;
}

.sticky-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-cta a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: 50px;
  background: var(--grad);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .04em;
  box-shadow: 0 4px 20px rgba(0, 80, 200, .4);
  transition: opacity .2s, box-shadow .2s, transform .2s;
}

.sticky-cta a:hover {
  opacity: .9;
  box-shadow: 0 6px 30px rgba(0, 191, 255, .45);
  transform: translateY(-2px);
}

/* ─── ANIMATIONS ──────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 900px) {
  .why-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

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

  .how-steps::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 72px 0 0;
    background: rgba(5, 8, 16, .97);
    padding: 2rem;
    gap: 1.5rem;
    z-index: 99;
  }

  .hamburger {
    display: flex;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .why-pillars {
    grid-template-columns: 1fr;
  }

  .cred-items {
    grid-template-columns: 1fr;
  }

  .how-steps {
    grid-template-columns: 1fr;
  }

  .sticky-cta {
    bottom: 1.5rem;
    right: 1rem;
  }

  .sticky-cta a {
    padding: .7rem 1.2rem;
    font-size: .8rem;
  }

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

  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-photo-card {
    max-width: 360px;
  }

  .cookie-notice {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* ─── WHO WE SERVE ────────────────────────────────── */
.who-serve {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.who-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.who-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color .25s, transform .25s;
}

.who-card:hover {
  border-color: rgba(0, 191, 255, .4);
  transform: translateY(-3px);
}

.who-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(0, 120, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(0, 140, 255, .2);
}

.who-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--blue-hi);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.who-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .65rem;
}

.who-card p {
  font-size: .9rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
}

/* ─── ABOUT ───────────────────────────────────────── */
.about {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

.about-text .section-body {
  margin-bottom: 1.2rem;
}

.about-photo-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.about-photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(0, 40, 100, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-photo-placeholder {
  text-align: center;
  color: var(--muted);
  font-size: .82rem;
}

.about-photo-placeholder svg {
  width: 52px;
  height: 52px;
  stroke: var(--blue-lo);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
  margin: 0 auto .75rem;
  opacity: .4;
}

.about-creds {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.about-cred-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .82rem;
  color: var(--text);
  font-weight: 400;
}

.about-cred-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: var(--blue-hi);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ─── COOKIE NOTICE ───────────────────────────────── */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(11, 15, 26, .97);
  border-top: 1px solid var(--border);
  padding: 1rem clamp(1.5rem, 5vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  transform: translateY(0);
  transition: transform .3s;
}

.cookie-notice.hidden {
  transform: translateY(110%);
}

.cookie-notice p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.5;
}

.cookie-notice a {
  color: var(--blue-hi);
  text-decoration: underline;
}

.cookie-notice-btns {
  display: flex;
  gap: .75rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: .5rem 1.2rem;
  border-radius: 6px;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: .04em;
  transition: opacity .2s;
}

.cookie-btn-accept {
  background: var(--grad);
  color: #fff;
  border: none;
}

.cookie-btn-decline {
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(0, 140, 255, .25);
}

.cookie-btn:hover {
  opacity: .85;
}

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

  .about-inner {
    grid-template-columns: 1fr;
  }
}

/* ─── UTILITY CLASSES ─────────────────────────────── */
.img-fluid {
  width: 100%;
  height: auto;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-0 {
  margin-bottom: 0;
}

.link-muted {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

input[name="botcheck"] {
  display: none;
}

/* ─── HERO BULLETS ───────────────────────────────── */
.hero-bullets {
  list-style: none;
  display: inline-flex;
  flex-direction: column;
  gap: .6rem;
  margin: 0 auto 2.5rem;
  text-align: left;
  animation: fadeUp .8s .35s ease both;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: clamp(.9rem, 1.6vw, 1rem);
  color: var(--text);
  font-weight: 400;
}

.hero-bullets li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grad);
  flex-shrink: 0;
}

/* ─── SECURITY PLATFORM ──────────────────────────── */
.security-platform {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.security-platform-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.security-platform-inner .section-body {
  margin-bottom: 3rem;
}

/* ─── MICROSOFT CLOUD PARTNER ────────────────────── */
.ms-partner {
  background: var(--black);
  border-bottom: 1px solid var(--border);
}

.ms-partner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.ms-partner-list {
  list-style: none;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.ms-partner-list li {
  display: flex;
  align-items: center;
  gap: .65rem;
  color: var(--text);
  font-size: .95rem;
}

.ms-partner-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--grad);
  flex-shrink: 0;
}

.ms-licensing-note {
  font-size: .88rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.ms-partner-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.ms-partner-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

/* ─── TECHNOLOGY STACK ────────────────────────────── */
.tech-stack {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
}

.tech-stack-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.tech-stack-inner .section-body {
  margin: 0 auto 3rem;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.tech-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: border-color .25s, transform .25s;
}

.tech-item:hover {
  border-color: rgba(0, 191, 255, .4);
  transform: translateY(-2px);
}

.tech-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(0, 87, 184, .2), rgba(0, 191, 255, .2));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tech-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue-hi);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tech-item span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  line-height: 1.35;
}

/* ─── SECURITY FIRST ─────────────────────────────── */
.security-first {
  background: var(--black);
  border-bottom: 1px solid var(--border);
}

.security-pillars {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* ─── PAGE HERO (inner pages) ────────────────────── */
.page-hero {
  background: var(--grad-diag);
  padding: 8rem clamp(1.5rem, 8vw, 6rem) 5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.page-hero .section-label {
  display: block;
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.page-hero p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* ─── PAGE CONTENT (inner pages) ─────────────────── */
.page-content {
  max-width: 1200px;
  margin: 0 auto;
}

/* ─── SERVICE LIST (inner pages) ─────────────────── */
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-top: 1.5rem;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.5;
}

.service-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grad);
  flex-shrink: 0;
  margin-top: .45rem;
}

/* ─── RESPONSIBILITIES (co-managed page) ─────────── */
.responsibilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.responsibility-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}

.responsibility-block h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.responsibility-block.secondary h3 {
  color: var(--muted);
}

.responsibility-block .service-list li {
  color: var(--muted);
}

/* ─── OUTCOME BLOCK ──────────────────────────────── */
.outcome-block {
  background: linear-gradient(135deg, rgba(0, 87, 184, .12), rgba(0, 191, 255, .08));
  border: 1px solid rgba(0, 191, 255, .25);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-top: 2.5rem;
}

.outcome-block h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .75rem;
}

.outcome-block p {
  color: var(--text);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
}

/* ─── NOT A FIT BLOCK ────────────────────────────── */
.not-a-fit-block {
  background: var(--card);
  border: 1px solid rgba(255, 100, 80, .2);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-top: 2.5rem;
}

.not-a-fit-block h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
}

.not-a-fit-block > p {
  color: var(--muted);
  margin-bottom: 1.25rem;
  font-size: .95rem;
}

.not-a-fit-block .service-list li::before {
  background: rgba(255, 100, 80, .6);
}

.not-a-fit-block .service-list li {
  color: var(--muted);
}

/* ─── PAGE CTA SECTION ───────────────────────────── */
.page-cta-section {
  background: var(--dark);
  border-top: 1px solid var(--border);
  text-align: center;
}

.page-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.page-cta-inner .section-body {
  margin: 0 auto 2rem;
  max-width: 520px;
}

.page-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── RESPONSIVE — NEW SECTIONS ──────────────────── */
@media (max-width: 900px) {
  .ms-partner-inner {
    grid-template-columns: 1fr;
  }

  .ms-partner-pillars {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 640px) {
  .hero-bullets {
    text-align: left;
    align-self: center;
  }

  .ms-partner-pillars {
    grid-template-columns: 1fr;
  }

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

  .ms-partner-ctas {
    flex-direction: column;
  }

  .page-cta-btns {
    flex-direction: column;
    align-items: center;
  }
}

/* Honeypot anti-spam field */
.hp-field { position: absolute; left: -9999px; }