:root {
  --brass: #34c759;
  --midnight: #0f1722;
  --ink: #15202d;
  --paper: #f5f7fb;
  --panel: rgba(255, 255, 255, 0.96);
  --panel-soft: #eff5ef;
  --panel-dark: rgba(255, 255, 255, 0.08);
  --border: rgba(15, 23, 34, 0.1);
  --border-strong: rgba(15, 23, 34, 0.18);
  --muted: #5f6c7b;
  --shadow: 0 20px 44px rgba(15, 23, 34, 0.14);
  --shadow-strong: 0 22px 60px rgba(3, 7, 18, 0.28);
  --hero-gradient: linear-gradient(135deg, #09111a 0%, #121b28 52%, #173523 100%);
  --surface-gradient: linear-gradient(180deg, #f6f8fb 0%, #edf2f7 100%);
  --surface-accent: linear-gradient(180deg, rgba(52, 199, 89, 0.1) 0%, rgba(52, 199, 89, 0.04) 100%);
  --header-bg: rgba(8, 13, 20, 0.92);
  --nav-overlay: rgba(4, 9, 14, 0.72);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --header-offset: 5.5rem;
  --site-max: 1180px;
  --site-max-wide: 1240px;
  --z-background: 0;
  --z-content: 1;
  --z-skip-link: 20;
  --z-header: 100;
  --z-cookie: 120;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  min-height: 100vh;
  position: relative;
  overflow-x: clip;
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(52, 199, 89, 0.1), transparent 28rem),
    radial-gradient(circle at bottom right, rgba(15, 23, 34, 0.08), transparent 26rem),
    var(--surface-gradient);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

picture {
  display: block;
  width: 100%;
  max-width: 100%;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(52, 199, 89, 0.78);
  outline-offset: 3px;
}

.page-glow {
  display: none;
}

.page-glow-one {
  top: 6rem;
  left: 0;
  transform: translateX(-35%);
  background: rgba(255, 255, 255, 0.16);
}

.page-glow-two {
  top: 24rem;
  right: 0;
  transform: translateX(35%);
  background: rgba(17, 24, 39, 0.08);
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: var(--z-skip-link);
  background: var(--midnight);
  color: white;
  border-radius: 999px;
  padding: 0.75rem 1rem;
}

.site-header,
.cookie-banner,
.hero,
.section,
.stats-section,
.page-hero,
.final-cta,
.site-footer {
  position: relative;
  z-index: var(--z-content);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  isolation: isolate;
  background: rgba(8, 13, 20, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 28px rgba(3, 7, 18, 0.22);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: calc(var(--safe-bottom) + 1rem);
  z-index: var(--z-cookie);
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 1rem;
  display: grid;
  gap: 0.9rem;
  align-items: center;
  background: rgba(8, 14, 21, 1);
  color: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.25rem;
  box-shadow: var(--shadow-strong);
}

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

.cookie-banner-copy {
  display: grid;
  gap: 0.35rem;
}

.cookie-banner-copy strong {
  font-size: 0.95rem;
}

.cookie-banner-copy p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-banner-link,
.cookie-banner-dismiss,
.cookie-banner-accept,
.cookie-banner-decline {
  min-height: 44px;
}

.cookie-settings-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.header-inner {
  position: relative;
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 0.72rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.brand {
  min-width: 0;
  width: auto;
  flex-shrink: 1;
  max-width: calc(100vw - 7.4rem);
  display: inline-block;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.98);
}

.brand-logo {
  display: block;
  width: min(224px, 100%);
  height: auto;
  overflow: visible;
}

.brand-logo-wordmark {
  letter-spacing: -0.02em;
}

.brand-logo-tagline {
  opacity: 0.76;
}

.menu-toggle,
.button {
  appearance: none;
  font: inherit;
}

.menu-toggle {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-radius: 999px;
  min-height: 46px;
  padding: 0.68rem 0.95rem;
  font-weight: 800;
}

.nav-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header-offset);
  bottom: 0;
  background: var(--nav-overlay);
  opacity: 0;
  transition: opacity 0.18s ease;
}

.main-nav {
  position: fixed;
  left: 0.9rem;
  right: 0.9rem;
  top: calc(var(--header-offset) + 0.55rem);
  display: grid;
  gap: 1rem;
  align-content: start;
  justify-items: stretch;
  min-height: 0;
  height: auto;
  padding: 1rem;
  border-radius: 1.3rem;
  background: rgba(8, 14, 21, 0.99);
  box-shadow: var(--shadow-strong);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-height: calc(100dvh - var(--header-offset) - 1.45rem - var(--safe-bottom));
  overflow-y: auto;
  overscroll-behavior: contain;
}

.main-nav[hidden] {
  display: none;
}

.main-nav[data-open="true"] + .nav-overlay,
.nav-overlay[data-open="true"] {
  opacity: 1;
}

.nav-primary-links {
  display: grid;
  gap: 0.8rem;
}

.main-nav a {
  text-decoration: none;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
}

.nav-primary-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  width: fit-content;
  padding: 0.18rem 0;
}

