/* ===================================================
   BLUE HARBOUR TECHNOLOGIES — Main Stylesheet
   =================================================== */

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

/* ===== CSS VARIABLES ===== */
:root {
  --primary:    #0A2342;
  --accent:     #1B9AAA;
  --teal-light: #2BBFCF;
  --white:      #FFFFFF;
  --off-white:  #F5F7FA;
  --body-text:  #1A1A2E;
  --muted:      #5A6475;
  --gradient:   linear-gradient(135deg, #0A2342 0%, #0d2d55 50%, #0f3060 100%);
  --card-shadow: 0 4px 24px rgba(10,35,66,0.10);
  --glow:       0 0 30px rgba(27,154,170,0.15);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 400;
  color: var(--body-text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== UTILITY ===== */
.section-eyebrow {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(27,154,170,0.10);
  border: 1px solid rgba(27,154,170,0.25);
  border-radius: 50px;
  padding: 5px 16px;
  margin-bottom: 18px;
}

.section-heading {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
}

.section-heading span { color: var(--accent); }

.section-subtext {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 640px;
}

.text-center { text-align: center; }
.text-center .section-subtext { margin: 0 auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 6px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,154,170,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.10);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-dark:hover {
  background: #0d2d55;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,35,66,0.3);
}

.btn svg, .btn .arrow { transition: transform 0.3s ease; }
.btn:hover svg, .btn:hover .arrow { transform: translateX(4px); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
  padding: 10px 0;
}

.navbar.scrolled {
  background: rgba(10,35,66,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.25);
  padding: 6px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
}

.nav-logo-name {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: -0.01em;
}

.nav-logo-tagline {
  font-size: 0.68rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  font-family: 'Lato', sans-serif;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: 'Sora', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 0.85rem !important;
  transition: background 0.3s ease, transform 0.2s ease !important;
}
.nav-cta:hover { background: var(--teal-light) !important; transform: translateY(-1px) !important; }
.nav-cta::after { display: none !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(27,154,170,0.18), rgba(10,35,66,0.4));
  border: 1.5px solid rgba(27,154,170,0.4);
  box-shadow: 0 0 16px rgba(27,154,170,0.15), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

/* Shimmer effect on hamburger */
.nav-hamburger::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(27,154,170,0.15) 100%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-hamburger:hover::before { opacity: 1; }

.nav-hamburger:hover {
  border-color: rgba(43,191,207,0.7);
  box-shadow: 0 0 24px rgba(27,154,170,0.35), inset 0 1px 0 rgba(255,255,255,0.12);
  transform: scale(1.05);
}

/* Staggered line widths for modern look */
.nav-hamburger span {
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-light), var(--white));
  border-radius: 2px;
  transition: all 0.38s cubic-bezier(0.23, 1, 0.32, 1);
  transform-origin: center;
}
.nav-hamburger span:nth-child(1) { width: 22px; }
.nav-hamburger span:nth-child(2) { width: 16px; margin-left: -6px; opacity: 0.7; }
.nav-hamburger span:nth-child(3) { width: 10px; margin-left: -12px; opacity: 0.45; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient);
  overflow: hidden;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

/* Circuit grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27,154,170,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,154,170,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 200px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27,154,170,0.15);
  border: 1px solid rgba(27,154,170,0.35);
  color: var(--teal-light);
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal-light);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero h1 .highlight {
  background: linear-gradient(90deg, var(--accent), var(--teal-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtext {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Stats Card */
.hero-stats-card {
  background: rgba(10,35,66,0.7);
  border: 1px solid rgba(27,154,170,0.25);
  border-radius: 16px;
  padding: 36px 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--glow), 0 24px 64px rgba(0,0,0,0.3);
}

.hero-stats-card-title {
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(27,154,170,0.2);
}

.hero-stat-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-stat-row:last-child { border-bottom: none; padding-bottom: 0; }
.hero-stat-row:first-of-type { padding-top: 0; }

.hero-stat-icon {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: rgba(27,154,170,0.15);
  border: 1px solid rgba(27,154,170,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal-light);
  font-size: 1.1rem;
}

.hero-stat-info { flex: 1; }

.hero-stat-number {
  font-family: 'Sora', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  line-height: 1.4;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  font-family: 'Sora', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}

.scroll-mouse-dot {
  width: 4px; height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scroll-anim 2s infinite;
}

@keyframes scroll-anim {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
  padding: 100px 0;
  background: var(--off-white);
  position: relative;
}

.section-header { margin-bottom: 56px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid rgba(10,35,66,0.07);
  box-shadow: var(--card-shadow);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--teal-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(10,35,66,0.14);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(10,35,66,0.06), rgba(27,154,170,0.10));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--accent);
  transition: all 0.3s ease;
}

.service-card:hover .service-card-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

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

.services-preview-cta { text-align: center; }

/* ===== ABOUT TEASER ===== */
.about-teaser {
  padding: 100px 0;
  background: var(--white);
}

.about-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-teaser-visual {
  position: relative;
}

