/* Core tokens */
:root {
  --bg: #0d1b2a;
  --bg-soft: #12243a;
  --accent: #ff7a18;
  --accent-2: #2ec4b6;
  --text: #eef2f5;
  --muted: #9fb3c8;
  --card: #13263d;
  --shadow: 0 14px 38px rgba(0, 0, 0, 0.25);
  --radius: 14px;
  --radius-sm: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 10% 20%, rgba(46,196,182,0.08), transparent 35%), #0d1b2a;
  color: var(--text);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; border-radius: var(--radius-sm); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 5vw;
  background: rgba(13, 27, 42, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.logo-area { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid; place-items: center;
  font-weight: 800; color: #0d1b2a;
}
.logo-text { display: flex; flex-direction: column; }
.logo-text .brand { font-weight: 700; letter-spacing: 0.2px; }
.logo-text .tagline { color: var(--muted); font-size: 12px; }

.nav { display: flex; gap: 16px; }
.nav a {
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 600;
  transition: all 0.2s ease;
}
.nav a:hover, .nav a.active { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-toggle { display: none; background: none; border: 1px solid rgba(255,255,255,0.1); color: var(--text); padding: 8px 12px; border-radius: 10px; }

.hero, .hero-page {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 28px;
  padding: 60px 5vw 40px;
}

.hero h1, .hero-page h1, .section-title h2 { margin: 0 0 12px; line-height: 1.2; }
.hero p, .hero-page p { margin: 0 0 16px; color: var(--muted); }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 12px 0 8px; }
.btn {
  border: none;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  display: inline-flex; align-items: center; justify-content: center;
}
.btn.primary { background: linear-gradient(120deg, var(--accent), var(--accent-2)); color: #0d1b2a; box-shadow: var(--shadow); }
.btn.ghost { border: 1px solid rgba(255,255,255,0.2); color: var(--text); background: rgba(255,255,255,0.02); }
.btn.full { width: 100%; }
.btn:hover { transform: translateY(-2px); }

.trust-points { list-style: none; padding: 0; margin: 10px 0 0; color: var(--muted); display: grid; gap: 8px; }
.trust-points li::before { content: "• "; color: var(--accent-2); }

.section { padding: 48px 5vw; }
.section-title { max-width: 720px; margin-bottom: 20px; }
.eyebrow { letter-spacing: 1px; text-transform: uppercase; color: var(--accent-2); font-weight: 700; font-size: 12px; margin: 0 0 8px; }

.cards .card-grid { margin-top: 18px; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.15); }
.card h3 { margin: 10px 0 8px; }
.card p { color: var(--muted); margin: 0 0 10px; }
.link { color: var(--accent-2); font-weight: 700; }

.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); align-items: center; gap: 28px; }
.list { padding-left: 18px; color: var(--muted); }
.list li { margin-bottom: 8px; }
.list.mini { padding-left: 16px; font-size: 14px; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.news-card {
  background: linear-gradient(150deg, rgba(46,196,182,0.08), rgba(255,122,24,0.08));
  border: 1px solid rgba(255,255,255,0.08);
  padding: 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.pill {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
}

.footer {
  padding: 24px 5vw;
  background: #0b1725;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  align-items: center;
  color: var(--muted);
}
.footer h4 { margin: 0 0 8px; color: var(--text); }
.footer-links { display: flex; gap: 12px; flex-wrap: wrap; }
.footer a { color: var(--text); font-weight: 600; }

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.timeline-item { padding: 14px; border-radius: var(--radius); background: var(--card); border: 1px solid rgba(255,255,255,0.05); }

.team-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.team-card img { width: 100%; height: 180px; object-fit: cover; }

.filter-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  align-items: end;
}
.filter-controls { display: flex; flex-direction: column; gap: 6px; color: var(--muted); }
select, input, textarea {
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  padding: 12px;
  font-size: 15px;
  outline: none;
}
select:focus, input:focus, textarea:focus { border-color: var(--accent-2); }
.product-grid .product { display: flex; flex-direction: column; gap: 8px; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  align-items: start;
}
.contact-form .form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 10px; }
.form-feedback { color: var(--accent-2); font-weight: 700; min-height: 20px; }

.section.hero-page { padding-top: 40px; }

@media (max-width: 820px) {
  .nav { position: fixed; inset: 0 0 auto 0; transform: translateY(-120%); background: #0d1b2a; flex-direction: column; padding: 18px; gap: 8px; transition: transform 0.25s ease; }
  .nav.open { transform: translateY(0); }
  .nav-toggle { display: inline-flex; }
}