.main-nav a[aria-current="page"] {
  color: white;
}

.main-nav a:not(.button) {
  transition: color 0.18s ease, opacity 0.18s ease;
}

.main-nav a:not(.button):hover {
  color: white;
}

.main-nav a[aria-current="page"]:not(.button) {
  position: relative;
}

.main-nav a[aria-current="page"]:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.18rem;
  height: 0.18rem;
  border-radius: 999px;
  background: var(--brass);
}

.nav-button {
  min-width: 100%;
}

.nav-button-active {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.14) inset;
}

.hero,
.section,
.stats-section,
.page-hero,
.final-cta {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 3rem 1.1rem;
}

.hero,
.page-hero {
  background: var(--hero-gradient);
  color: white;
  border-radius: 0 0 2rem 2rem;
}

.hero {
  display: grid;
  gap: 1.1rem;
  align-items: start;
  padding-top: 2.8rem;
  padding-bottom: 2rem;
  padding-left: 1.6rem;
  padding-right: 1.6rem;
}

.hero-copy,
.page-hero-main,
.showcase-copy,
.contact-card-copy {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.hero-copy,
.page-hero-main {
  padding-inline: 0.95rem;
}

.page-hero {
  padding-top: 2.6rem;
  padding-bottom: 2rem;
  padding-left: 1.35rem;
  padding-right: 1.35rem;
}

.page-hero-split {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.page-hero-side {
  display: grid;
  gap: 0.9rem;
  align-content: start;
  padding: 1.15rem 1.2rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumbs {
  margin: 0 0 0.1rem;
}

.breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  line-height: 1.45;
}

.breadcrumbs-item + .breadcrumbs-item::before {
  content: "/";
  color: rgba(255, 255, 255, 0.42);
}

.breadcrumbs a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.breadcrumbs a:hover {
  border-color: rgba(255, 255, 255, 0.45);
}

.eyebrow,
.card-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.77rem;
  font-weight: 800;
  color: var(--brass);
}

.eyebrow {
  display: inline-block;
  max-width: 100%;
  line-height: 1.2;
  justify-self: start;
}

.hero .eyebrow,
.page-hero-main > .eyebrow {
  white-space: nowrap;
}

.hero .eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.11em;
  line-height: 1.35;
}

.card-kicker {
  display: block;
  line-height: 1.35;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.18;
  font-family: Georgia, "Times New Roman", serif;
  overflow-wrap: anywhere;
}

h1 {
  font-size: 26px;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
}

.hero h1,
.page-hero h1 {
  max-width: 24ch;
}