.about-visual-main {
  background: var(--gradient);
  border-radius: 16px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.about-visual-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27,154,170,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,154,170,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}

.about-visual-text {
  position: relative;
  z-index: 1;
  font-family: 'Sora', sans-serif;
  color: var(--white);
}

.about-visual-text .big-number {
  font-size: 5rem;
  font-weight: 800;
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: 8px;
}

.about-visual-text .big-label {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.about-visual-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: var(--white);
  border-radius: 12px;
  padding: 18px 24px;
  font-family: 'Sora', sans-serif;
  text-align: center;
  box-shadow: 0 8px 32px rgba(27,154,170,0.4);
}

.about-visual-badge .badge-num {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.about-visual-badge .badge-label {
  font-size: 0.72rem;
  opacity: 0.9;
  margin-top: 4px;
}

.about-metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--off-white);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid rgba(10,35,66,0.07);
}

.about-metric {
  padding: 24px 16px;
  text-align: center;
  border-right: 1px solid rgba(10,35,66,0.07);
  transition: background 0.3s ease;
}
.about-metric:last-child { border-right: none; }
.about-metric:hover { background: rgba(27,154,170,0.06); }

.about-metric-num {
  font-family: 'Sora', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.about-metric-label {
  font-size: 0.77rem;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.4;
}

/* ===== SECTION: TRUSTED RESULTS ===== */
.trusted-results {
  padding: 100px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.trusted-results::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27,154,170,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,154,170,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.trusted-results .section-eyebrow {
  background: rgba(27,154,170,0.15);
  border-color: rgba(27,154,170,0.35);
}

.trusted-results .section-heading {
  color: var(--white);
}

.trusted-results .section-subtext {
  color: rgba(255,255,255,0.65);
}

.trusted-intro {
  max-width: 700px;
  margin: 0 auto 56px;
  text-align: center;
  color: rgba(255,255,255,0.70);
  font-size: 1rem;
  line-height: 1.75;
}

.trusted-intro strong {
  color: var(--teal-light);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.metric-tile {
  background: rgba(10,35,66,0.6);
  padding: 40px 32px;
  border: 1px solid rgba(27,154,170,0.12);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.metric-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.metric-tile:hover {
  background: rgba(27,154,170,0.10);
  transform: translateY(-2px);
}
.metric-tile:hover::before { transform: scaleX(1); }

.metric-number {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  color: var(--teal-light);
  line-height: 1;
  margin-bottom: 12px;
}

.metric-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--gradient);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27,154,170,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,154,170,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 600px;
}

/* ===== SERVICES PAGE ===== */
.services-page { padding: 80px 0 100px; }

.pillar-block {
  margin-bottom: 80px;
}

.pillar-header {
  background: var(--gradient);
  border-radius: 16px;
  padding: 44px 48px;
  margin-bottom: 36px;
  position: relative;
  overflow: hidden;
}

.pillar-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27,154,170,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,154,170,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
}

.pillar-number {
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.pillar-header h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.pillar-header p {
  color: rgba(255,255,255,0.70);
  max-width: 700px;
  font-size: 1rem;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.sub-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sub-service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 24px;
  border: 1px solid rgba(10,35,66,0.08);
  box-shadow: 0 2px 12px rgba(10,35,66,0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.sub-service-card:hover {
  border-color: rgba(27,154,170,0.3);
  box-shadow: 0 8px 32px rgba(27,154,170,0.12);
  transform: translateY(-4px);
}

.sub-service-num {
  font-family: 'Sora', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.sub-service-card h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.sub-service-card p {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.sub-service-card .btn {
  padding: 10px 20px;
  font-size: 0.82rem;
  align-self: flex-start;
}

/* ===== PROJECTS / WHAT WE DO ===== */
.why-partner {
  padding: 80px 0;
  background: var(--off-white);
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-bullets { margin: 24px 0 32px; }

.why-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(10,35,66,0.06);
  font-size: 0.95rem;
  color: var(--body-text);
}
.why-bullets li:last-child { border-bottom: none; }

.why-bullets .bullet-check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(27,154,170,0.12);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.7rem;
}

.cert-panel {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid rgba(10,35,66,0.08);
  box-shadow: var(--card-shadow);
}

.cert-panel h3 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(10,35,66,0.07);
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(10,35,66,0.05);
  transition: all 0.2s ease;
}
.cert-item:last-child { border-bottom: none; }
.cert-item:hover { padding-left: 6px; }

.cert-badge {
  background: var(--gradient);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 0.72rem;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  min-width: 64px;
  text-align: center;
}

.cert-desc {
  font-size: 0.88rem;
  color: var(--muted);
}

/* Impact Highlights */
.impact-highlights { padding: 80px 0 100px; }

.impact-intro {
  max-width: 750px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 56px;
}

.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.impact-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(10,35,66,0.08);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: all 0.35s ease;
}

.impact-card:hover {
  box-shadow: 0 16px 48px rgba(10,35,66,0.14);
  transform: translateY(-4px);
}

.impact-card-header {
  background: var(--gradient);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.impact-card-header::before {
  content: '';
  position: absolute;
  right: -20px; top: -20px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: rgba(27,154,170,0.12);
}

.impact-num {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal-light);
  line-height: 1;
  opacity: 0.6;
}

.impact-card-header h3 {
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 700;
}

.impact-card-body {
  padding: 28px;
}

.impact-label {
  font-family: 'Sora', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  margin-top: 16px;
}
.impact-label:first-child { margin-top: 0; }

.impact-card-body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

.impact-points {
  margin-top: 8px;
}

.impact-points li {
  font-size: 0.86rem;
  color: var(--body-text);
  padding: 5px 0;
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.impact-points li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.impact-result {
  margin-top: 20px;
  padding: 14px 16px;
  background: rgba(27,154,170,0.07);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  line-height: 1.5;
}

/* Testimonial */
.testimonial-block {
  background: var(--off-white);
  border-radius: 12px;
  padding: 32px 36px;
  margin-top: 12px;
  border: 1px solid rgba(10,35,66,0.07);
}

.testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--body-text);
  line-height: 1.75;
  margin-bottom: 12px;
}

.testimonial-author {
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
}

/* Project Enquiry Form */
.project-enquiry {
  padding: 80px 0;
  background: var(--off-white);
}

.enquiry-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}

/* ===== ABOUT PAGE ===== */
.about-intro { padding: 80px 0; }

.about-intro-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-text-block p {
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

.mission-block {
  padding: 80px 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.mission-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27,154,170,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,154,170,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.mission-quote {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}

.mission-quote-mark {
  font-size: 5rem;
  line-height: 0.6;
  color: var(--accent);
  font-family: Georgia, serif;
  margin-bottom: 24px;
  display: block;
  opacity: 0.6;
}

.mission-quote blockquote {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 24px;
}

.mission-quote cite {
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--accent);
  letter-spacing: 0.08em;
}

/* Leadership */
.leadership { padding: 80px 0; background: var(--off-white); }

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.leader-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(10,35,66,0.08);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: all 0.35s ease;
}

.leader-card:hover {
  box-shadow: 0 20px 60px rgba(10,35,66,0.14);
  transform: translateY(-4px);
}

.leader-card-header {
  background: var(--gradient);
  padding: 36px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.leader-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(27,154,170,0.3);
  border: 3px solid rgba(27,154,170,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.leader-title-block .role-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 8px;
}

.leader-title-block h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.leader-title-block .full-title {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.leader-card-body {
  padding: 28px 32px 32px;
}

.leader-bio {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.leader-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-family: 'Sora', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  transition: color 0.3s ease;
}
.leader-linkedin:hover { color: var(--teal-light); }

.leader-linkedin svg { width: 18px; height: 18px; }

/* Partner Section */
.partner-section { padding: 80px 0; background: var(--white); }

.partner-card {
  background: var(--off-white);
  border-radius: 16px;
  padding: 48px;
  border: 1px solid rgba(10,35,66,0.07);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: center;
}

.partner-logo-area {
  text-align: center;
}

.partner-logo-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--gradient);
  padding: 32px 40px;
  border-radius: 16px;
}

.partner-logo-box .p-name {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

.partner-logo-box .p-url {
  font-size: 0.78rem;
  color: var(--accent);
  font-family: 'Lato', sans-serif;
}

.partner-content h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.partner-content p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

/* Office Locations */
.offices { padding: 80px 0 100px; background: var(--off-white); }

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

.office-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid rgba(10,35,66,0.08);
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
}

.office-card:hover {
  border-color: rgba(27,154,170,0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(10,35,66,0.12);
}

.office-tag {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(27,154,170,0.08);
  border: 1px solid rgba(27,154,170,0.2);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.office-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.office-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

.office-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  color: var(--accent);
  font-size: 0.85rem;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  transition: color 0.3s ease;
}
.office-link:hover { color: var(--teal-light); }

/* ===== CONTACT PAGE ===== */
.contact-page { padding: 80px 0 100px; }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

.contact-detail-list { display: flex; flex-direction: column; gap: 16px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(27,154,170,0.10);
  border: 1px solid rgba(27,154,170,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-text .label {
  font-family: 'Sora', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2px;
}

.contact-detail-text .value {
  font-size: 0.9rem;
  color: var(--body-text);
}

.contact-detail-text a {
  color: var(--accent);
  transition: color 0.3s ease;
}
.contact-detail-text a:hover { color: var(--teal-light); }

/* ===== FORMS ===== */
.form-wrapper {
  background: var(--white);
  border-radius: 16px;
  padding: 44px 40px;
  border: 1px solid rgba(10,35,66,0.08);
  box-shadow: 0 8px 40px rgba(10,35,66,0.09);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.form-group:last-of-type { margin-bottom: 0; }

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

.form-group label {
  font-family: 'Sora', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.03em;
}

.form-group label .req { color: var(--accent); margin-left: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid rgba(10,35,66,0.15);
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 0.92rem;
  color: var(--body-text);
  background: var(--white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(27,154,170,0.10);
}

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

.form-group select { cursor: pointer; }

.form-submit { margin-top: 28px; }

.form-submit .btn { width: 100%; justify-content: center; font-size: 1rem; padding: 16px; }

.form-success {
  display: none;
  background: rgba(27,154,170,0.08);
  border: 1px solid rgba(27,154,170,0.25);
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 16px;
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
  background: #071829;
  border-top: 1px solid rgba(27,154,170,0.12);
  padding: 72px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand {}

.footer-logo-name {
  font-family: 'Sora', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.6);
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.footer-col h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: block;
}
.footer-col ul li a:hover { color: var(--accent); padding-left: 6px; }

.footer-find p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 10px;
}

.footer-find a {
  font-size: 0.87rem;
  color: var(--accent);
  transition: color 0.3s ease;
}
.footer-find a:hover { color: var(--teal-light); }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  color: var(--accent);
  transition: color 0.3s ease;
}
.footer-bottom a:hover { color: var(--teal-light); }

/* ===== TECH MARQUEE / TRUSTED LOGOS ===== */
.tech-bar {
  background: var(--primary);
  padding: 20px 0;
  border-top: 1px solid rgba(27,154,170,0.15);
  border-bottom: 1px solid rgba(27,154,170,0.15);
  overflow: hidden;
}

.tech-bar-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}

.tech-tag {
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s ease;
  flex-shrink: 0;
}

.tech-tag:hover { color: var(--teal-light); }

.tech-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(27,154,170,0.4);
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-in {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.fade-in.visible { opacity: 1; }

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger.visible > * { opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.40s; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.breadcrumb a, .breadcrumb span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-family: 'Sora', sans-serif;
}

.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); font-size: 0.75rem; }
.breadcrumb .current { color: var(--accent); }

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--accent);
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.cta-band-inner { position: relative; z-index: 1; }

.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  margin-bottom: 14px;
}

