:root {
  --navy: #0f172a;
  --blue: #1d4ed8;
  --blue-dark: #1e3a8a;
  --cyan: #06b6d4;
  --light: #f1f5f9;
  --white: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand img {
  height: 48px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  border-radius: 10px;
}

nav {
  display: flex;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
  color: #334155;
}

nav a:hover { color: var(--blue); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding: 13px 20px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.2s;
}

.btn-primary {
  background: var(--blue);
  color: white;
}

.btn-primary:hover { background: var(--blue-dark); }

.btn-light {
  background: white;
  color: var(--navy);
}

.btn-outline {
  border-color: rgba(255,255,255,0.35);
  color: white;
}

.btn-outline:hover { background: rgba(255,255,255,0.12); }

.btn-secondary {
  border-color: var(--border);
  color: var(--navy);
  background: white;
}

.hero {
  background: radial-gradient(circle at 80% 10%, rgba(6,182,212,0.35), transparent 34%),
              linear-gradient(135deg, #0f172a 0%, #1e3a8a 48%, #020617 100%);
  color: white;
  padding: 90px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.badge, .section-label {
  display: inline-block;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
}

.badge {
  color: #bfdbfe;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 8px 13px;
  border-radius: 999px;
}

h1 {
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1.02;
  margin: 24px 0;
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  margin: 10px 0 18px;
  letter-spacing: -0.05em;
}

h3 {
  font-size: 22px;
  margin: 0 0 10px;
}

.hero-text {
  color: #dbeafe;
  font-size: 18px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 34px 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 38px;
}

.stats strong {
  font-size: 34px;
  display: block;
}

.stats span { color: #bfdbfe; font-size: 14px; }

.dashboard-card {
  background: rgba(255,255,255,0.95);
  color: var(--navy);
  border-radius: 34px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.metric {
  background: #f1f5f9;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 13px;
  font-weight: 700;
}

.metric strong {
  color: var(--blue);
  font-size: 22px;
}

.goal {
  background: var(--blue);
  color: white;
  border-radius: 20px;
  padding: 18px;
  margin-top: 20px;
}

.goal p { color: #dbeafe; margin-bottom: 0; }

.trust {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 34px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-grid div {
  background: #f8fafc;
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  font-weight: 900;
}

.section { padding: 88px 0; }
.white { background: white; }

.section-intro {
  color: var(--muted);
  max-width: 700px;
  font-size: 18px;
  margin-bottom: 42px;
}

.cards {
  display: grid;
  gap: 22px;
}

.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.four { grid-template-columns: repeat(4, 1fr); }

.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 8px 26px rgba(15,23,42,0.04);
}

.card p { color: var(--muted); }

.number {
  display: grid;
  place-items: center;
  background: var(--blue);
  color: white;
  font-weight: 900;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  margin-bottom: 18px;
}

.icon-card::before {
  content: "↗";
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  background: #dbeafe;
  color: var(--blue);
  border-radius: 18px;
  font-weight: 900;
  font-size: 26px;
  margin-bottom: 22px;
}

.blue {
  background: var(--blue-dark);
  color: white;
}

.light { color: #a5f3fc; }

.blue p { color: #dbeafe; }

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

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.kpi-grid div {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 34px;
  font-size: 24px;
  font-weight: 900;
  text-align: center;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 42px;
}

.price-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 34px;
  box-shadow: 0 8px 26px rgba(15,23,42,0.05);
}

.price-card.featured {
  border: 2px solid var(--blue);
  transform: scale(1.04);
  box-shadow: var(--shadow);
}

.recommended {
  display: inline-block;
  background: #dbeafe;
  color: var(--blue);
  font-weight: 900;
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 18px;
}

.price-card > strong {
  font-size: 34px;
  display: block;
  margin: 18px 0;
}

.price-card ul {
  padding-left: 18px;
  color: #475569;
  min-height: 150px;
}

.program {
  margin-top: 34px;
  background: var(--navy);
  color: white;
  border-radius: 34px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.program p { color: #cbd5e1; }
.program strong { font-size: 38px; }

.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  margin: 12px 0;
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  color: var(--blue);
  margin-right: 8px;
}

.testimonial {
  background: #f8fafc;
  border-radius: 34px;
  padding: 42px;
  box-shadow: var(--shadow);
}

.testimonial p {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.45;
}

.testimonial span {
  display: block;
  color: var(--muted);
}

.contact-section {
  background: #020617;
  color: white;
}

.contact-section p { color: #cbd5e1; }

.contact-info {
  background: rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 22px;
  margin-top: 25px;
}

.contact-form {
  background: white;
  color: var(--navy);
  border-radius: 34px;
  padding: 34px;
  display: grid;
  gap: 15px;
  box-shadow: var(--shadow);
}

input, textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  outline: none;
}

input:focus, textarea:focus {
  border-color: var(--blue);
}

footer {
  background: #020617;
  color: white;
  padding: 34px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: center;
}

footer p { color: #94a3b8; margin: 4px 0 0; }

@media (max-width: 900px) {
  nav { display: none; }
  .hero-grid, .split, .pricing { grid-template-columns: 1fr; }
  .cards.three, .cards.four, .trust-grid { grid-template-columns: 1fr 1fr; }
  .price-card.featured { transform: none; }
  .program { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1180px); }
  .cards.three, .cards.four, .trust-grid, .stats, .kpi-grid { grid-template-columns: 1fr; }
  .brand span { display: none; }
  .navbar .btn { display: none; }
  .hero { padding: 65px 0; }
  .section { padding: 64px 0; }
}
