:root {
  --ink: #101633;
  --ink-2: #28304f;
  --muted: #626b84;
  --blue: #1268ff;
  --violet: #7047ff;
  --magenta: #d51cdb;
  --cyan: #42d5ff;
  --lavender: #f5f3ff;
  --line: #e7e4f3;
  --white: #ffffff;
  --gradient: linear-gradient(112deg, var(--blue), var(--violet) 55%, var(--magenta));
  --shadow: 0 26px 80px rgba(72, 50, 165, .14);
  --shadow-sm: 0 12px 36px rgba(62, 45, 138, .09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  overflow-x: hidden;
  background: var(--white);
  color: var(--ink);
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; }
img { max-width: 100%; }
::selection { background: rgba(112, 71, 255, .2); color: var(--ink); }

.site-header {
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: .25s ease;
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 40px rgba(39, 31, 91, .07);
}
.navbar { min-height: 86px; padding: 0; }
.brand-logo, .footer-brand { display: inline-flex; }
.logo-crop {
  position: relative;
  display: block;
  width: 151px;
  height: 64px;
  overflow: hidden;
}
.logo-crop img {
  position: absolute;
  top: -14px;
  left: -8px;
  width: 169px;
  max-width: none;
}
.nav-link {
  position: relative;
  margin: 0 10px;
  padding: 14px 6px !important;
  color: var(--ink-2);
  font-size: .92rem;
  font-weight: 700;
}
.nav-link::after {
  position: absolute;
  right: 6px;
  bottom: 7px;
  left: 6px;
  height: 2px;
  border-radius: 10px;
  background: var(--gradient);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
.nav-link:hover, .nav-link.active { color: var(--ink); }
.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.navbar-toggler {
  display: flex;
  width: 46px;
  height: 46px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: none !important;
}
.navbar-toggler span {
  width: 20px;
  height: 2px;
  border-radius: 10px;
  background: var(--ink);
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 23px;
  border-radius: 15px;
  font-weight: 750;
  letter-spacing: -.02em;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gradient {
  border: 0;
  background: var(--gradient);
  box-shadow: 0 14px 34px rgba(96, 55, 230, .25);
  color: white !important;
}
.btn-gradient:hover { box-shadow: 0 18px 42px rgba(96, 55, 230, .34); }
.btn-light-custom {
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow-sm);
  color: var(--ink);
}
.btn-white {
  background: white;
  color: var(--ink);
  box-shadow: 0 16px 44px rgba(0, 0, 0, .2);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--violet);
  font-weight: 750;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.eyebrow {
  margin: 0 0 17px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.display-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.35rem, 6vw, 5.2rem);
  font-weight: 850;
  letter-spacing: -.065em;
  line-height: .99;
}
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead-copy {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}
.section-title {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 3.65rem);
  font-weight: 830;
  letter-spacing: -.055em;
  line-height: 1.04;
}

.hero {
  position: relative;
  min-height: 790px;
  padding: 152px 0 70px;
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 36%, rgba(112, 71, 255, .11), transparent 30%),
    radial-gradient(circle at 4% 90%, rgba(66, 213, 255, .12), transparent 26%),
    #fff;
}
.hero::before, .page-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(112, 71, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 71, 255, .035) 1px, transparent 1px);
  background-size: 70px 70px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}
.hero .container { position: relative; z-index: 2; }
.hero-copy { padding: 38px 0 45px; }
.hero-copy .lead-copy { max-width: 650px; margin: 27px 0 31px; }
.hero-actions { display: flex; align-items: center; gap: 26px; }
.service-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 17px;
  margin-top: 30px;
  color: var(--ink-2);
  font-size: .88rem;
  font-weight: 750;
}
.service-inline span:not(:last-child)::after {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 17px;
  border-radius: 50%;
  background: var(--violet);
  content: "";
  vertical-align: middle;
}
.hero-art {
  position: relative;
  display: flex;
  min-height: 570px;
  align-items: center;
  justify-content: center;
}
.hero-art::before {
  position: absolute;
  width: 86%;
  aspect-ratio: 1;
  border: 1px dashed rgba(112, 71, 255, .18);
  border-radius: 50%;
  content: "";
}
.hero-art img {
  position: relative;
  z-index: 2;
  width: 620px;
  max-width: 112%;
  filter: drop-shadow(0 28px 34px rgba(59, 41, 140, .13));
  animation: float 7s ease-in-out infinite;
}
.floating-stat {
  position: absolute;
  z-index: 3;
  min-width: 185px;
  padding: 14px 17px;
  border: 1px solid rgba(112, 71, 255, .13);
  border-radius: 17px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.floating-stat strong, .floating-stat span { display: block; }
.floating-stat strong { font-size: .9rem; }
.floating-stat span { margin-top: 3px; color: var(--muted); font-size: .75rem; }
.floating-stat.one { top: 18%; right: -2%; }
.floating-stat.two { bottom: 12%; left: -2%; }

.trust-ribbon {
  position: relative;
  z-index: 5;
  margin-top: -72px;
}
.trust-box {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow);
}
.trust-item {
  display: flex;
  min-height: 90px;
  align-items: center;
  gap: 14px;
  padding: 18px 23px;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: 0; }