.cta-band p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.cta-band .btn-outline {
  border-color: rgba(255,255,255,0.7);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-stats-card { max-width: 500px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-teaser-inner { grid-template-columns: 1fr; gap: 48px; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .impact-grid { grid-template-columns: 1fr; }
  .enquiry-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .leadership-grid { grid-template-columns: 1fr; }
  .partner-card { grid-template-columns: 1fr; }
  .about-intro-inner { grid-template-columns: 1fr; gap: 40px; }
  .offices-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {

  /* ====================================
     NAVBAR — always solid on mobile
  ==================================== */
  .navbar {
    background: rgba(7, 24, 50, 0.97) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(27,154,170,0.18) !important;
    padding: 6px 0 !important;
    box-shadow: 0 4px 24px rgba(0,0,0,0.35) !important;
  }

  /* Mobile logo */
  .nav-logo .site-logo {
    height: 80px;
    width: 130px;
    object-fit: contain;
  }

  /* Show hamburger — above the overlay */
  .nav-hamburger {
    display: flex;
    z-index: 10000;
    position: relative;
  }

  /* ====================================
     HAMBURGER open → X state
  ==================================== */
  .nav-hamburger.open {
    background: linear-gradient(135deg, rgba(27,154,170,0.28), rgba(10,35,66,0.5));
    border-color: rgba(43,191,207,0.65);
    box-shadow: 0 0 24px rgba(27,154,170,0.4);
  }
  .nav-hamburger.open span:nth-child(1) {
    width: 20px; margin-left: 0;
    transform: translateY(7px) rotate(45deg);
    opacity: 1;
  }
  .nav-hamburger.open span:nth-child(2) {
    opacity: 0; transform: scaleX(0);
  }
  .nav-hamburger.open span:nth-child(3) {
    width: 20px; margin-left: 0;
    transform: translateY(-7px) rotate(-45deg);
    opacity: 1;
  }

  /* ====================================
     FULL-SCREEN OVERLAY MENU
  ==================================== */
  .nav-links {
    display: none;          /* hidden by default — no opacity trick */
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;          /* above absolutely everything */

    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 90px 32px 60px;

    /* Solid dark background — no multi-layer gradients that can fail */
    background: #061527;
    border-top: 3px solid var(--accent);
  }

  .nav-links.open {
    display: flex;
    animation: overlay-in 0.32s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  @keyframes overlay-in {
    from { opacity: 0; transform: translateY(-12px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0)      scale(1);    }
  }

  /* Subtle teal glow blob top-right */
  .nav-links::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 280px; height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27,154,170,0.18) 0%, transparent 70%);
    pointer-events: none;
  }

  /* Bottom watermark */
  .nav-links::after {
    content: 'blueharbourtech.com.au';
    position: absolute;
    bottom: 24px;
    font-family: 'Sora', sans-serif;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.15);
    pointer-events: none;
  }

  /* Each list item */
  .nav-links li {
    width: 100%;
    max-width: 300px;
    list-style: none;
  }

  /* Divider between regular links and CTA */
  .nav-links li:nth-last-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding-bottom: 12px;
    margin-bottom: 4px;
  }

  /* All nav links — reset ALL pseudo-elements */
  .nav-links a,
  .nav-links a::before,
  .nav-links a::after {
    all: unset;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    text-align: center;
    padding: 15px 20px;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    letter-spacing: 0.02em;
  }

  .nav-links a:hover {
    color: var(--white);
    background: rgba(27,154,170,0.10);
    border-color: rgba(27,154,170,0.2);
  }

  .nav-links a.active {
    color: var(--teal-light);
    background: rgba(27,154,170,0.12);
    border-color: rgba(27,154,170,0.28);
    font-weight: 700;
  }

  /* CTA — "Get In Touch" */
  .nav-links .nav-cta {
    display: block !important;
    background: var(--accent) !important;
    color: var(--white) !important;
    border-color: transparent !important;
    border-radius: 10px !important;
    text-align: center !important;
    padding: 16px 20px !important;
    margin-top: 4px;
    font-size: 1rem !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 24px rgba(27,154,170,0.35);
    letter-spacing: 0.06em !important;
    transition: background 0.2s ease, box-shadow 0.2s ease !important;
  }
  .nav-links .nav-cta:hover {
    background: var(--teal-light) !important;
    box-shadow: 0 6px 32px rgba(27,154,170,0.5) !important;
  }

  /* Stagger links in */
  .nav-links.open li {
    animation: menu-item-in 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  .nav-links.open li:nth-child(1) { animation-delay: 0.05s; }
  .nav-links.open li:nth-child(2) { animation-delay: 0.10s; }
  .nav-links.open li:nth-child(3) { animation-delay: 0.15s; }
  .nav-links.open li:nth-child(4) { animation-delay: 0.20s; }
  .nav-links.open li:nth-child(5) { animation-delay: 0.25s; }

  @keyframes menu-item-in {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ====================================
     REST OF MOBILE LAYOUT
  ==================================== */
  .services-grid { grid-template-columns: 1fr; }
  .sub-services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .about-metrics-strip { grid-template-columns: repeat(2, 1fr); }
  .offices-grid { grid-template-columns: 1fr; }
  .form-wrapper { padding: 28px 20px; }
  .pillar-header { padding: 28px 24px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
  .about-metrics-strip { grid-template-columns: 1fr 1fr; }
}

/* ===================================================
   3D ANIMATIONS & EFFECTS
   =================================================== */

/* ---- Tilt shine overlay ---- */
.tilt-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 5;
  mix-blend-mode: overlay;
}

/* ---- Metric tile flip-in (overrides .stagger > * for metric tiles) ---- */
.metric-tile,
.stagger.visible > .metric-tile {
  opacity: 0;
  transform: perspective(600px) rotateX(-25deg) translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
              background 0.35s ease, box-shadow 0.35s ease;
}

.metric-tile.flip-in,
.stagger.visible > .metric-tile.flip-in {
  opacity: 1;
  transform: perspective(600px) rotateX(0deg) translateY(0);
}

.metric-tile.flip-in:hover {
  transform: perspective(600px) rotateX(0deg) translateY(-4px) scale(1.02) !important;
  box-shadow: 0 0 40px rgba(27,154,170,0.25), 0 20px 60px rgba(0,0,0,0.3);
}

/* ---- Service icon 3D spin ---- */
.service-card-icon {
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), background 0.3s ease, color 0.3s ease;
  transform-style: preserve-3d;
}

