@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy-950: #040b14;
  --navy-900: #0a1628;
  --navy-800: #11223d;
  --navy-700: #1a3357;
  --navy-600: #234775;
  --navy-500: #2d5a91;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --gold-600: #9e7e2a;
  --gold-500: #c9a84c;
  --gold-400: #d4b96a;
  --gold-300: #e0cc8e;
  --gold-200: #ede0b3;
  --gold-100: #f7f0d9;
  --teal-600: #0d9488;
  --teal-500: #14b8a6;
  --teal-400: #2dd4bf;
  --red-600: #dc2626;
  --red-500: #ef4444;
  --white: #ffffff;
  --black: #000000;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.15);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.2);
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; background: var(--slate-50); color: var(--slate-800); line-height: 1.7; -webkit-font-smoothing: antialiased; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 900px; }
.container-wide { max-width: 1320px; }

/* ===== NAVBAR ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(10, 22, 40, 0.97); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.06); transition: all 0.3s; }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-icon { width: 40px; height: 40px; background: linear-gradient(135deg, var(--gold-500), var(--gold-600)); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--navy-950); font-weight: 800; font-size: 1.2rem; }
.nav-logo-text { font-size: 1.25rem; font-weight: 700; color: var(--white); letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--slate-300); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold-400); }
.nav-cta { background: var(--gold-500); color: var(--navy-950) !important; padding: 10px 22px; border-radius: var(--radius-sm); font-weight: 600 !important; transition: background 0.2s; }
.nav-cta:hover { background: var(--gold-400) !important; color: var(--navy-950) !important; }
.nav-toggle { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }

/* ===== HERO ===== */
.hero { background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 40%, var(--slate-900) 100%); padding: 160px 0 120px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -200px; right: -200px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%); pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -100px; left: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(20,184,166,0.08) 0%, transparent 70%); pointer-events: none; }
.hero .container { position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3); color: var(--gold-400); padding: 6px 18px; border-radius: 50px; font-size: 0.82rem; font-weight: 600; margin-bottom: 28px; }
.hero-badge-dot { width: 7px; height: 7px; background: var(--gold-500); border-radius: 50%; }
.hero h1 { font-size: 3.8rem; font-weight: 800; color: var(--white); line-height: 1.12; letter-spacing: -0.03em; max-width: 800px; margin-bottom: 22px; }
.hero h1 span { color: var(--gold-400); }
.hero p { font-size: 1.15rem; color: var(--slate-400); max-width: 600px; line-height: 1.8; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 30px; border-radius: var(--radius-sm); font-size: 0.95rem; font-weight: 600; text-decoration: none; cursor: pointer; border: none; transition: all 0.2s; }
.btn-primary { background: var(--gold-500); color: var(--navy-950); }
.btn-primary:hover { background: var(--gold-400); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { border: 2px solid rgba(255,255,255,0.25); color: var(--white); background: transparent; }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }
.btn-text { color: var(--gold-400); padding: 14px 0; font-weight: 600; }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-dark { background: var(--navy-900); color: var(--slate-200); }
.section-white { background: var(--white); }
.section-label { display: inline-block; color: var(--gold-500); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 14px; }
.section-title { font-size: 2.6rem; font-weight: 800; color: var(--navy-900); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 16px; }
.section-dark .section-title { color: var(--white); }
.section-subtitle { font-size: 1.1rem; color: var(--slate-500); line-height: 1.7; max-width: 620px; margin-bottom: 56px; }
.section-dark .section-subtitle { color: var(--slate-400); }

/* ===== SERVICES GRID ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card { background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius-md); padding: 40px 32px; transition: all 0.3s; }
.service-card:hover { border-color: var(--gold-400); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-icon { width: 52px; height: 52px; background: var(--gold-100); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; font-size: 1.4rem; }
.service-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy-900); margin-bottom: 10px; }
.service-card p { font-size: 0.92rem; color: var(--slate-500); line-height: 1.7; }

/* ===== STATS ===== */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.stat-item { text-align: center; padding: 32px 20px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-md); }
.stat-number { font-size: 2.8rem; font-weight: 800; color: var(--gold-400); letter-spacing: -0.02em; margin-bottom: 6px; }
.stat-label { font-size: 0.9rem; color: var(--slate-400); font-weight: 500; }

