:root {
  --bg: #ffffff;
  --bg-muted: #f7f5ff;
  --dark: #120820;
  --dark-2: #1c1030;
  --text: #20162f;
  --muted: #756985;
  --primary: #7c3cff;
  --primary-2: #a855f7;
  --accent: #16f1b8;
  --line: rgba(31, 18, 51, 0.1);
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(29, 12, 64, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
  display: block;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(18, 8, 32, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--white);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #10071e;
  font-weight: 900;
}

.brand-text {
  font-size: 1.25rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255,255,255,0.76);
  font-size: 0.94rem;
  font-weight: 600;
}

.desktop-nav a:hover {
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: rgba(255,255,255,0.1);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  background: var(--white);
  margin: 4px auto;
  border-radius: 20px;
}

.mobile-nav {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}

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

.btn-primary {
  color: #130821;
  background: linear-gradient(135deg, var(--accent), #d9ff70);
  box-shadow: 0 16px 35px rgba(22, 241, 184, 0.28);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.16);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
}

.btn-outline {
  color: var(--primary);
  background: #fff;
  border-color: rgba(124, 60, 255, 0.24);
}

.section {
  padding: 110px 0;
}

.section-dark {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(124, 60, 255, 0.5), transparent 32%),
    linear-gradient(180deg, var(--dark), var(--dark-2));
  overflow: hidden;
}

.hero {
  min-height: calc(100vh - 78px);
  padding: 96px 0 80px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.9fr 0.96fr;
  gap: 70px;
  align-items: center;
}

.eyebrow,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 800;
}

.eyebrow {
  color: var(--accent);
  background: rgba(22, 241, 184, 0.1);
  border: 1px solid rgba(22, 241, 184, 0.22);
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(22, 241, 184, .12);
}

.hero h1 {
  margin: 22px 0;
  max-width: 760px;
  font-size: 60px;
  line-height: .94;
  letter-spacing: -0.075em;
}

.hero-description {
  max-width: 650px;
  margin: 0 0 34px;
  color: rgba(255,255,255,0.72);
  font-size: 1.16rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 42px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 800px;
}

.hero-metrics div {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-metrics strong {
  display: block;
  font-size: 1.55rem;
  letter-spacing: -0.05em;
}

.hero-metrics span {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,0.58);
  font-size: .88rem;
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.phone-card {
  position: absolute;
  right: 38px;
  top: 0;
  width: min(390px, 100%);
  padding: 22px;
  border-radius: 42px;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 40px 100px rgba(0,0,0,0.38);
  backdrop-filter: blur(22px);
}

.phone-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255,255,255,0.1);
}

.avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #140822;
  font-weight: 900;
}

.phone-header strong,
.phone-header span {
  display: block;
}

.phone-header span {
  margin-top: 2px;
  color: rgba(255,255,255,0.55);
  font-size: .85rem;
}

.chat-area {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px 0;
}

.message {
  max-width: 84%;
  padding: 13px 15px;
  border-radius: 18px;
  font-size: .92rem;
  line-height: 1.4;
}

.message.bot {
  align-self: flex-start;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.1);
}

.message.user {
  align-self: flex-end;
  color: #130821;
  background: var(--accent);
}

.message.success {
  border: 1px solid rgba(22, 241, 184, .24);
}

.deal-card {
  padding: 20px;
  border-radius: 26px;
  color: #120820;
  background: var(--white);
}

.deal-card span,
.deal-card small {
  display: block;
  color: #7a7186;
  font-weight: 700;
}

.deal-card strong {
  display: block;
  margin: 8px 0;
  font-size: 2rem;
  letter-spacing: -0.06em;
}

.floating-card {
  position: absolute;
  z-index: 3;
  padding: 18px 20px;
  border-radius: 22px;
  color: var(--white);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 60px rgba(0,0,0,.22);
}

.floating-card span,
.floating-card strong {
  display: block;
}

.floating-card span {
  color: rgba(255,255,255,.64);
  font-size: .8rem;
  font-weight: 700;
}

.floating-card strong {
  margin-top: 5px;
  font-size: 1.6rem;
  letter-spacing: -.05em;
}

.card-one {
  left: 0;
  top: 120px;
}

.card-two {
  right: 0;
  bottom: 100px;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  opacity: .6;
}

.hero-bg-orb-two {
  width: 260px;
  height: 260px;
  left: -80px;
  bottom: 40px;
  background: rgba(124, 60, 255, .35);
}

.logos-section {
  padding: 34px 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.logos-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.logos-section p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.logos-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--bg-muted);
  color: var(--dark);
  font-size: .86rem;
  font-weight: 800;
}

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

.tag {
  color: var(--primary);
  background: rgba(124, 60, 255, .09);
}

.tag-light {
  color: var(--accent);
  background: rgba(22, 241, 184, .1);
}

.section-copy h2,
.section-heading h2,
.cta-band h2,
.contact-card h2 {
  margin: 18px 0;
  font-size: clamp(2.05rem, 4vw, 4.1rem);
  line-height: 1;
  letter-spacing: -.065em;
}

