:root {
  --navy: #061b45;
  --navy-2: #0b2d62;
  --blue: #2b78c5;
  --blue-soft: #eaf4ff;
  --mint: #55d89b;
  --mint-dark: #159767;
  --mint-soft: #e8fbf2;
  --white: #fff;
  --off-white: #f8fafc;
  --cream: #f7f6f1;
  --text: #10233f;
  --muted: #607087;
  --line: #dce4ee;
  --danger: #a32626;
  --shadow: 0 24px 70px rgba(6, 27, 69, .12);
  --shadow-soft: 0 14px 42px rgba(6, 27, 69, .08);
  --radius: 22px;
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--mint-dark); outline-offset: 4px; }
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.section { padding: 104px 0; }
.section-sm { padding: 72px 0; }
.section-soft { background: var(--off-white); }
.section-cream { background: var(--cream); }
.section-navy { color: var(--white); background: var(--navy); }
.grid { display: grid; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--navy-2);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--mint), var(--blue));
}
.section-navy .eyebrow { color: var(--mint); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; }
h1 { margin-bottom: 24px; font-size: clamp(2.8rem, 6.2vw, 5.8rem); }
h2 { margin-bottom: 21px; font-size: clamp(2.1rem, 4.3vw, 4rem); }
h3 { margin-bottom: 14px; font-size: 1.35rem; }
.page-hero h1 { max-width: 900px; }
.lede { max-width: 700px; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.28rem); }
.section-navy .lede { color: rgba(255,255,255,.7); }
.section-head { margin-bottom: 52px; }
.section-head.center { text-align: center; }
.section-head.center h2, .section-head.center .lede { margin-inline: auto; }
.tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid rgba(21,151,103,.22);
  border-radius: 999px;
  color: var(--mint-dark);
  background: var(--mint-soft);
  font-size: .75rem;
  font-weight: 800;
}
.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--navy); background: var(--mint); box-shadow: 0 10px 24px rgba(85,216,155,.22); }
.btn-primary:hover { background: #6be4a9; }
.btn-secondary { border-color: rgba(6,27,69,.2); background: var(--white); }
.btn-dark { color: var(--white); background: var(--navy); }
.btn-ghost { border-color: rgba(255,255,255,.22); color: var(--white); background: transparent; }
.btn-sm { min-height: 44px; padding: 10px 16px; font-size: .9rem; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(6,27,69,.08);
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
}
.nav { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; text-decoration: none; }
.brand img {
  width: auto;
  max-width: none;
  height: 54px;
  aspect-ratio: 871 / 219;
  object-fit: contain;
}
.nav-links, .nav-actions { display: flex; align-items: center; gap: 24px; }
.nav-links a, .login-link { color: #34455e; font-size: .9rem; font-weight: 750; text-decoration: none; }
.nav-links a:hover, .nav-links a[aria-current="page"], .login-link:hover { color: var(--blue); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--navy);
  background: var(--white);
  cursor: pointer;
}
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0 88px;
  background:
    radial-gradient(circle at 82% 25%, rgba(85,216,155,.24), transparent 24rem),
    radial-gradient(circle at 12% 80%, rgba(43,120,197,.11), transparent 22rem),
    linear-gradient(180deg, #fcfefd 0%, #f6fafb 100%);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .27;
  pointer-events: none;
  background-image: linear-gradient(rgba(6,27,69,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(6,27,69,.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}
.page-hero .container { position: relative; z-index: 1; }
.hero-centered { text-align: center; }
.hero-centered h1, .hero-centered .lede { margin-inline: auto; }
.hero-centered .actions { justify-content: center; }
.hero-note { margin-top: 18px; color: var(--muted); font-size: .86rem; }
.hero-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.hero-layout h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); }
.logo-panel {
  display: grid;
  min-height: 330px;
  place-items: center;
  padding: 44px;
  border: 1px solid rgba(6,27,69,.1);
  border-radius: 28px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow);
}
.logo-panel img {
  width: min(100%, 540px);
  height: auto;
  aspect-ratio: 871 / 219;
  object-fit: contain;
}
.trust-strip { border-block: 1px solid var(--line); background: var(--white); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 27px 21px; border-right: 1px solid var(--line); }
.trust-item:last-child { border: 0; }
.trust-item strong { display: block; margin-bottom: 2px; }
.trust-item span { color: var(--muted); font-size: .84rem; }
.card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(6,27,69,.02);
}
.card p, .card li { color: var(--muted); }
.card-accent { color: var(--white); background: var(--navy); }
.card-accent p, .card-accent li { color: rgba(255,255,255,.7); }
.card-mint { border-color: rgba(21,151,103,.18); background: var(--mint-soft); }
.icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 13px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--mint), #a4f0ce);
  font-weight: 900;
}
.card ul, .check-list { display: grid; gap: 10px; margin: 20px 0 0; padding: 0; list-style: none; }
.card li::before, .check-list li::before { content: "✓"; margin-right: 9px; color: var(--mint-dark); font-weight: 900; }
.step-number {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
}
.dashboard {
  overflow: hidden;
  border: 1px solid rgba(6,27,69,.12);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.dash-bar { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; color: var(--white); background: var(--navy); }
.dash-brand { display: flex; align-items: center; gap: 8px; font-weight: 900; }
.dash-dot { width: 20px; height: 20px; border-radius: 6px; background: var(--mint); }
.dash-status { color: var(--mint); font-size: .76rem; font-weight: 800; }
.dash-body { padding: 25px; background: #f5f8fc; }
.dash-top { display: flex; justify-content: space-between; gap: 18px; margin-bottom: 22px; }
.dash-title { font-size: 1.3rem; font-weight: 900; }
.dash-sub { color: var(--muted); font-size: .8rem; }
.dash-button { align-self: flex-start; padding: 9px 13px; border-radius: 9px; background: var(--mint); font-size: .75rem; font-weight: 850; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.stat { padding: 17px; border: 1px solid var(--line); border-radius: 13px; background: var(--white); }
.stat small { color: var(--muted); }
.stat strong { display: block; margin: 7px 0; font-size: 1.35rem; }
.positive { color: var(--mint-dark); font-size: .75rem; font-weight: 850; }
.dash-lower { display: grid; grid-template-columns: 1.1fr .9fr; gap: 12px; margin-top: 12px; }
.chart, .invoice-list { min-height: 215px; padding: 17px; border: 1px solid var(--line); border-radius: 13px; background: var(--white); }
.chart-bars { display: flex; height: 145px; align-items: end; gap: 9px; padding-top: 22px; border-bottom: 1px solid var(--line); }
.chart-bars i { flex: 1; border-radius: 4px 4px 0 0; background: var(--blue-soft); }
.chart-bars i:nth-child(3), .chart-bars i:nth-child(6) { background: var(--mint); }
.list-row { display: grid; grid-template-columns: 1fr auto; gap: 8px; padding: 12px 0; border-bottom: 1px solid #edf1f5; font-size: .75rem; }
.list-row:last-child { border: 0; }
.state { color: var(--mint-dark); font-weight: 850; }
.profile-grid, .feature-grid, .resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.profile-card { display: flex; min-height: 390px; flex-direction: column; }
.profile-card .text-link { margin-top: auto; }
.kicker { color: var(--mint-dark); font-size: .76rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.text-link { font-weight: 850; text-decoration-thickness: 2px; text-underline-offset: 5px; }
.highlight {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 65px;
  align-items: center;
  padding: 66px;
  border-radius: 30px;
  color: var(--white);
  background: var(--navy);
}
.highlight .lede { color: rgba(255,255,255,.7); }
.company-list { display: grid; gap: 12px; }
.company-row {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 13px;
  align-items: center;
  padding: 15px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 13px;
  background: rgba(255,255,255,.07);
}
.company-avatar { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 11px; color: var(--navy); background: var(--mint); font-weight: 900; }
.company-name { font-weight: 800; }
.company-meta { color: rgba(255,255,255,.55); font-size: .75rem; }
.company-state { color: var(--mint); font-size: .74rem; font-weight: 850; }
.deadline-card { padding: 38px; border-radius: var(--radius); background: var(--cream); }
.deadline { display: flex; gap: 18px; padding: 20px 0; border-top: 1px solid #d9d8d1; }
.deadline strong { min-width: 120px; }
.source-note { color: var(--muted); font-size: .78rem; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; }
.price-card.featured { border: 2px solid var(--mint-dark); box-shadow: var(--shadow-soft); }
.price-badge { position: absolute; top: -14px; right: 22px; padding: 6px 11px; border-radius: 999px; color: var(--navy); background: var(--mint); font-size: .73rem; font-weight: 900; }
.price { margin: 18px 0; font-size: 3.1rem; font-weight: 950; line-height: 1; letter-spacing: -.06em; }
.price small { font-size: .92rem; font-weight: 700; letter-spacing: 0; }
.price-card .btn { width: 100%; margin-top: auto; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; }
table { width: 100%; border-collapse: collapse; background: var(--white); }
th, td { padding: 15px 17px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { color: var(--navy); background: var(--off-white); font-size: .84rem; }
tr:last-child td { border-bottom: 0; }
.faq { max-width: 860px; margin-inline: auto; border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; font-size: 1.06rem; font-weight: 850; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-size: 1.5rem; font-weight: 400; }
details[open] summary::after { content: "−"; }
details p { max-width: 740px; padding: 0 0 24px; color: var(--muted); }
.breadcrumbs { padding: 18px 0; color: var(--muted); font-size: .82rem; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--blue); }
.article { padding: 70px 0 100px; }
.article h1 { font-size: clamp(2.6rem, 5vw, 4.6rem); }
.article h2 { margin-top: 50px; font-size: 2rem; }
.article h3 { margin-top: 30px; }
.article p, .article li { color: #46566c; }
.article li { margin-bottom: 8px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 20px; margin: 20px 0 38px; color: var(--muted); font-size: .85rem; }
.callout { margin: 34px 0; padding: 25px; border-left: 4px solid var(--mint-dark); border-radius: 0 14px 14px 0; background: var(--mint-soft); }
.callout.warning { border-left-color: var(--blue); background: var(--blue-soft); }
.resource-card { display: flex; min-height: 300px; flex-direction: column; }
.resource-card .text-link { margin-top: auto; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.contact-list { display: grid; gap: 15px; margin-top: 32px; }
.contact-item { padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-item strong { display: block; }
.contact-item span { color: var(--muted); }
.form-card { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-soft); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
label { color: var(--navy); font-size: .86rem; font-weight: 800; }
input, select, textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #cbd6e3;
  border-radius: 10px;
  color: var(--text);
  background: var(--white);
}
textarea { min-height: 140px; resize: vertical; }
input[aria-invalid="true"], select[aria-invalid="true"], textarea[aria-invalid="true"] { border-color: var(--danger); }
.checkbox { display: flex; gap: 10px; align-items: flex-start; }
.checkbox input { width: 18px; min-height: 18px; margin-top: 4px; }
.checkbox label { color: var(--muted); font-weight: 500; }
.form-help, .field-error { font-size: .78rem; }
.form-help { color: var(--muted); }
.field-error { color: var(--danger); }
.form-status { display: none; margin-top: 18px; padding: 14px; border-radius: 10px; background: var(--blue-soft); }
.form-status.visible { display: block; }
.honeypot { position: absolute; left: -9999px; }
.legal h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
.legal h2 { margin-top: 44px; font-size: 1.7rem; }
.legal h3 { margin-top: 28px; font-size: 1.2rem; }
.legal p, .legal li { color: #4c5c72; }
.cta-band { padding: 35px 0 100px; }
.cta-box { position: relative; overflow: hidden; padding: 70px; border-radius: 30px; background: linear-gradient(135deg, var(--mint), #86e7bc); }
.cta-box::after { content: ""; position: absolute; right: -90px; bottom: -140px; width: 380px; height: 380px; border: 72px solid rgba(6,27,69,.07); border-radius: 50%; }
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { max-width: 760px; }
.site-footer { padding: 68px 0 28px; color: var(--white); background: var(--navy); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 48px; padding-bottom: 52px; }
.footer-brand {
  display: inline-flex;
  width: auto;
  max-width: 270px;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--navy);
  background: var(--white);
  text-decoration: none;
}
.footer-brand img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  object-fit: contain;
}
.footer-brand span { display: grid; line-height: 1.1; }
.footer-brand strong { font-size: 1.05rem; letter-spacing: -.03em; }
.footer-brand small { margin-top: 3px; color: #405067; font-size: .72rem; white-space: nowrap; }
.footer-intro { max-width: 310px; margin-top: 18px; color: rgba(255,255,255,.62); font-size: .9rem; }
.footer-col strong { display: block; margin-bottom: 18px; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-col a { display: block; margin: 10px 0; color: rgba(255,255,255,.65); font-size: .87rem; text-decoration: none; }
.footer-col a:hover { color: var(--mint); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.5); font-size: .76rem; }
.cookie-banner {
  position: fixed;
  z-index: 500;
  right: 20px;
  bottom: 20px;
  display: none;
  width: min(calc(100% - 40px), 480px);
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.cookie-banner.visible { display: block; }
.cookie-banner p { margin-bottom: 14px; color: var(--muted); font-size: .84rem; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.error-page { display: grid; min-height: 67vh; place-items: center; text-align: center; }
.error-code { color: var(--mint-dark); font-size: clamp(4rem, 12vw, 9rem); font-weight: 950; line-height: 1; }

@media (max-width: 1020px) {
  .nav-links { display: none; }
  .menu-toggle { display: grid; place-items: center; }
  .nav-links.open {
    position: fixed;
    inset: 79px 0 auto;
    display: grid;
    gap: 0;
    padding: 16px 20px 28px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow-soft);
  }
  .nav-links.open a { padding: 12px 0; }
  .hero-layout, .two-col, .highlight, .contact-grid { grid-template-columns: 1fr; }
  .feature-grid, .profile-grid, .resource-grid, .price-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight { padding: 50px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: 2; }
}

@media (max-width: 740px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 78px 0; }
  .section-sm { padding: 58px 0; }
  .page-hero { padding: 70px 0 65px; }
  .brand img { width: auto; height: 47px; }
  .nav-actions .login-link { display: none; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .three-col, .feature-grid, .profile-grid, .resource-grid, .price-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stat:nth-child(n+2) { display: none; }
  .dash-lower { grid-template-columns: 1fr; }
  .invoice-list { display: none; }
  .highlight { padding: 38px 24px; }
  .deadline { display: grid; gap: 4px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .form-card { padding: 28px 20px; }
  .cta-box { padding: 52px 25px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .footer-grid .footer-col:last-child { grid-column: auto; }
  .footer-bottom { display: grid; }
  .footer-brand { max-width: 100%; }
  .footer-brand img { width: 44px; height: 44px; flex-basis: 44px; }
  .footer-brand small { white-space: normal; }
}

@media (max-width: 500px) {
  h1 { font-size: 2.7rem; }
  .brand img { width: auto; height: 40px; }
  .nav-actions .btn { display: none; }
  .actions .btn { width: 100%; }
  .trust-grid, .footer-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .footer-grid .footer-col:last-child { grid-column: auto; }
  .dash-top { display: grid; }
  .logo-panel { min-height: 240px; padding: 24px; }
  .company-row { grid-template-columns: 42px 1fr; }
  .company-state { grid-column: 2; }
  .cookie-banner {
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
    padding: 14px;
    border-radius: 14px;
  }
  .cookie-banner strong { font-size: .92rem; }
  .cookie-banner p {
    margin: 3px 0 10px;
    font-size: .75rem;
    line-height: 1.35;
  }
  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 7px;
  }
  .cookie-actions .btn {
    width: 100%;
    min-height: 40px;
    padding: 8px 7px;
    border-radius: 10px;
    font-size: .78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
