:root {
  --bg: #f5f9ff;
  --surface: #ffffff;
  --surface-soft: #eef5ff;
  --text: #133150;
  --muted: #5d7290;
  --border: rgba(22, 79, 159, 0.10);
  --border-strong: rgba(37, 115, 221, 0.18);
  --primary: #1f6fe5;
  --primary-dark: #134ca6;
  --accent: #3c97ff;
  --deep: #0d2f59;
  --deep-2: #0b2142;
  --shadow-soft: 0 14px 40px rgba(19, 49, 80, 0.08);
  --shadow-card: 0 28px 70px rgba(12, 40, 77, 0.16);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

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

.demo-bar {
  background: linear-gradient(90deg, #16489c 0%, #1f6fe5 52%, #3a97ff 100%);
  color: #fff;
}

.demo-bar__inner {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.demo-bar__inner p {
  margin: 0;
  font-size: 0.96rem;
  font-weight: 600;
}

.demo-bar__inner a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  background: #fff;
  color: #16489c;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(21, 76, 166, 0.08);
}

.header-row {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img,
.site-footer img {
  width: 220px;
  height: auto;
}

.desktop-nav,
.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.desktop-nav a {
  font-weight: 600;
  color: #284b74;
}

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

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(21, 76, 166, 0.12);
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 6px 0;
  background: var(--deep);
  border-radius: 999px;
}

.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid rgba(21, 76, 166, 0.08);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu__inner {
  padding: 8px 0 20px;
  display: grid;
  gap: 4px;
}

.mobile-menu a:not(.btn) {
  padding: 14px 0;
  font-weight: 600;
  border-bottom: 1px solid rgba(21, 76, 166, 0.08);
}

.hero {
  position: relative;
  padding: 72px 0 56px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(60, 151, 255, 0.18), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(31, 111, 229, 0.16), transparent 22%),
    linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 44px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(31, 111, 229, 0.10);
  border: 1px solid rgba(31, 111, 229, 0.14);
  color: #1858b4;
  font-size: 0.92rem;
  font-weight: 700;
}

.pill--light {
  background: rgba(31, 111, 229, 0.08);
}

.hero h1,
.section-heading h2,
.process-copy h2,
.cta-card h2 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.hero h1 {
  margin-top: 22px;
  font-size: clamp(2.6rem, 4.8vw, 4.8rem);
  max-width: 760px;
}

.hero__lead,
.section-heading p,
.info-card p,
.pricing-card p,
.process-copy p,
.step-card p,
.cta-card p,
.metric-card span,
.dashboard-block p,
.status-banner p,
.site-footer p,
.site-footer li,
.site-footer a {
  color: var(--muted);
  line-height: 1.75;
}

.hero__lead {
  margin: 22px 0 0;
  font-size: 1.08rem;
  max-width: 690px;
}

.hero__actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

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

.btn-sm {
  min-height: 44px;
  padding: 0 18px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  box-shadow: 0 18px 35px rgba(31, 111, 229, 0.24);
}

.btn-secondary {
  background: #fff;
  color: var(--primary-dark);
  border: 1px solid rgba(21, 76, 166, 0.12);
  box-shadow: var(--shadow-soft);
}

.btn-light {
  background: rgba(255, 255, 255, 0.88);
  color: var(--primary-dark);
  border: 1px solid rgba(21, 76, 166, 0.12);
}

.btn-outline {
  background: #fff;
  color: var(--primary-dark);
  border: 1px solid rgba(21, 76, 166, 0.14);
}

.btn-block { width: 100%; }

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

.metric-card {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(21, 76, 166, 0.08);
  box-shadow: var(--shadow-soft);
}

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

.metric-card strong { font-size: 1rem; }
.metric-card span { margin-top: 8px; font-size: 0.94rem; }

.dashboard-card {
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  border: 1px solid rgba(21, 76, 166, 0.10);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.dashboard-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(21, 76, 166, 0.08);
  background: rgba(255, 255, 255, 0.88);
}

.dashboard-card__top small {
  color: #6a7f9c;
  font-weight: 700;
}

.dots { display: flex; gap: 8px; }
.dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(31, 111, 229, 0.22);
}

.dashboard-card__body { padding: 24px; }

.status-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(31, 111, 229, 0.08), rgba(60, 151, 255, 0.12));
  border: 1px solid rgba(31, 111, 229, 0.10);
}

.status-banner p { margin: 0; }

.status-banner__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #25b85a;
  box-shadow: 0 0 0 6px rgba(37, 184, 90, 0.10);
  flex: 0 0 auto;
}

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

.dashboard-block,
.price-preview > div {
  padding: 18px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(21, 76, 166, 0.08);
  box-shadow: var(--shadow-soft);
}