.hero-text,
.page-hero p,
.section p,
.timeline-copy p,
.contact-card p,
.image-card-copy p,
.cta-copy p,
.site-footer p {
  font-size: 1rem;
  max-width: 68ch;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.hero-text,
.hero-note,
.page-hero p,
.hero-visual-card span,
.dark-card p {
  color: rgba(255, 255, 255, 0.82);
}

.hero-text {
  font-size: 1.08rem;
  line-height: 1.72;
  max-width: 60ch;
}

.hero-note {
  font-size: 1rem;
  line-height: 1.68;
  max-width: 60ch;
}

.hero-badges,
.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.contact-actions.dual > * {
  flex: 1 1 13rem;
}

.hero-actions {
  margin-top: 0.15rem;
}

.hero-badges span,
.contact-points li {
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.hero-badges span {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  max-width: 100%;
  min-height: 48px;
  border-radius: 999px;
  padding: 0.82rem 1.25rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

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

.button.primary {
  background: linear-gradient(180deg, #46d566 0%, #2eb651 100%);
  color: #08111a;
  border-color: rgba(52, 199, 89, 0.58);
  box-shadow: 0 8px 18px rgba(52, 199, 89, 0.13);
}

.button.secondary {
  background: rgba(241, 245, 249, 0.96);
  color: #18212d;
  border-color: rgba(15, 23, 42, 0.14);
}

.button.secondary.light {
  background: rgba(255, 255, 255, 0.12);
  color: #fffdfa;
  border-color: rgba(255, 255, 255, 0.16);
}

.button.primary:hover {
  background: linear-gradient(180deg, #54dd73 0%, #38c05b 100%);
  box-shadow: 0 10px 22px rgba(52, 199, 89, 0.18);
}

.button.secondary:hover {
  background: rgba(232, 238, 244, 0.98);
}

.button.secondary.light:hover {
  background: rgba(255, 255, 255, 0.16);
}

.button.secondary.danger {
  color: #8c1d18;
  border-color: rgba(140, 29, 24, 0.18);
  background: rgba(255, 245, 245, 0.92);
}

.button.secondary.danger:hover {
  background: rgba(255, 235, 235, 0.98);
}

.text-link-action {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  font-weight: 800;
  text-decoration: none;
  color: var(--midnight);
  border-bottom: 2px solid rgba(15, 23, 34, 0.16);
  transition: color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.text-link-action:hover {
  color: #08111a;
  border-color: rgba(15, 23, 34, 0.45);
  transform: translateY(-1px);
}

.text-link-action.light {
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
}

.text-link-action.light:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.55);
}

.card,
.contact-card,
.contact-form,
.timeline-row,
.stat-card,
.site-footer,
.hero-visual,
.final-cta,
.notice-panel {
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-visual,
.card,
.contact-card,
.contact-form,
.timeline-row,
.stat-card,
.final-cta,
.site-footer {
  background: var(--panel);
}

.hero-visual {
  position: relative;
  max-width: 520px;
  justify-self: stretch;
  padding: 0.3rem;
  border-radius: 1.45rem;
  background: rgba(255, 255, 255, 0.05);
}

.hero-visual img,
.image-card img,
.contact-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 1.15rem;
}

.hero-visual img,
.image-card img {
  aspect-ratio: 4 / 3;
}

.hero-visual-card {
  position: static;
  display: grid;
  gap: 0.35rem;
  margin-top: 0.8rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(8, 12, 19, 0.78);
  color: white;
}

.stats-section {
  margin-top: -1rem;
  padding-top: 0;
}

.stats-grid,
.card-grid,
.feature-grid,
.feature-grid-primary,
.stack-grid,
.contact-layout,
.process-preview,
.footer-grid,
.split-showcase {
  display: grid;
  gap: 1rem;
}

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

.stat-card,
.card,
.contact-form,
.timeline-row,
.notice-panel {
  padding: 1.15rem 1.15rem 1.2rem;
  border-radius: 1.3rem;
}

.stat-card strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.2rem;
  color: var(--midnight);
  line-height: 1.2;
}

.stat-card span {
  display: block;
  color: var(--muted);
  line-height: 1.6;
}

.section-shell {
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.76);
}

body.page-proofs .proofs-section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

body.page-proofs .proofs-section .section-heading {
  margin-bottom: 0.85rem;
}

body.page-proofs .proofs-section .card-grid.two {
  gap: 0.9rem;
}

body.page-proofs .proofs-section .section-note {
  margin: 0;
  color: var(--muted);
  max-width: 62ch;
}

body.page-404 .section-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 58ch;
}

body.page-404 .not-found-hero {
  overflow: hidden;
}

.path-badge {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.94em;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.not-found-stage {
  position: relative;
  overflow: hidden;
}

.not-found-orbit {
  position: relative;
  width: min(100%, 250px);
  aspect-ratio: 1;
  margin: 0 auto 0.4rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(52, 199, 89, 0.2), transparent 34%),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.12), transparent 58%);
}

.not-found-ring,
.not-found-pulse,
.not-found-dot {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
}

.not-found-ring {
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.not-found-ring-a {
  width: 72%;
  height: 72%;
  animation: orbitFloat 7.2s ease-in-out infinite;
}

.not-found-ring-b {
  width: 94%;
  height: 94%;
  animation: orbitFloat 9.4s ease-in-out infinite reverse;
}

.not-found-pulse {
  width: 28%;
  height: 28%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.95), rgba(52, 199, 89, 0.42) 55%, rgba(52, 199, 89, 0.06) 100%);
  box-shadow: 0 0 34px rgba(52, 199, 89, 0.28);
  animation: orbitPulse 3s ease-in-out infinite;
}

.not-found-dot {
  width: 0.85rem;
  height: 0.85rem;
  margin-top: -0.425rem;
  margin-left: -0.425rem;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.42);
}

.not-found-dot-a {
  animation: orbitA 8s linear infinite;
}

.not-found-dot-b {
  background: var(--brass);
  box-shadow: 0 0 22px rgba(52, 199, 89, 0.52);
  animation: orbitB 11s linear infinite;
}

.not-found-guidance .linked-card {
  align-content: start;
}

.section-heading {
  margin-bottom: 1.2rem;
  display: grid;
  gap: 0.7rem;
}

