:root {
  --ink: #162033;
  --muted: #5f6b7a;
  --soft: #f6f8fc;
  --paper: #ffffff;
  --line: #dfe6f1;
  --blue: #2458ff;
  --cyan: #00a8c8;
  --green: #20b486;
  --coral: #ff6f61;
  --amber: #f4b740;
  --violet: #6b4eff;
  --shadow: 0 24px 70px rgba(28, 45, 84, 0.16);
  --shadow-soft: 0 16px 40px rgba(28, 45, 84, 0.1);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(36, 88, 255, 0.16), transparent 34rem),
    radial-gradient(circle at 86% 3%, rgba(32, 180, 134, 0.15), transparent 30rem),
    linear-gradient(180deg, #fbfdff 0%, #f7f9fd 48%, #ffffff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(223, 230, 241, 0.7);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, var(--blue), var(--cyan) 55%, var(--green));
  box-shadow: 0 10px 24px rgba(36, 88, 255, 0.22);
  font-size: 15px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #425066;
  font-size: 15px;
  font-weight: 650;
}

.nav-links a {
  transition: color 0.18s ease;
}

.nav-links a:hover {
  color: var(--blue);
}

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

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 760;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: #0f172a;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
}

.button-primary:hover {
  background: #202c43;
}

.button-secondary {
  color: var(--blue);
  background: #eef3ff;
  border-color: #dce7ff;
}

.button-secondary:hover {
  background: #e4ecff;
}

.button-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.26);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 64px;
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(22, 32, 51, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 32, 51, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, black 0%, transparent 72%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(36, 88, 255, 0.16);
  border-radius: 999px;
  padding: 8px 12px;
  color: #2750c8;
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 760;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(32, 180, 134, 0.16);
}

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

h1 {
  max-width: 770px;
  margin-bottom: 24px;
  font-size: clamp(48px, 8vw, 84px);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 30px;
  color: #455469;
  font-size: 20px;
  line-height: 1.65;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  gap: 18px;
}

.metric strong {
  display: block;
  margin-bottom: 4px;
  font-size: 25px;
  letter-spacing: 0;
}

.metric span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.dashboard-wrap {
  position: relative;
  min-height: 610px;
}

.glow-card {
  position: absolute;
  inset: 6% -8% auto 10%;
  height: 260px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(36, 88, 255, 0.85), rgba(0, 168, 200, 0.78), rgba(32, 180, 134, 0.72));
  filter: blur(28px);
  opacity: 0.26;
}

.dashboard {
  position: relative;
  display: grid;
  gap: 16px;
  border: 1px solid rgba(223, 230, 241, 0.9);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.traffic-lights {
  display: flex;
  gap: 7px;
}

.traffic-lights span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--coral);
}

.traffic-lights span:nth-child(2) {
  background: var(--amber);
}

.traffic-lights span:nth-child(3) {
  background: var(--green);
}

.dashboard-title {
  color: #59677b;
  font-size: 13px;
  font-weight: 800;
}

.dashboard-main {
  display: grid;
  grid-template-columns: 1fr 0.76fr;
  gap: 16px;
}

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

