:root {
  --bg: #070b17;
  --bg-soft: #0d1326;
  --surface: #11192f;
  --surface-soft: #0f172b;
  --line: #253052;
  --text: #e9efff;
  --muted: #9ba8cd;
  --primary: #5a6cff;
  --primary-2: #21b8ff;
  --accent: #ff59c7;
  --radius: 16px;
  --radius-lg: 22px;
  --shadow: 0 24px 60px rgba(3, 7, 19, 0.58);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 15% -20%, #1d2458 0%, transparent 35%),
    radial-gradient(circle at 80% 0%, #113459 0%, transparent 30%), var(--bg);
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.75rem;
  line-height: 1.2;
  font-family: "Sora", "Avenir Next", sans-serif;
  letter-spacing: -0.02em;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

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

.container {
  width: min(1120px, calc(100% - 2.75rem));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 5.5rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(13, 19, 38, 0.5), rgba(13, 19, 38, 0));
}

.ambient {
  position: fixed;
  inset: auto;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  filter: blur(110px);
  pointer-events: none;
  z-index: -1;
}

.ambient-1 {
  background: rgba(98, 121, 255, 0.24);
  top: -120px;
  left: -100px;
}

.ambient-2 {
  background: rgba(0, 170, 255, 0.18);
  right: -130px;
  top: 40%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(7, 11, 23, 0.74);
  border-bottom: 1px solid rgba(109, 131, 201, 0.16);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand-logo {
  width: clamp(170px, 18vw, 255px);
  height: auto;
  display: block;
  filter: drop-shadow(0 0 16px rgba(82, 176, 255, 0.22));
}

.main-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
}

.main-nav a {
  font-size: 0.94rem;
  color: #c8d3f8;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: #ffffff;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 5px;
  background: #f0f4ff;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  color: #fff;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 30px rgba(35, 80, 192, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(35, 80, 192, 0.52);
}

.btn-ghost {
  background: rgba(20, 31, 58, 0.6);
  border-color: rgba(99, 122, 189, 0.42);
  box-shadow: none;
}

.btn-small {
  padding: 0.62rem 1rem;
}

.hero {
  padding-top: 5.2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin-bottom: 0.95rem;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #85b4ff;
}

.hero-copy h1 {
  max-width: 15ch;
  font-size: clamp(2.1rem, 5vw, 3.4rem);
}

.hero-copy h1 span {
  display: inline-block;
  background: linear-gradient(95deg, #8f8bff, #58d0ff 55%, #ff6bcf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  max-width: 54ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.8rem 0 1.4rem;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.proof-row div {
  background: rgba(17, 25, 47, 0.6);
  border: 1px solid rgba(87, 109, 170, 0.34);
  border-radius: 12px;
  padding: 0.75rem;
}

.proof-row strong {
  display: block;
  font-size: 0.9rem;
  color: #fff;
}

.proof-row span {
  font-size: 0.78rem;
  color: var(--muted);
}

.hero-panel {
  border: 1px solid rgba(101, 122, 186, 0.45);
  background: linear-gradient(170deg, rgba(18, 27, 52, 0.92), rgba(8, 12, 25, 0.94));
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.pill {
  border: 1px solid rgba(95, 122, 205, 0.5);
  background: rgba(83, 108, 255, 0.14);
  color: #d8e3ff;
  border-radius: 999px;
  font-size: 0.73rem;
  padding: 0.3rem 0.62rem;
}

.panel-status {
  color: #7be4a1;
  font-size: 0.73rem;
  font-weight: 600;
}

.panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.metric-card {
  border: 1px solid rgba(98, 117, 180, 0.45);
  border-radius: 12px;
  padding: 0.8rem;
  background: rgba(14, 22, 43, 0.65);
}

.metric-card h3 {
  margin-bottom: 0.3rem;
  font-size: 0.8rem;
  color: #b6c7f6;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
}

.metric-card p {
  margin-bottom: 0.1rem;
  color: #fff;
  font-size: 1.22rem;
  font-weight: 700;
}

.metric-card span {
  font-size: 0.72rem;
  color: #8fa0cc;
}

.sparkline {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 0.4rem;
  align-items: end;
  min-height: 70px;
}

.sparkline span {
  background: linear-gradient(180deg, rgba(74, 201, 255, 0.95), rgba(84, 106, 255, 0.15));
  border-radius: 99px;
}

.sparkline span:nth-child(1) {
  height: 16px;
}
.sparkline span:nth-child(2) {
  height: 20px;
}
.sparkline span:nth-child(3) {
  height: 18px;
}
.sparkline span:nth-child(4) {
  height: 28px;
}
.sparkline span:nth-child(5) {
  height: 26px;
}
.sparkline span:nth-child(6) {
  height: 30px;
}
.sparkline span:nth-child(7) {
  height: 40px;
}
.sparkline span:nth-child(8) {
  height: 52px;
}
.sparkline span:nth-child(9) {
  height: 58px;
}
.sparkline span:nth-child(10) {
  height: 68px;
}

.trusted {
  margin-top: 2.4rem;
  border-top: 1px solid rgba(71, 88, 141, 0.38);
  padding-top: 1.2rem;
  text-align: center;
}

.trusted p {
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.trusted ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
  color: #cad5f8;
  font-size: 0.84rem;
}

.section-head {
  text-align: center;
  margin-bottom: 2.2rem;
}

.section-head h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.section-head p {
  max-width: 64ch;
  margin-inline: auto;
}

.left-align {
  text-align: left;
}

.left-align p {
  margin-inline: 0;
}

.service-grid,
.steps-grid,
.portfolio-grid,
.results-grid,
.report-grid,
.pricing-grid,
.testimonial-grid {
  display: grid;
  gap: 1rem;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.portfolio-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.results-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 1rem;
}

.report-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card,
.step-card,
.portfolio-card,
.result-panel,
.report-card,
.testimonial-card,
.price-card {
  border: 1px solid rgba(91, 112, 177, 0.42);
  background: linear-gradient(170deg, rgba(17, 25, 47, 0.78), rgba(12, 18, 34, 0.72));
  border-radius: var(--radius);
  padding: 1.1rem;
}

.service-card h3,
.step-card h3,
.portfolio-card h3,
.result-panel h3,
.report-card h3,
.price-card h3,
.testimonial-card h3 {
  font-size: 1.05rem;
}

.service-media {
  margin-bottom: 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(90, 112, 180, 0.5);
  background: rgba(8, 14, 28, 0.75);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.service-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.service-card ul,
.price-card ul,
.check-list,
.vertical-list,
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-card li,
.price-card li,
.check-list li,
.vertical-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.5rem;
  color: #c7d4f8;
  font-size: 0.9rem;
}

.service-card li::before,
.price-card li::before,
.check-list li::before,
.vertical-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--primary-2), var(--primary));
}