.service-card-icon.spin-3d {
  animation: icon-spin3d 0.65s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes icon-spin3d {
  0%   { transform: perspective(200px) rotateY(0deg) scale(1); }
  40%  { transform: perspective(200px) rotateY(180deg) scale(1.15); }
  100% { transform: perspective(200px) rotateY(360deg) scale(1); }
}

/* ---- CSS 3D floating background shapes ---- */
.float-shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  animation: float3d linear infinite;
  transform-style: preserve-3d;
}

.shape-cube {
  width:  50px;
  height: 50px;
  border: 1.5px solid var(--accent);
  border-radius: 4px;
  animation-name: float3d-cube;
}

.shape-ring {
  width:  70px;
  height: 70px;
  border: 1.5px solid var(--teal-light);
  border-radius: 50%;
  animation-name: float3d-ring;
}

.shape-tri {
  width:  0;
  height: 0;
  border-left:   28px solid transparent;
  border-right:  28px solid transparent;
  border-bottom: 48px solid rgba(27,154,170,0.3);
  border-top:    none;
  animation-name: float3d-tri;
  border-radius: 0;
}

@keyframes float3d-cube {
  0%   { transform: perspective(400px) rotateX(0deg)    rotateY(0deg)   translateY(0);    }
  25%  { transform: perspective(400px) rotateX(90deg)   rotateY(45deg)  translateY(-20px); }
  50%  { transform: perspective(400px) rotateX(180deg)  rotateY(90deg)  translateY(-30px); }
  75%  { transform: perspective(400px) rotateX(270deg)  rotateY(135deg) translateY(-20px); }
  100% { transform: perspective(400px) rotateX(360deg)  rotateY(180deg) translateY(0);    }
}