.dashboard-block--accent {
  background: linear-gradient(135deg, #174893 0%, #1f6fe5 100%);
  border-color: rgba(31, 111, 229, 0.20);
}

.dashboard-block--accent,
.dashboard-block--accent p,
.dashboard-block--accent strong,
.dashboard-block--accent span {
  color: #fff;
}

.dashboard-blocks__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.dashboard-block span,
.price-preview small,
.pricing-tag {
  color: #6b86ab;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dashboard-block--accent span { color: rgba(255,255,255,0.82); }

.dashboard-block strong {
  display: block;
  margin-top: 8px;
  font-size: 1.04rem;
}

.dashboard-block p { margin: 8px 0 0; }

.price-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.price-preview strong {
  display: block;
  margin-top: 8px;
  font-size: 1.55rem;
  color: var(--deep);
}

.price-preview strong span,
.price span {
  font-size: 0.94rem;
  color: inherit;
  opacity: 0.74;
  font-weight: 600;
}

.price-preview__featured {
  background: linear-gradient(135deg, rgba(23, 72, 147, 0.10), rgba(31, 111, 229, 0.12)) !important;
  border-color: rgba(31, 111, 229, 0.18) !important;
}

.trust-strip {
  padding: 0 0 22px;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.trust-strip__grid div {
  padding: 18px 16px;
  text-align: center;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(21, 76, 166, 0.08);
  box-shadow: var(--shadow-soft);
  color: #38597f;
}

.section { padding: 86px 0; }
.section--white { background: #fff; }
.section--blue {
  background: linear-gradient(180deg, #eef5ff 0%, #e6f0ff 100%);
}

.section-heading {
  max-width: 820px;
}

.section-heading--center {
  margin: 0 auto;
  text-align: center;
}

.section-heading h2,
.process-copy h2,
.cta-card h2 {
  margin-top: 18px;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
}

.section-heading p,
.process-copy p,
.cta-card p { margin-top: 16px; }

.benefits-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.info-card,
.step-card {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(21, 76, 166, 0.08);
  box-shadow: var(--shadow-soft);
}

.info-card h3,
.pricing-card h3,
.step-card h3,
.site-footer h3 {
  margin: 0 0 12px;
  color: var(--deep);
}

.pricing-grid {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.pricing-card {
  position: relative;
  padding: 32px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(21, 76, 166, 0.10);
  box-shadow: var(--shadow-card);
}

.pricing-card--featured {
  background: linear-gradient(180deg, #ffffff 0%, #f2f8ff 100%);
  border-color: rgba(31, 111, 229, 0.18);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #174893 0%, #1f6fe5 100%);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

.pricing-card__header {
  padding-right: 88px;
}

.price {
  margin-top: 14px;
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--deep);
}

.feature-list {
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.65;
  color: #47627f;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(60, 151, 255, 0.12);
}

.process-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.step-card span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(31, 111, 229, 0.10);
  color: var(--primary-dark);
  font-weight: 800;
  margin-bottom: 18px;
}

.cta-section {
  background: #fff;
  padding-top: 0;
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 38px;
  border-radius: 30px;
  background: linear-gradient(135deg, #103868 0%, #1f6fe5 100%);
  box-shadow: var(--shadow-card);
}

.cta-card,
.cta-card p,
.cta-card h2,
.cta-card .pill {
  color: #fff;
}

.cta-card .pill {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.18);
}

.cta-card p { opacity: 0.88; }

.site-footer {
  margin-top: 86px;
  padding: 38px 0 26px;
  background: #f0f6ff;
  border-top: 1px solid rgba(21, 76, 166, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 28px;
}

.site-footer h3 {
  margin-top: 0;
  margin-bottom: 14px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(21, 76, 166, 0.08);
}

.footer-bottom p {
  margin: 0;
  text-align: center;
  color: #60748f;
}

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

  .menu-toggle {
    display: block;
  }

  .hero__grid,
  .process-wrap,
  .cta-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip__grid,
  .benefits-grid,
  .pricing-grid,
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  .demo-bar__inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 12px 0;
  }

  .hero {
    padding-top: 56px;
  }

  .hero__metrics,
  .price-preview,
  .trust-strip__grid,
  .benefits-grid,
  .pricing-grid,
  .steps-grid,
  .dashboard-blocks__row {
    grid-template-columns: 1fr;
  }

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

  .pricing-card__header {
    padding-right: 0;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }

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

  .dashboard-card__body,
  .pricing-card,
  .info-card,
  .step-card,
  .cta-card {
    padding: 22px;
  }

  .btn,
  .btn-sm,
  .hero__actions .btn {
    width: 100%;
  }

  .brand img,
  .site-footer img {
    width: 190px;
  }
}
