:root {
  --bg: #08111f;
  --bg-soft: #0f1b2d;
  --card: rgba(255, 255, 255, 0.08);
  --card-strong: rgba(255, 255, 255, 0.12);
  --text: #f8fafc;
  --muted: #a9b5c7;
  --brand: #22c55e;
  --brand-2: #facc15;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.22), transparent 34%),
    radial-gradient(circle at top right, rgba(250, 204, 21, 0.16), transparent 28%),
    linear-gradient(135deg, #07101d 0%, #0c1525 45%, #07111f 100%);
  color: var(--text);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(8, 17, 31, 0.72);
  border-bottom: 1px solid var(--line);
}

.navbar {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #07111f;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 14px 34px rgba(34, 197, 94, 0.28);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-call,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: 0.2s ease;
}

.nav-call,
.btn.primary {
  color: #07111f;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 18px 40px rgba(34, 197, 94, 0.24);
}

.btn.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.nav-call:hover,
.btn:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 44px auto 0;
  min-height: 620px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 34px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    url("data:image/svg+xml,%3Csvg width='220' height='220' viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.07)' stroke-width='1'%3E%3Cpath d='M0 80h220M0 140h220M80 0v220M140 0v220'/%3E%3C/g%3E%3C/svg%3E");
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-content,
.hero-card {
  position: relative;
  z-index: 1;
}

.hero-content {
  padding: 64px;
}

.hero-badge,
.section-kicker {
  display: inline-flex;
  width: max-content;
  padding: 8px 14px;
  border-radius: 999px;
  color: #d9ffe7;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.28);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin: 22px 0 20px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero p {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 560px;
  margin-top: 34px;
}

.trust-row div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  font-size: 22px;
}

.trust-row span {
  color: var(--muted);
  font-size: 13px;
}

.hero-card {
  overflow: hidden;
  margin-right: 42px;
  padding: 34px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.06));
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(0,0,0,0.25);
}

.card-glow {
  width: 160px;
  height: 160px;
  position: absolute;
  right: -40px;
  top: -40px;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.24);
  filter: blur(20px);
}

.hero-card h2 {
  font-size: 30px;
}

.hero-card ul {
  position: relative;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.hero-card li {
  padding: 16px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.hero-card li::before {
  content: "✓";
  color: var(--brand);
  font-weight: 900;
  margin-right: 10px;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 80px auto;
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.section h2 {
  margin: 18px 0 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.section p {
  color: var(--muted);
  font-size: 17px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.premium-card {
  min-height: 250px;
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--card-strong), var(--card));
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  transition: 0.22s ease;
}

.premium-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 197, 94, 0.42);
  box-shadow: 0 24px 70px rgba(34, 197, 94, 0.12);
}

.icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  font-size: 26px;
}

.premium-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.premium-card p {
  margin-bottom: 0;
  font-size: 15px;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 22px;
}

.service-panel,
.service-list,
.contact-card {
  padding: 34px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 20px 70px rgba(0,0,0,0.2);
}

.service-list {
  display: grid;
  gap: 16px;
}

.service-list div {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
}

.service-list strong,
.service-list span {
  display: block;
}

.service-list span {
  margin-top: 4px;
  color: var(--muted);
}

.contact-card {
  background:
    linear-gradient(135deg, rgba(34,197,94,0.12), rgba(250,204,21,0.08)),
    rgba(255,255,255,0.07);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.contact-grid div {
  padding: 20px;
  border-radius: 20px;
  background: rgba(8, 17, 31, 0.42);
  border: 1px solid var(--line);
}

.contact-grid strong,
.contact-grid span,
.contact-grid a {
  display: block;
}

.contact-grid strong {
  margin-bottom: 8px;
}

.contact-grid span,
.contact-grid a {
  color: var(--muted);
}

.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 60px auto 28px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

.footer strong,
.footer span {
  display: block;
}

.footer strong {
  color: var(--text);
}

.footer-links {
  display: flex;
  gap: 18px;
}

.legal-page {
  width: min(860px, calc(100% - 32px));
  margin: 60px auto;
  padding: 38px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.08);
}

.legal-page h1 {
  font-size: 42px;
  line-height: 1.05;
}

.back-link {
  color: var(--brand-2);
  font-weight: 800;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero,
  .intro,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 38px 24px;
  }

  .hero-card {
    margin: 0 24px 24px;
  }

  .grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .navbar {
    min-height: 74px;
  }

  .brand small {
    display: none;
  }

  .nav-call {
    padding: 0 14px;
    font-size: 13px;
  }

  h1 {
    font-size: 42px;
  }

  .section {
    margin: 56px auto;
  }

  .service-panel,
  .service-list,
  .contact-card,
  .legal-page {
    padding: 24px;
  }
}
