@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Montserrat:wght@700;800;900&display=swap");

:root {
  --base: #1e0a3c;
  --base-deep: #130628;
  --base-soft: rgba(30, 10, 60, 0.82);
  --violet: #6f2dbd;
  --violet-soft: rgba(111, 45, 189, 0.45);
  --cta: #ff5a00;
  --cta-hot: #ff8a00;
  --text: #f8f9fa;
  --muted: rgba(248, 249, 250, 0.72);
  --muted-strong: rgba(248, 249, 250, 0.86);
  --panel: rgba(19, 6, 40, 0.72);
  --panel-strong: rgba(248, 249, 250, 0.08);
  --line: rgba(111, 45, 189, 0.58);
  --glow: 0 0 26px rgba(255, 90, 0, 0.38);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 8%, rgba(111, 45, 189, 0.34), transparent 34%),
    radial-gradient(circle at 86% 18%, rgba(255, 90, 0, 0.16), transparent 28%),
    var(--base);
  font-family: "Inter", "Plus Jakarta Sans", Arial, Helvetica, sans-serif;
}

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

h1,
h2,
h3,
.brand,
.section-heading h2,
.form-head strong {
  font-family: "Montserrat", "Inter", Arial, Helvetica, sans-serif;
  font-weight: 900;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--text);
  background: linear-gradient(180deg, rgba(19, 6, 40, 0.94), rgba(30, 10, 60, 0.58) 72%, rgba(30, 10, 60, 0));
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 90, 0, 0.55);
  border-radius: 8px;
  color: var(--text);
  background: linear-gradient(135deg, var(--cta), var(--violet));
  box-shadow: var(--glow);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 800;
}

.nav a:not(.nav-cta) {
  color: var(--muted-strong);
}

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

.nav-cta,
.button,
a[href*="wa.me"],
button[type="submit"] {
  border: 0;
  border-radius: 8px;
  color: var(--text);
  background: linear-gradient(135deg, var(--cta), var(--cta-hot));
  box-shadow: var(--glow);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.nav-cta:hover,
.button:hover,
a[href*="wa.me"]:hover,
button[type="submit"]:hover {
  transform: scale(1.05);
  box-shadow: 0 0 36px rgba(255, 90, 0, 0.62), 0 16px 34px rgba(255, 90, 0, 0.22);
  filter: saturate(1.08);
}

.nav-cta {
  padding: 10px 14px;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background: var(--base);
}

.slides,
.slide {
  position: absolute;
  inset: 0;
}

.slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 620ms ease, visibility 620ms ease;
}

.slide.is-active {
  opacity: 1;
  visibility: visible;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.02);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19, 6, 40, 0.96) 0%, rgba(30, 10, 60, 0.82) 46%, rgba(30, 10, 60, 0.34) 100%),
    linear-gradient(0deg, rgba(30, 10, 60, 0.84), rgba(111, 45, 189, 0.22));
}

.slide-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(760px, calc(100% - 36px));
  min-height: 92vh;
  flex-direction: column;
  justify-content: center;
  padding: 110px 0 96px clamp(18px, 8vw, 112px);
  color: var(--text);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cta);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--cta);
}

h1,
.slide-content h2 {
  margin-bottom: 18px;
  max-width: 720px;
  font-size: clamp(40px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.slide-content p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted-strong);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.52;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  font-weight: 900;
  cursor: pointer;
}

.button.secondary {
  border: 1px solid rgba(111, 45, 189, 0.72);
  color: var(--text);
  background: rgba(248, 249, 250, 0.08);
  box-shadow: none;
}

.button.secondary:hover {
  background: rgba(111, 45, 189, 0.28);
  box-shadow: 0 0 22px rgba(111, 45, 189, 0.38);
}

.dark-button {
  color: var(--text) !important;
  background: linear-gradient(135deg, var(--cta), var(--cta-hot)) !important;
  box-shadow: var(--glow) !important;
}

.dark-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 36px rgba(255, 90, 0, 0.62), 0 16px 34px rgba(255, 90, 0, 0.22) !important;
}

.slider-controls {
  position: absolute;
  right: clamp(18px, 5vw, 64px);
  bottom: 30px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
}

.slider-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(19, 6, 40, 0.72);
  cursor: pointer;
  font-size: 26px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.slider-arrow:hover {
  border-color: var(--cta);
  transform: scale(1.05);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(248, 249, 250, 0.42);
  cursor: pointer;
}

