:root {
  --primary: #0b1220;
  --secondary: #0d6efd;
  --accent: #7dff3a;
  --surface: #ffffff;
  --bg: #f5f8fc;
  --text: #1f2937;
  --muted: #64748b;
  --border: #dbe5f0;
  --shadow: 0 18px 40px rgba(11, 18, 32, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(92%, var(--max)); margin: 0 auto; }
.section { padding: 78px 0; }
.section-sm { padding: 50px 0; }
.section-head { margin-bottom: 30px; }
.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .82rem;
}
h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 14px; color: #0f172a; }
h1 { font-size: clamp(2.2rem, 5vw, 4.25rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 16px; color: var(--text); }
.muted { color: var(--muted); }
.btn, .btn-outline, .btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: .2s ease;
}
.btn, .btn-nav {
  background: linear-gradient(135deg, var(--secondary), #15a0ff);
  color: #fff;
  box-shadow: var(--shadow);
}
.btn:hover, .btn-nav:hover { transform: translateY(-1px); }
.btn-outline {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.75);
}
.badge {
  display: inline-block;
  background: rgba(125,255,58,.12);
  color: #2b6f00;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 700;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(11, 18, 32, .92);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
}
.logo span { color: var(--accent); }
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1.8rem;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a { color: rgba(255,255,255,.9); font-weight: 600; }
.main-nav a:hover, .main-nav a.active { color: var(--accent); }
.hero {
  padding: 90px 0 70px;
  background:
    radial-gradient(circle at top right, rgba(13,110,253,.25), transparent 26%),
    radial-gradient(circle at top left, rgba(125,255,58,.18), transparent 22%),
    linear-gradient(180deg, #0b1220, #101c33 62%, #eff5fd 62%, #f5f8fc 100%);
}
.hero-grid, .split-grid, .contact-grid, .footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 30px;
  align-items: center;
}
.hero-copy { color: #fff; }
.hero-copy h1, .hero-copy p { color: #fff; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.hero-panel, .card, .panel, .quote-card, .job-card, .faq-item, .blog-card, .stat-box, .service-card, .value-card, .team-card, .client-card, .port-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-panel { padding: 28px; }
.hero-list { padding-left: 18px; margin: 0; }
.hero-list li { margin-bottom: 12px; }
.stats-grid, .card-grid, .value-grid, .team-grid, .logo-grid, .port-grid, .blog-grid, .faq-grid {
  display: grid;
  gap: 22px;
}
.stats-grid { grid-template-columns: repeat(4, 1fr); }
.card-grid, .value-grid, .team-grid, .logo-grid, .port-grid, .blog-grid { grid-template-columns: repeat(3, 1fr); }
.faq-grid { grid-template-columns: repeat(2, 1fr); }
.stat-box, .service-card, .value-card, .team-card, .client-card, .port-card, .blog-card, .job-card, .faq-item { padding: 24px; }
.stat-box h2 { margin-bottom: 4px; }
.alt-bg { background: linear-gradient(180deg, #eef7ff, #f7fbff); }
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.step {
  padding: 22px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #f3f7fb);
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: var(--shadow);
}
.step strong {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(13,110,253,.12);
  color: var(--secondary);
  margin-bottom: 12px;
}
.page-hero {
  padding: 80px 0 50px;
  background: linear-gradient(180deg, #0b1220, #132340);
  color: #fff;
}
.page-hero h1, .page-hero p { color: #fff; }
.cta-box {
  padding: 34px;
  background: linear-gradient(135deg, #0b1220, #11264a);
  color: #fff;
  border-radius: 26px;
  box-shadow: var(--shadow);
  text-align: center;
}
.cta-box h2, .cta-box p { color: #fff; }
.site-footer {
  padding: 60px 0 24px;
  background: #0b1220;
  color: rgba(255,255,255,.9);
}
.site-footer h3, .site-footer h4, .site-footer p, .site-footer a { color: rgba(255,255,255,.9); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.footer-grid { grid-template-columns: 1.2fr .7fr .9fr; align-items: start; }
.footer-bottom { margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); font-size: .95rem; color: rgba(255,255,255,.72); }
.contact-form { display: grid; gap: 14px; }
.contact-form input, .contact-form textarea, .career-form input, .career-form textarea, .career-form select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  font: inherit;
}
.contact-note {
  font-size: .92rem;
  color: var(--muted);
}
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
  font-size: .92rem;
  color: var(--muted);
}
.list-check { list-style: none; padding: 0; margin: 0; }
.list-check li { margin-bottom: 10px; padding-left: 26px; position: relative; }
.list-check li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 800; }
.kicker {
  background: rgba(13,110,253,.1);
  color: var(--secondary);
  border-radius: 999px;
  display: inline-block;
  padding: 6px 12px;
  font-size: .84rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.table-like {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.table-like th, .table-like td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.table-like th { background: #eff6ff; }
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid, .value-grid, .team-grid, .logo-grid, .port-grid, .blog-grid, .faq-grid, .timeline { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #0b1220;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 4%;
    display: none;
  }
  .main-nav.open { display: flex; }
  .hero-grid, .split-grid, .contact-grid, .footer-grid, .stats-grid, .card-grid, .value-grid, .team-grid, .logo-grid, .port-grid, .blog-grid, .faq-grid, .timeline {
    grid-template-columns: 1fr;
  }
  .section { padding: 64px 0; }
}