.panel-accent {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(145deg, #14213d, #2546d8);
}

.panel-kicker {
  margin-bottom: 8px;
  color: inherit;
  opacity: 0.72;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.panel h3 {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.25;
}

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

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #465367;
  font-size: 14px;
}

.panel-accent .check-list li {
  color: rgba(255, 255, 255, 0.86);
}

.check {
  display: inline-grid;
  flex: 0 0 21px;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.document-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  border-top: 1px solid var(--line);
  padding: 12px 0;
}

.document-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.doc-icon {
  display: grid;
  width: 34px;
  height: 42px;
  place-items: center;
  border-radius: 6px;
  color: var(--blue);
  background: #eef3ff;
  font-size: 12px;
  font-weight: 900;
}

.document-row strong {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
}

.document-row small {
  color: var(--muted);
  font-size: 12px;
}

.status {
  border-radius: 999px;
  padding: 5px 8px;
  color: #08795d;
  background: #e9fbf5;
  font-size: 11px;
  font-weight: 850;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-top: 12px;
}

.calendar span {
  display: grid;
  height: 31px;
  place-items: center;
  border-radius: 6px;
  color: #5a6678;
  background: #f5f7fb;
  font-size: 12px;
  font-weight: 750;
}

.calendar .active {
  color: #fff;
  background: var(--blue);
}

.floating-note {
  position: absolute;
  right: -18px;
  bottom: 42px;
  width: min(270px, 52vw);
  border: 1px solid rgba(223, 230, 241, 0.94);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.floating-note strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

.floating-note p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

section {
  padding: 78px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head h2,
.article-hero h1 {
  margin-bottom: 0;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.section-head p {
  max-width: 530px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

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

.service-card,
.resource-card,
.price-card,
.trust-card,
.article-card,
.cta-panel,
.related-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 30px rgba(28, 45, 84, 0.06);
}

.service-card {
  padding: 24px;
}

.icon-tile {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.icon-cyan {
  background: var(--cyan);
}

.icon-green {
  background: var(--green);
}

.icon-coral {
  background: var(--coral);
}

.icon-amber {
  background: var(--amber);
  color: #2b240e;
}

.icon-violet {
  background: var(--violet);
}

.service-card h3,
.resource-card h3,
.price-card h3,
.trust-card h3,
.article-card h3,
.related-card h3 {
  margin: 18px 0 9px;
  font-size: 21px;
  line-height: 1.2;
}

.service-card p,
.resource-card p,
.price-card p,
.trust-card p,
.article-card p,
.related-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.workflow {
  background: #101827;
  color: #fff;
}

.workflow .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

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

.step-card {
  position: relative;
  min-height: 232px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    #151f31;
}

.step-number {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: #0f172a;
  background: #fff;
  font-weight: 900;
}

.step-card h3 {
  margin: 42px 0 10px;
  font-size: 20px;
}

.step-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.resources-band {
  background:
    linear-gradient(135deg, rgba(36, 88, 255, 0.08), rgba(32, 180, 134, 0.08)),
    #fbfdff;
}

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

.resource-card,
.article-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  padding: 24px;
}

.resource-topic {
  width: fit-content;
  border-radius: 999px;
  padding: 7px 10px;
  color: #2140a7;
  background: #eef3ff;
  font-size: 12px;
  font-weight: 850;
}

.resource-card .text-link,
.article-card .text-link,
.related-card .text-link {
  margin-top: auto;
  padding-top: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-weight: 850;
}

.pricing {
  background: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.price-card {
  padding: 28px;
}

.price-card.featured {
  border-color: rgba(36, 88, 255, 0.3);
  background:
    linear-gradient(135deg, rgba(36, 88, 255, 0.08), rgba(0, 168, 200, 0.05)),
    #fff;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 18px 0 20px;
}

.price strong {
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0;
}

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

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

.price-card li {
  color: #465367;
  line-height: 1.45;
}

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

.trust-card {
  padding: 22px;
}

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

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

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  padding: 20px 22px;
  color: var(--ink);
  font: inherit;
  font-weight: 830;
  text-align: left;
  cursor: pointer;
}

.faq-question .plus {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  text-align: center;
  line-height: 24px;
}

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

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .plus {
  background: var(--green);
}

.final-cta {
  padding: 72px 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(36, 88, 255, 0.95), rgba(0, 168, 200, 0.92), rgba(32, 180, 134, 0.88)),
    #2458ff;
}

.final-cta .cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.final-cta h2 {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
}

.final-cta p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.6;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 46px 0 34px;
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  gap: 34px;
}

.footer-grid p,
.footer-grid a,
.footer-bottom {
  color: var(--muted);
}

.footer-grid h3 {
  margin: 0 0 14px;
  font-size: 14px;
  text-transform: uppercase;
}

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

.footer-bottom {
  margin-top: 36px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  font-size: 14px;
}

.article-hero {
  padding: 68px 0 36px;
}

.breadcrumb {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--blue);
  font-weight: 850;
}

.article-hero p {
  max-width: 760px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 44px;
  align-items: start;
  padding-bottom: 70px;
}

.article-body {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px;
  background: #fff;
}

.article-body h2 {
  margin: 38px 0 12px;
  font-size: 30px;
  line-height: 1.12;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h3 {
  margin: 28px 0 10px;
  font-size: 22px;
}

.article-body p,
.article-body li {
  color: #4f5d71;
  font-size: 17px;
  line-height: 1.75;
}

.article-body ul,
.article-body ol {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.callout {
  border-left: 4px solid var(--green);
  border-radius: 8px;
  margin: 30px 0;
  padding: 18px 20px;
  background: #ecfbf6;
  color: #264438;
}

.sidebar {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 16px;
}

.cta-panel {
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(36, 88, 255, 0.08), rgba(32, 180, 134, 0.08)),
    #fff;
}

.cta-panel h2 {
  margin-bottom: 12px;
  font-size: 24px;
}

.cta-panel p {
  color: var(--muted);
  line-height: 1.6;
}

.mini-list {
  display: grid;
  gap: 9px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.mini-list li {
  color: #465367;
}

.related-card {
  padding: 20px;
}

.resource-hero {
  padding: 74px 0 38px;
}

.resource-hero h1 {
  max-width: 850px;
}

.resource-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.resource-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding-bottom: 76px;
}

.disclaimer {
  margin-top: 36px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1020px) {
  .hero-grid,
  .dashboard-main,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .dashboard-wrap {
    min-height: auto;
  }

  .floating-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
  }

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

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

  .sidebar {
    position: static;
  }
}

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

  .nav {
    min-height: 68px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    position: fixed;
    inset: 68px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 16px;
    background: #fff;
    box-shadow: var(--shadow-soft);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-actions .button-secondary {
    display: none;
  }

  .hero {
    padding-top: 46px;
  }

  h1 {
    font-size: 46px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-metrics,
  .pricing-grid,
  .resource-page-grid,
  .footer-grid,
  .service-grid,
  .resource-grid,
  .article-grid,
  .trust-grid,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .final-cta .cta-inner {
    display: block;
  }

  .section-head p {
    margin-top: 16px;
  }

  .final-cta .button {
    margin-top: 24px;
  }

  .article-body {
    padding: 24px;
  }
}