.step-card span {
  display: inline-flex;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
  color: #89b3ff;
}

.pill-soft {
  display: inline-flex;
  border: 1px solid rgba(108, 130, 200, 0.45);
  background: rgba(73, 98, 175, 0.2);
  color: #bdd0ff;
  border-radius: 999px;
  padding: 0.22rem 0.58rem;
  font-size: 0.72rem;
  margin-bottom: 0.8rem;
}

.growth-chart {
  border: 1px solid rgba(92, 117, 183, 0.42);
  background: linear-gradient(170deg, rgba(18, 28, 54, 0.8), rgba(10, 15, 31, 0.75));
  border-radius: var(--radius-lg);
  padding: 1rem;
  overflow: hidden;
}

.chart-top {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  margin-bottom: 0.9rem;
}

.chart-top div {
  border: 1px solid rgba(93, 114, 181, 0.4);
  border-radius: 10px;
  padding: 0.65rem;
  background: rgba(11, 17, 33, 0.68);
}

.chart-top span {
  display: block;
  font-size: 0.72rem;
  color: #95a7d3;
}

.chart-top strong {
  font-size: 1.12rem;
}

.chart-line {
  position: relative;
  height: 180px;
  border-radius: 14px;
  border: 1px solid rgba(79, 100, 161, 0.34);
  background:
    linear-gradient(to top, rgba(82, 105, 255, 0.17), transparent 60%),
    repeating-linear-gradient(
      to right,
      rgba(75, 92, 143, 0.23),
      rgba(75, 92, 143, 0.23) 1px,
      transparent 1px,
      transparent 54px
    ),
    repeating-linear-gradient(
      to bottom,
      rgba(75, 92, 143, 0.2),
      rgba(75, 92, 143, 0.2) 1px,
      transparent 1px,
      transparent 36px
    );
}

