/* ═══════════════════════════════════════════════════
   Decisio. — Intelligent Infrastructure
   Shared Stylesheet
   ═══════════════════════════════════════════════════ */

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }

/* ── Variables ─────────────────────────────────────── */
:root {
  --navy:      #080f1a;
  --slate:     #0d1b2e;
  --mid:       #0a2240;
  --deep:      #060d17;
  --blue:      #1a90d9;
  --ltblue:    #1baeea;
  --teal:      #00c4a0;
  --teal2:     #00e5bb;
  --white:     #ffffff;
  --offwht:    #c8dff0;
  --muted:     #5a7a92;
  --border:    rgba(26,174,234,0.15);
  --border2:   rgba(26,174,234,0.3);
  /* Sector colours */
  --energy:    #f59e0b;
  --water:     #1baeea;
  --circ:      #10b981;
  --resources: #84cc16;
  /* Grad */
  --grad:      linear-gradient(135deg,#1baeea 0%,#00c4a0 50%,#1a90d9 100%);
  --grad-text: linear-gradient(135deg,#1baeea 0%,#00c4a0 60%,#1a90d9 100%);
  /* Font */
  --fh: 'Sora', sans-serif;
  --fb: 'DM Sans', sans-serif;
  /* Transitions */
  --ease: cubic-bezier(0.4,0,0.2,1);
}

/* ── Base ───────────────────────────────────────────── */
html {
  overflow-x: hidden;
}

body {
  font-family: var(--fb);
  background: var(--navy);
  color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width:3px; }
::-webkit-scrollbar-track { background:var(--navy); }
::-webkit-scrollbar-thumb { background:var(--blue); border-radius:2px; }

a { color:inherit; text-decoration:none; }
img, svg { display:block; }

/* ── Grad text util ─────────────────────────────────── */
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ═══════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  background: rgba(8,15,26,0.6);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: background 0.35s var(--ease), border-color 0.35s;
}

.site-nav.scrolled {
  background: rgba(8,15,26,0.96);
  border-bottom-color: var(--border2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.nav-logo img,
.nav-logo svg { height: 32px; width: auto; }

.nav-center {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-center > li { position: relative; }

.nav-center > li > a {
  display: block;
  padding: 0.45rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-center > li > a:hover,
.nav-center > li > a.active {
  color: var(--white);
  background: rgba(26,174,234,0.08);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: rgba(10,18,30,0.98);
  border: 1px solid var(--border2);
  border-radius: 12px;
  padding: 0.6rem;
  padding-top: 0.85rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(-6px);
  backdrop-filter: blur(20px);
}

/* Bridge the gap so mouse movement from link to dropdown doesn't trigger mouseout */
.nav-center > li.has-dropdown::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-center > li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0.6rem 0.8rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-dropdown a:hover {
  color: var(--white);
  background: rgba(26,174,234,0.1);
}

.nav-dropdown-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-nav {
  background: var(--grad);
  border: none;
  border-radius: 40px;
  padding: 0.5rem 1.4rem;
  font-family: var(--fb);
  font-size: 0.85rem;
  font-weight: 500;
  color: white;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn-nav:hover { opacity:0.85; transform:translateY(-1px); }

/* Mobile burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ═══════════════════════════════════════════════════
   PAGE HERO (inner pages — not homepage)
   ═══════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: 10rem 3rem 6rem;
  text-align: center;
  overflow: hidden;
  background: var(--navy);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(26,174,234,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-label {
  display: inline-block;
  margin-bottom: 1.2rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
}

.page-hero h1 {
  font-family: var(--fh);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.page-hero p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--offwht);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════
   SECTION UTILITIES
   ═══════════════════════════════════════════════════ */
section { position: relative; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.section-pad { padding: 6rem 0; }
.section-pad-sm { padding: 4rem 0; }

.section-bg-alt { background: var(--slate); }
.section-bg-deep { background: var(--deep); }

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--fh);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

.section-title strong {
  font-weight: 600;
}

.section-body {
  font-size: 1.05rem;
  color: var(--offwht);
  line-height: 1.8;
  max-width: 640px;
}

.section-header-center {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header-center .section-body {
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════════════ */
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.card-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.card:hover {
  border-color: var(--border2);
  background: rgba(26,174,234,0.05);
  transform: translateY(-4px);
}

.card-accent-top {
  border-top: 2px solid var(--teal);
}

.card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
}

.card-num {
  font-family: var(--fh);
  font-size: 2rem;
  font-weight: 700;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.card h3 {
  font-family: var(--fh);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  color: var(--white);
}

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

/* Sector cards */
.sector-card {
  background: rgba(255,255,255,0.03);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.25s, transform 0.3s;
  display: flex;
  flex-direction: column;
}

.sector-card:hover {
  border-color: var(--border2);
  transform: translateY(-6px);
}

.sector-card-top {
  height: 4px;
}

.sector-card-body {
  padding: 2.2rem 2rem;
  flex: 1;
}

.sector-card-logo {
  margin-bottom: 1.5rem;
}

.sector-card-logo img,
.sector-card-logo svg {
  height: auto;
  width: 100%;
  max-width: 180px;
  max-height: 32px;
  object-fit: contain;
  object-position: left center;
}

.sector-card h3 {
  font-family: var(--fh);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.sector-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.sector-card-stats {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.sector-stat-num {
  font-family: var(--fh);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
}

.sector-stat-label {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ltblue);
  transition: gap 0.2s;
}

.card-link:hover { gap: 10px; }

/* ═══════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad);
  border: none;
  border-radius: 50px;
  padding: 0.85rem 2.2rem;
  font-family: var(--fb);
  font-size: 0.95rem;
  font-weight: 500;
  color: white;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  text-decoration: none;
}

.btn-primary:hover { opacity:0.88; transform:translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(26,174,234,0.45);
  border-radius: 50px;
  padding: 0.85rem 2.2rem;
  font-family: var(--fb);
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════
   STAT BLOCKS
   ═══════════════════════════════════════════════════ */
.stats-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.stat-block {
  flex: 1;
  padding: 2rem 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat-block:last-child { border-right: none; }

.stat-block-num {
  font-family: var(--fh);
  font-size: 2.4rem;
  font-weight: 600;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-block-label {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════
   DIVIDER
   ═══════════════════════════════════════════════════ */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border2), transparent);
  margin: 0 3rem;
}

/* ═══════════════════════════════════════════════════
   TAGS / PILLS
   ═══════════════════════════════════════════════════ */
.tag {
  display: inline-block;
  padding: 0.25rem 0.8rem;
  border-radius: 20px;
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.tag-teal { background:rgba(0,196,160,0.15); color:var(--teal); }
.tag-blue { background:rgba(26,174,234,0.15); color:var(--ltblue); }
.tag-amber { background:rgba(245,158,11,0.15); color:var(--energy); }
.tag-green { background:rgba(16,185,129,0.15); color:var(--circ); }
.tag-lime  { background:rgba(132,204,22,0.15); color:var(--resources); }

/* ═══════════════════════════════════════════════════
   TWO-COLUMN LAYOUT
   ═══════════════════════════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ═══════════════════════════════════════════════════
   FEATURE LIST
   ═══════════════════════════════════════════════════ */
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--offwht);
  line-height: 1.6;
}

.feature-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 9px;
}

/* ═══════════════════════════════════════════════════
   INLINE QUOTE / CALLOUT
   ═══════════════════════════════════════════════════ */
.callout {
  background: rgba(26,174,234,0.07);
  border: 1px solid rgba(26,174,234,0.2);
  border-left: 3px solid var(--teal);
  border-radius: 0 12px 12px 0;
  padding: 1.5rem 2rem;
  font-size: 1rem;
  color: var(--offwht);
  line-height: 1.75;
  font-style: italic;
}

/* ═══════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════ */
.cta-section {
  padding: 7rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--slate);
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(0,196,160,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-family: var(--fh);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-section p {
  font-size: 1.05rem;
  color: var(--offwht);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.site-footer {
  background: var(--deep);
  border-top: 1px solid var(--border);
  padding: 4rem 3rem 2rem;
}

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

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.footer-brand-col p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-logo { height: 28px; width: auto; }

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.footer-bottom a {
  font-size: 0.8rem;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--white); }

/* Sector colour accents in footer dots */
.footer-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}

/* ═══════════════════════════════════════════════════
   PARTICLE CANVAS
   ═══════════════════════════════════════════════════ */
#hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* ═══════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════
   MOBILE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .card-grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .two-col { gap: 3rem; }
}

@media (max-width: 768px) {
  .site-nav { padding: 0 1.5rem; }
  .nav-center, .nav-right .btn-nav { display: none; }
  .nav-burger { display: flex; }
  .section-inner { padding: 0 1.5rem; }
  .card-grid-3, .card-grid-2, .card-grid-4 { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col.reverse { direction: ltr; }
  .stats-row { flex-direction: column; }
  .stat-block { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-block:last-child { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .cta-section { padding: 4rem 1.5rem; }
  .page-hero { padding: 8rem 1.5rem 4rem; }
}

/* Mobile nav open state */
.nav-mobile-open .nav-center {
  display: flex !important;
  flex-direction: column;
  position: fixed !important;
  top: 68px !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: calc(100vh - 68px) !important;
  background: rgba(8,15,26,0.99) !important;
  padding: 2rem !important;
  gap: 0.5rem;
  z-index: 9999 !important;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: none !important;
}

.nav-mobile-open .nav-center > li > a {
  font-size: 1.1rem;
  padding: 0.8rem 1rem;
}

/* Mobile accordion — sectors dropdown */
.nav-mobile-open .nav-dropdown {
  position: static !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: all !important;
  transform: none !important;
  background: rgba(26,174,234,0.06) !important;
  border: 1px solid var(--border) !important;
  border-radius: 10px !important;
  padding: 0.5rem !important;
  margin-top: 0.25rem !important;
  backdrop-filter: none !important;
  display: none;
}

.nav-mobile-open .has-dropdown.dropdown-open .nav-dropdown {
  display: block;
}

.nav-mobile-open .nav-dropdown a {
  padding: 0.7rem 1rem !important;
  font-size: 1rem !important;
  color: rgba(255,255,255,0.85) !important;
  border-radius: 6px !important;
}

/* ═══════════════════════════════════════════════════
   HOME PAGE HERO
   ═══════════════════════════════════════════════════ */
#hero { min-height:100vh; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:8rem 2rem 4rem; position:relative; overflow:hidden; background:var(--navy); }
.hero-glow { position:absolute; inset:0; z-index:0; background:radial-gradient(ellipse 70% 55% at 50% 15%,rgba(26,174,234,0.1) 0%,transparent 70%),radial-gradient(ellipse 40% 40% at 80% 60%,rgba(0,196,160,0.07) 0%,transparent 60%); pointer-events:none; }
.hero-content { position:relative; z-index:2; max-width:900px; margin:0 auto; }
.hero-eyebrow { display:inline-flex; align-items:center; gap:8px; background:rgba(26,174,234,0.1); border:1px solid rgba(26,174,234,0.25); border-radius:40px; padding:0.35rem 1rem; font-size:0.76rem; font-weight:500; color:var(--ltblue); letter-spacing:0.14em; text-transform:uppercase; margin-bottom:2rem; animation:fadeUp 0.8s ease both; }
.hero-eyebrow-dot { width:6px; height:6px; border-radius:50%; background:var(--teal); animation:dotPulse 2s infinite; }
@keyframes dotPulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.4;transform:scale(0.7);} }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px);} to{opacity:1;transform:translateY(0);} }
.hero-wordmark { font-family:var(--fh); font-size:clamp(3rem,8vw,6rem); font-weight:300; letter-spacing:-0.02em; line-height:1; background:linear-gradient(135deg,#e0f2ff 0%,#a8d8f8 25%,#1baeea 55%,#00c4a0 80%,#1a90d9 100%); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; animation:fadeUp 0.8s 0.1s ease both; animation-fill-mode:both; }
.hero-sub-tagline { font-size:0.9rem; letter-spacing:0.25em; text-transform:uppercase; background:var(--grad-text); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; margin-top:0.5rem; margin-bottom:2.2rem; animation:fadeUp 0.8s 0.2s ease both; animation-fill-mode:both; }
.hero-headline { font-family:var(--fh); line-height:1.2; margin-bottom:1.4rem; animation:fadeUp 0.8s 0.3s ease both; animation-fill-mode:both; }
.hero-headline span.h-white { color:var(--white); font-weight:600; }
.hero-headline span.h-blue { color:var(--ltblue); font-weight:600; }
.hero-headline span.h-teal { color:var(--teal); font-weight:600; }
.hero-body { font-size:1.1rem; color:rgba(200,223,240,0.8); max-width:620px; margin:0 auto 2.5rem; line-height:1.8; animation:fadeUp 0.8s 0.4s ease both; animation-fill-mode:both; }
.hero-btns { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; animation:fadeUp 0.8s 0.5s ease both; animation-fill-mode:both; }
.hero-pills { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; margin-top:5rem; position:relative; z-index:2; animation:fadeUp 0.8s 0.7s ease both; animation-fill-mode:both; }
.hero-pill { background:rgba(255,255,255,0.04); border:1px solid rgba(26,174,234,0.2); border-radius:12px; padding:1.5rem 1.8rem; flex:1; min-width:220px; max-width:280px; text-align:left; transition:border-color 0.2s,background 0.2s; }
.hero-pill:hover { border-color:rgba(26,174,234,0.4); background:rgba(26,174,234,0.06); }
.hero-pill-title { font-family:var(--fh); font-size:0.95rem; font-weight:500; margin-bottom:0.4rem; }
.hero-pill-body { font-size:0.82rem; color:var(--muted); line-height:1.6; }

/* ═══════════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════════ */
.contact-form { background:var(--slate); border:1px solid var(--border); border-radius:20px; padding:3rem; max-width:640px; margin:0 auto; }
.form-group { margin-bottom:1.5rem; }
.form-group label { display:block; font-size:0.85rem; font-weight:500; color:var(--offwht); margin-bottom:0.5rem; }
.form-group input, .form-group select, .form-group textarea { width:100%; background:rgba(255,255,255,0.05); border:1px solid var(--border2); border-radius:10px; padding:0.8rem 1rem; font-family:var(--fb); font-size:0.9rem; color:var(--white); outline:none; transition:border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color:var(--teal); }
.form-group select option { background:var(--navy); }
.form-group textarea { min-height:140px; resize:vertical; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
@media(max-width:600px) { .form-row { grid-template-columns:1fr; } }