@keyframes float3d-ring {
  0%   { transform: perspective(400px) rotateX(0deg)   rotateZ(0deg)   translateY(0);     }
  33%  { transform: perspective(400px) rotateX(60deg)  rotateZ(120deg) translateY(-25px);  }
  66%  { transform: perspective(400px) rotateX(120deg) rotateZ(240deg) translateY(-15px);  }
  100% { transform: perspective(400px) rotateX(180deg) rotateZ(360deg) translateY(0);     }
}

@keyframes float3d-tri {
  0%   { transform: perspective(400px) rotateY(0deg)   rotateX(0deg)  translateY(0);     }
  50%  { transform: perspective(400px) rotateY(180deg) rotateX(30deg) translateY(-22px);  }
  100% { transform: perspective(400px) rotateY(360deg) rotateX(0deg)  translateY(0);     }
}

/* Make sure sections containing shapes have relative + overflow hidden */
.trusted-results,
.services-preview,
.about-teaser {
  position: relative;
}

/* ---- Hero stats card 3D glow on hover ---- */
.hero-stats-card {
  transition: box-shadow 0.4s ease;
  transform-style: preserve-3d;
}

.hero-stats-card:hover {
  box-shadow: 0 0 60px rgba(27,154,170,0.3), 0 32px 80px rgba(0,0,0,0.4);
}