.number-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: var(--lavender);
  color: var(--violet);
  font-size: .72rem;
  font-weight: 850;
}
.trust-item strong { font-size: .86rem; }

.section { padding: 110px 0; }
.section-lavender {
  background:
    radial-gradient(circle at 90% 10%, rgba(66, 213, 255, .13), transparent 25%),
    var(--lavender);
}
.section-dark {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 120%, rgba(18, 104, 255, .35), transparent 32%),
    radial-gradient(circle at 94% 0%, rgba(213, 28, 219, .23), transparent 32%),
    #0f142d;
  color: white;
}
.section-dark .section-title { color: white; }
.section-dark .lead-copy { color: #c2c7df; }
.section-dark .eyebrow { color: var(--cyan); -webkit-text-fill-color: var(--cyan); }
.section-heading { max-width: 780px; margin-bottom: 48px; }
.section-heading.center { margin-right: auto; margin-left: auto; text-align: center; }
.section-heading .lead-copy { max-width: 650px; margin: 19px 0 0; }
.section-heading.center .lead-copy { margin-right: auto; margin-left: auto; }

.service-card, .plan-card, .value-card, .bundle-card {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .8) inset;
}
.service-card {
  position: relative;
  min-height: 390px;
  padding: 29px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card::after {
  position: absolute;
  top: -75px;
  right: -75px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(112, 71, 255, .13), transparent 67%);
  content: "";
}
.service-card:hover {
  border-color: rgba(112, 71, 255, .26);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}
.service-card h3 {
  margin: 26px 0 12px;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -.03em;
}
.service-card > p {
  min-height: 76px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.66;
}
.check-list { display: grid; gap: 9px; padding: 0; margin: 0 0 23px; list-style: none; }
.check-list li { color: var(--ink-2); font-size: .87rem; }
.check-list li::before { margin-right: 9px; color: var(--violet); content: "✓"; font-weight: 900; }

.billing-switch {
  display: flex;
  width: fit-content;
  margin: 0 auto 42px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: white;
  box-shadow: var(--shadow-sm);
}
.billing-switch button {
  padding: 10px 16px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 750;
}
.billing-switch button.active { background: var(--ink); color: white; }
.billing-switch small { margin-left: 5px; color: var(--cyan); }
.billing-note { margin: -26px 0 35px; color: var(--muted); font-size: .78rem; text-align: center; }
.plan-card {
  position: relative;
  padding: 34px 29px;
  box-shadow: var(--shadow-sm);
}
.plan-card.featured {
  border-color: rgba(112, 71, 255, .36);
  box-shadow: 0 30px 80px rgba(81, 54, 191, .2);
  transform: translateY(-10px);
}
.plan-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--lavender);
  color: var(--violet);
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.plan-kicker { margin: 0 0 11px; color: var(--violet); font-size: .72rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.plan-card h3 { margin: 0; font-size: 2rem; font-weight: 850; letter-spacing: -.05em; }
.plan-price { display: flex; align-items: baseline; margin: 17px 0 13px; font-size: 2.62rem; font-weight: 850; letter-spacing: -.055em; }
.plan-price .currency { margin-right: 2px; font-size: 1.2rem; }
.plan-price small { margin-left: 6px; color: var(--muted); font-size: .74rem; font-weight: 600; letter-spacing: 0; }
.plan-description { min-height: 72px; color: var(--muted); font-size: .9rem; line-height: 1.62; }
.plan-card .btn { width: 100%; margin: 8px 0 22px; }
.price-note { max-width: 760px; margin: 28px auto 0; color: var(--muted); font-size: .78rem; line-height: 1.6; text-align: center; }

.process-row {
  display: grid;
  gap: 25px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 46px 1fr;
}
.process-row:first-child { border-top: 1px solid var(--line); }
.process-row h3 { margin: 3px 0 7px; font-size: 1.22rem; font-weight: 800; letter-spacing: -.03em; }
.process-row p { margin: 0; color: var(--muted); line-height: 1.66; }
.sticky-copy { position: sticky; top: 130px; }

.page-hero {
  position: relative;
  padding: 190px 0 105px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(112, 71, 255, .14), transparent 28%),
    linear-gradient(180deg, white, var(--lavender));
}
.page-hero .container { position: relative; z-index: 2; }
.page-title { margin: 0; font-size: clamp(3.1rem, 5.5vw, 4.85rem); font-weight: 850; letter-spacing: -.064em; line-height: 1; }
.page-hero .lead-copy { margin: 22px 0 0; }

