/* ═══════════════════════════════════════════════════
   GGI DESIGN SYSTEM — Light / Clean / Modern
   Fonts: Plus Jakarta Sans (display) + Outfit (body)
   Palette: White · Slate · Ocean Blue · Teal accent
═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* Core palette */
  --white:      #FFFFFF;
  --off-white:  #F7F9FC;
  --surface:    #EEF2F8;
  --blue:       #1A56DB;
  --blue-light: #EBF2FF;
  --teal:       #0694A2;
  --teal-light: #E6F7F9;
  --slate-900:  #0F172A;
  --slate-700:  #334155;
  --slate-500:  #64748B;
  --slate-300:  #CBD5E1;
  --slate-100:  #F1F5F9;
  --border:     #E2E8F0;

  /* Typography */
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Outfit', sans-serif;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(15,23,42,0.08), 0 1px 2px rgba(15,23,42,0.04);
  --shadow-md:  0 4px 16px rgba(15,23,42,0.08), 0 2px 6px rgba(15,23,42,0.04);
  --shadow-lg:  0 12px 40px rgba(15,23,42,0.10), 0 4px 12px rgba(15,23,42,0.06);
  --shadow-xl:  0 24px 64px rgba(15,23,42,0.12), 0 8px 24px rgba(15,23,42,0.06);
}

/* ─── RESET & BASE ─────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--slate-700);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--slate-100); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 2px; }

/* ─── NAV ──────────────────────────────── */
.ggi-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 5%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(15,23,42,0.04);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo img { height: 36px; width: auto; }
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.1rem;
  color: var(--slate-900); letter-spacing: -0.01em;
}
.nav-logo-text span { color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem; font-weight: 500;
  color: var(--slate-500); text-decoration: none;
  padding: 7px 14px; border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--slate-900); background: var(--slate-100); }
.nav-links a.active { color: var(--blue); font-weight: 600; }
.nav-cta {
  background: var(--blue) !important; color: var(--white) !important;
  font-weight: 600 !important; border-radius: 8px !important;
  box-shadow: 0 2px 8px rgba(26,86,219,0.25) !important;
}
.nav-cta:hover { background: #1547c0 !important; box-shadow: 0 4px 16px rgba(26,86,219,0.35) !important; }
.subnav { position: relative; }
.subnav > a::after { content: ' ▾'; font-size: 0.65rem; opacity: 0.7; }
.subnav-menu {
  display: none; position: absolute; top: calc(100% + 10px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; min-width: 188px;
  box-shadow: var(--shadow-lg);
}
.subnav:hover .subnav-menu { display: block; }
.subnav-menu a {
  display: block !important; padding: 10px 16px !important;
  border-radius: 0 !important; border-bottom: 1px solid var(--border);
  color: var(--slate-600) !important;
  font-size: 0.85rem !important;
}
.subnav-menu a:last-child { border-bottom: none; }
.subnav-menu a:hover { color: var(--blue) !important; background: var(--blue-light) !important; }

/* ─── PAGE HERO ────────────────────────── */
.page-hero {
  padding: 132px 5% 80px;
  position: relative; overflow: hidden;
  background: var(--white);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 85% 50%, rgba(26,86,219,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(6,148,162,0.05) 0%, transparent 55%);
}
.page-hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(15,23,42,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 80% at 80% 50%, black 0%, transparent 65%);
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto;
}
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; color: var(--slate-400);
  margin-bottom: 22px; letter-spacing: 0.02em;
}
.breadcrumb a { color: var(--slate-400); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb .sep { color: var(--slate-300); }
.breadcrumb .cur { color: var(--blue); font-weight: 600; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.03em; color: var(--slate-900);
  max-width: 680px;
  animation: fadeUp 0.55s ease both;
}
.page-hero h1 em { font-style: normal; color: var(--blue); }
.page-hero-sub {
  font-size: 1.05rem; color: var(--slate-500);
  line-height: 1.72; max-width: 520px; margin-top: 18px;
  animation: fadeUp 0.55s 0.1s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── SECTION LABEL ─────────────────────── */
.label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 12px;
}
.label::before {
  content: '';
  width: 18px; height: 2px; background: var(--blue); border-radius: 1px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -0.03em; color: var(--slate-900);
  margin-bottom: 14px;
}
.section-sub {
  font-size: 1rem; color: var(--slate-500); line-height: 1.7;
}

/* ─── CARD BASE ─────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26,86,219,0.2);
}

/* ─── BUTTONS ───────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.9rem;
  padding: 13px 26px; border-radius: 10px;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.2s; letter-spacing: 0.01em;
}
.btn-blue {
  background: var(--blue); color: var(--white);
  box-shadow: 0 2px 10px rgba(26,86,219,0.28);
}
.btn-blue:hover { background: #1547c0; box-shadow: 0 6px 20px rgba(26,86,219,0.38); transform: translateY(-1px); }
.btn-outline {
  background: var(--white); color: var(--slate-700);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.btn-teal {
  background: var(--teal); color: var(--white);
  box-shadow: 0 2px 10px rgba(6,148,162,0.28);
}
.btn-teal:hover { background: #057380; box-shadow: 0 6px 20px rgba(6,148,162,0.38); transform: translateY(-1px); }

/* ─── TAG / CHIP ────────────────────────── */
.chip {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--blue); background: var(--blue-light);
  padding: 4px 11px; border-radius: 100px;
  border: 1px solid rgba(26,86,219,0.18);
}
.chip-teal {
  color: var(--teal); background: var(--teal-light);
  border-color: rgba(6,148,162,0.2);
}
.chip-grey {
  color: var(--slate-500); background: var(--slate-100);
  border-color: var(--border);
}

