/* =============================================
   BUDGET AV — PREMIUM DESIGN SYSTEM
   Dark cinematic · Electric blue accents
   ============================================= */

/* ── Google Fonts ────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');

/* ── Design Tokens ───────────────────────────── */
:root {
  --navy:        #0A1628;
  --navy-mid:    #0D1F3C;
  --navy-deep:   #060E1A;
  --blue:        #0066FF;
  --blue-light:  #3385FF;
  --blue-dark:   #0047CC;
  --blue-glow:   rgba(0,102,255,0.18);
  --white:       #FFFFFF;
  --off-white:   #F0F4FF;
  --text:        #E8EDF5;
  --text-muted:  #8892A4;
  --star:        #FFB800;
  --border:      rgba(0,102,255,0.18);
  --border-soft: rgba(255,255,255,0.07);

  /* legacy aliases kept for backward compat */
  --color-primary:    #0A1628;
  --color-accent:     #0066FF;
  --color-accent-dark:#0047CC;
  --color-bg-light:   #0D1F3C;
  --color-white:      #FFFFFF;
  --color-text:       #E8EDF5;
  --color-text-muted: #8892A4;
  --color-border:     rgba(0,102,255,0.18);
  --color-star:       #FFB800;

  --font-heading: 'Poppins', sans-serif;
  --font-body:    'Poppins', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.3);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.5);
  --glow:       0 0 30px rgba(0,102,255,0.3);

  --container:  1200px;
  --header-h:   80px;
  --transition: 0.3s ease;
}

/* ── Reset & Base ────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--navy);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  animation: pageFadeIn 0.5s ease forwards;
}

@keyframes pageFadeIn {
  to { opacity: 1; }
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--blue);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--blue-light); }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--white);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.375rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout ──────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px)  { .container { padding: 0 40px; } }
@media (min-width: 1280px) { .container { padding: 0 60px; } }

.section {
  padding: 100px 0;
  background: var(--navy);
}
.section--light {
  background: var(--navy-mid);
}
/* The ONE truly light section — client logo bar */
.section--white {
  background: var(--white);
}
.section--white h1,
.section--white h2,
.section--white h3,
.section--white h4 { color: var(--navy); }
.section--white .section-header p { color: #5a6478; }
.section--white .section-label {
  color: var(--blue);
}
.section--white .section-label::before,
.section--white .section-label::after { background: var(--blue); }
.section--dark {
  background: var(--navy);
}

/* dark headings override — dark bg = white headings (default already) */
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }
.section--light h1,
.section--light h2,
.section--light h3 { color: var(--white); }

/* ── Section Labels ──────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
  position: relative;
}
.section-label::before,
.section-label::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--blue);
  vertical-align: middle;
  opacity: 0.7;
}
.section-label::before { margin-right: 10px; }
.section-label::after  { margin-left: 10px; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.75;
  font-weight: 300;
}
.section-header h2 { margin-bottom: 16px; }

/* ── Grid Helpers ────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 28px; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 24px; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}
@media (min-width: 900px)  { .grid-3 { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4,1fr); } }

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.btn--primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn--primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(0,102,255,0.55);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  color: var(--white);
}
.btn--outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn--outline-blue:hover {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--glow);
}
/* old alias */
.btn--outline-dark {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn--outline-dark:hover {
  background: var(--blue);
  color: var(--white);
}
/* CTA banner inverted button */
.btn--inverted {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--inverted:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--lg { padding: 18px 40px; font-size: 1.0625rem; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HEADER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(10,22,40,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,102,255,0.15);
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.site-header.scrolled {
  background: rgba(6,14,26,0.97);
  border-bottom-color: rgba(0,102,255,0.25);
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo__icon {
  width: 42px;
  height: 42px;
  background: var(--blue);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: white;
  letter-spacing: -0.5px;
  box-shadow: 0 0 16px rgba(0,102,255,0.4);
  flex-shrink: 0;
}
.site-logo__text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  line-height: 1.2;
}
.site-logo__text span {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 1px;
}

/* Nav */
.main-nav { display: none; }
@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: 2px;
  }
}
.main-nav > a,
.main-nav > .nav-item > a {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  letter-spacing: 0.01em;
}
.main-nav > a:hover,
.main-nav > .nav-item > a:hover,
.main-nav > a.current,
.main-nav > .nav-item > a.current {
  color: var(--white);
  background: rgba(0,102,255,0.12);
}

/* Dropdown */
.nav-item { position: relative; }
.nav-item .dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 240px;
  background: var(--navy-deep);
  border: 1px solid rgba(0,102,255,0.2);
  border-radius: var(--radius-md);
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(0,102,255,0.1);
  z-index: 100;
}
.nav-item:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65) !important;
  border-radius: 6px;
  background: none !important;
  border-left: 2px solid transparent;
  transition: all 0.2s ease;
}
.dropdown a:hover {
  color: var(--white) !important;
  background: rgba(0,102,255,0.12) !important;
  border-left-color: var(--blue);
  padding-left: 18px;
}