/* ---- 3D depth on large section headings ---- */
.section-heading {
  transform-style: preserve-3d;
}

/* ---- Hero badge 3D float ---- */
.hero-badge {
  animation: badge-float 4s ease-in-out infinite;
  transform-origin: center;
}

@keyframes badge-float {
  0%, 100% { transform: perspective(400px) translateZ(0)   translateY(0); }
  50%       { transform: perspective(400px) translateZ(12px) translateY(-4px); }
}

/* ---- About visual big number 3D depth ---- */
.about-visual-text .big-number {
  text-shadow:
    2px  2px 0 rgba(27,154,170,0.4),
    4px  4px 0 rgba(27,154,170,0.25),
    6px  6px 0 rgba(27,154,170,0.12),
    8px  8px 0 rgba(27,154,170,0.06);
  animation: depth-pulse 5s ease-in-out infinite;
}

@keyframes depth-pulse {
  0%, 100% { text-shadow: 2px 2px 0 rgba(27,154,170,0.4), 4px 4px 0 rgba(27,154,170,0.25), 6px 6px 0 rgba(27,154,170,0.12); }
  50%       { text-shadow: 4px 4px 0 rgba(27,154,170,0.5), 8px 8px 0 rgba(27,154,170,0.3), 12px 12px 0 rgba(27,154,170,0.15); }
}

/* ---- Metric numbers 3D depth ---- */
.metric-number {
  text-shadow:
    1px 1px 0 rgba(27,154,170,0.5),
    3px 3px 0 rgba(27,154,170,0.25),
    5px 5px 0 rgba(27,154,170,0.10);
}

/* ---- Hero stat number depth ---- */
.hero-stat-number {
  text-shadow:
    1px 1px 0 rgba(27,154,170,0.5),
    2px 2px 0 rgba(27,154,170,0.25);
}

/* ---- CTA Band 3D hover buttons ---- */
.cta-band .btn:hover {
  transform: perspective(400px) translateZ(10px) translateY(-3px);
}