.feature-card,
.bullet-card,
.faq-card,
.fact-card,
.feature-support-card,
.linked-card {
  display: grid;
  gap: 0.7rem;
}

.linked-card h3 a {
  text-decoration: none;
}

.linked-card h3 a:hover {
  text-decoration: underline;
}

.feature-grid-primary {
  align-content: start;
}

.process-showcase-primary {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.feature-support-card {
  background: linear-gradient(180deg, rgba(241, 247, 242, 0.98) 0%, rgba(232, 241, 234, 0.95) 100%);
}

.feature-support-card h3 {
  max-width: 22ch;
}

.sample-output-card,
.comparison-card,
.contrast-card,
.muted-card {
  display: grid;
  gap: 0.8rem;
}

.sample-output-card {
  align-content: start;
  gap: 1rem;
}

.sample-output-card .card-kicker {
  display: block;
  line-height: 1.5;
  margin-bottom: 0.15rem;
}

.notice-panel {
  display: grid;
  gap: 0.95rem;
  align-items: start;
  padding-top: 1.4rem;
  padding-left: 1.3rem;
  padding-right: 1.2rem;
  padding-bottom: 1.35rem;
}

.notice-panel > div {
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.notice-panel h2 {
  line-height: 1.22;
  max-width: 28ch;
}

.notice-panel > p {
  max-width: 52ch;
}

.split-showcase + .section-shell {
  padding-top: 2.2rem;
}

.accent-card,
.dark-panel,
.final-cta {
  background: var(--hero-gradient);
  color: white;
}

.accent-card p {
  color: rgba(255, 255, 255, 0.84);
}

.image-card {
  overflow: hidden;
  padding: 0;
}

.image-card-copy {
  padding: 1.1rem 1.15rem 1.2rem;
}

.contact-card-copy {
  padding: 0.95rem 1rem 1rem;
}

.dark-panel {
  border-radius: 1.6rem;
  padding-top: 3.35rem;
  padding-left: 1.9rem;
  padding-right: 1.9rem;
}

.dark-panel .section-heading {
  gap: 0.8rem;
  margin-bottom: 1.35rem;
  padding-left: 0.15rem;
}

.dark-card {
  background: var(--panel-dark);
  border-color: rgba(255, 255, 255, 0.08);
  color: white;
}

.timeline-row {
  display: grid;
  gap: 0.95rem;
}

.timeline-step {
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 0.95rem;
  display: grid;
  place-items: center;
  background: var(--midnight);
  color: white;
  font-weight: 800;
}

.green-panel {
  background: var(--surface-accent);
}

.contrast-card {
  background: rgba(19, 30, 43, 0.98);
  color: white;
  border-color: rgba(15, 23, 34, 0.08);
}

.contrast-card p,
.contrast-card li {
  color: rgba(255, 255, 255, 0.82);
}

.muted-card {
  background: rgba(239, 245, 239, 0.98);
}

.contact-card {
  display: grid;
  overflow: hidden;
  gap: 1.15rem;
  padding: 1.15rem 1.15rem 1.2rem;
}

.contact-card img {
  max-height: 250px;
}

.contact-points {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact-points li {
  color: var(--ink);
  background: var(--panel-soft);
  border: 1px solid rgba(52, 199, 89, 0.14);
  border-radius: 1rem;
  padding: 0.85rem 0.95rem;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: stretch;
}

.quotation-layout {
  align-items: start;
}

.quotation-progress {
  display: grid;
  gap: 1rem;
  min-width: 0;
}

.quotation-progress-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.quotation-progress-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
}

.quotation-progress-link {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  color: inherit;
  text-decoration: none;
}

.quotation-progress-link.static {
  cursor: default;
}

.quotation-progress-link:not(.static):hover .quotation-progress-label,
.quotation-progress-link:not(.static):hover .quotation-progress-title {
  color: #08111a;
}

.quotation-progress-item.active {
  border-color: rgba(52, 199, 89, 0.35);
  background: rgba(52, 199, 89, 0.08);
}

.quotation-progress-number {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-weight: 800;
  font-size: 0.92rem;
}

.quotation-progress-copy {
  display: grid;
  gap: 0.2rem;
}

.quotation-progress-label {
  font-weight: 800;
  color: var(--ink);
}

.quotation-progress-title {
  color: var(--muted);
  line-height: 1.5;
}

.quotation-guidance {
  display: grid;
  gap: 0.95rem;
  padding: 1rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(52, 199, 89, 0.18);
  background: linear-gradient(180deg, rgba(241, 247, 242, 0.98) 0%, rgba(232, 241, 234, 0.96) 100%);
}

.quotation-guidance-kicker {
  margin: 0;
}

.quotation-guidance-copy,
.quotation-guidance-meta {
  display: grid;
  gap: 0.65rem;
  align-content: start;
}

.quotation-guidance-copy h2,
.quotation-guidance-copy p,
.quotation-guidance-block p {
  margin: 0;
}

.quotation-guidance-block {
  display: grid;
  gap: 0.25rem;
  padding: 0.8rem 0.85rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(15, 23, 34, 0.06);
}

.quotation-guidance-label {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #19833b;
}

.quotation-guidance-points {
  margin-top: 0.1rem;
}

.form-intro {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}

.required-note,
.privacy-note {
  margin: 0;
  color: var(--muted);
}

.field-note {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.58;
  max-width: 58ch;
}

.quotation-form-step-note {
  display: grid;
  gap: 0.35rem;
  margin: 0.1rem 0 0.35rem;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(52, 199, 89, 0.16);
  background: linear-gradient(180deg, rgba(242, 248, 243, 0.98) 0%, rgba(235, 243, 237, 0.96) 100%);
}

.quotation-form-step-note strong,
.quotation-form-step-note p {
  margin: 0;
}

.quotation-form-step-note strong {
  color: var(--ink);
}

.quotation-form .field-note {
  margin-top: -0.04rem;
}

.required-mark {
  color: #d93025;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 800;
}

.label-text {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
  flex-wrap: wrap;
}

input,
select,
textarea,
button {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--border-strong);
  border-radius: 1rem;
  padding: 0.9rem 1rem;
  background: #f8fbfd;
  color: var(--ink);
}

input::placeholder,
textarea::placeholder {
  color: #6f7b89;
}

textarea {
  resize: vertical;
  min-height: 11rem;
}

.checkbox {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.9rem;
  padding: 0.2rem 0;
}

.checkbox input {
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.12rem;
}

.checkbox span {
  font-weight: 600;
  line-height: 1.58;
}

.quotation-review-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 0.65rem;
}