/* Header CTA */
.header-cta { display: none; }
@media (min-width: 1024px) { .header-cta { display: flex; align-items: center; } }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(0,102,255,0.08);
  border: 1px solid rgba(0,102,255,0.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 10px;
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0; bottom: 0;
  background: rgba(6,14,26,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  overflow-y: auto;
  padding: 32px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  min-height: 44px;
}
.mobile-menu a:hover { color: var(--white); }
.mobile-menu .mobile-submenu a {
  padding-left: 20px;
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
}
.mobile-menu .btn {
  margin-top: 28px;
  width: 100%;
  justify-content: center;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   HERO
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

/* Photo background */
.hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--navy);
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  background-attachment: fixed;
}
@media (max-width: 768px) {
  .hero__bg img { background-attachment: scroll; }
}

/* Gradient overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,22,40,0.95) 0%,
    rgba(10,22,40,0.75) 50%,
    rgba(0,66,204,0.2) 100%
  );
  z-index: 1;
}

/* Animated CSS grid texture */
.hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,102,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,102,255,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 1;
}

/* Radial accent glow */
.hero__overlay::before {
  content: '';
  position: absolute;
  bottom: -20%;
  right: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,102,255,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

/* Badge / eyebrow */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,102,255,0.12);
  border: 1px solid rgba(0,102,255,0.35);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue-light);
  margin-bottom: 28px;
  font-family: var(--font-heading);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--blue);
  animation: pulseBlue 2s ease infinite;
}
@keyframes pulseBlue {
  0%, 100% { box-shadow: 0 0 6px var(--blue); opacity: 1; }
  50%       { box-shadow: 0 0 16px var(--blue); opacity: 0.7; }
}

/* Hero headings */
.hero h1 {
  color: var(--white);
  margin-bottom: 22px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.4);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
}
.hero h1 .accent { color: var(--blue); }

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 560px;
  line-height: 1.75;
  font-weight: 300;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* Stats bar */
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero__stat {}
.hero__stat-num {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -1px;
}
.hero__stat-num .plus {
  color: var(--blue);
  font-size: 1.5rem;
}
.hero__stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Staggered fade-up animations */
.hero__badge   { animation: fadeUp 0.7s ease both; animation-delay: 0.1s; }
.hero h1       { animation: fadeUp 0.7s ease both; animation-delay: 0.25s; }
.hero__sub     { animation: fadeUp 0.7s ease both; animation-delay: 0.4s; }
.hero__actions { animation: fadeUp 0.7s ease both; animation-delay: 0.55s; }
.hero__stats   { animation: fadeUp 0.7s ease both; animation-delay: 0.7s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   INTERSECTION OBSERVER ANIMATIONS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.animate-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.animate-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SPOTLIGHT / PRIORITY SERVICE CARDS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px)  { .spotlight-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .spotlight-grid { grid-template-columns: repeat(4,1fr); } }

