:root {
  --qr-ink: #16202a;
  --qr-muted: #5f6d7a;
  --qr-line: #d9e0e7;
  --qr-bg: #f7f8f6;
  --qr-surface: #ffffff;
  --qr-navy: #17324d;
  --qr-blue: #2b6f95;
  --qr-green: #3d7c66;
  --qr-warm: #f2eee8;
  --qr-focus: #1f8ac0;
  --qr-shadow: 0 18px 45px rgba(22, 32, 42, 0.11);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--qr-bg);
  color: var(--qr-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: var(--qr-blue);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

:focus-visible {
  outline: 3px solid var(--qr-focus);
  outline-offset: 3px;
}

.qr-skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--qr-ink);
  color: #fff;
}

.qr-skip-link:focus {
  top: 1rem;
}

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

.qr-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 248, 246, 0.95);
  border-bottom: 1px solid rgba(217, 224, 231, 0.8);
  backdrop-filter: blur(14px);
}

.qr-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.qr-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--qr-ink);
  font-weight: 800;
  text-decoration: none;
}

.qr-brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--qr-navy);
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0;
}

.qr-menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.qr-menu a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.55rem 0.8rem;
  border-radius: 8px;
  color: var(--qr-ink);
  text-decoration: none;
  font-weight: 650;
}

.qr-menu a:hover,
.qr-menu .current-menu-item > a {
  background: #e9f1f3;
}

.qr-menu .qr-nav-cta,
.qr-nav-cta {
  background: var(--qr-navy);
  color: #fff;
}

.qr-menu-toggle {
  display: none;
  border: 1px solid var(--qr-line);
  border-radius: 8px;
  background: #fff;
  color: var(--qr-ink);
  min-height: 42px;
  padding: 0 0.9rem;
  font: inherit;
  font-weight: 700;
}

.qr-main {
  min-height: 60vh;
}

.qr-hero {
  padding: clamp(2rem, 5vw, 5rem) 0 2.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(247, 248, 246, 0)),
    var(--qr-bg);
}

.qr-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.qr-hero-copy h1,
.qr-page-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--qr-ink);
  font-size: clamp(2.6rem, 8vw, 5.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.qr-hero-subtitle,
.qr-page-hero p {
  max-width: 680px;
  color: var(--qr-muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.qr-eyebrow {
  margin: 0 0 0.8rem;
  color: var(--qr-green);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.qr-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.8rem 0 1rem;
}

.qr-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.qr-button-primary {
  background: var(--qr-navy);
  color: #fff;
}

.qr-button-secondary {
  background: #fff;
  border-color: var(--qr-line);
  color: var(--qr-ink);
}

.qr-legal-note {
  color: var(--qr-muted);
  font-size: 0.95rem;
}

.qr-hero-visual {
  margin: 0;
}

.qr-hero-visual img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--qr-shadow);
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.qr-section,
.qr-page-hero {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.qr-section-light {
  background: #fff;
}

.qr-section-muted {
  background: var(--qr-warm);
}

.qr-section-heading {
  max-width: 760px;
  margin-bottom: 1.8rem;
}

.qr-section-heading h2,
.qr-two-columns h2,
.qr-security-band h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.qr-steps,
.qr-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}

.qr-step,
.qr-price-card,
.qr-boundary-panel,
.qr-security-band,
.qr-faq-list details {
  border: 1px solid var(--qr-line);
  border-radius: 8px;
  background: var(--qr-surface);
}

.qr-step,
.qr-price-card,
.qr-boundary-panel {
  padding: 1.15rem;
}

.qr-step span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #e1f0ec;
  color: #1f5c49;
  font-weight: 850;
}

.qr-step h3,
.qr-price-card h3 {
  margin: 1rem 0 0;
  line-height: 1.2;
}

.qr-two-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(1.5rem, 4vw, 3rem);
}

.qr-check-list,
.qr-x-list,
.qr-price-card ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.qr-check-list li,
.qr-x-list li,
.qr-price-card li {
  position: relative;
  padding-left: 1.35rem;
  margin: 0.55rem 0;
  color: var(--qr-muted);
}

.qr-check-list li::before,
.qr-price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--qr-green);
}

.qr-x-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #8b3f3f;
}

.qr-boundary-panel {
  background: #fbf8f2;
}

.qr-price {
  margin: 0.3rem 0 0.8rem;
  color: var(--qr-navy);
  font-size: 2rem;
  font-weight: 850;
}

.qr-price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.qr-price-card .qr-button {
  margin-top: auto;
}

.qr-security-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.3rem, 4vw, 2rem);
}

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

.qr-faq-list details {
  padding: 1rem 1.1rem;
}

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

.qr-faq-list p {
  color: var(--qr-muted);
}

.qr-page-hero {
  background: #fff;
  border-bottom: 1px solid var(--qr-line);
}

.qr-page-content {
  max-width: 1040px;
}

.qr-prose {
  max-width: 780px;
}

.qr-timeline {
  display: grid;
  gap: 0.75rem;
  max-width: 760px;
}

.qr-timeline-item {
  border-left: 4px solid var(--qr-green);
  border-radius: 8px;
  background: #fff;
  padding: 1rem;
  font-weight: 800;
}

.qr-site-footer {
  background: var(--qr-ink);
  color: #dfe8ed;
  padding: 3rem 0 1.5rem;
}

.qr-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.6fr);
  gap: 2rem;
}

.qr-footer-brand {
  color: #fff;
}

.qr-disclaimer {
  max-width: 740px;
  color: #b9c6ce;
}

.qr-footer-menu {
  display: grid;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.qr-footer-menu a,
.qr-site-footer a {
  color: #f5fbff;
}

.qr-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #b9c6ce;
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .qr-menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .qr-primary-nav {
    display: none;
    position: absolute;
    inset: 72px 1rem auto 1rem;
    padding: 0.65rem;
    border: 1px solid var(--qr-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--qr-shadow);
  }

  .qr-primary-nav.is-open {
    display: block;
  }

  .qr-menu,
  .qr-footer-bottom {
    display: grid;
    align-items: stretch;
  }

  .qr-menu a {
    justify-content: flex-start;
  }

  .qr-hero-grid,
  .qr-two-columns,
  .qr-security-band,
  .qr-footer-grid {
    grid-template-columns: 1fr;
  }

  .qr-hero {
    padding-top: 2rem;
  }

  .qr-hero-copy h1,
  .qr-page-hero h1 {
    font-size: clamp(2.45rem, 12vw, 4rem);
  }
}

