:root {
  --bg: #09142b;
  --panel: #0f1c38;
  --panel-2: #15264a;
  --text: #f5f7fb;
  --muted: #b9c5d9;
  --line: rgba(255,255,255,0.10);
  --navy: #00184d;
  --navy-2: #08245f;
  --orange: #e77800;
  --orange-2: #ff9a1f;
  --light: #eef2f8;
  --accent: var(--orange);
  --accent-2: var(--orange-2);
  --success: #33d17a;
  --warning: #ffb648;
  --danger: #ff5f6d;
  --shadow: 0 20px 50px rgba(0,0,0,0.35);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(231,120,0,0.18), transparent 24%),
    radial-gradient(circle at bottom left, rgba(255,154,31,0.10), transparent 26%),
    linear-gradient(180deg, #07101d 0%, #09142b 42%, #0d1730 100%);
  color: var(--text);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(100% - 32px, var(--max)); margin: 0 auto; }
.section { padding: 84px 0; }

.eyebrow {
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid rgba(255,154,31,0.25);
  background: rgba(231,120,0,0.10);
  color: var(--orange-2);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(6, 10, 18, 0.82);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  min-width: 0;
}

.brand-mark {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0,24,77,0.92), rgba(231,120,0,0.28));
  border: 1px solid rgba(255,255,255,0.12);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: var(--shadow);
  flex-shrink: 0;
  padding: 4px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  background: #dcdcdc;
}

.brand-mark.fallback {
  font-size: 22px;
  font-weight: 800;
  color: var(--orange-2);
}

.brand-text strong {
  display: block;
  font-size: 16px;
  line-height: 1.1;
}

.brand-text span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: white;
  box-shadow: 0 16px 34px rgba(231,120,0,0.25);
}

.btn-primary:hover { transform: translateY(-2px); }

.btn-secondary {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
  color: var(--text);
}

.btn-secondary:hover { background: rgba(255,255,255,0.09); }

.hero { padding: 84px 0 46px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 36px;
  align-items: center;
}

.hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

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

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.hero-points span::before {
  content: "•";
  color: var(--orange-2);
  margin-right: 8px;
}

.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}

.dashboard-title {
  font-weight: 700;
  font-size: 15px;
}

.status-chip {
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(51,209,122,0.15);
  color: #8ef0b6;
  border: 1px solid rgba(51,209,122,0.25);
}

.dashboard-body {
  padding: 20px;
  display: grid;
  gap: 16px;
}

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

.metric {
  padding: 16px;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.metric strong {
  font-size: 26px;
  line-height: 1;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}

.panel h4 {
  margin: 0 0 12px;
  font-size: 15px;
}

.list {
  display: grid;
  gap: 10px;
}

.list-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
}

.list-item small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}

.score { font-weight: 800; }
.score.good { color: #8ef0b6; }
.score.warn { color: #ffd27b; }
.score.bad { color: #ff8f98; }

.bars { display: grid; gap: 12px; }

.bar-row small {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  margin-bottom: 7px;
}

.bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}

.bar > div {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
}

.logo-strip {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.logo-card {
  padding: 18px 14px;
  text-align: center;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-title {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-title h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  margin: 16px 0 14px;
}

.section-title p {
  color: var(--muted);
  font-size: 18px;
  margin: 0;
}

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

.feature-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(231,120,0,0.14);
  color: var(--orange-2);
  font-size: 20px;
  margin-bottom: 16px;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.feature-card p {
  color: var(--muted);
  margin: 0 0 14px;
}

.feature-card ul {
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: stretch;
}

.info-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
}

.info-card h3 {
  margin-top: 0;
  font-size: 28px;
}

.info-card p,
.info-card li {
  color: var(--muted);
  font-size: 16px;
}

.info-card ul { padding-left: 20px; }

.steps {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(231,120,0,0.14);
  color: var(--orange-2);
  font-weight: 800;
}

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

.price-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  position: relative;
  overflow: hidden;
}

.price-card.featured {
  border-color: rgba(231,120,0,0.35);
  box-shadow: 0 18px 45px rgba(231,120,0,0.12);
  transform: translateY(-6px);
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(231,120,0,0.15);
  color: var(--orange-2);
  border: 1px solid rgba(231,120,0,0.30);
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.price-card h3 { margin: 0 0 8px; font-size: 24px; }
.price-card p { color: var(--muted); }

.price {
  margin: 20px 0 8px;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.price small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  margin-left: 6px;
}

.price-card ul {
  margin: 20px 0 24px;
  padding-left: 18px;
  color: var(--muted);
}

.cta {
  background: linear-gradient(135deg, rgba(231,120,0,0.18), rgba(255,255,255,0.05));
  border: 1px solid rgba(231,120,0,0.20);
  border-radius: 28px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow);
}

.cta h2 {
  font-size: clamp(28px, 4vw, 46px);
  margin: 0 0 12px;
  line-height: 1.04;
}

.cta p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.contact-direct {
  margin-top: 18px;
}

.contact-direct p {
  margin: 8px 0;
}

.form-card {
  background: rgba(7, 13, 25, 0.62);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  padding: 20px;
}

form {
  display: grid;
  gap: 12px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

input, textarea, select {
  width: 100%;
  padding: 14px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  font: inherit;
  outline: none;
}

input::placeholder, textarea::placeholder { color: #91a1bb; }
textarea { min-height: 110px; resize: vertical; }

.site-footer {
  padding: 28px 0 40px;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  flex-wrap: wrap;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--text);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 18px;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .cta,
  .pricing,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .metrics,
  .dashboard-grid,
  .logo-strip {
    grid-template-columns: 1fr 1fr;
  }

  .cta { padding: 26px; }
  .price-card.featured { transform: none; }
}

@media (max-width: 760px) {
  .nav { min-height: 70px; }
  .mobile-toggle { display: inline-flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    background: rgba(6,10,18,0.96);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links.open { display: flex; }
  .hero { padding-top: 42px; }

  .metrics,
  .dashboard-grid,
  .logo-strip,
  .field-row {
    grid-template-columns: 1fr;
  }

  .hero p,
  .section-title p,
  .cta p { font-size: 16px; }

  .section { padding: 70px 0; }
}