.review-card {
  display: grid;
  gap: 0.45rem;
}

.review-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.review-card p {
  margin: 0;
}

.notice-box {
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(52, 199, 89, 0.28);
  background: rgba(237, 250, 240, 0.96);
  color: var(--ink);
}

.notice-box p,
.notice-box strong {
  margin: 0;
}

.notice-box strong {
  display: inline-block;
  margin-bottom: 0.2rem;
}

.error-box.compact {
  margin-bottom: 0.65rem;
}

.resume-card {
  display: grid;
  gap: 1rem;
  margin-top: 0.15rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.resume-form {
  display: grid;
  gap: 0.75rem;
  padding: 0 1rem 0.05rem;
}

.quotation-cancel-form {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0.85rem 1rem 0.35rem;
}

.resume-card .error-box.compact {
  margin-left: 0;
  margin-right: 0;
}

.quotation-cancel-form .button {
  justify-self: start;
  max-width: 100%;
}

.recaptcha-block {
  display: grid;
  gap: 0.3rem;
  margin-top: 0.4rem;
}

.recaptcha-note,
.recaptcha-links,
.recaptcha-error {
  margin: 0;
  color: var(--muted);
}

.recaptcha-links {
  font-size: 0.92rem;
}

.recaptcha-error {
  color: #b42318;
  font-weight: 700;
}

.error-box {
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(220, 38, 38, 0.25);
  background: rgba(254, 242, 242, 0.96);
}

.error-box ul {
  margin: 0.6rem 0 0;
  padding-left: 1.2rem;
}

.error-box strong {
  display: inline-block;
  margin-bottom: 0.15rem;
}

.storage-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
  font-size: 0.95rem;
}

.storage-table th,
.storage-table td {
  padding: 0.8rem 0.7rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
  overflow-wrap: anywhere;
  word-break: normal;
}

.storage-table th {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  white-space: normal;
}

.storage-table-section {
  padding: 0.9rem;
}

.storage-table-card {
  overflow-x: auto;
}

.storage-table td:first-child,
.storage-table th:first-child {
  min-width: 8rem;
}

.storage-table td:nth-child(2),
.storage-table th:nth-child(2) {
  min-width: 20rem;
}

.storage-table td:nth-child(3),
.storage-table th:nth-child(3),
.storage-table td:nth-child(4),
.storage-table th:nth-child(4),
.storage-table td:nth-child(5),
.storage-table th:nth-child(5),
.storage-table td:nth-child(6),
.storage-table th:nth-child(6) {
  min-width: 7rem;
}

.comparison-list,
.timeline-meta {
  margin: 0;
  padding-left: 1.15rem;
}

.comparison-list {
  display: grid;
  gap: 0.45rem;
}