/* ===== INDUSTRIES ===== */
.industries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.industry-card { background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius-md); padding: 28px 24px; text-align: center; transition: all 0.2s; }
.industry-card:hover { border-color: var(--teal-400); box-shadow: var(--shadow-sm); }
.industry-card h4 { font-size: 0.95rem; font-weight: 600; color: var(--navy-900); }

/* ===== FEATURES / BENEFITS ===== */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.feature-item { display: flex; gap: 18px; padding: 28px; background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius-md); }
.feature-icon { flex-shrink: 0; width: 48px; height: 48px; background: var(--navy-800); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--gold-400); font-size: 1.3rem; }
.feature-text h3 { font-size: 1.08rem; font-weight: 700; color: var(--navy-900); margin-bottom: 6px; }
.feature-text p { font-size: 0.9rem; color: var(--slate-500); line-height: 1.65; }

/* ===== CTA BANNER ===== */
.cta-banner { background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-900) 100%); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -50%; left: -10%; width: 60%; height: 200%; background: radial-gradient(ellipse, rgba(201,168,76,0.08) 0%, transparent 70%); pointer-events: none; }
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { font-size: 2.4rem; font-weight: 800; color: var(--white); margin-bottom: 14px; }
.cta-banner p { font-size: 1.05rem; color: var(--slate-400); margin-bottom: 32px; max-width: 550px; margin-left: auto; margin-right: auto; }

/* ===== FOOTER ===== */
.footer { background: var(--navy-950); padding: 72px 0 0; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-col h4 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 20px; }
.footer-col p, .footer-col a, .footer-col li { color: var(--slate-400); font-size: 0.88rem; line-height: 1.8; }
.footer-col a { text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-400); }
.footer-col ul { list-style: none; }
.footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: var(--slate-500); font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--slate-500); text-decoration: none; font-size: 0.82rem; }
.footer-bottom-links a:hover { color: var(--gold-400); }
.footer-brand { margin-bottom: 20px; }
.footer-brand-name { font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.footer-brand-address { color: var(--slate-400); font-size: 0.85rem; line-height: 1.7; }

/* ===== PAGE HEADER (inner pages) ===== */
.page-header { background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-900) 100%); padding: 120px 0 72px; text-align: center; }
.page-header h1 { font-size: 2.8rem; font-weight: 800; color: var(--white); letter-spacing: -0.02em; margin-bottom: 12px; }
.page-header p { color: var(--slate-400); font-size: 1.05rem; }
.page-content { padding: 72px 0 100px; background: var(--white); }
.page-content h2 { font-size: 1.6rem; font-weight: 700; color: var(--navy-900); margin: 40px 0 14px; }
.page-content h2:first-child { margin-top: 0; }
.page-content h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy-800); margin: 28px 0 10px; }
.page-content p, .page-content li { font-size: 0.95rem; color: var(--slate-700); line-height: 1.8; margin-bottom: 14px; }
.page-content ul, .page-content ol { margin: 8px 0 20px 24px; }
.page-content li { margin-bottom: 8px; }
.page-content strong { color: var(--navy-900); }
.page-content a { color: var(--navy-600); text-decoration: underline; }
.page-content .last-updated { color: var(--slate-400); font-size: 0.85rem; margin-bottom: 36px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--navy-900); padding: 24px 28px; gap: 16px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-toggle { display: block; }
  .hero { padding: 120px 0 72px; }
  .hero h1 { font-size: 2.4rem; }
  .section-title { font-size: 1.9rem; }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
}
@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.9rem; }
  .section-title { font-size: 1.6rem; }
}
