:root {
  --bg: #070B16;
  --panel: #0D1328;
  --text: #EAF0FF;
  --muted: rgba(234, 240, 255, .74);
  --border: rgba(255, 255, 255, .10);
  --blue: #2E63D6;
  --blue2: #4F7DFF;
  --shadow: 0 22px 60px rgba(0, 0, 0, .45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Outfit', system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 15% -5%, rgba(46, 99, 214, .15), transparent 50%),
    radial-gradient(1000px 600px at 85% 10%, rgba(79, 125, 255, .10), transparent 50%),
    radial-gradient(1200px 500px at 50% 100%, rgba(46, 99, 214, .08), transparent 60%),
    var(--bg);
  background-attachment: fixed;
}

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

p {
  line-height: 1.65;
}

.muted {
  color: var(--muted);
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(7, 11, 22, .70);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-name {
  font-weight: 800;
  letter-spacing: -.02em;
}

.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, .95);
  padding: 4px;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav a {
  color: rgba(234, 240, 255, .82);
  font-weight: 700;
  font-size: 14px;
  padding: 8px 10px;
  border-radius: 10px;
}

.nav a:hover {
  background: rgba(255, 255, 255, .06);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.burger {
  display: none;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .04);
  border-radius: 12px;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 2px;
  width: 18px;
  margin: 4px auto;
  background: rgba(234, 240, 255, .86);
  border-radius: 2px;
}

.mobile-nav {
  padding: 10px 0 18px;
  border-top: 1px solid var(--border);
}

.mobile-nav a {
  display: block;
  padding: 10px 0;
  color: rgba(234, 240, 255, .86);
}

.mobile-nav .btn {
  display: inline-flex;
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.section {
  padding: 74px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, 0));
  border-top: 1px solid rgba(255, 255, 255, .05);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.section-head h2 {
  margin: 0 0 10px;
  font-size: 34px;
  letter-spacing: -.02em;
}

.section-head p {
  margin: 0;
}

.hero {
  padding: 56px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items: stretch;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  color: rgba(234, 240, 255, .86);
  font-weight: 700;
  font-size: 13px;
}

.dot {
  width: 8px;
  height: 8px;
  background: var(--blue2);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(46, 99, 214, .18);
}

h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 54px;
  line-height: 1.05;
  letter-spacing: -.03em;
  margin: 14px 0 10px;
}

.accent {
  background: linear-gradient(90deg, #A9C6FF, #4F7DFF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 0 0 18px;
  font-size: 16.5px;
  color: rgba(234, 240, 255, .84);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 10px 0 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 900;
  letter-spacing: -.01em;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .12);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn-primary {
  background: linear-gradient(180deg, var(--blue2), var(--blue));
  border: none;
  box-shadow: 0 10px 30px rgba(46, 99, 214, 0.35);
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(46, 99, 214, .45);
}

.btn-ghost {
  background: rgba(255, 255, 255, .04);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .07);
  transform: translateY(-1px);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.trust-item {
  padding: 12px 12px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  background: rgba(255, 255, 255, .03);
}

.trust-item strong {
  display: block;
  font-size: 14px;
}

.trust-item span {
  display: block;
  color: rgba(234, 240, 255, .72);
  font-size: 12.5px;
  margin-top: 3px;
}

.hero-card {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .02));
  box-shadow: var(--shadow);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.badge {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(79, 125, 255, .18);
  border: 1px solid rgba(79, 125, 255, .35);
  font-weight: 900;
  font-size: 12px;
}

.mini-metrics {
  display: flex;
  gap: 10px;
}

.mini {
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(0, 0, 0, .18);
  min-width: 88px;
}

.mini .k {
  display: block;
  font-size: 11px;
  color: rgba(234, 240, 255, .70);
}

.mini .v {
  display: block;
  font-weight: 900;
  font-size: 16px;
  margin-top: 2px;
}

.chart {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  align-items: end;
  height: 130px;
}

