/* ==========================================================================
   Hawks Info Corp — Design System
   ========================================================================== */

:root {
  --navy-950: #0d0b1e;
  --navy-900: #14102b;
  --navy-800: #1f1a3d;
  --navy-700: #2a2350;
  --indigo-600: #4b3f96;
  --indigo-500: #5c4fb0;
  --indigo-400: #7d70c9;
  --teal-500: #22c4c6;
  --teal-400: #4fd8da;
  --teal-050: #e6fbfb;
  --white: #ffffff;
  --gray-050: #f7f7fb;
  --gray-100: #eeeef4;
  --gray-200: #e0e0ea;
  --gray-400: #9797ab;
  --gray-600: #5f5f74;
  --gray-800: #302c47;
  --gray-900: #1a1830;

  --font-head: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(20, 16, 43, 0.06);
  --shadow-md: 0 12px 32px rgba(20, 16, 43, 0.12);
  --shadow-lg: 0 24px 60px rgba(20, 16, 43, 0.18);
  --container: 1180px;
}

/* ---- Reset ---- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-900);
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { position: relative; }

/* ---- Utility ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--teal-500);
  display: inline-block;
}
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 14px; }
.section-head p { color: var(--gray-600); font-size: 17px; }

.section { padding: 88px 0; }
.section.tight { padding: 64px 0; }
.section.on-dark { background: var(--navy-900); color: var(--gray-200); }
.section.on-dark h2, .section.on-dark h3, .section.on-dark h4 { color: var(--white); }
.section.on-tint { background: var(--gray-050); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-400));
  color: var(--navy-950);
  box-shadow: 0 10px 24px rgba(34, 196, 198, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(34, 196, 198, 0.45); }
.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.12); border-color: var(--white); }
.btn-outline.on-light { border-color: var(--gray-800); color: var(--gray-900); }
.btn-outline.on-light:hover { background: var(--gray-900); color: var(--white); }
.btn-block { width: 100%; justify-content: center; }

.pill {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--teal-050);
  color: var(--teal-500);
  font-weight: 600;
  font-size: 13px;
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 11, 30, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 40px; height: 40px;
  border-radius: 50%;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text .hi { font-family: var(--font-head); font-weight: 800; font-size: 19px; color: var(--white); letter-spacing: 0.01em; }
.brand-text .sub { font-size: 11px; color: var(--gray-400); letter-spacing: 0.08em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  color: rgba(255,255,255,0.78);
  font-weight: 500;
  font-size: 15px;
  padding: 10px 16px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-links a.active { color: var(--navy-950); background: var(--teal-500); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  position: relative;
  transition: all 0.25s ease;
}
.nav-toggle span { margin: 5px 0; }

/* ---- Hero ---- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(34,196,198,0.25), transparent 60%),
    radial-gradient(900px 500px at 5% 110%, rgba(75,63,150,0.5), transparent 60%),
    linear-gradient(180deg, var(--navy-950), var(--navy-900));
  color: var(--white);
  padding: 110px 0 100px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, black, transparent 75%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero h1 span { color: var(--teal-400); }
.hero p.lead { font-size: 18px; color: rgba(255,255,255,0.72); max-width: 520px; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 46px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stats div strong { display: block; font-family: var(--font-head); font-size: 26px; color: var(--white); }
.hero-stats div span { font-size: 13px; color: rgba(255,255,255,0.55); }

.hero-panel {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 34px;
  backdrop-filter: blur(6px);
}
.hero-panel-row {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-panel-row:last-child { border-bottom: none; }
.hero-panel-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(34,196,198,0.15);
  color: var(--teal-400);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-panel-row h4 { color: var(--white); font-size: 15.5px; margin-bottom: 4px; }
.hero-panel-row p { color: rgba(255,255,255,0.6); font-size: 13.5px; }

/* small inner page hero */
.page-hero {
  background:
    radial-gradient(900px 420px at 90% 0%, rgba(34,196,198,0.22), transparent 60%),
    linear-gradient(180deg, var(--navy-950), var(--navy-800));
  color: var(--white);
  padding: 74px 0 68px;
  text-align: center;
}
.page-hero .eyebrow { justify-content: center; color: var(--teal-400); }
.page-hero .eyebrow::before { display: none; }
.page-hero h1 { color: var(--white); font-size: clamp(30px, 4.4vw, 46px); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.68); max-width: 620px; margin: 0 auto; font-size: 16.5px; }
.breadcrumb { margin-top: 22px; font-size: 13.5px; color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--teal-400); }

