/* ═══════════════════════════════════════════════
   ICIC 2027 — Shared Stylesheet
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0D1B2A;
  --navy2:  #12253A;
  --navy3:  #1a3050;
  --cyan:   #00C8E0;
  --cyan2:  #00A8BC;
  --gold:   #F0C040;
  --white:  #F5F8FA;
  --slate:  #4A5568;
  --light:  #E8EFF6;
  --bg:     #F0F5F9;
  --text:   #1A2B3C;
  --muted:  #64748B;
  --border: #DDE6EF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 100px;
}

/* ── TOPBAR ── */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--navy3);
  height: 36px;
  border-bottom: 1px solid rgba(0,200,224,0.12);
}
.topbar-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; padding: 0 2rem;
}
.topbar-contact { display: flex; gap: 1.5rem; align-items: center; }
.topbar-contact a, .topbar-contact span {
  color: rgba(245,248,250,0.7); font-size: 0.78rem;
  text-decoration: none; display: flex; align-items: center; gap: 0.35rem;
}
.topbar-contact a:hover { color: var(--cyan); }
.topbar-social { display: flex; gap: 0.75rem; align-items: center; }
.topbar-social a {
  color: rgba(245,248,250,0.55); font-size: 0.75rem;
  text-decoration: none; transition: color 0.2s;
}
.topbar-social a:hover { color: var(--cyan); }

/* ── NAV ── */
nav {
  position: fixed; top: 36px; left: 0; right: 0; z-index: 199;
  background: rgba(13,27,42,0.98);
  backdrop-filter: blur(10px);
  height: 64px;
  border-bottom: 1px solid rgba(0,200,224,0.12);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; padding: 0 2rem;
}
.nav-brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; flex-shrink: 0; }
.nav-brand .badge {
  background: var(--cyan); color: var(--navy);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 0.8rem;
  padding: 0.2rem 0.6rem; border-radius: 4px; letter-spacing: 0.05em;
}
.nav-brand .title {
  color: var(--white); font-family: 'Space Grotesk', sans-serif;
  font-weight: 500; font-size: 0.9rem; line-height: 1.2;
}
.nav-menu { display: flex; gap: 0; list-style: none; align-items: center; }
.nav-item { position: relative; }
.nav-item > a, .nav-item > span {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0 0.9rem; height: 64px;
  color: rgba(245,248,250,0.78); text-decoration: none;
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.02em;
  cursor: pointer; white-space: nowrap;
  transition: color 0.2s, background 0.2s;
  border-bottom: 2px solid transparent;
}
.nav-item > a:hover, .nav-item > span:hover,
.nav-item.active > a { color: var(--cyan); border-bottom-color: var(--cyan); background: rgba(0,200,224,0.05); }
.caret { font-size: 0.55rem; opacity: 0.55; margin-top: 1px; }
.dropdown {
  display: none; position: absolute; top: 64px; left: 0;
  background: var(--navy2); border: 1px solid rgba(0,200,224,0.18);
  border-top: 2px solid var(--cyan);
  min-width: 200px; border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4); z-index: 300;
  list-style: none; overflow: hidden;
}
.nav-item:hover .dropdown { display: block; }
.dropdown li a {
  display: block; padding: 0.7rem 1.25rem;
  color: rgba(245,248,250,0.72); text-decoration: none;
  font-size: 0.82rem; border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s, color 0.15s;
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: rgba(0,200,224,0.1); color: var(--cyan); }
.nav-cta-btn {
  background: var(--cyan) !important; color: var(--navy) !important;
  font-weight: 700 !important; border-radius: 6px !important;
  height: auto !important; padding: 0.45rem 1.1rem !important;
  font-size: 0.82rem !important; border-bottom: none !important;
  margin-left: 0.5rem; transition: background 0.2s !important;
}
.nav-cta-btn:hover { background: var(--cyan2) !important; color: var(--white) !important; }
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.4rem; cursor: pointer; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--navy);
  padding: 3.5rem 2rem 3rem;
  position: relative; overflow: hidden; text-align: center;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,200,224,0.05) 1px,transparent 1px),linear-gradient(90deg,rgba(0,200,224,0.05) 1px,transparent 1px);
  background-size: 48px 48px;
}
.page-hero::after {
  content: ''; position: absolute; top:50%; left:50%;
  transform: translate(-50%,-50%);
  width:600px; height:300px;
  background: radial-gradient(ellipse,rgba(0,200,224,0.1) 0%,transparent 70%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-eyebrow {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 0.75rem;
}
.page-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700; color: var(--white); line-height: 1.15;
}
.page-hero p { color: rgba(245,248,250,0.58); font-size: 0.98rem; margin-top: 0.75rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ── CONTAINERS & SECTIONS ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
section { padding: 4rem 0; }
section.alt { background: var(--bg); }
section.dark { background: var(--navy2); }

.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--cyan2); margin-bottom: 0.6rem;
}
.section-heading {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  font-weight: 700; color: var(--navy);
  line-height: 1.2; margin-bottom: 0.85rem;
}
.section-heading.light { color: var(--white); }
.section-label.light { color: var(--cyan); }
.section-lead { font-size: 0.98rem; color: var(--muted); max-width: 640px; line-height: 1.8; margin-bottom: 2.25rem; }
.section-lead.light { color: rgba(245,248,250,0.6); }