.bar {
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(79, 125, 255, .85), rgba(46, 99, 214, .55));
  border: 1px solid rgba(255, 255, 255, .10);
}

.callout {
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(0, 0, 0, .18);
}

.callout-title {
  font-weight: 900;
  letter-spacing: -.01em;
}

.callout-text {
  color: rgba(234, 240, 255, .78);
  margin-top: 4px;
}

.logos {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding-top: 14px;
}

.logo-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.logo-strip span {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .04);
  color: rgba(234, 240, 255, .88);
  font-weight: 900;
  font-size: 13px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 18px;
}

/* Increased gap for arrows */
.panel,
.service,
.price-card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
  padding: 18px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.panel h3,
.service h3,
.price-card h3 {
  margin: 0 0 8px;
  letter-spacing: -.01em;
}

.panel p,
.service p {
  margin: 0;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card .btn {
  margin-top: auto;
}

.price-card h3 {
  margin-bottom: 0;
}

.price-card p {
  margin: 0;
}

.price-card .price {
  margin-top: 0;
}

.price-card ul {
  margin-top: 0;
}

.service {
  position: relative;
  overflow: visible;
}

.service-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 8px rgba(79, 125, 255, 0.4));
}

/* Flow Arrows for Desktop */
@media (min-width: 981px) {
  .service:not(:last-child)::after {
    content: "→";
    font-family: Inter, sans-serif;
    position: absolute;
    right: -30px;
    top: 40px;
    /* Align with icon roughly */
    font-size: 28px;
    color: var(--blue2);
    font-weight: 800;
    text-shadow: 0 0 10px rgba(79, 125, 255, 0.6);
    animation: pulseArrow 2s infinite ease-in-out;
  }
}

@keyframes pulseArrow {

  0%,
  100% {
    transform: translateX(0);
    opacity: 0.8;
  }

  50% {
    transform: translateX(5px);
    opacity: 1;
  }
}

.service ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(234, 240, 255, .76);
  line-height: 1.7;
}

.service ul li {
  font-weight: 700;
}

.system-cta {
  margin-top: 16px;
  border-radius: 22px;
  border: 1px solid rgba(79, 125, 255, .30);
  background: linear-gradient(180deg, rgba(79, 125, 255, .14), rgba(255, 255, 255, .02));
  box-shadow: 0 0 35px rgba(79, 125, 255, 0.25);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.step {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
  padding: 18px;
}

.step-num {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(79, 125, 255, .16);
  border: 1px solid rgba(79, 125, 255, .26);
  font-weight: 900;
  margin-bottom: 10px;
}

.pricing {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

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

.price-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(234, 240, 255, .76);
  line-height: 1.7;
}

.price {
  font-size: 18px;
  margin-top: 10px;
}

.price strong {
  font-size: 26px;
  letter-spacing: -.02em;
}

.featured {
  background: linear-gradient(180deg, rgba(46, 99, 214, .20), rgba(255, 255, 255, .02));
  border-color: rgba(79, 125, 255, .35);
}

.featured-tag {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(79, 125, 255, .20);
  border: 1px solid rgba(79, 125, 255, .35);
  font-weight: 900;
  font-size: 12px;
  margin-bottom: 10px;
}

.bundle {
  margin-top: 14px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(79, 125, 255, .30);
  background: linear-gradient(180deg, rgba(46, 99, 214, .14), rgba(255, 255, 255, .02));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.bundle-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(234, 240, 255, .76);
  line-height: 1.7;
}

.audit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.checklist {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(234, 240, 255, .76);
  line-height: 1.8;
}

.local-box {
  margin-top: 14px;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(0, 0, 0, .18);
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.local-box strong {
  font-weight: 900;
}

.form {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .04);
  padding: 18px;
}

.form-title {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -.02em;
}

.req {
  color: rgba(234, 240, 255, .86);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.form-grid label {
  display: block;
  font-weight: 800;
  font-size: 13px;
  color: rgba(234, 240, 255, .86);
}

input,
select,
textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(0, 0, 0, .22);
  color: var(--text);
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(79, 125, 255, .55);
  box-shadow: 0 0 0 4px rgba(79, 125, 255, .16);
}

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

.form-success {
  margin-top: 10px;
  color: rgba(186, 255, 224, .92);
  font-weight: 900;
}

.fineprint {
  color: rgba(234, 240, 255, .62);
  font-size: 12.5px;
  margin-top: 10px;
}

.faq {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

details {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(255, 255, 255, .03);
  padding: 12px 14px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 8px 0 0;
  color: rgba(234, 240, 255, .76);
}

.pricing-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price-acc {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  padding: 0;
  overflow: visible;
  transition: all 0.3s ease;
  box-shadow: none;
}

.price-acc:hover {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.2);
  transform: none;
  box-shadow: none;
}

.price-acc[open] {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
}

.price-acc>summary {
  list-style: none;
  cursor: pointer;
}

details>summary {
  list-style: none !important;
}

details>summary::-webkit-details-marker {
  display: none !important;
}

.acc-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  transition: all 0.3s ease;
  user-select: none;
}