.bundle-card { min-height: 285px; padding: 30px; }
.bundle-card h3 { margin: 39px 0 12px; font-size: 1.32rem; font-weight: 800; letter-spacing: -.03em; }
.bundle-card p { color: var(--muted); line-height: 1.65; }
.bundle-card .eyebrow { margin-bottom: 0; }

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow-sm);
}
.comparison-table { min-width: 760px; margin: 0; }
.comparison-table th, .comparison-table td {
  padding: 20px 23px;
  border-color: var(--line);
  color: var(--ink-2);
  font-size: .88rem;
}
.comparison-table thead th { background: #fbfaff; color: var(--ink); font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; }
.comparison-table thead th:nth-child(3) { background: rgba(112, 71, 255, .09); color: var(--violet); }
.accordion-item { border: 0; border-bottom: 1px solid var(--line); background: transparent; }
.accordion-button { padding: 23px 3px; background: transparent !important; box-shadow: none !important; color: var(--ink) !important; font-weight: 780; }
.accordion-button::after { filter: hue-rotate(205deg); }
.accordion-body { padding: 0 30px 23px 3px; color: var(--muted); line-height: 1.7; }

.playbook {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: white;
  box-shadow: var(--shadow-sm);
}
.playbook-visual {
  position: relative;
  display: grid;
  min-height: 430px;
  overflow: hidden;
  place-items: center;
  background:
    linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px),
    linear-gradient(135deg, var(--blue), var(--violet));
  background-size: 40px 40px, 40px 40px, auto;
}
.playbook.purple .playbook-visual { background: linear-gradient(135deg, var(--violet), var(--magenta)); }
.playbook.ink .playbook-visual { background: linear-gradient(135deg, #131936, var(--blue)); }
.mini-dashboard {
  display: flex;
  width: 70%;
  height: 56%;
  align-items: flex-end;
  justify-content: space-around;
  padding: 40px 32px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 24px;
  background: rgba(13,18,55,.27);
  box-shadow: 0 30px 70px rgba(10,14,48,.25);
  backdrop-filter: blur(14px);
  transform: rotate(-3deg);
}
.mini-dashboard i { width: 14%; border-radius: 9px 9px 3px 3px; background: rgba(255,255,255,.88); }
.mini-dashboard i:nth-child(1) { height: 28%; }
.mini-dashboard i:nth-child(2) { height: 45%; }
.mini-dashboard i:nth-child(3) { height: 64%; }
.mini-dashboard i:nth-child(4) { height: 88%; background: var(--cyan); }
.playbook-copy { display: flex; min-height: 430px; flex-direction: column; align-items: flex-start; justify-content: center; padding: 55px; }
.playbook-copy h2 { font-size: clamp(2.25rem, 4vw, 3.45rem); font-weight: 840; letter-spacing: -.055em; line-height: 1.04; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 28px; }
.tag-list span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: var(--lavender); color: var(--ink-2); font-size: .74rem; font-weight: 700; }

.value-card { padding: 33px; }
.value-card h3 { margin: 32px 0 10px; font-size: 1.28rem; font-weight: 810; }
.value-card p { margin: 0; color: var(--muted); line-height: 1.66; }
.manifesto {
  display: grid;
  gap: 12px 15px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: rgba(255,255,255,.83);
  box-shadow: var(--shadow);
  grid-template-columns: 54px 1fr;
  transform: rotate(2deg);
}
.manifesto b { display: grid; width: 49px; height: 49px; place-items: center; border-radius: 14px; background: var(--gradient); color: white; }
.manifesto span { align-self: center; font-weight: 780; }

.contact-section {
  min-height: 100vh;
  padding: 165px 0 105px;
  background:
    radial-gradient(circle at 15% 20%, rgba(18,104,255,.1), transparent 28%),
    radial-gradient(circle at 92% 80%, rgba(213,28,219,.1), transparent 26%),
    var(--lavender);
}
.contact-card {
  padding: 35px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
}
.contact-card-head { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.contact-card-head strong { font-size: 1.13rem; }
.contact-card-head span { color: var(--muted); font-size: .78rem; }
.form-label { color: var(--ink-2); font-size: .77rem; font-weight: 780; }
.form-control, .form-select {
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background-color: #fbfaff;
  font-size: .9rem;
}
textarea.form-control { min-height: 138px; }
.form-control:focus, .form-select:focus { border-color: var(--violet); box-shadow: 0 0 0 4px rgba(112,71,255,.1); }
.form-status { min-height: 24px; margin-top: 12px; font-size: .82rem; font-weight: 700; text-align: center; }
.form-status.success { color: #138a55; }
.form-status.error { color: #bd2e4a; }
.honeypot { position: absolute !important; left: -9999px !important; }
.contact-points { display: grid; gap: 13px; margin: 30px 0; }
.contact-point { display: flex; align-items: center; gap: 13px; font-size: .9rem; font-weight: 700; }

.site-footer { padding: 75px 0 25px; background: #0e132b; color: white; }
.footer-main { padding-bottom: 55px; }
.footer-brand .logo-crop { border-radius: 8px; }
.footer-intro { max-width: 390px; margin: 17px 0 0; color: #aeb3cf; line-height: 1.65; }
.footer-title { margin: 0 0 17px; color: #858baa; font-size: .7rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.site-footer .col-6 > a, .site-footer .col-lg-3 > a { display: block; width: fit-content; margin-bottom: 10px; color: #d9dcef; font-size: .88rem; }
.site-footer a:hover { color: var(--cyan); }
.footer-email { font-weight: 750; }
.footer-location { color: #858baa; font-size: .78rem; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.09); color: #7d83a3; font-size: .73rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin: 0 -12px;
    padding: 16px 12px 22px;
    border-top: 1px solid var(--line);
    background: rgba(255,255,255,.98);
  }
  .nav-link { margin: 0; padding: 13px 5px !important; border-bottom: 1px solid var(--line); }
  .nav-link::after { display: none; }
  .nav-cta { width: 100%; margin-top: 15px; }
  .hero { padding-top: 135px; }
  .hero-art { min-height: 480px; }
  .trust-ribbon { margin-top: 0; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .sticky-copy { position: static; margin-bottom: 35px; }
  .plan-card.featured { transform: none; }
  .page-hero { padding: 160px 0 85px; }
}

@media (max-width: 767.98px) {
  .navbar { min-height: 76px; }
  .logo-crop { width: 133px; height: 57px; }
  .logo-crop img { top: -12px; left: -7px; width: 149px; }
  .hero { min-height: auto; padding: 125px 0 35px; }
  .display-title, .page-title { font-size: clamp(2.7rem, 13vw, 3.6rem); }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .hero-actions .btn { width: 100%; }
  .hero-actions .text-link { justify-content: center; }
  .service-inline { justify-content: center; }
  .hero-art { min-height: 390px; }
  .floating-stat { min-width: 155px; padding: 11px 13px; }
  .floating-stat.one { top: 7%; right: 0; }
  .floating-stat.two { bottom: 4%; left: 0; }
  .trust-item { min-height: 77px; padding: 14px 12px; }
  .trust-item strong { font-size: .75rem; }
  .section { padding: 75px 0; }
  .section-title { font-size: 2.35rem; }
  .service-card { min-height: auto; }
  .service-card > p, .plan-description { min-height: auto; }
  .billing-switch { width: 100%; }
  .billing-switch button { flex: 1; }
  .playbook-visual { min-height: 310px; }
  .playbook-copy { min-height: auto; padding: 35px 26px; }
  .contact-section { padding: 130px 0 75px; }
  .contact-card { padding: 24px 18px; }
  .contact-card-head { align-items: flex-start; flex-direction: column; gap: 5px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