.spotlight-item {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  border: 1px solid rgba(0,102,255,0.12);
}
.spotlight-item__bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}
.spotlight-item__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  transition: transform 0.55s ease, opacity 0.55s ease;
}
.spotlight-item:hover .spotlight-item__bg img {
  transform: scale(1.07);
  opacity: 0.55;
}
.spotlight-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,14,26,0.96) 0%, rgba(6,14,26,0.1) 100%);
}
.spotlight-item__content {
  position: relative;
  z-index: 2;
  padding: 32px 28px;
  width: 100%;
}
.spotlight-item__num {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.spotlight-item__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.spotlight-item__desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin: 0;
  font-weight: 300;
}
.spotlight-item__arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: 16px;
  transition: gap var(--transition);
}
.spotlight-item:hover .spotlight-item__arrow { gap: 10px; }

/* Big number overlay */
.spotlight-item::before {
  content: attr(data-num);
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 800;
  color: var(--blue);
  opacity: 0.08;
  line-height: 1;
  z-index: 3;
  transition: opacity var(--transition);
}
.spotlight-item:hover::before { opacity: 0.15; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICE CARDS (hub pages — with photo)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.service-card {
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--transition);
  padding: 32px;
}
.service-card:hover {
  border-color: var(--blue);
  box-shadow: 0 20px 50px rgba(0,102,255,0.15);
  transform: translateY(-4px);
}
.service-card .icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
  color: var(--blue);
}
.service-card h3 { color: var(--white); }
.service-card p  { color: var(--text-muted); font-weight: 300; }

/* Image variant */
.service-card--image {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--navy-deep);
}
.service-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
}
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
  filter: brightness(0.85);
}
.service-card--image:hover .service-card__image img {
  transform: scale(1.07);
  filter: brightness(1);
}
/* Blue tint overlay on image */
.service-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(6,14,26,0.85) 100%);
  pointer-events: none;
}
.service-card__body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: rgba(255,255,255,0.02);
}
.service-card__body .icon {
  font-size: 1.25rem;
  margin-bottom: 10px;
  display: block;
  color: var(--blue);
}
.service-card__body h3 {
  font-size: 1.0625rem;
  margin-bottom: 8px;
  color: var(--white);
}
.service-card__body p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  font-weight: 300;
}
.service-card__body .card__link {
  margin-top: 14px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CARDS (generic)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.card {
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  border-color: var(--blue);
}
.card__image {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.card__body { padding: 24px; }
.card__icon {
  width: 52px; height: 52px;
  background: rgba(0,102,255,0.12);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--blue);
}
.card__title   { font-size: 1.125rem; margin-bottom: 10px; color: var(--white); }
.card__text    { color: var(--text-muted); font-size: 0.9375rem; font-weight: 300; }
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: 16px;
  transition: gap var(--transition);
}
.card__link svg { transition: transform var(--transition); }
.card:hover .card__link svg { transform: translateX(4px); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SERVICES SPLIT (Home two-column)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.services-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 900px) { .services-split { grid-template-columns: 1fr 1fr; } }

.services-split__col h3 {
  font-size: 1.375rem;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--blue);
  display: inline-block;
  color: var(--white);
}
.service-list { display: grid; gap: 8px; }
.service-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text);
  background: rgba(0,102,255,0.08);
  border: 1px solid rgba(0,102,255,0.2);
  transition: all var(--transition);
  text-decoration: none;
}
.service-list a:hover {
  background: rgba(0,102,255,0.2);
  border-color: var(--blue);
  color: var(--white);
  transform: translateX(4px);
}
.service-list a .arrow {
  margin-left: auto;
  color: var(--blue);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-list a:hover .arrow { opacity: 1; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LOGO MARQUEE (animated infinite scroll)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@keyframes logoScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.logo-marquee-wrap {
  overflow: hidden;
  padding: 4px 0 40px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 7%, black 93%, transparent 100%);
}
.logo-marquee-track {
  display: flex;
  width: max-content;
  animation: logoScroll 36s linear infinite;
}
.logo-marquee-track:hover { animation-play-state: paused; }
.logo-marquee-set { display: flex; align-items: center; }
.logo-marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  margin: 0 8px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s ease, border-color 0.3s ease;
  min-width: 130px;
}
.logo-marquee-item:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(0,102,255,0.4);
}
.logo-marquee-item img {
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(1) brightness(8) opacity(0.6);
  transition: filter 0.35s ease;
  display: block;
}
.logo-marquee-item:hover img { filter: none; }
.logo-marquee-item--text {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s ease;
}
.logo-marquee-item--text:hover { color: rgba(255,255,255,0.9); }