.chart-line::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1.1rem;
  height: 120px;
  border-radius: 999px;
  border: 2px solid transparent;
  border-top-color: #59cbff;
  border-right-color: #7283ff;
  transform: skewX(-15deg);
  filter: drop-shadow(0 0 12px rgba(70, 176, 255, 0.45));
}

.report-card table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.86rem;
}

.report-card th,
.report-card td {
  border-bottom: 1px solid rgba(83, 101, 158, 0.35);
  padding: 0.65rem 0;
  text-align: left;
  color: #cad7ff;
}

.report-card th {
  color: #8fa7de;
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.positive {
  color: #80e9ad;
}

.score-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.score-list li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(83, 101, 158, 0.35);
  padding: 0.55rem 0;
}

.score-list span {
  color: #cad7ff;
}

.score-list strong {
  color: #ffffff;
}

.mt-2 {
  margin-top: 1.6rem;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #d4dffc;
}

.testimonial-card span {
  color: #8fa1ce;
  font-size: 0.82rem;
}

.price-card {
  position: relative;
}

.price-card .price {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 0.3rem;
}

.price-card .sub {
  color: #99acd8;
  font-size: 0.85rem;
}

.price-card .btn {
  width: 100%;
  margin-top: 0.9rem;
}

.price-card.featured {
  border-color: rgba(121, 142, 255, 0.75);
  box-shadow: 0 20px 40px rgba(39, 64, 158, 0.45);
}

.tag {
  display: inline-flex;
  padding: 0.2rem 0.62rem;
  border-radius: 999px;
  font-size: 0.72rem;
  border: 1px solid rgba(120, 144, 255, 0.75);
  background: rgba(85, 107, 232, 0.22);
  color: #ccd8ff;
  margin-bottom: 0.6rem;
}

.faq-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.2rem;
  align-items: start;
}

.faq-list {
  border: 1px solid rgba(91, 112, 177, 0.42);
  border-radius: var(--radius-lg);
  background: linear-gradient(170deg, rgba(17, 25, 47, 0.8), rgba(12, 18, 34, 0.75));
  padding: 0.5rem 0.9rem;
}

details {
  border-bottom: 1px solid rgba(82, 100, 158, 0.35);
  padding: 0.75rem 0.2rem;
}

details:last-child {
  border-bottom: 0;
}

summary {
  cursor: pointer;
  font-weight: 600;
  color: #dce6ff;
}

details p {
  margin: 0.55rem 0 0;
  color: #99acd8;
  font-size: 0.92rem;
}

.cta-band {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.cta-inner {
  text-align: center;
  border: 1px solid rgba(95, 117, 188, 0.48);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.4rem;
  background: radial-gradient(circle at 20% 0%, rgba(99, 119, 242, 0.2), transparent 45%),
    radial-gradient(circle at 80% 40%, rgba(59, 199, 255, 0.15), transparent 45%),
    rgba(11, 16, 30, 0.85);
}

.cta-inner h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.cta-inner p {
  max-width: 62ch;
  margin-inline: auto;
}

.site-footer {
  border-top: 1px solid rgba(75, 95, 153, 0.35);
  background: #090f1e;
  padding-top: 2.5rem;
}

.site-footer .brand-logo {
  width: clamp(160px, 16vw, 220px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.4rem;
}

.site-footer h3 {
  margin-bottom: 0.65rem;
  font-size: 0.96rem;
}

.site-footer li {
  margin-bottom: 0.42rem;
  color: #a2b3db;
  font-size: 0.9rem;
}

.footer-base {
  padding: 1.3rem 0 1.8rem;
}

.footer-base p {
  margin: 0;
  font-size: 0.82rem;
  color: #7e8fb8;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1020px) {
  .hero-grid,
  .faq-wrap,
  .report-grid,
  .results-grid,
  .service-grid,
  .steps-grid,
  .portfolio-grid,
  .pricing-grid,
  .footer-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .proof-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .main-nav {
    position: fixed;
    top: 74px;
    right: 1.2rem;
    left: 1.2rem;
    background: rgba(8, 13, 26, 0.97);
    border: 1px solid rgba(80, 101, 164, 0.45);
    border-radius: 14px;
    padding: 0.95rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-block;
  }

  .btn-small {
    width: 100%;
  }

  .chart-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .container {
    width: min(1120px, calc(100% - 1.4rem));
  }

  .section {
    padding: 4rem 0;
  }

  .hero {
    padding-top: 4.3rem;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .chart-top {
    grid-template-columns: 1fr;
  }
}
