
:root {
  --bg: #08111c;
  --bg-soft: #0e1a28;
  --panel: rgba(255,255,255,.055);
  --panel-strong: rgba(255,255,255,.09);
  --text: #f6f8fb;
  --muted: #a9b5c5;
  --line: rgba(255,255,255,.12);
  --accent: #5ee0b8;
  --accent-2: #6ea8ff;
  --accent-3: #d6b978;
  --max: 1180px;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(0,0,0,.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(94,224,184,.12), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(110,168,255,.13), transparent 30%),
    linear-gradient(180deg, #07101a 0%, #0a1420 45%, #07101a 100%);
  min-height: 100vh;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 92px 0; }
.section-sm { padding: 58px 0; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  color: var(--accent);
  font-weight: 800;
}
h1, h2, h3 { line-height: 1.05; margin: 0 0 20px; letter-spacing: -.04em; }
h1 { font-size: clamp(2.5rem, 5vw, 4.75rem); max-width: 850px; }
h2 { font-size: clamp(2.15rem, 4vw, 4rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 18px; }
.lead { font-size: clamp(1.08rem, 2vw, 1.35rem); color: var(--muted); max-width: 780px; }
.muted { color: var(--muted); }
.gradient-text {
  background: linear-gradient(90deg, var(--accent), #b3f3df 45%, var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(7,16,26,.82);
  backdrop-filter: blur(18px);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  font-weight: 850;
  letter-spacing: -.04em;
  font-size: 1.18rem;
  white-space: nowrap;
}
.brand span { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link, .drop-toggle {
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 12px 14px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 650;
}
.nav-link:hover, .nav-link.active, .drop-toggle:hover { color: var(--text); background: var(--panel); }
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 290px;
  padding: 12px;
  background: #0d1926;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(7px);
  transition: .2s ease;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 12px 13px;
  border-radius: 12px;
  color: var(--muted);
}
.dropdown-menu a:hover { background: var(--panel); color: var(--text); }
.nav-cta {
  padding: 11px 17px;
  border-radius: 999px;
  background: var(--accent);
  color: #062018;
  font-weight: 850;
}
.menu-button {
  display: none;
  background: transparent;
  color: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 9px 12px;
}

.hero {
  padding: 112px 0 82px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 1px solid rgba(94,224,184,.2);
  right: -170px;
  top: 60px;
  box-shadow: inset 0 0 120px rgba(94,224,184,.05);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 820;
  border: 1px solid transparent;
}
.btn-primary { background: var(--accent); color: #052019; }
.btn-secondary { border-color: var(--line); background: rgba(255,255,255,.035); }
.btn:hover { transform: translateY(-1px); }

.stat-row {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.025);
}
.stat { padding: 24px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; font-size: 1.3rem; margin-bottom: 4px; }
.stat span { color: var(--muted); font-size: .92rem; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  box-shadow: 0 10px 35px rgba(0,0,0,.12);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(94,224,184,.42);
  background: rgba(255,255,255,.07);
}
.card .number {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--accent);
  font-weight: 900;
  margin-bottom: 44px;
}
.card p { color: var(--muted); }
.card-link { color: var(--accent); font-weight: 800; }
.tag {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(94,224,184,.1);
  color: #b8f4e1;
  border: 1px solid rgba(94,224,184,.19);
  font-size: .78rem;
  font-weight: 760;
  margin-bottom: 20px;
}

.band {
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.025);
}
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.process-step { padding: 20px 16px; border-left: 1px solid var(--line); }
.process-step:first-child { border-left: 0; }
.process-step small { color: var(--accent); font-weight: 900; }

.page-hero { padding: 92px 0 64px; }
.page-hero h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 50px;
  align-items: start;
}
.sidebar {
  position: sticky;
  top: 105px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}
.check-list { list-style: none; margin: 24px 0 0; padding: 0; }
.check-list li { padding: 11px 0 11px 28px; border-bottom: 1px solid var(--line); position: relative; }
.check-list li::before { content: "✓"; color: var(--accent); position: absolute; left: 0; font-weight: 900; }
.check-list li:last-child { border-bottom: 0; }
.callout {
  padding: 28px;
  border-left: 4px solid var(--accent);
  background: rgba(94,224,184,.07);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 34px 0;
}
.team-card { display: grid; grid-template-columns: 110px 1fr; gap: 24px; align-items: start; }
.avatar {
  width: 110px; height: 110px;
  border-radius: 28px;
  display: grid; place-items: center;
  font-size: 1.75rem;
  font-weight: 900;
  color: #061713;
  background: linear-gradient(145deg, var(--accent), var(--accent-2));
}
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 34px; }
.form {
  display: grid;
  gap: 15px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}
.form label { font-size: .9rem; font-weight: 780; }
.form input, .form textarea, .form select {
  width: 100%;
  border: 1px solid var(--line);
  background: #0a1521;
  color: white;
  border-radius: 12px;
  padding: 13px 14px;
}
.form textarea { min-height: 150px; resize: vertical; }

.site-footer { border-top: 1px solid var(--line); padding: 44px 0; color: var(--muted); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.footer-grid a { display: block; margin: 8px 0; }
.footer-grid a:hover { color: white; }
.footer-bottom { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); font-size: .88rem; }

@media (max-width: 900px) {
  .menu-button { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #0b1723;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-link, .drop-toggle, .nav-cta { width: 100%; text-align: left; }
  .dropdown-menu {
    position: static;
    width: 100%;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    margin-top: 6px;
  }
  .dropdown.open .dropdown-menu { display: block; }
  .grid-3, .grid-2, .contact-grid, .content-layout, .footer-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .process { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(3) { border-left: 0; }
  .sidebar { position: static; }
}
@media (max-width: 580px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .hero { padding-top: 78px; }
  .section { padding: 68px 0; }
  .stat-row, .process { grid-template-columns: 1fr; }
  .stat, .process-step { border-right: 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child, .process-step:last-child { border-bottom: 0; }
  .team-card { grid-template-columns: 1fr; }
}
