﻿:root {
  --bg: #f2f5ff;
  --surface: #ffffff;
  --surface-strong: #e9efff;
  --primary: #1d3bd2;
  --primary-deep: #12257f;
  --accent: #ff5c3f;
  --text: #10203a;
  --text-muted: #495a79;
  --line: rgba(18, 37, 127, 0.14);
  --shadow: 0 24px 70px rgba(14, 31, 92, 0.16);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --ease: 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

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

.bg-glow {
  position: fixed;
  z-index: -3;
  filter: blur(70px);
  pointer-events: none;
}

.bg-glow--one {
  width: 580px;
  height: 580px;
  border-radius: 50%;
  top: -210px;
  left: -120px;
  background: rgba(61, 93, 224, 0.46);
  animation: floatA 14s infinite alternate ease-in-out;
}

.bg-glow--two {
  width: 500px;
  height: 500px;
  border-radius: 50%;
  top: 35%;
  right: -140px;
  background: rgba(255, 92, 63, 0.22);
  animation: floatB 16s infinite alternate ease-in-out;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: radial-gradient(rgba(16, 32, 58, 0.06) 0.6px, transparent 0.6px);
  background-size: 5px 5px;
  opacity: 0.18;
  pointer-events: none;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(242, 245, 255, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.topbar__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand__logo {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 22px rgba(21, 43, 137, 0.26);
}

.brand__name {
  font-size: 1.06rem;
}

.menu {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  margin-left: auto;
  margin-right: 1rem;
}

.menu a {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--ease);
}

.menu a:hover,
.menu a:focus-visible {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 0.46rem 0.8rem;
  border-radius: 10px;
  color: var(--text);
  font-weight: 700;
}

.btn {
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0.82rem 1.4rem;
  background: linear-gradient(140deg, var(--primary), #3557ed);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
  box-shadow: 0 12px 34px rgba(29, 59, 210, 0.28);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(29, 59, 210, 0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--primary);
  border: 1px solid rgba(29, 59, 210, 0.28);
  box-shadow: none;
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: rgba(29, 59, 210, 0.08);
}

.btn--small {
  padding: 0.63rem 1.06rem;
  font-size: 0.88rem;
}

.hero {
  padding: 4.3rem 0 2.4rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.1rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

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

h1 {
  font-size: clamp(1.8rem, 1.9vw + 1.15rem, 3rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(1.65rem, 1.35vw + 1.2rem, 2.55rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.16rem;
  line-height: 1.25;
}

.hero__lead {
  margin-top: 1.05rem;
  color: var(--text-muted);
  max-width: 64ch;
}

.hero__actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero__chips {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
}

.hero__chips li {
  padding: 0.5rem 0.8rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-card {
  background: linear-gradient(180deg, #ffffff, #eff3ff);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.hero-card__head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-weight: 700;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #13c36c;
  box-shadow: 0 0 0 5px rgba(19, 195, 108, 0.2);
}

.hero-card__content {
  display: grid;
  gap: 0.68rem;
}

.dialog {
  padding: 0.72rem 0.82rem;
  border-radius: 12px;
  font-size: 0.92rem;
}

.dialog--bot {
  background: #eef2ff;
  border: 1px solid rgba(29, 59, 210, 0.17);
}

.dialog--ai {
  background: #ffffff;
  border: 1px solid rgba(255, 92, 63, 0.25);
}

.hero-card__meta {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.hero-card__meta article {
  background: #fff;
  border-radius: 12px;
  padding: 0.65rem;
  border: 1px solid var(--line);
}

.metric {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--primary);
}

.hero-card__meta article p:last-child {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.stats {
  padding: 1rem 0 1.8rem;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.stat-card__value {
  color: var(--primary);
  font-size: 1.45rem;
  font-weight: 900;
}

.stat-card__label {
  margin-top: 0.33rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.section {
  padding: 3.9rem 0;
}

.section--contrast {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(233, 239, 255, 0.78));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section__head {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1.55rem;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
}

.card p {
  margin-top: 0.62rem;
  color: var(--text-muted);
}

.card:hover,
.card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(29, 59, 210, 0.36);
  box-shadow: 0 16px 34px rgba(20, 33, 97, 0.14);
}

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

.effect-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.1rem;
}

.effect-card ul {
  margin: 0.85rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.55rem;
  color: var(--text-muted);
}

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

.compliance-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.15rem;
}

.compliance-card p {
  margin-top: 0.58rem;
  color: var(--text-muted);
}

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

.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  display: grid;
  gap: 0.75rem;
}

.price-card__name {
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.price-card__value {
  font-size: clamp(1.7rem, 1.3vw + 1.1rem, 2.1rem);
  font-weight: 900;
  color: var(--primary);
}

.price-card__value span {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-muted);
}

.price-card ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.48rem;
  color: var(--text-muted);
}

.price-card--featured {
  border-color: rgba(29, 59, 210, 0.52);
  background: linear-gradient(145deg, #ffffff, #e5ebff);
  box-shadow: 0 20px 36px rgba(19, 40, 112, 0.2);
}

.faq-list {
  display: grid;
  gap: 0.62rem;
}

.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  margin-top: 0.7rem;
  color: var(--text-muted);
}

.faq-steps {
  margin: 0.7rem 0 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
  display: grid;
  gap: 0.45rem;
}

.faq {
  padding-bottom: 2.6rem;
}

.lead {
  padding-top: 2.6rem;
}

.lead__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
}

.lead__copy p {
  margin-top: 0.9rem;
  color: var(--text-muted);
}

.lead-brandmark {
  margin: 0 0 1rem;
}

.lead-brandmark__media {
  position: relative;
  width: min(210px, 62%);
  border-radius: 22px;
  border: 1px solid rgba(18, 37, 127, 0.22);
  box-shadow: 0 16px 34px rgba(15, 35, 105, 0.18);
  overflow: hidden;
}

.lead-brandmark__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(16, 32, 58, 0.08));
  pointer-events: none;
}

.lead-brandmark__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: saturate(0.94) contrast(0.98);
}

.contact-box {
  margin-top: 1.2rem;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 14px;
  padding: 1rem;
}

.contact-box p {
  margin-top: 0.56rem;
  font-size: 0.94rem;
}

.lead-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 1rem;
  display: grid;
  gap: 0.7rem;
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 0.36rem;
  font-weight: 700;
  font-size: 0.92rem;
}

.lead-form input:not([type="checkbox"]),
.lead-form select {
  border: 1px solid rgba(18, 37, 127, 0.22);
  border-radius: 11px;
  padding: 0.65rem 0.72rem;
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
}

.lead-form input:not([type="checkbox"]):focus-visible,
.lead-form select:focus-visible {
  outline: 2px solid rgba(29, 59, 210, 0.34);
  border-color: var(--primary);
}

.lead-form label.checkbox {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  column-gap: 0.58rem;
  margin-top: 0.1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.lead-form label.checkbox input {
  width: 1rem;
  height: 1rem;
  margin: 0.22rem 0 0;
  padding: 0;
  border: 0;
  flex: 0 0 auto;
  accent-color: var(--primary);
}

.lead-form label.checkbox span {
  display: block;
}

.checkbox a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.form-note {
  color: var(--text-muted);
  font-size: 0.83rem;
}

.form-status {
  min-height: 1.3rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.form-status.is-success {
  color: #0c8a4a;
}

.form-status.is-error {
  color: #ba2f2f;
}

.honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.footer {
  background: #10203a;
  color: #e8eeff;
  padding: 2rem 0 1rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1.1fr;
  gap: 1rem;
}

.footer p {
  margin-top: 0.45rem;
  color: #c6d4f7;
  font-size: 0.9rem;
}

.footer__brand {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
}

.footer__links {
  display: grid;
  gap: 0.55rem;
  align-content: flex-start;
}

.footer__links a {
  color: #e9eeff;
  font-weight: 600;
}

.footer__links a:hover,
.footer__links a:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.footer__bottom {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal].is-in-view {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatA {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(36px, 22px) scale(1.08);
  }
}

@keyframes floatB {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(-35px, -16px) scale(1.1);
  }
}

@media (max-width: 1080px) {
  .hero__grid,
  .lead__grid {
    grid-template-columns: 1fr;
  }

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

  .compliance,
  .footer__grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .topbar__inner {
    min-height: 68px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .menu {
    position: absolute;
    top: 68px;
    left: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.7rem;
    margin: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    box-shadow: var(--shadow);
  }

  .menu.is-open {
    display: flex;
  }

  .topbar .btn--small {
    display: none;
  }

  .brand__logo {
    width: 42px;
    height: 42px;
  }

  .lead-brandmark__media {
    width: min(200px, 72%);
  }

  .hero {
    padding-top: 3.2rem;
  }

  .hero-card__meta,
  .stats__grid,
  .cards,
  .effect-grid,
  .pricing {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3rem 0;
  }

  .faq {
    padding-bottom: 2rem;
  }

  .lead {
    padding-top: 2rem;
  }

  .container {
    width: min(1120px, calc(100% - 1.35rem));
  }
}