.slider-dots button.is-active {
  width: 26px;
  background: var(--cta);
  box-shadow: var(--glow);
}

.hero-panel,
.chart-card,
.proof-card,
.service-card,
.plan-card,
.addon-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-panel {
  position: absolute;
  right: clamp(22px, 6vw, 82px);
  top: 50%;
  z-index: 4;
  width: min(320px, 30vw);
  min-width: 270px;
  padding: 20px;
  color: var(--text);
  transform: translateY(-34%);
}

.panel-top,
.panel-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.panel-top span,
.panel-stats span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.panel-top strong {
  color: var(--cta);
  font-size: 36px;
  line-height: 1;
  text-shadow: 0 0 18px rgba(255, 90, 0, 0.42);
}

.mini-bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  height: 132px;
  gap: 10px;
  margin: 22px 0;
  padding: 14px 0 0;
  border-top: 1px solid rgba(111, 45, 189, 0.42);
}

.mini-bars span {
  display: block;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--cta), var(--violet));
}

.panel-stats {
  border-top: 1px solid rgba(111, 45, 189, 0.42);
  padding-top: 14px;
}

.panel-stats strong {
  display: block;
  color: var(--text);
  font-size: 12px;
  text-transform: uppercase;
}

.intro,
.services,
.proof,
.process,
.plans,
.addon,
.results,
.contact,
.future {
  padding: 80px clamp(18px, 5vw, 70px);
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(111, 45, 189, 0.12), rgba(30, 10, 60, 0) 44%),
    var(--base);
}

.intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1.1fr);
  gap: 42px;
  align-items: end;
}

.intro h2,
.section-heading h2,
.future h2,
.contact h2,
.results-copy h2,
.addon-copy h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.06;
}

.intro p:not(.eyebrow),
.future p,
.contact p,
.results-copy p:not(.eyebrow),
.addon-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.results {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  gap: 34px;
  align-items: center;
}

.results-copy h2,
.addon-copy h2 {
  margin-bottom: 16px;
}

.chart-card {
  overflow: hidden;
}

.chart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px 10px;
}

.chart-header span,
.chart-header small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.chart-header strong {
  display: block;
  margin-top: 5px;
  color: var(--text);
  font-size: 28px;
}

.chart-area {
  position: relative;
  height: 300px;
  margin: 0 24px;
  padding: 28px 10px 38px;
}

.chart-grid {
  position: absolute;
  inset: 28px 0 54px;
  background:
    linear-gradient(rgba(111, 45, 189, 0.32) 1px, transparent 1px) 0 0 / 100% 25%,
    linear-gradient(90deg, rgba(111, 45, 189, 0.26) 1px, transparent 1px) 0 0 / 16.6% 100%;
}

.bars {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  height: 100%;
  gap: 18px;
}

.bars span {
  position: relative;
  display: block;
  min-height: 46px;
  border-radius: 7px 7px 0 0;
  background: linear-gradient(180deg, rgba(255, 90, 0, 0.95), rgba(111, 45, 189, 0.84));
}

.bars b {
  position: absolute;
  left: 50%;
  bottom: -28px;
  color: var(--muted);
  font-size: 12px;
  transform: translateX(-50%);
}

.chart-line {
  position: absolute;
  inset: 22px 0 42px;
  z-index: 3;
  width: 100%;
  height: calc(100% - 64px);
  overflow: visible;
}

.chart-line polyline {
  fill: none;
  stroke: var(--cta);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 7;
  filter: drop-shadow(0 0 8px rgba(255, 90, 0, 0.62));
}

.chart-line circle {
  fill: var(--base);
  stroke: var(--cta);
  stroke-width: 5;
}

.chart-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(111, 45, 189, 0.42);
}

.chart-metrics span {
  padding: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  border-right: 1px solid rgba(111, 45, 189, 0.42);
}

.chart-metrics span:last-child {
  border-right: 0;
}

.chart-metrics strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 22px;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 16px;
}

.proof-card {
  min-height: 240px;
  padding: 24px;
}

.proof-main {
  background: linear-gradient(135deg, rgba(111, 45, 189, 0.72), rgba(19, 6, 40, 0.9) 58%, rgba(255, 90, 0, 0.22));
}

.proof-label,
.card-number {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--cta);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-card h3 {
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 1.08;
}

