:root {
  color-scheme: dark;
  font-family: Inter, 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #111827;
  background: #f8fafc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #f8fafc;
}

.page-wrapper {
  width: 100%;
  overflow-x: hidden;
}

.section {
  padding: 80px 24px;
}

.light-bg {
  background: #f8f9fc;
}

.hero-section {
  background: linear-gradient(135deg, #0a0f2e 0%, #1a1040 50%, #0d1a3a 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 80px 24px;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
}

.hero-section::before {
  width: 520px;
  height: 520px;
  top: -180px;
  left: -180px;
  background: radial-gradient(circle, rgba(108,60,247,0.8) 0%, transparent 70%);
}

.hero-section::after {
  width: 420px;
  height: 420px;
  bottom: -120px;
  right: -120px;
  background: radial-gradient(circle, rgba(14,165,233,0.8) 0%, transparent 70%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 620px;
}

.badge,
.eyebrow {
  display: inline-flex;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(108, 60, 247, 0.18);
  color: #c7d2fe;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-copy h1,
.section h2,
.final-cta-card h2,
.form-card h3 {
  margin: 24px 0 20px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  max-width: 650px;
}

.gradient-text {
  background: linear-gradient(135deg, #a78bfa, #6c3cf7, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy p,
.section-copy p,
.section-head p,
.review-card p,
.chart-card p,
.final-cta-card p,
.form-card label,
.form-card small {
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions,
.section-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 26px;
  border-radius: 26px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #6c3cf7 0%, #8b5cf6 100%);
  color: #ffffff;
}

.button-secondary,
.button-outline,
.inline-link {
  color: #25d366;
  background: rgba(37, 211, 102, 0.13);
  border: 1px solid rgba(37, 211, 102, 0.27);
}

.button-outline {
  color: #ffffff;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.dashboard-card {
  width: 100%;
  max-width: 540px;
  padding: 32px;
  border-radius: 32px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(18px);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.dashboard-header p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 0.95rem;
}

.dashboard-header strong {
  color: #ffffff;
  font-size: 1rem;
}

.dots {
  display: flex;
  gap: 8px;
}

.dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.kpi-row div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.1);
}

.kpi-row span,
.kpi-row small {
  display: block;
  color: rgba(255,255,255,0.7);
}

.kpi-row strong {
  display: block;
  font-size: 1.1rem;
  margin: 8px 0 4px;
}

.mini-chart {
  height: 120px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.05));
  margin-bottom: 24px;
}

.dashboard-cards {
  display: grid;
  gap: 14px;
}

.small-card {
  padding: 18px;
  border-radius: 24px;
  background: #fff;
  color: #111827;
}

.small-card strong {
  display: block;
  margin-bottom: 8px;
}

.card-purple { background: #f0ebff; }
.card-blue { background: #e0f2fe; }
.card-green { background: #d1fae5; }

.section-head {
  max-width: 920px;
  margin: 0 auto 48px;
  text-align: center;
}

.split-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
  text-align: left;
}

.center-head {
  text-align: center;
}

.section-head h2,
.final-cta-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 20px 0 16px;
}

.section-head p {
  color: #64748b;
  font-size: 1.05rem;
  margin: 0;
}

.cards-grid {
  display: grid;
  gap: 24px;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-card,
.reason-card,
.review-card,
.chart-card,
.form-card {
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  padding: 28px;
}

.service-card h3,
.reason-card h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: #0f172a;
}

.service-card p,
.reason-card p,
.review-card p {
  margin: 0 0 16px;
  color: #475569;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.service-card li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: #334155;
}

.service-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #6c3cf7;
}

.inline-link,
.section-cta .button-secondary {
  display: inline-block;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.inline-link {
  color: #6c3cf7;
  background: rgba(108, 60, 247, 0.08);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.stat-grid div {
  border-radius: 24px;
  background: #f8f9fc;
  padding: 24px;
}

.stat-grid strong {
  display: block;
  font-size: 2rem;
  color: #6c3cf7;
  margin-bottom: 8px;
}

.stat-grid span {
  display: block;
  color: #64748b;
}

.reason-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.reason-card {
  min-height: 170px;
}

.reason-card p {
  margin: 0;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.timeline-step {
  border-radius: 24px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.timeline-step span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eef2ff;
  color: #4338ca;
  font-weight: 700;
  margin-bottom: 16px;
}

.timeline-step h3 {
  margin: 0 0 12px;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 32px;
}

.kpi-grid article {
  background: #f8f9fc;
  border-radius: 28px;
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.kpi-grid strong {
  display: block;
  font-size: 2rem;
  color: #1e293b;
  margin-bottom: 10px;
}

.kpi-grid span {
  display: block;
  margin-bottom: 8px;
  color: #334155;
  font-weight: 700;
}

.kpi-grid p {
  margin: 0;
  color: #64748b;
}

.chart-card {
  padding: 32px;
}

.chart-card h3 {
  margin-bottom: 8px;
  color: #0f172a;
}

.chart-card p {
  margin: 0 0 24px;
  color: #64748b;
}

.growth-legend {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.legend {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-block;
}

.legend.before { background: #cbd5e1; }
.legend.after { background: #6c3cf7; }

.bar-chart {
  display: grid;
  gap: 12px;
}

.bar-row {
  display: grid;
  grid-template-columns: 75px 1fr;
  gap: 12px;
  align-items: center;
}

.bar-row strong {
  color: #0f172a;
}

.bar {
  height: 12px;
  border-radius: 999px;
}

.bar.before {
  background: #cbd5e1;
}

.bar.after {
  background: #6c3cf7;
}

.reviews-section {
  background: linear-gradient(135deg, #0a0f2e 0%, #1a1040 100%);
  color: #ffffff;
}

.rating-badge {
  display: inline-grid;
  gap: 6px;
  padding: 18px 28px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  margin: 0 auto 20px;
}

.rating-badge strong {
  font-size: 2rem;
  color: #ffffff;
}

.rating-badge span,
.rating-badge small {
  color: rgba(255,255,255,0.75);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.review-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.92);
}

.review-card p {
  margin-bottom: 20px;
}

.review-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.review-card small {
  color: rgba(255,255,255,0.6);
}

.contact-section {
  background: #ffffff;
}

.form-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.contact-section .eyebrow {
  background: #eff6ff;
  color: #4338ca;
}

.form-grid h2 {
  margin-top: 20px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
  display: grid;
  gap: 14px;
}

.benefits-list li {
  padding-left: 24px;
  position: relative;
  color: #334155;
}

.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #6c3cf7;
}

.form-card {
  padding: 36px;
}

.form-card form {
  display: grid;
  gap: 18px;
}

.form-card h3 {
  margin: 0 0 10px;
  color: #0f172a;
}

.form-card label {
  display: grid;
  gap: 10px;
  color: #475569;
  font-size: 0.95rem;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(15, 23, 42, 0.12);
  border-radius: 16px;
  font-size: 1rem;
  color: #0f172a;
}

.form-card textarea {
  resize: vertical;
}

.legal-copy {
  margin: 0;
  font-size: 0.9rem;
  color: #64748b;
}

.final-cta {
  background: linear-gradient(135deg, #0a0f2e 0%, #1a0a40 50%, #0d1a3a 100%);
  color: #ffffff;
  padding: 80px 24px;
}

.final-cta-card {
  max-width: 880px;
  margin: 0 auto;
  padding: 48px 40px;
  border-radius: 32px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  text-align: center;
}

.final-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.final-stats div {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,0.08);
}

.final-stats strong {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.final-stats span {
  color: rgba(255,255,255,0.72);
}

.accent {
  color: #6c3cf7;
}

@media (max-width: 1024px) {
  .hero-inner,
  .split-head,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-content: center;
  }

  .section {
    padding: 60px 20px;
  }
}

@media (max-width: 720px) {
  .hero-inner {
    gap: 28px;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 7vw, 3rem);
  }

  .cards-grid,
  .timeline-grid,
  .stat-grid,
  .reviews-grid,
  .final-stats {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 48px 16px;
  }
}