.price-acc[open] .acc-summary {
  padding-bottom: 20px;
}

.acc-summary .title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 3.2rem;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  line-height: 1.1;
  transition: color 0.3s ease;
}

.price-acc:hover .acc-summary .title,
.price-acc[open] .acc-summary .title {
  color: #fff;
}

.acc-summary .price-tag {
  font-family: 'Outfit', sans-serif;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: normal;
}

.acc-icon {
  font-size: 40px;
  font-weight: 200;
  line-height: 1;
  color: rgba(255, 255, 255, 0.35);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
}

.price-acc:hover .acc-icon {
  color: rgba(255, 255, 255, 0.8);
}

.price-acc[open] .acc-icon {
  transform: rotate(45deg);
  color: var(--blue2);
}

.acc-content {
  padding: 0 0 40px 0;
  border: none;
  animation: fade-in 0.4s ease forwards;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.acc-content ul {
  padding-left: 20px;
  margin: 0 0 20px;
  color: rgba(234, 240, 255, 0.85);
  line-height: 1.6;
  font-size: 15px;
}

.acc-content ul li {
  margin-bottom: 12px;
}

.acc-content .btn {
  margin-top: 8px;
  background: linear-gradient(180deg, var(--blue2), var(--blue));
  box-shadow: 0 10px 30px rgba(46, 99, 214, 0.25);
  border: none;
  font-size: 1.05rem;
  padding: 12px 16px;
  border-radius: 14px;
}

.acc-content .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(46, 99, 214, 0.45);
}

@media (max-width: 980px) {
  .acc-summary {
    padding: 16px 14px;
  }

  .acc-summary .title {
    font-size: 15px;
  }

  .acc-summary .price-tag {
    font-size: 14px;
  }

  .acc-content {
    padding: 0 14px 20px;
  }

  .acc-icon {
    font-size: 20px;
  }
}

.footer {
  padding: 40px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: rgba(0, 0, 0, .18);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 14px;
  align-items: start;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-bottom {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

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

  .burger {
    display: block;
  }

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

  h1 {
    font-size: 44px;
  }

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

  .grid-3,
  .grid-2,
  .grid-4,
  .steps {
    grid-template-columns: 1fr;
  }

  .pricing-2x2 {
    grid-template-columns: 1fr;
  }

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

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

  .header-cta .btn {
    display: none;
  }
}

/* Dynamic Interactions */
.panel:hover,
.service:hover,
.price-card:hover,
.step:hover,
.trust-item:hover {
  transform: translateY(-5px);
  border-color: rgba(79, 125, 255, .4);
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 14px 40px -12px rgba(0, 0, 0, .6);
}

.trust-item,
.step {
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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