/* Light variant (white section) */
.logo-marquee-wrap--light .logo-marquee-item {
  background: rgba(10,22,40,0.04);
  border: 1px solid rgba(10,22,40,0.1);
}
.logo-marquee-wrap--light .logo-marquee-item:hover {
  background: rgba(10,22,40,0.09);
  border-color: var(--blue);
}
.logo-marquee-wrap--light .logo-marquee-item img {
  filter: grayscale(1) opacity(0.55);
}
.logo-marquee-wrap--light .logo-marquee-item:hover img { filter: none; }
.logo-marquee-wrap--light .logo-marquee-item--text { color: rgba(10,22,40,0.45); }
.logo-marquee-wrap--light .logo-marquee-item--text:hover { color: var(--navy); }

/* Also used for logo-bar (old) kept for compat */
.logo-bar { padding: 0; }
.logo-bar__heading { display: none; }
.logo-bar__track { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.logo-bar__item {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  background: rgba(255,255,255,0.04);
  transition: all var(--transition);
  white-space: nowrap;
}
.logo-bar__item:hover { border-color: var(--blue); color: var(--white); }

@media (prefers-reduced-motion: reduce) {
  .logo-marquee-track { animation: none; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   GALLERY / PROJECTS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 640px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.4s ease;
  filter: brightness(0.8);
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}
.gallery-item__label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,30,80,0.9) 0%, transparent 100%);
  padding: 28px 14px 12px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transform: translateY(4px);
  transition: transform 0.4s ease;
}
.gallery-item:hover .gallery-item__label { transform: translateY(0); }
/* Blue overlay on hover */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,102,255,0.5);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: var(--radius-sm);
}
.gallery-item:hover::after { opacity: 0.15; }

/* Figcaption */
.gallery-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 14px 12px;
  background: linear-gradient(to top, rgba(0,20,60,0.9) 0%, transparent 100%);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   WHY CHOOSE US
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px)  { .why-grid { grid-template-columns: repeat(4,1fr); } }

.why-item {
  padding: 36px 28px;
  background: rgba(255,255,255,0.02);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  border-top: 3px solid var(--blue);
  transition: all var(--transition);
}
.why-item:hover {
  background: rgba(0,102,255,0.05);
  border-color: rgba(0,102,255,0.3);
  border-top-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.why-item__icon {
  width: 56px; height: 56px;
  background: rgba(0,102,255,0.12);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 1.5rem;
  transition: background var(--transition);
}
.why-item:hover .why-item__icon {
  background: rgba(0,102,255,0.2);
}
.why-item h3 { font-size: 1.0625rem; margin-bottom: 10px; color: var(--white); }
.why-item p  { font-size: 0.9375rem; color: var(--text-muted); margin: 0; font-weight: 300; line-height: 1.7; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   TESTIMONIALS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3,1fr); } }