.proof-card p,
.service-card p,
.plan-card li,
.addon-card li {
  color: var(--muted);
  line-height: 1.6;
}

.testimonial-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.testimonial-row blockquote {
  margin: 0;
  border-left: 4px solid var(--cta);
  border-radius: 8px;
  padding: 22px 24px;
  background: var(--panel);
}

.testimonial-row p {
  margin-bottom: 14px;
  color: var(--muted-strong);
  font-size: 18px;
  line-height: 1.55;
}

.testimonial-row cite {
  color: var(--text);
  font-style: normal;
  font-weight: 900;
}

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

.service-grid,
.plan-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.plan-card {
  min-height: 230px;
  padding: 24px;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card h3,
.plan-card h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.12;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.timeline li {
  min-height: 160px;
  padding: 24px 22px;
  border-right: 1px solid var(--line);
}

.timeline li:last-child {
  border-right: 0;
}

.timeline strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 20px;
}

.timeline span {
  color: var(--muted);
  line-height: 1.5;
}

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

.plan-card {
  min-height: 280px;
}

.plan-card.featured {
  background: linear-gradient(135deg, rgba(111, 45, 189, 0.62), rgba(19, 6, 40, 0.92));
  box-shadow: 0 0 30px rgba(111, 45, 189, 0.32), var(--shadow);
}

.price {
  color: var(--cta);
  font-weight: 900;
}

.plan-card ul {
  margin: 22px 0 0;
  padding-left: 18px;
}

.addon {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 420px);
  gap: 28px;
  align-items: stretch;
}

.addon-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.addon-card {
  padding: 26px;
}

.addon-card h3 {
  margin-bottom: 12px;
  font-size: 26px;
}

.addon-card ul {
  margin: 22px 0 24px;
  padding-left: 18px;
}

.future {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1fr);
  gap: 34px;
  background:
    linear-gradient(135deg, rgba(255, 90, 0, 0.22), rgba(111, 45, 189, 0.34) 46%, rgba(19, 6, 40, 0.98)),
    var(--base);
}

.contact {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1fr);
  align-items: start;
  gap: clamp(30px, 5vw, 72px);
}

.contact-copy {
  max-width: 680px;
  padding-top: 18px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
}

.form-head {
  display: grid;
  gap: 4px;
  padding-bottom: 6px;
}

.form-head span {
  color: var(--cta);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.form-head strong {
  color: var(--text);
  font-size: 28px;
  line-height: 1.1;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 12px;
  color: var(--text);
  background: rgba(19, 6, 40, 0.78);
  font: inherit;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(248, 249, 250, 0.48);
}

.contact-form select option {
  color: var(--text);
  background: var(--base-deep);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cta);
  box-shadow: 0 0 0 3px rgba(255, 90, 0, 0.18), var(--glow);
}

.full-field {
  grid-column: 1 / -1;
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 70px);
  color: var(--text);
  background: var(--base-deep);
  border-top: 1px solid rgba(111, 45, 189, 0.42);
}

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

  .slide-content {
    padding-left: 24px;
  }

  .intro,
  .results,
  .future {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    display: none;
  }

  .addon {
    grid-template-columns: 1fr;
  }

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

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

  .timeline li:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    font-size: 14px;
  }

  .hero {
    min-height: 88vh;
  }

  .slide-content {
    min-height: 88vh;
    padding: 92px 18px 96px;
  }

  .slide-overlay {
    background: linear-gradient(90deg, rgba(19, 6, 40, 0.94), rgba(30, 10, 60, 0.64));
  }

  .slider-controls {
    left: 18px;
    right: auto;
  }

  .intro,
  .services,
  .proof,
  .process,
  .plans,
  .addon,
  .results,
  .contact,
  .future {
    padding: 58px 18px;
  }

  .service-grid,
  .proof-grid,
  .timeline,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .timeline li,
  .timeline li:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline li:last-child {
    border-bottom: 0;
  }

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

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .chart-area {
    height: 250px;
    margin: 0 14px;
  }

  .chart-header,
  .chart-metrics {
    grid-template-columns: 1fr;
  }

  .chart-header {
    flex-direction: column;
  }

  .chart-metrics span {
    border-right: 0;
    border-bottom: 1px solid rgba(111, 45, 189, 0.42);
  }

  .chart-metrics span:last-child {
    border-bottom: 0;
  }

  .button {
    width: 100%;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }
}