.timeline-meta {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.before-after-grid,
.service-rhythm-grid {
  display: grid;
  gap: 1rem;
}

.comparison-before {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border-color: var(--border);
}

.comparison-before .card-kicker,
.comparison-before h3,
.comparison-before li,
.comparison-before p {
  color: var(--ink);
}

.comparison-after {
  background: linear-gradient(180deg, rgba(52, 199, 89, 0.1) 0%, rgba(52, 199, 89, 0.04) 100%);
}

.page-hero-compact {
  padding-top: 2rem;
  padding-bottom: 1.5rem;
}

.faq-section .card-grid,
.section-shell .card-grid {
  align-items: stretch;
}

.final-cta {
  display: grid;
  gap: 1.35rem;
  margin-bottom: 2.1rem;
  border-radius: 1.6rem;
  padding-bottom: calc(2rem + var(--safe-bottom));
  align-items: start;
}

.cta-copy {
  display: grid;
  gap: 0.95rem;
}

.final-cta .hero-actions {
  margin-top: 0.3rem;
}

.site-footer {
  max-width: var(--site-max);
  margin: 2rem auto calc(1.8rem + var(--safe-bottom));
  padding: 1.5rem 1.2rem calc(1.6rem + var(--safe-bottom));
  border-radius: 1.6rem;
  background: #0b1118;
  color: white;
}

.site-footer h2 {
  margin-bottom: 0.8rem;
}

.site-footer p {
  margin: 0 0 0.7rem;
  color: rgba(255, 255, 255, 0.82);
}

.footer-meta {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-meta p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.66);
}

.hero-side-list {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-hero-side .hero-side-list li {
  color: rgba(255, 255, 255, 0.82);
}

.hero-side-list li {
  position: relative;
  padding-left: 1rem;
}

.hero-side-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--brass);
}

@keyframes orbitFloat {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.04);
  }
}

@keyframes orbitPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.9;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.12);
    opacity: 1;
  }
}

@keyframes orbitA {
  from {
    transform: rotate(0deg) translateX(5.9rem);
  }

  to {
    transform: rotate(360deg) translateX(5.9rem);
  }
}

@keyframes orbitB {
  from {
    transform: rotate(360deg) translateX(7.6rem);
  }

  to {
    transform: rotate(0deg) translateX(7.6rem);
  }
}

.service-card h2,
.timeline-copy h2 {
  max-width: none;
}

.image-card-copy h3,
.dark-card h3,
.faq-card h3,
.feature-card h3 {
  line-height: 1.2;
}

main section[id],
main article[id] {
  scroll-margin-top: 6rem;
}

body.page-legal {
  background:
    radial-gradient(circle at top left, rgba(52, 199, 89, 0.06), transparent 26rem),
    linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
}

body.page-legal .page-hero {
  padding-top: 1.85rem;
  padding-bottom: 1.35rem;
  border-radius: 0 0 1.45rem 1.45rem;
}

body.page-legal .page-hero-split {
  grid-template-columns: minmax(0, 1fr);
  gap: 0.85rem;
}

body.page-legal .page-hero-main {
  max-width: none;
}

body.page-legal .page-hero h1 {
  max-width: 42ch;
}

body.page-legal .page-hero p {
  max-width: 60rem;
}

.legal-hero-meta {
  max-width: 58rem;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.78);
}

body.page-legal .section-shell,
body.page-legal .notice-panel {
  background: rgba(255, 255, 255, 0.9);
}

body.page-legal .dark-panel {
  background: #15202d;
}

body.page-contact .page-hero {
  margin-bottom: 0.35rem;
}

body.page-contact .contact-layout {
  padding-top: 1.2rem;
}