/* ─── STAT BOX ──────────────────────────── */
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 800;
  color: var(--blue); line-height: 1; margin-bottom: 4px;
}
.stat-label {
  font-size: 0.8rem; font-weight: 500;
  color: var(--slate-400); letter-spacing: 0.04em; text-transform: uppercase;
}

/* ─── DIVIDER ───────────────────────────── */
.divider { height: 1px; background: var(--border); }

/* ─── SECTION SPACING ───────────────────── */
.section { padding: 88px 5%; }
.section-sm { padding: 60px 5%; }
.max-w { max-width: 1100px; margin: 0 auto; }

/* ─── CTA BAND ──────────────────────────── */
.cta-band {
  margin: 0 5%;
  background: linear-gradient(135deg, #1A56DB 0%, #0694A2 100%);
  border-radius: 20px; padding: 68px 56px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-weight: 800; letter-spacing: -0.03em;
  color: var(--white); margin-bottom: 12px;
  position: relative;
}
.cta-band p {
  color: rgba(255,255,255,0.8); font-size: 1rem;
  margin-bottom: 32px; max-width: 460px;
  margin-left: auto; margin-right: auto;
  position: relative;
}
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-white {
  background: var(--white); color: var(--blue);
  font-weight: 700; box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.btn-white:hover { background: #f0f4ff; transform: translateY(-1px); }
.btn-white-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.45);
}
.btn-white-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

/* ─── FOOTER ────────────────────────────── */
.ggi-footer {
  margin-top: 88px;
  border-top: 1px solid var(--border);
  padding: 44px 5%;
  background: var(--white);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand img { height: 30px; opacity: 0.75; }
.footer-brand span {
  font-family: var(--font-display); font-size: 0.88rem;
  font-weight: 700; color: var(--slate-400);
}
.footer-copy { font-size: 0.8rem; color: var(--slate-400); }
.footer-links { display: flex; gap: 18px; }
.footer-links a {
  font-size: 0.82rem; color: var(--slate-400);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--blue); }

/* ─── FORM ──────────────────────────────── */
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--slate-500); margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 9px; color: var(--slate-800);
  font-family: var(--font-body);
  font-size: 0.9rem; padding: 11px 14px; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
}
.form-group select { appearance: none; cursor: pointer; background: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }
::placeholder { color: var(--slate-300); }

/* ─── MOBILE ────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .cta-band { padding: 48px 28px; margin: 0 3%; }
}