.testimonial-card {
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border: 1px solid rgba(0,102,255,0.18);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(0,102,255,0.4);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}
/* Large quote mark */
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 800;
  color: var(--blue);
  opacity: 0.15;
  line-height: 1;
  pointer-events: none;
}
.testimonial-card__stars {
  color: var(--star);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-card__quote {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
  font-weight: 300;
  position: relative;
  z-index: 1;
}
.testimonial-card__author {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue);
}
.testimonial-card__role {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CTA BANNER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.cta-banner {
  background: linear-gradient(135deg, #0033AA 0%, #0066FF 50%, #0047CC 100%);
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,30,100,0.5) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  position: relative;
  z-index: 1;
}
.cta-banner p {
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}
.cta-banner .btn--primary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  font-size: 1.0625rem;
  padding: 18px 44px;
  position: relative;
  z-index: 1;
}
.cta-banner .btn--primary:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  box-shadow: none;
  transform: translateY(-2px);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PAGE HERO (interior pages)
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.page-hero {
  background: var(--navy);
  padding: calc(var(--header-h) + 70px) 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,102,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,102,255,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,102,255,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero__breadcrumb {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  font-family: var(--font-heading);
  font-weight: 400;
  position: relative;
  z-index: 1;
}
.page-hero__breadcrumb a { color: rgba(255,255,255,0.4); }
.page-hero__breadcrumb a:hover { color: var(--blue); }
.page-hero__breadcrumb span { color: rgba(255,255,255,0.75); }
.page-hero h1 {
  color: var(--white);
  max-width: 760px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.page-hero__sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.75;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FAQ
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.faq-section { padding: 0; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(0,102,255,0.15);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  transition: border-color var(--transition);
}
.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: rgba(0,102,255,0.4);
  border-left: 3px solid var(--blue);
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  transition: background var(--transition);
  min-height: 44px;
}
.faq-question:hover { background: rgba(0,102,255,0.06); }
.faq-question[aria-expanded="true"] {
  background: rgba(0,102,255,0.08);
  color: var(--white);
}
.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  background: rgba(0,102,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
  transition: transform var(--transition), background var(--transition);
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--blue);
  color: var(--white);
}
.faq-answer {
  display: none;
  padding: 0 28px 22px;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}
.faq-answer.open { display: block; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTENT PAGE LAYOUT
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.content-page { padding: 80px 0; }
.content-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (min-width: 1024px) {
  .content-inner { grid-template-columns: 1fr 320px; }
}

.content-body h2 {
  margin-bottom: 16px;
  margin-top: 48px;
  color: var(--white);
}
.content-body h2:first-child { margin-top: 0; }
.content-body h3 {
  margin-bottom: 12px;
  margin-top: 36px;
  color: var(--white);
}
.content-body p { color: var(--text-muted); font-weight: 300; }
.content-body ul {
  list-style: none;
  margin-bottom: 1rem;
}
.content-body ul li {
  padding: 7px 0 7px 28px;
  position: relative;
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 300;
}
.content-body ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 7px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 700;
}

/* Sidebar */
.sidebar-widget {
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 24px;
  border: 1px solid var(--border);
}
.sidebar-widget__title {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blue);
}
.sidebar-widget .btn { width: 100%; justify-content: center; margin-top: 12px; }
.sidebar-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 0.9rem;
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--text-muted);
}
.sidebar-links a:last-child { border-bottom: none; }
.sidebar-links a:hover { color: var(--blue); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PORTFOLIO TABS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.portfolio-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.tab-btn {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 100px;
  border: 1px solid rgba(0,102,255,0.25);
  background: rgba(0,102,255,0.06);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  min-height: 44px;
}
.tab-btn.active,
.tab-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 0 20px rgba(0,102,255,0.35);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BLOG
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(3,1fr); } }

.blog-card {
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.blog-card:hover {
  transform: translateY(-5px);
  border-color: var(--blue);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.blog-card__image { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.blog-card__body  { padding: 24px; }
.blog-card__cat {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.blog-card__title { font-size: 1.0625rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card__title a { color: var(--white); }
.blog-card__title a:hover { color: var(--blue); }
.blog-card__excerpt { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 16px; font-weight: 300; }
.blog-card__meta   { font-size: 0.8125rem; color: var(--text-muted); display: flex; gap: 16px; }

/* Post content */
.post-content { max-width: 760px; }
.post-content h2 { margin: 40px 0 16px; color: var(--white); }
.post-content h3 { margin: 28px 0 12px; color: var(--white); }
.post-content p  { font-size: 1.0625rem; line-height: 1.85; color: var(--text-muted); margin-bottom: 1.25rem; font-weight: 300; }
.post-content ul, .post-content ol { margin: 0 0 1.25rem 1.5rem; }
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content li { margin-bottom: 0.5rem; font-size: 1.0625rem; color: var(--text-muted); font-weight: 300; }
.post-content a  { color: var(--blue); text-decoration: underline; }
.post-content .internal-cta {
  background: rgba(0,102,255,0.08);
  border-left: 4px solid var(--blue);
  padding: 20px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 32px 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   CONTACT / FORM
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 400px; } }

.contact-form label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(0,102,255,0.2);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--white);
  background: rgba(255,255,255,0.04);
  transition: border-color var(--transition), box-shadow var(--transition);
  margin-bottom: 20px;
  -webkit-appearance: none;
  appearance: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.3); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,102,255,0.15);
  background: rgba(0,102,255,0.05);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .btn { width: 100%; justify-content: center; }

.contact-info__item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-info__icon {
  width: 44px; height: 44px;
  background: rgba(0,102,255,0.12);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
  font-size: 1.125rem;
}
.contact-info__label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-info__value {
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
}

.partner-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.partner-badge {
  padding: 10px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,102,255,0.2);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
}
.partner-badge span {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}