/* ---- Logo strip / clients ---- */
.strip { background: var(--navy-950); padding: 30px 0; }
.strip p { text-align: center; color: rgba(255,255,255,0.45); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 20px; }
.strip-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.chip {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
}

/* ---- Cards / grids ---- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--indigo-600), var(--indigo-400));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: var(--gray-600); font-size: 15px; }
.card a.more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 600; font-size: 14px; color: var(--indigo-600); }
.card a.more:hover { color: var(--teal-500); }

.service-detail {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid var(--gray-100);
}
.service-detail:last-child { border-bottom: none; }
.service-detail .card-icon { margin-bottom: 0; }
.service-detail h3 { font-size: 21px; margin-bottom: 8px; }
.service-detail p { color: var(--gray-600); }

/* ---- Values ---- */
.value-row { display: flex; gap: 18px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.value-row:last-child { border-bottom: none; }
.value-num { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--teal-400); width: 40px; flex-shrink: 0; }
.value-row h4 { color: var(--white); font-size: 17px; margin-bottom: 4px; }
.value-row p { color: rgba(255,255,255,0.6); font-size: 14.5px; }

/* ---- Stats ---- */
.stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}
.stat-card strong { display: block; font-family: var(--font-head); font-size: 32px; color: var(--indigo-600); }
.stat-card span { color: var(--gray-600); font-size: 14px; }

/* ---- Timeline (about) ---- */
.timeline { border-left: 2px solid var(--gray-200); padding-left: 28px; margin-left: 6px; }
.timeline-item { position: relative; padding-bottom: 34px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -34px; top: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--teal-500);
  box-shadow: 0 0 0 4px var(--teal-050);
}
.timeline-item h4 { font-size: 16px; margin-bottom: 6px; }
.timeline-item p { color: var(--gray-600); font-size: 14.5px; }

/* ---- About split ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split img, .split .media { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.media-block {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3.1;
  background: linear-gradient(135deg, var(--navy-800), var(--indigo-600));
  position: relative;
}
.media-block svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ---- CTA banner ---- */
.cta-banner {
  background: linear-gradient(120deg, var(--indigo-600), var(--navy-900) 70%);
  border-radius: var(--radius-lg);
  padding: 56px;
  color: var(--white);
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute; right: -60px; top: -60px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(34,196,198,0.35), transparent 70%);
}
.cta-banner h2 { color: var(--white); font-size: 28px; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.7); }
.cta-banner .cta-text { max-width: 460px; position: relative; z-index: 1; }
.cta-banner .cta-actions { position: relative; z-index: 1; }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.contact-card h4 { font-size: 15.5px; margin-bottom: 4px; }
.contact-card p, .contact-card a { color: var(--gray-600); font-size: 14.5px; }
.contact-card a:hover { color: var(--indigo-600); }

.form-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 8px; color: var(--gray-800); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14.5px;
  color: var(--gray-900);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: var(--gray-050);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(34,196,198,0.15);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 12.5px; color: var(--gray-400); margin-top: 10px; text-align: center; }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 18px;
  border: 1px solid var(--gray-100);
}
.map-wrap iframe { width: 100%; height: 280px; border: 0; display: block; }

/* ---- Footer ---- */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.6); padding: 68px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-grid h4 { color: var(--white); font-size: 15px; margin-bottom: 18px; }
.footer-grid p { font-size: 14px; margin-bottom: 16px; max-width: 300px; }
.footer-grid ul li { margin-bottom: 11px; }
.footer-grid ul li a { font-size: 14px; transition: color 0.2s ease; }
.footer-grid ul li a:hover { color: var(--teal-400); }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand .hi { font-family: var(--font-head); font-weight: 800; color: var(--white); font-size: 18px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; font-size: 13px; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 10px;
}
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: background 0.2s ease, transform 0.2s ease;
}
.social-row a:hover { background: var(--teal-500); color: var(--navy-950); transform: translateY(-3px); }

/* ---- Reveal animation ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .hero-panel { order: -1; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .header-actions .btn-primary { display: none; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 36px 26px; }
  .service-detail { grid-template-columns: 52px 1fr; }
  .section { padding: 64px 0; }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed; inset: 82px 0 0 0;
  background: var(--navy-950);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 99;
  padding: 30px 24px;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  display: block;
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav .btn { margin-top: 24px; }