/* ── BUTTONS ── */
.btn {
  display: inline-block; text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600; font-size: 0.9rem;
  padding: 0.7rem 1.6rem; border-radius: 7px;
  transition: all 0.2s; letter-spacing: 0.02em; cursor: pointer; border: none;
}
.btn-primary { background: var(--cyan); color: var(--navy); }
.btn-primary:hover { background: var(--cyan2); transform: translateY(-1px); color: var(--white); }
.btn-secondary { background: transparent; color: var(--white); border: 1px solid rgba(245,248,250,0.25); }
.btn-secondary:hover { border-color: var(--cyan); color: var(--cyan); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--border); }
.btn-outline1 { background: transparent; color: white; border: 1.5px solid var(--border); }
.btn-outline1:hover { border-color: var(--cyan2); color: var(--cyan2); }
.btn-outline:hover { border-color: var(--cyan2); color: var(--cyan2); }

/* ── CARDS ── */
.card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; padding: 1.5rem; transition: box-shadow 0.2s, border-color 0.2s; }
.card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); border-color: var(--cyan2); }
.card-dark { background: rgba(255,255,255,0.04); border: 1px solid rgba(0,200,224,0.15); border-radius: 12px; padding: 1.75rem 1.5rem; transition: border-color 0.2s, transform 0.2s; }
.card-dark:hover { border-color: rgba(0,200,224,0.4); transform: translateY(-2px); }

/* ── INDEXING BADGES ── */
.indexing-row { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-top: 1.5rem; }
.indexing-badge {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 6px; padding: 0.5rem 1rem;
  font-size: 0.8rem; font-weight: 600; color: var(--slate);
  display: flex; align-items: center; gap: 0.4rem;
}
.indexing-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; }

/* ── TABLE ── */
table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
thead th { background: var(--navy); color: var(--white); font-family: 'Space Grotesk',sans-serif; font-weight: 600; padding: 0.85rem 1rem; text-align: left; font-size: 0.82rem; letter-spacing: 0.05em; }
tbody tr { border-bottom: 1px solid var(--border); }
tbody tr:hover { background: #f0f8fb; }
tbody td { padding: 0.85rem 1rem; vertical-align: top; color: var(--text); font-size: 0.88rem; line-height: 1.5; }
tbody td:first-child { font-weight: 600; color: var(--navy); }
.table-wrap { overflow-x: auto; border-radius: 10px; border: 1px solid var(--border); }

/* ── FOOTER ── */
footer { background: var(--navy); padding: 3.5rem 2rem 0; color: rgba(245,248,250,0.55); }
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .badge {
  background: var(--cyan); color: var(--navy);
  font-family: 'Space Grotesk',sans-serif;
  font-weight: 700; font-size: 0.8rem;
  padding: 0.2rem 0.6rem; border-radius: 4px; display: inline-block; margin-bottom: 0.75rem;
}
.footer-brand p { font-size: 0.84rem; line-height: 1.75; }
.footer-brand .footer-contact { margin-top: 1rem; font-size: 0.82rem; line-height: 1.9; }
.footer-brand .footer-contact a { color: var(--cyan); text-decoration: none; }
.footer-social { display: flex; gap: 1rem; margin-top: 1rem; }
.footer-social a { color: rgba(245,248,250,0.45); font-size: 0.8rem; text-decoration: none; transition: color 0.2s; }
.footer-social a:hover { color: var(--cyan); }
.footer-col h4 {
  font-family: 'Space Grotesk',sans-serif; font-weight: 600;
  font-size: 0.8rem; color: var(--white); margin-bottom: 1rem;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { font-size: 0.82rem; color: rgba(245,248,250,0.5); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--cyan); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding: 1.25rem 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.78rem;
}
.footer-bottom a { color: var(--cyan); text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  body { padding-top: 64px; }
  .topbar { display: none; }
  nav { top: 0; }
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--navy); padding: 0.5rem 0; gap: 0; border-bottom: 1px solid rgba(0,200,224,0.15); }
  .nav-menu.open { display: flex; }
  .nav-item > a, .nav-item > span { height: auto; padding: 0.7rem 1.5rem; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .dropdown { position: static; box-shadow: none; border: none; background: rgba(0,0,0,0.2); display: none; border-radius: 0; }
  .nav-item.mob-open .dropdown { display: block; }
  .nav-toggle { display: block; }
  .nav-cta-btn { margin-left: 0; border-radius: 0 !important; width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}