/* Calendly */
.calendly-section { margin-top: 60px; }
.calendly-section h2 { margin-bottom: 24px; }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.site-footer {
  background: var(--navy-deep);
  color: var(--text-muted);
  padding: 80px 0 0;
  border-top: 1px solid rgba(0,102,255,0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand .site-logo { margin-bottom: 20px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.75; font-weight: 300; }

/* Social icons */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.footer-social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition);
  text-decoration: none;
}
.footer-social-icon:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(0,102,255,0.1);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 22px;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }

.footer-service-area {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 0;
}
.footer-service-area p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  line-height: 1.75;
}
.footer-service-area strong { color: rgba(255,255,255,0.55); font-weight: 600; }

.footer-partners {
  padding: 28px 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.footer-partner-badge {
  padding: 7px 18px;
  background: rgba(0,102,255,0.06);
  border: 1px solid rgba(0,102,255,0.18);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-align: center;
  transition: all var(--transition);
}
.footer-partner-badge:hover {
  background: rgba(0,102,255,0.15);
  border-color: rgba(0,102,255,0.4);
  color: var(--white);
}
.footer-partner-badge small {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 2px;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.3); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--white); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ABOUT PAGE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.about-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 900px) { .about-story { grid-template-columns: 1fr 1fr; } }

.about-story__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,102,255,0.2);
}
.about-story__image img { width: 100%; height: 100%; object-fit: cover; }

.about-certifications {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.cert-badge {
  text-align: center;
  padding: 20px 14px;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.cert-badge:hover {
  border-color: var(--blue);
  background: rgba(0,102,255,0.07);
}
.cert-badge__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 4px;
}
.cert-badge__label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-heading);
  font-weight: 600;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   UTILITIES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* Visually hidden (screen readers only) */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }
.text-accent  { color: var(--blue); }
.mt-4  { margin-top: 16px; }
.mt-8  { margin-top: 32px; }
.mb-8  { margin-bottom: 32px; }
.hidden { display: none !important; }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 20px rgba(0,102,255,0.5);
  z-index: 800;
  transition: all var(--transition);
}
.back-to-top:hover { background: var(--blue-dark); transform: translateY(-3px); }
.back-to-top.visible { display: flex; }

/* Layout offset */
body { padding-top: 0; }
.content-offset { padding-top: var(--header-h); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 767px) {
  .section { padding: 70px 0; }
  .hero { min-height: 100dvh; }
  .hero__stats { gap: 24px; }
  .cta-banner { padding: 70px 0; }
  .site-footer { padding: 60px 0 0; }
  .about-certifications { grid-template-columns: repeat(2, 1fr); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ACCESSIBILITY / SEO UTILITIES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Visually hidden but screen-reader + crawler accessible */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* AEO Answer Block — highlighted intro on service pages */
.aeo-answer {
  background: rgba(0,102,255,0.06);
  border-left: 4px solid #0066FF;
  padding: 1.25rem 1.5rem;
  border-radius: 0 6px 6px 0;
  margin-bottom: 0;
}
.aeo-answer p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}
}