@media (min-width: 860px) {
  h1 {
    font-size: clamp(2.7rem, 3vw, 3rem);
    line-height: 1.14;
  }

  h2 {
    font-size: clamp(1.8rem, 2.1vw, 2.15rem);
    line-height: 1.14;
  }

  .cookie-banner {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 1rem 1.25rem;
  }

  .header-inner {
    padding: 0.9rem 1.45rem;
  }

  .notice-panel {
    gap: 1.05rem;
    padding-top: 1.55rem;
    padding-left: 1.45rem;
    padding-right: 1.35rem;
    padding-bottom: 1.45rem;
  }

  .notice-panel h2 {
    max-width: 38ch;
  }

  .brand {
    color: rgba(255, 255, 255, 0.98);
  }

  .brand-logo {
    width: 264px;
  }

  .menu-toggle,
  .nav-overlay {
    display: none;
  }

  .main-nav,
  .main-nav[hidden] {
    position: static;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    display: flex;
    flex: 0 0 auto;
    align-self: center;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    padding: 0;
    min-height: 0;
    height: auto;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    border: 0;
  }

  .nav-primary-links {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 1.35rem;
  }

  .main-nav a {
    font-size: 1.02rem;
  }

  .nav-button {
    min-width: auto;
    margin-left: 0.7rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1.24fr) minmax(360px, 0.76fr);
    gap: 1.8rem;
    align-items: stretch;
    padding: 3.45rem 2.45rem 2.7rem;
  }

  .hero-copy {
    gap: 1.2rem;
    padding-inline: 1rem 0.35rem;
  }

  .hero h1,
  .page-hero h1 {
    max-width: none;
  }

  .hero h1 {
    max-width: 18.2ch;
  }

  .hero-text {
    font-size: 1.14rem;
    line-height: 1.74;
    max-width: 56ch;
  }

  .hero-note {
    font-size: 1.03rem;
    line-height: 1.72;
    max-width: 58ch;
  }

  .page-hero {
    padding: 2.55rem 1.8rem 2rem;
  }

  .page-hero-split {
    grid-template-columns: minmax(0, 1fr) 270px;
    gap: 1.15rem;
  }

  body.page-legal .page-hero-split {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.85rem;
  }

  .page-hero-compact {
    padding-top: 1.8rem;
    padding-bottom: 1.4rem;
  }

  .hero-visual {
    max-width: none;
    align-self: stretch;
  }

  .hero-visual img {
    min-height: 520px;
    height: 100%;
    aspect-ratio: auto;
  }

  .hero-visual-card {
    position: absolute;
    left: 0.9rem;
    right: 0.9rem;
    bottom: 0.9rem;
    margin-top: 0;
  }

  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .stat-card {
    padding: 1.25rem 1.2rem 1.28rem;
  }

  .stat-card strong {
    margin-bottom: 0.5rem;
    font-size: 1.28rem;
  }

  .stat-card span,
  .card p,
  .faq-card p,
  .fact-card p,
  .feature-card p,
  .comparison-card p,
  .comparison-card li,
  .dark-card p,
  .timeline-copy p {
    font-size: 1.02rem;
  }

  .card-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card-grid.four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .feature-grid,
  .split-showcase,
  .contact-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .feature-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  }

  .split-showcase {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  }

  .quotation-layout.contact-layout {
    grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
    align-items: start;
  }

  .quotation-layout .contact-form {
    min-height: 0;
    align-self: start;
    align-content: start;
    gap: 0.7rem;
  }

  .quotation-layout .contact-card {
    min-height: 0;
    display: grid;
    align-content: start;
    position: sticky;
    top: calc(var(--header-offset) + 1rem);
  }

  .quotation-layout .quotation-guidance {
    align-content: start;
  }

  .quotation-layout .contact-card-copy {
    padding-top: 1rem;
    padding-bottom: 1.05rem;
  }

  .quotation-layout .quotation-form label {
    gap: 0.32rem;
  }

  .quotation-layout .quotation-form .field-note {
    font-size: 0.9rem;
  }

  .quotation-layout .quotation-form .contact-actions {
    margin-top: 0.25rem;
  }

  .quotation-layout .quotation-form .quotation-form-step-note {
    margin-bottom: 0.15rem;
  }

  .quotation-layout .contact-actions.dual > * {
    flex: 0 1 14rem;
  }

  .feature-support-card {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    column-gap: 1.15rem;
    row-gap: 0.7rem;
    align-items: start;
  }

  .feature-support-card > .card-kicker,
  .feature-support-card > h3,
  .feature-support-card > p:not(.card-kicker) {
    grid-column: 1;
  }

  .feature-support-card > .comparison-list {
    grid-column: 2;
    grid-row: 1 / span 4;
    margin-top: 0.15rem;
    align-self: start;
  }

  .feature-support-card h3 {
    max-width: none;
  }

  .before-after-grid,
  .service-rhythm-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .storage-table-section {
    padding: 1rem;
  }

  .timeline-row {
    grid-template-columns: 3.4rem 1fr;
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.85fr 0.85fr 0.95fr;
    column-gap: 1.55rem;
  }
}

@media (min-width: 860px) and (max-width: 1110px) {
  .header-inner {
    gap: 0.7rem;
    padding-inline: 1.2rem;
  }

  .brand-logo {
    width: 248px;
  }

  .main-nav {
    gap: 0.75rem;
  }

  .nav-primary-links {
    gap: 0.95rem;
  }

  .main-nav a {
    font-size: 0.96rem;
  }

  .nav-button {
    margin-left: 0.3rem;
    padding-inline: 1rem;
  }
}