/* ---- Page hero 3D text reveal ---- */
.page-hero h1 {
  animation: text3d-in 0.9s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.page-hero p {
  animation: text3d-in 0.9s 0.15s cubic-bezier(0.23, 1, 0.32, 1) both;
}

@keyframes text3d-in {
  from {
    opacity: 0;
    transform: perspective(600px) rotateX(-20deg) translateY(30px);
  }
  to {
    opacity: 1;
    transform: perspective(600px) rotateX(0deg) translateY(0);
  }
}

/* ---- Leader card avatar 3D spin on hover ---- */
.leader-card:hover .leader-avatar {
  animation: avatar-spin 0.7s cubic-bezier(0.23, 1, 0.32, 1) both;
}

@keyframes avatar-spin {
  0%   { transform: perspective(300px) rotateY(0deg)   scale(1);    }
  50%  { transform: perspective(300px) rotateY(180deg) scale(1.08); }
  100% { transform: perspective(300px) rotateY(360deg) scale(1);    }
}

/* ---- Office card tag 3D pop ---- */
.office-card:hover .office-tag {
  transform: perspective(200px) translateZ(6px) scale(1.05);
  transition: transform 0.3s ease;
}

/* ---- Cert badge 3D lift ---- */
.cert-item:hover .cert-badge {
  transform: perspective(200px) translateZ(8px) scale(1.06);
  transition: transform 0.3s ease;
  box-shadow: 0 6px 20px rgba(10,35,66,0.3);
}

/* ---- Footer brand 3D hover ---- */
.footer-logo-name {
  transition: transform 0.3s ease;
}

.footer-logo-name:hover {
  transform: perspective(300px) translateZ(6px);
}

/* ---- Scroll indicator 3D depth ---- */
.hero-scroll {
  animation: scroll-depth 3s ease-in-out infinite;
}

@keyframes scroll-depth {
  0%, 100% { transform: translateX(-50%) perspective(200px) translateZ(0);  opacity: 0.4; }
  50%       { transform: translateX(-50%) perspective(200px) translateZ(8px); opacity: 0.7; }
}

/* ---- Nav logo 3D on hover ---- */
.nav-logo:hover .nav-logo-name {
  text-shadow: 0 0 20px rgba(27,154,170,0.6);
  transition: text-shadow 0.3s ease;
}

/* ---- Impact card header 3D depth ---- */
.impact-num {
  text-shadow:
    2px 2px 0 rgba(27,154,170,0.4),
    4px 4px 0 rgba(27,154,170,0.2);
  animation: num-breathe 4s ease-in-out infinite;
}

@keyframes num-breathe {
  0%, 100% { text-shadow: 2px 2px 0 rgba(27,154,170,0.4), 4px 4px 0 rgba(27,154,170,0.2); }
  50%       { text-shadow: 3px 3px 0 rgba(43,191,207,0.5), 6px 6px 0 rgba(43,191,207,0.25); }
}

/* ---- Sub-service card number 3D ---- */
.sub-service-num {
  transition: transform 0.3s ease, color 0.3s ease;
}

.sub-service-card:hover .sub-service-num {
  transform: perspective(200px) translateZ(8px) scale(1.1);
  color: var(--teal-light);
}

/* ---- Partner logo box 3D rotation ---- */
.partner-logo-box {
  animation: logo-tilt 6s ease-in-out infinite;
}

@keyframes logo-tilt {
  0%, 100% { transform: perspective(500px) rotateY(0deg)   rotateX(0deg);  }
  25%       { transform: perspective(500px) rotateY(6deg)   rotateX(2deg);  }
  75%       { transform: perspective(500px) rotateY(-6deg)  rotateX(-2deg); }
}

/* ---- Hero section: bring z-index for 3D context ---- */
.hero-text,
.hero-stats-card {
  isolation: isolate;
}

/* ===================================================
   LOGO STYLES
   =================================================== */

/* Logo image — canvas-processed (white bg removed) */
.site-logo {
  display: block;
  height: 120px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.4s ease, transform 0.3s ease, opacity 0.3s ease;
}

/* Navbar logo specifically */
.nav-logo .site-logo {
  height: 160px;
  width: 153px;
  object-fit: contain;
}

/* Shrink slightly when navbar is scrolled/compact */
.navbar.scrolled .nav-logo .site-logo {
  height: 130px;
}

/* Hover lift */
.nav-logo:hover .site-logo {
  transform: scale(1.05);
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(43,191,207,0.7));
}

/* Footer logo — also white on dark */
.footer-logo .site-logo {
  height: 160px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-logo .site-logo:hover {
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(27,154,170,0.5));
}

/* On light backgrounds (if ever needed) — show original blue */
.logo-on-light .site-logo {
  filter: none;
}

/* ---- Reduce motion support ---- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===================================================
   NAVBAR DROPDOWN
   =================================================== */

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  cursor: pointer;
}

.dropdown-chevron {
  transition: transform 0.25s ease;
  flex-shrink: 0;
  opacity: 0.8;
  display: inline-block;
}

.nav-dropdown:hover .dropdown-chevron,
.nav-dropdown.open .dropdown-chevron {
  transform: rotate(180deg);
  opacity: 1;
}

/* The dropdown panel */
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background-color: #071832;
  border: 1px solid rgba(27,154,170,0.25);
  border-radius: 0 0 12px 12px;
  padding: 8px 6px 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(4px);
  /* delay hide so mouse can travel from link into panel */
  transition: opacity 0.18s ease 0s, transform 0.18s ease 0s, visibility 0s ease 0.25s;
  z-index: 99999;
  list-style: none;
}

/* Show on hover or JS open class — no delay on show */
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.18s ease 0s, transform 0.18s ease 0s, visibility 0s ease 0s;
}

/* Dropdown items */
.nav-dropdown-menu li {
  margin: 0;
  padding: 0;
}

.nav-dropdown-menu li a,
.nav-dropdown-menu li a:hover,
.nav-dropdown-menu li a::before,
.nav-dropdown-menu li a::after {
  all: unset;
}

.nav-dropdown-menu li a {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 11px 16px !important;
  font-family: 'Lato', sans-serif !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
  color: rgba(255,255,255,0.7) !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: background 0.18s ease, color 0.18s ease !important;
  text-decoration: none !important;
  box-sizing: border-box !important;
  width: 100% !important;
}

