:root {
  --ink: #07142f;
  --ink-soft: #26344f;
  --blue: #1268ff;
  --blue-deep: #064bc2;
  --mint: #1bbf9c;
  --paper: #ffffff;
  --soft: #f6f8fb;
  --soft-blue: #eef5ff;
  --line: #dde5f0;
  --muted: #5d6a80;
  --shadow: 0 22px 55px rgba(7, 20, 47, .1);
  --radius: 8px;
  --anchor-offset: 108px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(18, 104, 255, .42);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid rgba(221, 229, 240, .85);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo-img {
  width: 172px;
  height: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  color: var(--blue);
  background: var(--soft-blue);
  border: 1px solid rgba(18, 104, 255, .22);
  border-radius: var(--radius);
  font-weight: 800;
}

.header-phone:hover {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.header-phone-desktop {
  padding: 8px 12px !important;
  font-size: 13px;
}

.header-phone-mobile {
  display: none;
  min-height: 40px;
  padding: 8px 12px;
  font-size: 13px;
}

.site-nav a,
.nav-dropdown-toggle {
  padding: 10px 0;
}

.site-nav a:hover,
.nav-dropdown-toggle:hover,
.nav-dropdown.open .nav-dropdown-toggle {
  color: var(--blue);
}

.site-nav .header-phone:hover,
.header-phone-mobile:hover {
  color: #fff;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  color: inherit;
  background: none;
  border: 0;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 80;
  width: 238px;
  display: grid;
  gap: 2px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -15px;
  height: 15px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.nav-dropdown-menu a:hover {
  background: var(--soft-blue);
}

.nav-cta {
  padding: 11px 16px !important;
  color: #fff !important;
  background: var(--ink);
  border-radius: var(--radius);
}

.nav-cta:hover {
  background: var(--blue);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 650px;
  padding: 88px 0 70px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(246, 248, 251, .8), rgba(255, 255, 255, .96) 48%, #fff),
    var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 20, 47, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 20, 47, .045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, black, transparent 78%);
  pointer-events: none;
}

.hero-shade {
  position: absolute;
  inset: auto 0 0 0;
  height: 155px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(390px, .86fr);
  gap: 58px;
  align-items: center;
}

.hero-inner {
  position: relative;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.contact h2 {
  margin: 0;
  font-weight: 500;
  line-height: 1.08;
}

.hero h1 {
  max-width: 660px;
  font-size: 74px;
}

.hero-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 20px;
  font-weight: 300;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

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

.button-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 16px 35px rgba(18, 104, 255, .25);
}

.button-primary:hover {
  background: var(--blue-deep);
}

.button-secondary {
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 28px 0 0;
  margin: 34px 0 0;
  border-top: 1px solid rgba(7, 20, 47, .12);
  list-style: none;
}

.hero-points li {
  padding: 8px 12px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  align-content: center;
  gap: 14px;
}

.hero-preview {
  position: relative;
  z-index: 2;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(238, 245, 255, .92)),
    #fff;
  border: 1px solid rgba(18, 104, 255, .14);
  border-radius: var(--radius);
  box-shadow: 0 32px 78px rgba(7, 20, 47, .16);
}

.preview-top {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  background: rgba(255, 255, 255, .7);
  border-bottom: 1px solid rgba(221, 229, 240, .9);
}

.preview-top i {
  width: 8px;
  height: 8px;
  background: #cbd6e6;
  border-radius: 50%;
}

.preview-top i:first-child {
  background: var(--blue);
}

.preview-top span {
  margin-left: 8px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
}

.preview-top strong {
  margin-left: auto;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.preview-stage {
  min-height: 314px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(154px, .64fr);
  gap: 18px;
  align-items: stretch;
  padding: 24px;
}

.preview-page {
  display: grid;
  align-content: start;
  min-height: 266px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(7, 20, 47, .08);
}

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

.preview-brand-row img {
  width: 46px;
  height: 35px;
  object-fit: contain;
}

.preview-brand-row span,
.preview-brand-row b,
.preview-brand-row small {
  display: block;
}

.preview-brand-row b {
  color: var(--ink);
  font-size: 14px;
  line-height: 1;
}

.preview-brand-row small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.preview-copy span {
  display: block;
  margin: 28px 0 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.preview-copy strong {
  display: block;
  max-width: 360px;
  color: var(--ink);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.12;
}

.preview-lines {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.preview-lines i {
  display: block;
  height: 7px;
  background: #e5ebf4;
  border-radius: 999px;
}

.preview-lines i:nth-child(1) {
  width: 84%;
}

.preview-lines i:nth-child(2) {
  width: 64%;
}

.preview-lines i:nth-child(3) {
  width: 72%;
}

.preview-actions {
  display: flex;
  gap: 8px;
  margin-top: 22px;
}

.preview-actions span {
  display: block;
  width: 92px;
  height: 34px;
  background: var(--ink);
  border-radius: var(--radius);
}

.preview-actions span:last-child {
  width: 74px;
  background: var(--soft-blue);
  border: 1px solid var(--line);
}

.preview-panel {
  display: grid;
  align-content: space-between;
  min-height: 266px;
  padding: 22px;
  color: #fff;
  background:
    linear-gradient(160deg, rgba(18, 104, 255, .2), rgba(27, 191, 156, .1)),
    var(--ink);
  border-radius: var(--radius);
}

.preview-score b,
.preview-score small {
  display: block;
}

.preview-score b {
  font-size: 52px;
  font-weight: 700;
  line-height: .9;
}

.preview-score small {
  margin-top: 8px;
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.preview-list {
  display: grid;
  gap: 8px;
}

.preview-list span {
  padding: 9px 10px;
  color: rgba(255, 255, 255, .84);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 800;
}

.preview-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--ink);
}

.preview-metrics span {
  min-height: 82px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.preview-metrics span:last-child {
  border-right: 0;
}

.preview-metrics b,
.preview-metrics small {
  display: block;
}

.preview-metrics b {
  color: #fff;
  font-size: 22px;
}

.preview-metrics small {
  color: rgba(255, 255, 255, .6);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-assurance {
  position: static;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  row-gap: 2px;
  align-items: start;
  width: auto;
  padding: 16px 18px;
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(7, 20, 47, .08);
}

.hero-assurance span {
  display: inline-flex;
  grid-row: span 2;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  color: var(--blue);
  background: var(--soft-blue);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.hero-assurance strong,
.hero-assurance small {
  display: block;
}

.hero-assurance strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.2;
}

.hero-assurance small {
  margin-top: 0;
  color: var(--muted);
  font-size: 12px;
}

.hero-checklist {
  position: static;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hero-checklist span {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, .84);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 28px rgba(7, 20, 47, .06);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
}

.proof-bar {
  background: var(--ink);
  color: #fff;
}

.proof-track {
  min-height: 76px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 18px;
}

.proof-track a,
.proof-track span {
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.proof-track a {
  min-height: 76px;
  display: grid;
  place-items: center;
}

.proof-track a:hover {
  color: #fff;
}

.section {
  padding: 108px 0;
}

.section-head {
  display: grid;
  grid-template-columns: .42fr 1fr .7fr;
  gap: 34px;
  align-items: end;
  margin-bottom: 44px;
}

.section-head h2 {
  font-size: 48px;
}

.section-head > p:last-child {
  margin: 0;
  color: var(--muted);
}

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

.service-card {
  min-height: 430px;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(18, 104, 255, .45);
  box-shadow: var(--shadow);
}

.service-card-dark {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--blue);
  background: var(--soft-blue);
  border-radius: var(--radius);
  font-weight: 800;
}

.service-card-dark .card-number {
  color: #fff;
  background: var(--blue);
}

.service-card h3 {
  margin: 56px 0 14px;
  font-size: 25px;
  line-height: 1.2;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.service-card-dark p {
  color: rgba(255, 255, 255, .72);
}

.service-card ul {
  padding: 22px 0 0;
  margin: 26px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.service-card-dark ul {
  border-color: rgba(255, 255, 255, .16);
}

.service-card li {
  position: relative;
  padding-left: 18px;
  margin: 8px 0;
  font-size: 14px;
  font-weight: 700;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--mint);
  border-radius: 50%;
}

.standard {
  background: var(--soft);
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.section-head-compact {
  display: block;
  margin: 0;
}

.section-head-compact h2 {
  margin-bottom: 22px;
}

.quality-list {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.quality-list > div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.quality-list > div:last-child {
  border-bottom: 0;
}

.quality-list strong {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.quality-list b,
.quality-list small {
  display: block;
}

.quality-list b {
  font-size: 18px;
}

.quality-list small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.process {
  background: var(--paper);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.timeline li {
  min-height: 300px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #fff;
  background: var(--blue);
  border-radius: var(--radius);
  font-weight: 800;
}

.timeline h3 {
  margin: 58px 0 10px;
  font-size: 22px;
}

.timeline p {
  margin: 0;
  color: var(--muted);
}

.security {
  color: #fff;
  background: var(--ink);
}

.security-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 72px;
  align-items: center;
}

.security-mark {
  padding: 34px 0;
}

.security-mark img {
  width: 190px;
  padding: 18px;
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 32px;
  filter: drop-shadow(0 22px 36px rgba(0, 0, 0, .22));
}

.security-mark p {
  max-width: 340px;
  margin: 0;
  color: rgba(255, 255, 255, .74);
  font-size: 19px;
  font-weight: 300;
}

.security-copy .eyebrow {
  color: #7fb0ff;
}

.security h2 {
  margin: 0 0 30px;
  font-size: 48px;
}

.security-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  overflow: hidden;
}

.security-checks p {
  min-height: 155px;
  padding: 24px;
  margin: 0;
  background: rgba(255, 255, 255, .055);
}

.security-checks strong,
.security-checks span {
  display: block;
}

.security-checks strong {
  margin-bottom: 8px;
  color: #fff;
}

.security-checks span {
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
}

.fine-print {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
}

.audience {
  background: var(--soft);
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.audience h2 {
  margin-bottom: 20px;
  font-size: 48px;
}

.audience p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.audience-list {
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.audience-list li {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-size: 20px;
  font-weight: 700;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  padding: 24px 0;
  font-size: 20px;
  font-weight: 800;
}

.faq-list summary::marker {
  color: var(--blue);
}

.faq-list p {
  max-width: 780px;
  margin: -8px 0 24px;
  color: var(--muted);
}

.contact {
  padding: 40px 0 108px;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center;
  padding: 52px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(18, 104, 255, .26), rgba(27, 191, 156, .12)),
    var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact .eyebrow {
  color: #95bcff;
}

.contact h2 {
  max-width: 700px;
  font-size: 46px;
}

.contact p:last-child {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .72);
}

.contact-links {
  display: grid;
  gap: 12px;
}

.contact-links a {
  position: relative;
  display: block;
  padding: 20px 54px 20px 22px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
}

.contact-links a:hover {
  background: rgba(255, 255, 255, .1);
}

.contact-links small,
.contact-links strong {
  display: block;
}

.contact-links small {
  color: #95bcff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-links strong {
  margin-top: 4px;
  font-size: 24px;
}

.contact-links span {
  position: absolute;
  top: 50%;
  right: 22px;
  color: #9ee8d9;
  transform: translateY(-50%);
}

.footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
}

.footer-logo-img {
  width: 170px;
  height: auto;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a,
.footer-links button {
  padding: 0;
  color: var(--muted);
  background: none;
  border: 0;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--blue);
}

.article-hero {
  position: relative;
  padding: 78px 0 70px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(246, 248, 251, .86), #fff 74%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 20, 47, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 20, 47, .045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, black, transparent 82%);
  pointer-events: none;
}

.article-hero-inner {
  position: relative;
  max-width: 980px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

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

.article-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: 62px;
  font-weight: 500;
  line-height: 1.08;
}

.article-hero h1 + p {
  max-width: 820px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 20px;
  font-weight: 300;
}

.article-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.article-badges span {
  padding: 8px 12px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, .78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 800;
}

.article-section {
  padding: 82px 0 104px;
}

.article-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 58px;
  align-items: start;
}

.article-toc {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 10px;
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.article-toc strong {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 13px;
  text-transform: uppercase;
}

.article-toc a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.article-toc a:hover {
  color: var(--blue);
}

.article-content {
  min-width: 0;
}

.article-content h2 {
  margin: 0 0 18px;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.14;
}

.article-content p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 18px;
  font-weight: 300;
}

.article-content section {
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}

.article-content section:first-of-type {
  padding-top: 0;
}

.article-content section:last-child {
  border-bottom: 0;
}

.article-intro {
  padding: 24px;
  margin-bottom: 44px;
  background: var(--ink);
  border-radius: var(--radius);
}

.article-intro strong {
  display: block;
  margin-bottom: 10px;
  color: #7fb0ff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-intro p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
}

.article-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 6px 0 0;
  margin: 20px 0 0;
  list-style: none;
}

.article-checklist li {
  position: relative;
  padding: 14px 14px 14px 34px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
}

.article-checklist li::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 16px;
  width: 7px;
  height: 7px;
  background: var(--mint);
  border-radius: 50%;
}

.article-faq {
  display: grid;
  gap: 10px;
}

.article-faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.article-faq summary {
  padding: 18px;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.article-faq p {
  padding: 0 18px 18px;
  margin: 0;
  font-size: 16px;
}

.article-related > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.article-related a {
  display: grid;
  gap: 8px;
  min-height: 158px;
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.article-related a:hover {
  border-color: rgba(18, 104, 255, .45);
  box-shadow: 0 16px 36px rgba(7, 20, 47, .08);
}

.article-related span {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.article-related small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.article-cta {
  padding: 34px !important;
  margin-top: 44px;
  color: #fff;
  background: var(--ink);
  border: 0 !important;
  border-radius: var(--radius);
}

.article-cta > span {
  display: block;
  margin-bottom: 10px;
  color: #7fb0ff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-cta h2 {
  max-width: 680px;
  color: #fff;
}

.article-cta p {
  max-width: 680px;
  color: rgba(255, 255, 255, .76);
}

.article-cta div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.article-cta .button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .24);
}

.legal-hero {
  padding: 86px 0 64px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.74)),
    url("assets/artinter-designed-mark.png") no-repeat right -80px center / 520px auto;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.08;
}

.legal-hero p:last-child {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.legal-section {
  padding: 74px 0 96px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 58px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 8px;
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.legal-toc a {
  padding: 8px 10px;
  color: var(--ink-soft);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
}

.legal-toc a:hover {
  color: var(--blue);
  background: #fff;
}

.legal-content {
  max-width: 820px;
}

.legal-content section {
  padding-bottom: 38px;
  margin-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.legal-content section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.legal-content h2 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.2;
}

.legal-content h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
}

.legal-content p {
  margin: 12px 0;
  color: var(--muted);
}

.legal-content a {
  color: var(--blue);
  font-weight: 800;
}

.legal-content code {
  padding: 2px 6px;
  background: var(--soft-blue);
  border-radius: 4px;
  color: var(--ink);
  font-size: .95em;
}

.legal-table,
.cookie-types {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.legal-table > div,
.cookie-types > div {
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.legal-table strong,
.legal-table span {
  display: block;
}

.legal-table strong {
  margin-bottom: 6px;
  color: var(--ink);
}

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

.cookie-panel {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  width: min(560px, calc(100% - 44px));
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 22px 70px rgba(7, 20, 47, .18);
}

.cookie-panel[hidden] {
  display: none;
}

.cookie-panel h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.cookie-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.cookie-panel a {
  color: var(--blue);
  font-weight: 800;
}

.cookie-options {
  display: none;
  gap: 10px;
  margin-top: 16px;
}

.cookie-panel.show-options .cookie-options {
  display: grid;
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.cookie-option strong,
.cookie-option small {
  display: block;
}

.cookie-option small {
  margin-top: 2px;
  color: var(--muted);
}

.cookie-option input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  accent-color: var(--blue);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.cookie-actions button {
  min-height: 42px;
  padding: 10px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.cookie-actions [data-cookie-accept] {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.cookie-actions [data-cookie-save] {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button,
  .service-card {
    transition: none;
  }
}

@media (max-width: 980px) {
  :root {
    --anchor-offset: 96px;
  }

  .brand-logo-img {
    width: 162px;
  }

  .nav {
    gap: 14px;
  }

  .header-phone-mobile {
    display: inline-flex;
    margin-left: auto;
  }

  .header-phone-desktop {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 70;
    display: none;
    height: calc(100dvh - 76px);
    padding: 22px 20px 28px;
    overflow-y: auto;
    align-content: start;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
    gap: 12px;
  }

  .site-nav a,
  .nav-dropdown-toggle {
    padding: 13px 0;
  }

  .nav-dropdown {
    display: grid;
    gap: 0;
  }

  .nav-dropdown-toggle {
    width: 100%;
    text-align: left;
  }

  .nav-dropdown-menu {
    position: static;
    left: auto;
    width: auto;
    display: none;
    padding: 8px 0 8px 14px;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu,
  .nav-dropdown.open .nav-dropdown-menu {
    transform: none;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: grid;
  }

  .nav-dropdown-menu a {
    padding: 10px 12px;
    color: var(--ink-soft);
    background: var(--soft);
  }

  .nav-cta {
    display: inline-flex;
    justify-content: center;
    margin-top: 6px;
  }

  .hero {
    min-height: 0;
    padding: 72px 0 58px;
  }

  .hero::before {
    opacity: .75;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-inner,
  .hero-visual {
    max-width: none;
  }

  .hero h1 {
    font-size: 56px;
  }

  .proof-track,
  .section-head,
  .service-grid,
  .split,
  .timeline,
  .security-grid,
  .audience-grid,
  .contact-inner,
  .article-layout,
  .article-related > div {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-preview {
    max-width: 620px;
  }

  .hero-assurance,
  .hero-checklist {
    position: static;
    width: auto;
    margin-top: 12px;
  }

  .hero-checklist {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-checklist span {
    width: auto;
  }

  .proof-track {
    padding: 18px 0;
    gap: 8px;
  }

  .proof-track a {
    min-height: 42px;
  }

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

  .article-hero h1 {
    font-size: 52px;
  }

  .article-layout {
    gap: 34px;
  }

  .article-toc {
    position: static;
  }

  .article-content h2 {
    font-size: 32px;
  }

  .section {
    padding: 82px 0;
  }

  .section-head {
    gap: 12px;
    margin-bottom: 34px;
  }

  .service-card {
    min-height: auto;
  }

  .timeline {
    border-left: 0;
  }

  .timeline li {
    min-height: 0;
    border-left: 1px solid var(--line);
  }

  .timeline h3 {
    margin-top: 28px;
  }

  .security-grid,
  .audience-grid,
  .contact-inner {
    gap: 34px;
  }

  .security-checks {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    padding: 38px;
  }

  .footer-inner {
    min-height: 0;
    flex-direction: column;
    justify-content: center;
    padding: 34px 0;
    text-align: center;
  }

  .legal-hero {
    padding: 68px 0 52px;
    background-position: right -220px center;
  }

  .legal-hero h1 {
    font-size: 44px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .legal-toc {
    position: static;
  }
}

@media (max-width: 640px) {
  :root {
    --anchor-offset: 86px;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .nav {
    min-height: 68px;
    gap: 10px;
  }

  .site-nav {
    top: 68px;
    height: calc(100dvh - 68px);
  }

  .brand-logo-img {
    width: 150px;
  }

  .header-phone-mobile {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 12px;
  }

  .hero {
    padding: 54px 0 48px;
  }

  .hero-visual {
    display: none;
  }

  .hero h1 {
    font-size: 42px;
  }

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

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
  }

  .article-hero {
    padding: 52px 0 44px;
  }

  .breadcrumbs {
    flex-wrap: wrap;
    margin-bottom: 22px;
  }

  .article-hero h1 {
    font-size: 40px;
  }

  .article-hero h1 + p,
  .article-content p {
    font-size: 17px;
  }

  .article-section {
    padding: 54px 0 70px;
  }

  .article-content section {
    padding: 34px 0;
  }

  .article-content h2 {
    font-size: 28px;
  }

  .article-checklist {
    grid-template-columns: 1fr;
  }

  .article-related a {
    min-height: 0;
  }

  .article-cta {
    padding: 24px !important;
  }

  .article-cta div {
    display: grid;
  }

  .preview-stage {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
  }

  .preview-brand-row img {
    width: 42px;
    height: 32px;
  }

  .preview-copy strong {
    font-size: 27px;
  }

  .preview-metrics {
    grid-template-columns: 1fr;
  }

  .preview-metrics span {
    min-height: 66px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
  }

  .preview-metrics span:last-child {
    border-bottom: 0;
  }

  .hero-checklist {
    display: grid;
  }

  .proof-track {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .section-head h2,
  .section-head-compact h2,
  .security h2,
  .audience h2,
  .contact h2 {
    font-size: 34px;
  }

  .service-card {
    padding: 24px;
  }

  .service-card h3 {
    margin-top: 34px;
  }

  .quality-list > div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px;
  }

  .timeline li {
    padding: 22px;
  }

  .security-checks p {
    min-height: 0;
    padding: 20px;
  }

  .audience-list li,
  .faq-list summary {
    font-size: 18px;
  }

  .contact {
    padding-bottom: 70px;
  }

  .contact-inner {
    padding: 28px 22px;
  }

  .contact-links strong {
    font-size: 20px;
  }

  .legal-hero {
    padding: 52px 0 42px;
    background-size: 380px auto;
  }

  .legal-hero h1 {
    font-size: 36px;
  }

  .legal-hero p:last-child {
    font-size: 17px;
  }

  .legal-section {
    padding: 54px 0 68px;
  }

  .legal-content h2 {
    font-size: 25px;
  }

  .cookie-panel {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    padding: 18px;
  }

  .cookie-actions {
    display: grid;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 37px;
  }

  .section-head h2,
  .section-head-compact h2,
  .security h2,
  .audience h2,
  .contact h2 {
    font-size: 31px;
  }
}