@media (min-width: 1040px) {
  .final-cta {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.6rem;
    padding-right: 2rem;
    padding-left: 2rem;
  }

  .cta-copy {
    max-width: 52rem;
  }

  .final-cta .hero-actions {
    justify-self: end;
    align-self: center;
    margin-top: 0;
  }
}

@media (min-width: 1280px) {
  .cookie-banner,
  .header-inner,
  .hero,
  .section,
  .stats-section,
  .page-hero,
  .final-cta,
  .site-footer {
    max-width: var(--site-max-wide);
  }

  .header-inner {
    padding-inline: 1.65rem;
  }

  .hero {
    gap: 2rem;
    padding-inline: 2.7rem;
  }
}

@media (min-width: 1440px) {
  .hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(410px, 0.8fr);
  }

  .feature-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
    gap: 1.15rem;
  }

  .split-showcase {
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
    gap: 1.15rem;
  }

  .section,
  .page-hero,
  .site-footer {
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }
}

@media (max-width: 859px) {
  .cookie-banner {
    left: 0.85rem;
    right: 0.85rem;
    bottom: calc(var(--safe-bottom) + 0.85rem);
    padding: 0.9rem;
  }

  .cookie-banner-actions > * {
    width: 100%;
    justify-content: center;
  }

  .main-nav {
    gap: 0.85rem;
    padding-bottom: calc(1rem + var(--safe-bottom));
  }

  .nav-overlay[data-open="true"] {
    display: block;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    max-width: 18ch;
  }
}

@media (max-width: 640px) {
  .site-header[data-scrolled="true"] .header-inner {
    padding-top: 0.62rem;
    padding-bottom: 0.62rem;
  }

  .brand {
    color: rgba(255, 255, 255, 0.98);
    max-width: calc(100vw - 6.8rem);
  }

  .brand-logo {
    width: min(186px, 100%);
  }

  .header-inner {
    gap: 0.7rem;
  }

  .hero,
  .page-hero,
  .section,
  .stats-section,
  .final-cta {
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  body.page-proofs .proofs-section {
    padding-top: 1.35rem;
    padding-bottom: 1.35rem;
  }

  body.page-proofs .proofs-section .section-heading {
    gap: 0.55rem;
    margin-bottom: 0.7rem;
  }

  body.page-proofs .proofs-section .card-grid.two {
    gap: 0.75rem;
  }

  body.page-404 .not-found-orbit {
    width: min(100%, 220px);
    margin-bottom: 0.2rem;
  }

  .dark-panel {
    padding-left: 1.3rem;
    padding-right: 1.3rem;
  }

  .contact-card {
    gap: 1rem;
    padding: 1rem;
  }

  .hero,
  .page-hero {
    padding-top: 2.25rem;
    padding-bottom: 1.7rem;
  }

  .page-hero-compact {
    padding-top: 1.75rem;
    padding-bottom: 1.35rem;
  }

  .hero-copy,
  .page-hero-main {
    gap: 0.9rem;
  }

  .hero h1,
  .page-hero h1 {
    max-width: none;
  }

  .hero-text,
  .page-hero p,
  .section p,
  .timeline-copy p,
  .contact-card p,
  .image-card-copy p,
  .cta-copy p {
    line-height: 1.72;
  }

  .timeline-row {
    grid-template-columns: 1fr;
  }

  .contact-actions .button,
  .hero-actions .button {
    width: 100%;
  }

  .quotation-review-grid {
    grid-template-columns: 1fr;
  }

  .contact-actions.dual > * {
    flex-basis: 100%;
  }

  .quotation-cancel-form {
    margin-top: 0.25rem;
    margin-bottom: 0;
  }

  .quotation-cancel-form .button {
    width: 100%;
    justify-self: stretch;
  }

  .contact-actions .text-link-action,
  .hero-actions .text-link-action {
    width: fit-content;
  }

  .site-footer {
    margin-left: 0.9rem;
    margin-right: 0.9rem;
  }

  .storage-table,
  .storage-table thead,
  .storage-table tbody,
  .storage-table tr,
  .storage-table th,
  .storage-table td {
    display: block;
  }

  .storage-table thead {
    display: none;
  }

  .storage-table tr {
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
  }

  .storage-table td {
    min-width: 0;
    padding: 0.3rem 0;
    border-bottom: 0;
  }

  .storage-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 0.18rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
  }
}

@media (max-width: 420px) {
  .brand {
    max-width: calc(100vw - 6.1rem);
  }

  .brand-logo {
    width: min(168px, 100%);
  }

  .brand-logo-tagline {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .not-found-ring-a,
  .not-found-ring-b,
  .not-found-pulse,
  .not-found-dot-a,
  .not-found-dot-b {
    animation: none;
  }
}
