@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@700&display=swap');
:root {
  --bg: #050b16;
  --bg-alt: rgba(255, 255, 255, 0.04);
  --card: rgba(12, 20, 36, 0.9);
  --text: #f4f7fb;
  --muted: #9fb2c8;
  --accent: #22c55e;
  --accent-soft: rgba(34, 197, 94, 0.14);
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 25px 50px rgba(5, 11, 22, 0.45);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: radial-gradient(circle at 20% 20%, rgba(34, 197, 94, 0.12), transparent 55%),
              radial-gradient(circle at 80% 0%, rgba(103, 232, 249, 0.08), transparent 60%),
              linear-gradient(180deg, #04070e 0%, #0b172b 100%);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}
a {
  color: inherit;
}
.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(4, 9, 18, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  font-size: 0.95rem;
  text-transform: uppercase;
}
.links a {
  text-decoration: none;
  margin-left: 22px;
  color: var(--text);
  opacity: 0.82;
  transition: opacity 0.2s ease;
}
.links a:hover {
  opacity: 1;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.btn.primary {
  background: var(--accent);
  border: none;
  color: #03240f;
  box-shadow: 0 15px 30px rgba(34, 197, 94, 0.35);
}
.btn.ghost {
  background: rgba(255, 255, 255, 0.04);
}
.btn:hover {
  transform: translateY(-2px);
}
.hero {
  position: relative;
  padding: 140px 0 120px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1542318428-29f26af1ff86?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
  opacity: 0.32;
  filter: saturate(1.1);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(4, 9, 18, 0.9), rgba(4, 9, 18, 0.5));
}
.hero .container {
  position: relative;
  display: flex;
  align-items: center;
}
.hero__content {
  max-width: 640px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 14px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.7rem, 4vw, 3.7rem);
  line-height: 1.1;
  margin: 0 0 18px;
}
.sub {
  font-size: 1.05rem;
  color: rgba(244, 247, 251, 0.88);
  margin: 0 0 26px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.stats li {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 16px 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  font-size: 0.95rem;
}
.stats span {
  display: block;
  font-weight: 700;
  font-size: 1.15rem;
}
.section {
  padding: 90px 0;
  border-bottom: 1px solid var(--line);
}
.section.alt {
  background: var(--bg-alt);
}
.section-header {
  max-width: 650px;
  margin-bottom: 36px;
}
.section h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin: 0 0 10px;
}
.grid {
  display: grid;
  gap: 40px;
}
.grid--two {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}
.cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.cards--sector .card,
.cards--feature .card {
  min-height: 200px;
}
.card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.3rem;
}
.list-check,
.list-plain {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.list-check li {
  position: relative;
  padding-left: 28px;
}
.list-check li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 600;
}
.list-plain li {
  border-left: 3px solid var(--accent-soft);
  padding-left: 14px;
}
.highlight-card {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(8, 17, 29, 0.9));
  border-radius: 24px;
  padding: 32px;
  border: 1px solid rgba(34, 197, 94, 0.3);
  box-shadow: var(--shadow);
}
.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  margin: 26px 0 0;
}
.metrics div {
  background: rgba(4, 12, 24, 0.6);
  border-radius: 18px;
  padding: 16px;
  border: 1px solid var(--line);
}
.metrics dt {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  color: var(--muted);
}
.metrics dd {
  margin: 0;
  font-weight: 600;
}
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 24px;
}
.timeline li {
  border-left: 2px solid var(--accent-soft);
  padding-left: 22px;
  position: relative;
}
.timeline li::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.18);
}
.timeline h3 {
  margin: 0 0 6px;
}
.quote-card {
  background: rgba(7, 14, 26, 0.85);
  border-left: 4px solid var(--accent);
  padding: 26px 28px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.quote-card span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}
.pillars {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}
.pillar {
  background: rgba(7, 16, 30, 0.75);
  border: 1px solid var(--line);
  border-radius: 20px;
  text-align: center;
  padding: 22px 18px;
  box-shadow: var(--shadow);
}
.pillar h3 {
  margin: 0 0 8px;
  font-size: 1.8rem;
}
.cta {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.25), rgba(8, 22, 35, 0.9));
  text-align: center;
}
.cta .hero-ctas {
  justify-content: center;
}
.footer {
  padding: 40px 0 60px;
  background: rgba(2, 6, 12, 0.85);
  border-top: 1px solid var(--line);
}
.footer__content {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: start;
}
.footer__links {
  display: grid;
  gap: 10px;
}
.footer__copy {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.85rem;
}
.page-hero {
  padding: 120px 0 80px;
  text-align: left;
  background: linear-gradient(140deg, rgba(34, 197, 94, 0.12), rgba(3, 10, 20, 0.88));
  border-bottom: 1px solid var(--line);
}
.note-block {
  background: rgba(7, 16, 30, 0.75);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px 28px;
  box-shadow: var(--shadow);
}
.note-block .btn {
  margin-top: 18px;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 16px;
}
.contact-list li {
  background: rgba(6, 13, 24, 0.7);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  display: grid;
  gap: 6px;
}
.contact-list span {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.faq {
  display: grid;
  gap: 16px;
}
.faq details {
  background: rgba(6, 13, 24, 0.72);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 22px;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
}
.faq p {
  margin: 14px 0 0;
  color: rgba(244, 247, 251, 0.85);
}
.muted {
  color: var(--muted);
}
@media (max-width: 768px) {
  .nav .container {
    flex-direction: column;
    gap: 14px;
    padding: 16px 0;
    height: auto;
  }
  .links a {
    margin-left: 0;
    margin-right: 14px;
  }
  .hero {
    padding: 120px 0 90px;
  }
  .hero-ctas {
    width: 100%;
  }
  .hero-ctas .btn {
    flex: 1;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .footer__copy {
    text-align: center;
  }
}
@media (max-width: 520px) {
  .hero h1 {
    font-size: 2.3rem;
  }
  .brand {
    font-size: 0.85rem;
  }
  .links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  .page-hero {
    text-align: center;
  }
  .cta .hero-ctas {
    flex-direction: column;
  }
}