:root {
  /* New Brand Colors */
  --bg-color: #F8FAFC;
  --surface: #FFFFFF;
  --surface-alt: #F1F5F9;
  
  --primary-navy: #0F172A;
  --secondary-blue: #1E3A8A;
  --accent-gold: #D4AF37;
  
  --text-main: #1F2937;
  --text-muted: #64748B;
  
  --border: #E2E8F0;
  
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-shadow: 0 8px 32px rgba(15, 23, 42, 0.05);

  --font-heading: 'Manrope', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  --nav-height: 80px;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-navy);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography Utilities */
.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--secondary-blue);
  margin-bottom: 1rem;
}

.text-gold { color: var(--accent-gold); }
.text-navy { color: var(--primary-navy); }
.text-muted { color: var(--text-muted); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--primary-navy);
  color: #fff;
}
.btn-primary:hover {
  background: var(--secondary-blue);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
}

.btn-gold {
  background: var(--accent-gold);
  color: var(--primary-navy);
}
.btn-gold:hover {
  background: #C49F27;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary-navy);
  border: 1px solid var(--primary-navy);
}
.btn-outline:hover {
  background: var(--surface-alt);
}

/* Glassmorphism Classes */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 12px;
}

/* Header */
.site-nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-navy);
}
.brand-mark .dot { color: var(--accent-gold); }

.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-navy);
  line-height: 1;
}
.brand-sub {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-navy);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--secondary-blue);
}

/* Sections */
section {
  padding: 4rem 0;
}
.section-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}
.section-head h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.section-head p {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Hero Section */
.hero-split {
  margin-top: var(--nav-height);
  min-height: calc(100vh - var(--nav-height));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--primary-navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero-content {
  padding: 4rem 6rem;
  z-index: 2;
}
.hero-content h1 {
  font-size: 4rem;
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 800;
}
.hero-content .lead {
  font-size: 1.25rem;
  color: #94A3B8;
  margin-bottom: 2rem;
  max-width: 90%;
}
.hero-visual {
  position: relative;
  height: 100%;
  display: flex;
}
.hero-visual .half {
  flex: 1;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-visual .half::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
}
.hero-visual .half.finance { background-image: url('https://images.pexels.com/photos/3184292/pexels-photo-3184292.jpeg'); }
.hero-visual .half.cyber { background-image: url('https://images.pexels.com/photos/5380642/pexels-photo-5380642.jpeg'); }

.trust-badges {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
}
.trust-badge {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent-gold);
  letter-spacing: 1px;
}

/* Services Expandable Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  transform: translateY(-5px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .icn {
  color: var(--secondary-blue);
  margin-bottom: 1.5rem;
  width: 32px;
  height: 32px;
}
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 1.5rem;
}
.service-card .learn-more {
  font-weight: 600;
  color: var(--secondary-blue);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

/* Process Timeline */
.timeline-section {
  background: var(--primary-navy);
  color: #fff;
  padding: 8rem 0;
}
.timeline-section .section-head h2 { color: #fff; }
.timeline-section .section-head .eyebrow { color: var(--accent-gold); }
.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 4rem;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.1);
}
.timeline-step {
  position: relative;
  flex: 1;
  padding-right: 2rem;
}
.timeline-step .dot {
  width: 48px;
  height: 48px;
  background: var(--secondary-blue);
  border: 4px solid var(--primary-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  position: relative;
  z-index: 2;
  margin-bottom: 1.5rem;
}
.timeline-step h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.timeline-step p {
  color: #94A3B8;
  font-size: 0.9rem;
}

/* Industries Grid */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.industry-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s;
}
.industry-card:hover {
  border-color: var(--secondary-blue);
  background: var(--primary-navy);
  color: #fff;
}
.industry-card:hover h4 { color: #fff; }
.industry-card:hover .icn { color: var(--accent-gold); }
.industry-card .icn {
  color: var(--secondary-blue);
  margin-bottom: 1rem;
  width: 32px;
  height: 32px;
}
.industry-card h4 {
  font-size: 1rem;
}

/* Footer */
.site-footer {
  background: #020617;
  color: #94A3B8;
  padding: 6rem 0 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-grid h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.footer-grid ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer-grid a {
  transition: color 0.2s;
}
.footer-grid a:hover {
  color: var(--accent-gold);
}

@media (max-width: 1024px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { padding: 4rem 2rem; }
  .timeline { flex-direction: column; gap: 2rem; }
  .timeline::before {
    width: 2px;
    height: 100%;
    top: 0;
    left: 24px;
  }
  .timeline-step { padding-left: 4rem; }
  .timeline-step .dot { position: absolute; left: 0; top: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-content h1 { font-size: 2.5rem; }
}

/* Page Header */
.page-header {
  margin-top: var(--nav-height);
  background: var(--primary-navy);
  color: #fff;
  padding: 4rem 0;
  text-align: center;
  border-bottom: 4px solid var(--accent-gold);
}
.page-header h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 1rem;
}
.page-header p {
  color: #94A3B8;
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

