/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #1e293b; background: #fff; overflow-x: hidden; }
a { text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── VARIABLES ── */
:root {
  --dark:    #0b0f1a;
  --navy:    #111827;
  --blue:    #1a56db;
  --sky:     #3b82f6;
  --teal:    #06b6d4;
  --white:   #ffffff;
  --offwhite:#f8fafc;
  --gray:    #f1f5f9;
  --border:  #e2e8f0;
  --text:    #1e293b;
  --muted:   #64748b;
  --nav-h:   68px;
}

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 { line-height: 1.15; letter-spacing: -.5px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  height: var(--nav-h);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem; height: 100%;
}
.nav-logo {
  font-size: 1.1rem; font-weight: 800; color: #fff;
  white-space: nowrap; flex-shrink: 0;
}
.nav-logo span { color: var(--teal); }
.nav-menu { display: flex; align-items: center; gap: .25rem; list-style: none; flex: 1; justify-content: center; }
.nav-item { position: relative; }
.nav-link {
  color: rgba(255,255,255,.72); font-size: .86rem; font-weight: 500;
  padding: .5rem .85rem; border-radius: 6px; display: block;
  transition: color .2s, background .2s; white-space: nowrap;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,.06); }
.nav-link.active { color: var(--teal); }
/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border-radius: 10px; padding: .5rem;
  min-width: 220px;
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
  border: 1px solid var(--border);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 100;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block; padding: .6rem 1rem; font-size: .85rem; font-weight: 500;
  color: var(--text); border-radius: 7px; transition: background .15s, color .15s;
}
.dropdown-menu a:hover { background: var(--gray); color: var(--blue); }
.caret { font-size: .6rem; margin-left: .3rem; opacity: .6; }
.nav-actions { display: flex; gap: .6rem; align-items: center; flex-shrink: 0; }
.nav-btn {
  padding: .48rem 1.1rem; border-radius: 6px; font-size: .82rem;
  font-weight: 700; transition: all .2s; white-space: nowrap;
}
.btn-outline { border: 1.5px solid rgba(255,255,255,.25); color: rgba(255,255,255,.8); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.btn-fill { background: var(--teal); color: var(--dark); }
.btn-fill:hover { background: #22d3ee; transform: translateY(-1px); }

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: calc(var(--nav-h) + 1rem) 2rem 0;
  max-width: 1280px; margin: 0 auto;
  font-size: .8rem; color: var(--muted);
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { margin: 0 .4rem; }

/* ── INNER PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #0f2952 100%);
  padding: calc(var(--nav-h) + 70px) 2rem 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 2; }
.page-hero-tag {
  display: inline-block; background: rgba(6,182,212,.15);
  border: 1px solid rgba(6,182,212,.3); color: var(--teal);
  padding: .3rem .9rem; border-radius: 50px;
  font-size: .72rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 1.25rem;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900;
  color: #fff; max-width: 700px; margin-bottom: 1.25rem;
}
.page-hero p {
  font-size: 1.05rem; color: rgba(255,255,255,.65);
  max-width: 560px; line-height: 1.75; margin-bottom: 2rem;
}
.page-hero .btn-teal {
  background: var(--teal); color: var(--dark);
  padding: .8rem 1.8rem; border-radius: 8px;
  font-weight: 700; font-size: .9rem; display: inline-block;
  transition: transform .2s, box-shadow .2s;
}
.page-hero .btn-teal:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(6,182,212,.35); }

/* ── SHARED SECTION ── */
section.sec { padding: 80px 2rem; }
section.sec-gray { background: var(--offwhite); }
section.sec-dark { background: var(--dark); }
.container { max-width: 1280px; margin: 0 auto; }
.sec-label {
  font-size: .72rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--teal); margin-bottom: .6rem;
}
.sec-title {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 800;
  color: var(--dark); margin-bottom: 1rem;
}
.sec-title-white { color: #fff; }
.sec-sub { font-size: 1rem; color: var(--muted); line-height: 1.75; max-width: 620px; }

/* ── INDUSTRY TILES ── */
.ind-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.ind-tile {
  border-radius: 14px; overflow: hidden; position: relative;
  aspect-ratio: 1; cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  display: block;
}
.ind-tile:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 20px 40px rgba(0,0,0,.25); }
.ind-tile-emoji {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 4.5rem; opacity: .2;
}
.ind-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.88) 100%);
}
.ind-content { position: absolute; bottom: 0; padding: 1.2rem; }
.ind-content h4 { color: #fff; font-size: .92rem; font-weight: 700; margin-bottom: .2rem; }
.ind-content span { color: rgba(255,255,255,.55); font-size: .74rem; }
.ind-tile:nth-child(1) { background: linear-gradient(135deg,#0f2952,#1a3a6b); }
.ind-tile:nth-child(2) { background: linear-gradient(135deg,#0c2e26,#134e3c); }
.ind-tile:nth-child(3) { background: linear-gradient(135deg,#2d1052,#4c1d7a); }
.ind-tile:nth-child(4) { background: linear-gradient(135deg,#1a2952,#0f172a); }
.ind-tile:nth-child(5) { background: linear-gradient(135deg,#2a1209,#6b2800); }
.ind-tile:nth-child(6) { background: linear-gradient(135deg,#0b2a3d,#0f4c6b); }
.ind-tile:nth-child(7) { background: linear-gradient(135deg,#0d2b0d,#1a5c1a); }
.ind-tile:nth-child(8) { background: linear-gradient(135deg,#2a2a0a,#5c5c00); }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--dark); padding: 55px 2rem;
}
.stats-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  divide-x: 1px solid rgba(255,255,255,.1);
}
.stat-item { text-align: center; padding: 0 1rem; border-right: 1px solid rgba(255,255,255,.08); }
.stat-item:last-child { border-right: none; }
.stat-num { display: block; font-size: 3rem; font-weight: 900; color: var(--teal); letter-spacing: -2px; }
.stat-lbl { font-size: .78rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: 1px; margin-top: .4rem; }

/* ── NEWS CARDS ── */
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.news-card {
  border: 1.5px solid var(--border); border-radius: 14px; overflow: hidden;
  transition: border-color .2s, transform .2s, box-shadow .2s; background: #fff;
}
.news-card:hover { border-color: var(--teal); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(6,182,212,.1); }
.news-img {
  height: 190px; background: linear-gradient(135deg, var(--navy), #0f2952);
  display: flex; align-items: center; justify-content: center; font-size: 3.5rem;
}
.news-body { padding: 1.5rem; }
.news-tag {
  display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .8px;
  text-transform: uppercase; color: var(--blue);
  background: rgba(26,86,219,.08); border-radius: 50px; padding: .25rem .75rem;
  margin-bottom: .85rem;
}
.news-card h4 { font-size: .97rem; font-weight: 700; color: var(--dark); margin-bottom: .5rem; line-height: 1.4; }
.news-card p { font-size: .84rem; color: var(--muted); line-height: 1.6; }
.news-date { font-size: .75rem; color: var(--muted); margin-top: 1rem; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--blue), #0ea5e9);
  padding: 70px 2rem; text-align: center;
}
.cta-banner h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 900;
  color: #fff; margin-bottom: 1rem; letter-spacing: -.5px;
}
.cta-banner p { color: rgba(255,255,255,.75); font-size: 1rem; margin-bottom: 2rem; max-width: 580px; margin-left: auto; margin-right: auto; }
.btn-white {
  background: #fff; color: var(--blue); display: inline-block;
  padding: .85rem 2rem; border-radius: 8px; font-weight: 800; font-size: .95rem;
  transition: transform .2s, box-shadow .2s;
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,0,0,.2); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--teal); color: var(--dark); display: inline-block;
  padding: .8rem 1.8rem; border-radius: 8px; font-weight: 700; font-size: .9rem;
  transition: transform .2s, box-shadow .2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(6,182,212,.35); }
.btn-dark {
  background: var(--dark); color: #fff; display: inline-block;
  padding: .8rem 1.8rem; border-radius: 8px; font-weight: 700; font-size: .9rem;
  transition: background .2s;
}
.btn-dark:hover { background: var(--blue); }

/* ── FOOTER ── */
footer { background: var(--dark); color: rgba(255,255,255,.5); padding: 60px 2rem 28px; }
.footer-top {
  max-width: 1280px; 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,.08);
}
.footer-brand .nav-logo { display: block; margin-bottom: 1rem; font-size: 1.15rem; }
.footer-brand p { font-size: .85rem; line-height: 1.75; max-width: 280px; }
.footer-col h5 {
  color: rgba(255,255,255,.85); font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-col ul li a { color: rgba(255,255,255,.45); font-size: .85rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--teal); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto; padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: .8rem; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { color: rgba(255,255,255,.35); font-size: .78rem; transition: color .2s; }
.footer-legal a:hover { color: var(--teal); }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── MARQUEE ── */
.marquee-wrap { background: rgba(255,255,255,.04); border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); overflow: hidden; padding: 1rem 0; }
.marquee-track { display: flex; gap: 3rem; white-space: nowrap; animation: marquee 28s linear infinite; }
.marquee-item { color: rgba(255,255,255,.35); font-size: .78rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; flex-shrink: 0; }
.marquee-item b { color: var(--teal); margin-right: .4rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .ind-grid { grid-template-columns: repeat(4,1fr); }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-menu { display: none; }
  .ind-grid { grid-template-columns: repeat(2,1fr); }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .stat-item { border-right: none; }
}
@media (max-width: 600px) {
  section.sec { padding: 55px 1.25rem; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-inner { grid-template-columns: 1fr; }
}

/* Shared JS scroll reveal */