.nav-dropdown-menu li a::before {
  content: '' !important;
  display: block !important;
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background: #1B9AAA !important;
  opacity: 0 !important;
  flex-shrink: 0 !important;
  transition: opacity 0.18s ease !important;
}

.nav-dropdown-menu li a:hover {
  background: rgba(27,154,170,0.15) !important;
  color: #ffffff !important;
}

.nav-dropdown-menu li a:hover::before {
  opacity: 1 !important;
}

/* ===== MOBILE — inline accordion ===== */
@media (max-width: 768px) {
  .nav-dropdown-menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    background: rgba(255,255,255,0.05) !important;
    border: none !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    padding: 4px !important;
    margin-top: 4px !important;
    display: none !important;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block !important;
  }

  .nav-dropdown-menu li a {
    font-size: 0.85rem !important;
    padding: 9px 16px !important;
    color: rgba(255,255,255,0.6) !important;
  }
}

/* ===================================================
   SERVICE CATEGORY CARDS (homepage 3-card grid)
   =================================================== */

/* Force exactly 3 columns */
.services-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Make the card a clean link */
a.service-category-card {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

a.service-category-card h3 {
  transition: color 0.25s ease;
}

a.service-category-card:hover h3 {
  color: var(--accent);
}

/* "Explore Services →" label at bottom of card */
.service-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  padding-top: 18px;
  font-family: 'Sora', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: gap 0.2s ease, color 0.2s ease;
}

.service-card-arrow svg {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

a.service-category-card:hover .service-card-arrow {
  gap: 10px;
  color: var(--teal-light);
}

a.service-category-card:hover .service-card-arrow svg {
  transform: translateX(3px);
}

/* ===================================================
   SERVICES HUB (services.html — 3-card overview)
   =================================================== */

.services-hub-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 60px;
}

/* Use .services-page parent for max specificity */
.services-page .services-hub-card,
a.services-hub-card {
  display: flex !important;
  align-items: flex-start;
  gap: 36px;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(10,35,66,0.10);
  box-shadow: 0 4px 24px rgba(10,35,66,0.08);
  text-decoration: none;
  color: var(--body-text);
  position: relative;
  overflow: hidden;
  transition: opacity 0.6s ease, transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.services-page .services-hub-card::before,
a.services-hub-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  border-radius: 4px 0 0 4px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}

.services-page .services-hub-card:hover,
a.services-hub-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(10,35,66,0.14);
  border-color: rgba(27,154,170,0.25);
}

.services-page .services-hub-card:hover::before,
a.services-hub-card:hover::before {
  transform: scaleY(1);
}

.services-hub-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(10,35,66,0.06), rgba(27,154,170,0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-top: 4px;
  transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.services-page .services-hub-card:hover .services-hub-icon,
a.services-hub-card:hover .services-hub-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #ffffff;
  transform: scale(1.08);
}

.services-hub-content {
  flex: 1;
  min-width: 0;
}

.services-hub-content h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
  transition: color 0.25s ease;
}

.services-page .services-hub-card:hover .services-hub-content h2,
a.services-hub-card:hover .services-hub-content h2 {
  color: var(--accent);
}

.services-hub-content > p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 680px;
}

.services-hub-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px 16px;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.services-hub-list li {
  font-size: 0.82rem;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}

.services-hub-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.services-hub-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Sora', sans-serif;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: gap 0.2s ease, color 0.2s ease;
}

.services-hub-cta svg {
  transition: transform 0.2s ease;
}

.services-page .services-hub-card:hover .services-hub-cta,
a.services-hub-card:hover .services-hub-cta {
  gap: 10px;
  color: var(--teal-light);
}

.services-page .services-hub-card:hover .services-hub-cta svg,
a.services-hub-card:hover .services-hub-cta svg {
  transform: translateX(3px);
}

/* ===================================================
   SUB-SERVICE CARD ICON (replaces numbering)
   =================================================== */

.sub-service-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(10,35,66,0.05), rgba(27,154,170,0.10));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.sub-service-card:hover .sub-service-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  transform: perspective(200px) translateZ(6px) scale(1.08);
}

/* ===================================================
   SERVICES BACK LINK
   =================================================== */

.services-back-link {
  display: flex;
  justify-content: center;
  margin-top: 48px;
  margin-bottom: 16px;
}

/* ===================================================
   RESPONSIVE OVERRIDES — new elements
   =================================================== */

@media (max-width: 1024px) {
  .services-hub-list { grid-template-columns: repeat(2, 1fr); }
  .services-page .services-hub-card, a.services-hub-card { gap: 28px; padding: 32px 28px; }
}

@media (max-width: 768px) {
  .services-grid--3 { grid-template-columns: 1fr; }

  .services-page .services-hub-card,
  a.services-hub-card {
    flex-direction: column !important;
    gap: 20px;
    padding: 28px 22px;
  }

  .services-hub-list { grid-template-columns: 1fr 1fr; }

  .services-hub-content h2 { font-size: 1.15rem; }
}