.section-copy p,
.section-heading p,
.cta-band p,
.contact-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.cta-band p {
  color: rgba(255,255,255,.7);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--primary);
  font-weight: 900;
}

.feature-panel {
  padding: 16px;
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.panel-row {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
}

.panel-row + .panel-row {
  border-top: 1px solid var(--line);
}

.icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  color: var(--primary);
  background: rgba(124, 60, 255, .1);
  font-weight: 900;
}

.panel-row h3,
.benefit-card h3,
.timeline-item h3,
.price-card h3 {
  margin: 0 0 8px;
  font-size: 1.24rem;
  letter-spacing: -.03em;
}

.panel-row p,
.benefit-card p,
.timeline-item p,
.price-card p,
.price-card li {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.muted {
  background: var(--bg-muted);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading.narrow {
  max-width: 680px;
}

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

.benefit-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 45px rgba(29, 12, 64, .06);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border-radius: 18px;
  background: var(--bg-muted);
  font-size: 1.3rem;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  top: 34px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(124,60,255,.35), transparent);
}

.timeline-item {
  position: relative;
  z-index: 2;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 45px rgba(29, 12, 64, .06);
}

.timeline-item span {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin-bottom: 24px;
  border-radius: 24px;
  color: #120820;
  background: linear-gradient(135deg, var(--accent), #eaff84);
  font-size: 1.3rem;
  font-weight: 900;
}

.cta-band {
  padding: 86px 0;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
}

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

.price-card {
  position: relative;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 55px rgba(29, 12, 64, .07);
}

.price-card.featured {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(22,241,184,.25), transparent 36%),
    linear-gradient(180deg, var(--dark), var(--dark-2));
  transform: translateY(-16px);
}

.price-card.featured p,
.price-card.featured li {
  color: rgba(255,255,255,.66);
}

.price-card .price {
  display: block;
  margin: 24px 0;
  font-size: 2rem;
  letter-spacing: -.06em;
}

.price-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.price-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--accent);
  font-weight: 900;
}

.badge {
  position: absolute;
  right: 24px;
  top: 24px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #110820;
  background: var(--accent);
  font-size: .75rem;
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  padding: 22px;
  border: 0;
  text-align: left;
  background: transparent;
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  float: right;
}

.faq-item.active button::after {
  content: "–";
}

.faq-item p {
  display: none;
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.65;
}

.faq-item.active p {
  display: block;
}

.contact-section {
  padding-top: 70px;
}

.contact-card {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 48px;
  padding: 48px;
  border-radius: 42px;
  background:
    radial-gradient(circle at top left, rgba(124, 60, 255, .12), transparent 35%),
    #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 800;
  font-size: .9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 15px 16px;
  color: var(--text);
  background: #fbfaff;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(124,60,255,.5);
  box-shadow: 0 0 0 4px rgba(124,60,255,.08);
}

#formFeedback {
  min-height: 20px;
  color: var(--primary);
  font-weight: 700;
}

.site-footer {
  padding: 70px 0 28px;
  color: var(--white);
  background: var(--dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 50px;
}

.footer-grid p {
  max-width: 360px;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
}

.footer-grid h4 {
  margin: 0 0 18px;
}

.footer-grid a:not(.brand) {
  display: block;
  margin: 10px 0;
  color: rgba(255,255,255,.62);
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.45);
  font-size: .9rem;
}

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

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

@media (max-width: 980px) {
  .desktop-nav,
  .header-actions .btn-ghost {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav.open {
    display: grid;
    gap: 10px;
    padding: 0 20px 20px;
    background: rgba(18,8,32,.98);
  }

  .mobile-nav a {
    padding: 14px;
    color: var(--white);
    border-radius: 14px;
    background: rgba(255,255,255,.06);
    font-weight: 800;
  }

  .mobile-cta {
    color: #120820 !important;
    background: var(--accent) !important;
  }

  .hero-grid,
  .two-columns,
  .cta-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: unset;
    padding-top: 70px;
  }

  .hero-visual {
    min-height: 580px;
  }

  .phone-card {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .cards-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline {
    grid-template-columns: repeat(6, 1fr);
  }

  .timeline-item:nth-child(1) { grid-column: 1 / span 2; }
  .timeline-item:nth-child(2) { grid-column: 3 / span 2; }
  .timeline-item:nth-child(3) { grid-column: 5 / span 2; }
  .timeline-item:nth-child(4) { grid-column: 2 / span 2; }
  .timeline-item:nth-child(5) { grid-column: 4 / span 2; }

  .hero-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .logos-section .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .header-inner {
    height: 70px;
  }

  .hero {
    padding: 54px 0 60px;
  }

  .hero h1 {
    font-size: 3rem;
  }

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

  .hero-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-grid,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .timeline-item:nth-child(n) {
    grid-column: auto;
  }

  .hero-visual {
    min-height: 540px;
  }

  .phone-card {
    width: 100%;
    padding: 16px;
    border-radius: 34px;
  }

  .floating-card {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

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

  .contact-card {
    padding: 28px;
    border-radius: 30px;
  }

  .timeline::before {
    display: none;
  }
}
