@font-face {
  font-family: "Instrument Sans";
  src: url("./assets/fonts/instrument-sans.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Sans";
  src: url("./assets/fonts/instrument-sans-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --paper: #ffffff;
  --paper-strong: #ffffff;
  --surface: #f6f8fa;
  --surface-strong: #eef2f5;
  --ink: #121826;
  --muted: #5d6475;
  --line: rgba(18, 24, 38, 0.1);
  --brand: #f18933;
  --brand-deep: #9e460f;
  --cyan: #62c5c7;
  --sun: #f3cf25;
  --coral: #ef4247;
  --violet: #a438e5;
  --orange: #ff8d21;
  --navy: #111827;
  --navy-2: #23314f;
  --green: #dce7d1;
  --shadow: 0 18px 48px rgba(18, 24, 38, 0.08);
  --shadow-soft: 0 8px 24px rgba(18, 24, 38, 0.05);
  --radius: 22px;
  --wrap: min(1180px, calc(100vw - 2rem));
  --display: "Instrument Sans", "Helvetica Neue", sans-serif;
  --body: "Instrument Sans", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--body);
  background: var(--bg);
  line-height: 1.55;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 0.6rem;
  color: var(--navy);
  background: var(--brand);
  box-shadow: var(--shadow);
  font-weight: 850;
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

.site-shell {
  overflow: hidden;
}

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

p,
li {
  color: var(--muted);
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin: 0 0 0.8rem;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 650;
  line-height: 1.06;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.75rem, 4.8vw, 4.5rem);
  line-height: 1;
}

h2 {
  font-size: clamp(1.9rem, 3.6vw, 3.15rem);
}

h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  letter-spacing: -0.025em;
}

ul {
  padding-left: 1.15rem;
}

.wrap {
  width: var(--wrap);
  margin: 0 auto;
}

.topbar {
  background: #151d2d;
  color: #fbf7f1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
}

.topbar p {
  margin: 0;
  color: inherit;
}

.topbar a {
  font-weight: 700;
  color: #ffc78f;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.site-header-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 0.9rem;
}

.brand-logo {
  display: block;
  width: 9rem;
  height: auto;
}

.brand-copy {
  display: none;
  gap: 0.15rem;
  padding-top: 0.15rem;
}

.brand-copy strong {
  font-size: 1.08rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.82rem;
  white-space: nowrap;
}

.site-nav,
.header-actions,
.hero-actions,
.signal-grid,
.hero-metrics,
.contact-points {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.site-nav {
  justify-self: center;
  align-items: center;
  flex-wrap: nowrap;
}

.header-actions {
  justify-self: end;
  flex-wrap: nowrap;
}

.site-nav > a,
.site-nav > .nav-mega,
.nav-mega {
  flex: 0 0 auto;
}

.site-nav > a {
  font-size: 0.94rem;
  font-weight: 650;
  color: var(--muted);
  white-space: nowrap;
}

.site-nav > a:hover,
.site-nav > a:focus-visible {
  color: var(--ink);
}

.site-nav > a[aria-current="page"] {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--brand);
  text-underline-offset: 0.45rem;
  text-decoration-thickness: 2px;
}

.nav-mega {
  display: flex;
  align-items: center;
}

.mega-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.75rem;
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 0.94rem;
  font-weight: 650;
  white-space: nowrap;
  cursor: pointer;
}

.mega-trigger > span {
  width: 0.42rem;
  height: 0.42rem;
  margin-top: -0.18rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.mega-open .mega-trigger > span {
  margin-top: 0.18rem;
  transform: rotate(225deg);
}

.mega-trigger:hover,
.mega-trigger:focus-visible,
.mega-trigger[aria-current="page"] {
  color: var(--ink);
}

.mega-trigger[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: var(--brand);
  text-underline-offset: 0.45rem;
  text-decoration-thickness: 2px;
}

.mega-panel {
  position: absolute;
  top: calc(100% - 0.15rem);
  left: 0;
  width: 100%;
  padding: 1.15rem;
  border: 1px solid rgba(18, 24, 38, 0.1);
  border-radius: 0 0 1.5rem 1.5rem;
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(18, 24, 38, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.7rem);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.mega-open .mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.3rem 0.35rem 1rem;
  border-bottom: 1px solid var(--line);
}

.mega-intro div { display: flex; align-items: baseline; gap: 0.8rem; }
.mega-kicker,
.mega-column > p {
  margin: 0;
  color: var(--brand-deep);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.mega-intro strong { font-size: 1.08rem; }
.mega-intro > a { color: var(--brand-deep); font-size: 0.82rem; font-weight: 800; }

.mega-grid {
  display: grid;
  grid-template-columns: 0.95fr repeat(4, 1fr);
  gap: 0.75rem;
  padding: 0.9rem 0 0.75rem;
}

.mega-feature {
  display: flex;
  min-height: 16rem;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  overflow: hidden;
  border-radius: 1rem;
  color: #ffffff;
  background: linear-gradient(150deg, #101827, #1d2a43);
}

.mega-feature-services {
  background-image: linear-gradient(180deg, rgba(9, 18, 34, 0.12) 0%, rgba(9, 18, 34, 0.94) 78%), url('./assets/hero-website-support-800.webp');
  background-position: center;
  background-size: cover;
}
.mega-feature-proof {
  background-image:
    radial-gradient(circle at top right, rgba(243, 207, 37, 0.2), transparent 38%),
    radial-gradient(circle at bottom left, rgba(98, 197, 199, 0.2), transparent 34%),
    linear-gradient(160deg, #111827, #25324d);
}
.mega-feature span { margin-bottom: auto; color: #ffc78f; font-size: 0.72rem; font-weight: 850; letter-spacing: 0.1em; text-transform: uppercase; }
.mega-feature strong { max-width: 11ch; margin-bottom: 0.6rem; color: #ffffff; font-size: 1.65rem; line-height: 1.02; letter-spacing: -0.04em; white-space: normal; }
.mega-feature em { color: #ffffff; font-size: 0.82rem; font-style: normal; font-weight: 850; }

.mega-column {
  padding: 0.45rem;
}

.mega-column > p { margin: 0.2rem 0 0.65rem 0.65rem; }
.mega-column a {
  display: block;
  padding: 0.68rem;
  border-radius: 0.75rem;
  transition: background 160ms ease, transform 160ms ease;
}
.mega-column a:hover,
.mega-column a:focus-visible { background: var(--surface); transform: translateX(2px); }
.mega-column strong { display: block; color: var(--ink); font-size: 0.88rem; line-height: 1.32; }

.mega-footer {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 0.8rem 0.65rem 0.1rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
}
.mega-footer span { color: var(--muted); }
.mega-footer a { color: var(--ink); font-weight: 780; }
.mega-footer a:hover { color: var(--brand-deep); }

.mega-grid-plans { grid-template-columns: repeat(4, 1fr); }
.mega-grid-proof { grid-template-columns: 0.95fr repeat(3, 1fr); }
.mega-plan-link { display: flex; min-height: 12rem; flex-direction: column; padding: 1rem; border: 1px solid var(--line); border-radius: 1rem; background: var(--surface); transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease; }
.mega-plan-link:hover, .mega-plan-link:focus-visible { border-color: var(--brand); transform: translateY(-2px); box-shadow: 0 0.7rem 1.5rem rgba(18, 24, 38, 0.09); }
.mega-plan-link span { color: var(--brand-deep); font-size: 0.7rem; font-weight: 850; letter-spacing: 0.06em; text-transform: uppercase; }
.mega-plan-link strong { margin: 0.6rem 0 0.4rem; color: var(--ink); font-size: 1.05rem; line-height: 1.08; }
.mega-plan-link small { color: var(--muted); font-size: 0.76rem; line-height: 1.4; }
.mega-plan-link em { margin-top: auto; padding-top: 1rem; color: var(--brand-deep); font-size: 0.78rem; font-style: normal; font-weight: 850; }
.mega-plan-featured { border-color: var(--brand); background: #fff8f1; }
.mega-plan-critical { background: #f4f6fa; }

.plan-signup-links { display: flex; flex-wrap: wrap; gap: 0.45rem 0.9rem; margin: 1rem 0 0; color: var(--muted); font-size: 0.82rem; }
.plan-signup-links a { color: var(--brand-deep); font-weight: 800; }

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper-strong);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle-lines::before { top: -0.34rem; }
.menu-toggle-lines::after { top: 0.34rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-solid {
  background: linear-gradient(135deg, #ffad62, var(--brand));
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(241, 137, 51, 0.26);
}

.button-ghost,
.button-outline {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(18, 24, 38, 0.08);
  color: var(--ink);
}

.button-block {
  width: 100%;
}

.hero {
  position: relative;
  padding: clamp(2rem, 5vw, 4.5rem) 0 2.5rem;
  overflow: hidden;
}

.reveal {
  animation: page-reveal 620ms cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.reveal-delay {
  animation-delay: 120ms;
}

@keyframes page-reveal {
  from { transform: translateY(18px); }
  to { transform: translateY(0); }
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.page-hero {
  position: relative;
  padding: clamp(1.8rem, 4vw, 3.5rem) 0 0;
  overflow: hidden;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 4.8vw, 4.35rem);
}

.agency-hero {
  padding: clamp(2.4rem, 5vw, 4.4rem) 0 2.2rem;
  background:
    radial-gradient(circle at 88% 18%, rgba(98, 197, 199, 0.14), transparent 24rem),
    radial-gradient(circle at 12% 84%, rgba(241, 137, 51, 0.12), transparent 20rem),
    linear-gradient(145deg, #fffdf9 0%, #f7f9fb 62%, #f3f7f5 100%);
}

.agency-hero .hero-layout {
  align-items: stretch;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.agency-hero-copy {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 72px rgba(18, 24, 38, 0.2);
  background:
    radial-gradient(circle at top left, rgba(241, 137, 51, 0.12), transparent 16rem),
    radial-gradient(circle at 82% 18%, rgba(98, 197, 199, 0.1), transparent 18rem),
    linear-gradient(180deg, rgba(10, 15, 26, 0.98), rgba(20, 28, 44, 0.98));
}

.agency-hero-copy h1 {
  max-width: 10.5ch;
  color: #ffffff;
}

.agency-hero-copy .lead,
.agency-hero-copy .hero-subgrid p {
  color: rgba(239, 244, 252, 0.76);
}

.agency-hero-copy .eyebrow {
  color: #ffc78f;
}

.agency-hero-copy .eyebrow::before {
  border-color: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.14),
    0 0 0 4px rgba(243, 207, 37, 0.36);
}

.agency-hero-subgrid article p {
  margin-bottom: 0;
}

.agency-hero-copy .hero-subgrid article {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.agency-hero-copy .hero-subgrid strong {
  color: #ffffff;
}

.agency-hero-copy .button-outline {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.16);
}

.agency-hero-copy .button-outline:hover,
.agency-hero-copy .button-outline:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.agency-hero-panel {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.agency-panel-card {
  padding: 1.45rem;
  border-color: rgba(18, 24, 38, 0.08);
  background: rgba(255, 255, 255, 0.94);
}

.agency-panel-feature {
  position: relative;
  overflow: hidden;
}

.agency-panel-feature::after {
  content: "";
  position: absolute;
  inset: auto -2rem -2.5rem auto;
  width: 9rem;
  height: 9rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(98, 197, 199, 0.18), rgba(241, 137, 51, 0.28));
  transform: rotate(22deg);
}

.agency-panel-feature > * {
  position: relative;
  z-index: 1;
}

.agency-panel-feature h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
  color: var(--ink);
}

.agency-panel-checklist {
  background: linear-gradient(180deg, #151d2d, #1f2b45);
}

.agency-panel-feature p,
.agency-panel-feature span,
.agency-panel-feature strong {
  color: var(--muted);
}

.agency-panel-feature .service-tag {
  color: #ffc78f;
}

.agency-panel-feature .price-stack-light div {
  background: var(--surface);
  border-color: rgba(17, 32, 56, 0.08);
}

.agency-panel-feature .price-stack-light span,
.agency-panel-feature .price-stack-light strong {
  color: var(--ink);
}

.agency-panel-checklist .service-tag,
.agency-panel-checklist strong,
.agency-panel-checklist span,
.agency-panel-checklist li {
  color: #ffffff;
}

.agency-panel-checklist .service-tag {
  color: #ffc78f;
}

.agency-checklist {
  display: grid;
  gap: 0.95rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.agency-checklist li {
  display: grid;
  gap: 0.22rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.agency-checklist li:first-child {
  padding-top: 0;
  border-top: 0;
}

.agency-checklist strong {
  font-size: 1rem;
}

.agency-checklist span {
  color: rgba(255, 255, 255, 0.76);
}

.agency-proof-bar {
  background: #ffffff;
}

.support-hero {
  padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(4rem, 7vw, 6rem);
  background:
    radial-gradient(circle at 84% 20%, rgba(98, 197, 199, 0.16), transparent 23rem),
    radial-gradient(circle at 10% 90%, rgba(241, 137, 51, 0.12), transparent 24rem),
    linear-gradient(135deg, #ffffff 0%, #f7f9fb 68%, #f3f7f5 100%);
}

.support-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.support-hero-copy h1 {
  max-width: 12ch;
  margin-bottom: 1.35rem;
  font-size: clamp(3.1rem, 5.5vw, 5.6rem);
  letter-spacing: -0.065em;
}

.support-hero-copy .lead {
  max-width: 40rem;
  color: var(--muted);
}

.support-availability {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.support-availability > span {
  flex: 0 0 auto;
  width: 0.75rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #2dad70;
  box-shadow: 0 0 0 0.4rem rgba(45, 173, 112, 0.12);
}

.support-availability p { margin: 0; font-size: 0.92rem; }
.support-availability strong { color: var(--ink); }

.support-hero-visual {
  position: relative;
  min-height: 38rem;
}

.support-hero-visual figure {
  height: 32rem;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 24, 38, 0.1);
  border-radius: 2.2rem;
  background: var(--navy);
  box-shadow: 0 38px 80px rgba(18, 24, 38, 0.2);
  transform: rotate(1.2deg);
}

.support-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.support-status-card {
  position: absolute;
  z-index: 2;
  left: -2rem;
  bottom: 0;
  width: min(24rem, 76%);
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.4rem;
  color: #ffffff;
  background: rgba(17, 24, 39, 0.94);
  box-shadow: 0 24px 55px rgba(18, 24, 38, 0.28);
  backdrop-filter: blur(16px);
}

.support-status-card .service-tag { color: #ffc78f; }

.support-status-card ol {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.support-status-card li {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.65rem;
  align-items: center;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  font-weight: 750;
}

.support-status-card li span { color: #ffc78f; font-size: 0.72rem; }

.support-price-badge {
  position: absolute;
  z-index: 3;
  top: 1.4rem;
  right: -1.4rem;
  display: grid;
  min-width: 8.5rem;
  padding: 1rem 1.1rem;
  border: 0.35rem solid #ffffff;
  border-radius: 1.1rem;
  color: var(--navy);
  background: var(--brand);
  box-shadow: 0 18px 38px rgba(18, 24, 38, 0.2);
  transform: rotate(2deg);
}

.support-price-badge small { font-weight: 750; }
.support-price-badge strong { font-size: 1.35rem; }

.support-scope-grid { align-items: stretch; }

.support-scope-card {
  display: flex;
  min-height: 33rem;
  flex-direction: column;
}

.support-scope-card ul {
  margin-bottom: 1.35rem;
}

.support-scope-card .text-link {
  display: inline-block;
  margin-top: auto;
}

.support-scope-visual {
  position: relative;
  height: 11rem;
  margin: -0.35rem -0.35rem 1.45rem;
  overflow: hidden;
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: 1rem;
  background:
    linear-gradient(rgba(18, 24, 38, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 24, 38, 0.045) 1px, transparent 1px),
    linear-gradient(145deg, #f7fafb, #e8f2f2);
  background-size: 1.3rem 1.3rem, 1.3rem 1.3rem, auto;
}

.support-scope-visual span,
.support-scope-visual i,
.support-scope-visual b {
  position: absolute;
  display: block;
  font-style: normal;
}

.visual-browser span {
  inset: 18% 14% 16%;
  border: 1px solid rgba(18, 24, 38, 0.16);
  border-radius: 0.75rem;
  background: linear-gradient(#e4e8eb 0 1.4rem, #ffffff 1.4rem);
  box-shadow: 0 14px 28px rgba(18, 24, 38, 0.12);
}

.visual-browser i {
  left: 23%;
  top: 49%;
  width: 38%;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 1.15rem 0 rgba(18, 24, 38, 0.12), 0 2.3rem 0 rgba(18, 24, 38, 0.08);
}

.visual-browser b,
.visual-commerce b {
  right: 12%;
  bottom: 12%;
  display: grid;
  width: 3.6rem;
  aspect-ratio: 1;
  place-items: center;
  border: 0.3rem solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  background: var(--brand);
  box-shadow: 0 12px 25px rgba(18, 24, 38, 0.18);
  font-size: 1.5rem;
}

.visual-commerce {
  background:
    radial-gradient(circle at 82% 18%, rgba(243, 207, 37, 0.32), transparent 7rem),
    linear-gradient(145deg, #f8fbf5, #eaf2de);
}

.visual-commerce span {
  left: 18%;
  top: 24%;
  width: 52%;
  height: 58%;
  border-radius: 1rem 1rem 0.6rem 0.6rem;
  background: #ffffff;
  box-shadow: 0 15px 30px rgba(18, 24, 38, 0.12);
}

.visual-commerce span::before {
  content: "";
  position: absolute;
  left: 20%;
  top: -1.1rem;
  width: 60%;
  height: 2.2rem;
  border: 0.35rem solid var(--navy);
  border-bottom: 0;
  border-radius: 1.4rem 1.4rem 0 0;
}

.visual-commerce i {
  left: 27%;
  top: 49%;
  width: 27%;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--sun);
  box-shadow: 0 1.15rem 0 rgba(18, 24, 38, 0.12);
}

.visual-network {
  background:
    radial-gradient(circle at 15% 80%, rgba(241, 137, 51, 0.2), transparent 7rem),
    linear-gradient(145deg, #f9f7fb, #eee8f5);
}

.visual-network::before,
.visual-network::after,
.visual-network span,
.visual-network i,
.visual-network b {
  content: "";
  position: absolute;
  width: 2.7rem;
  aspect-ratio: 1;
  border: 0.32rem solid #ffffff;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 10px 22px rgba(18, 24, 38, 0.16);
}

.visual-network::before { left: 15%; top: 18%; }
.visual-network::after { right: 15%; top: 20%; background: var(--sun); }
.visual-network span { left: calc(50% - 1.35rem); bottom: 13%; background: var(--brand); }
.visual-network i { left: 19%; bottom: 14%; width: 2rem; background: #a66bbd; }
.visual-network b { right: 20%; bottom: 15%; width: 2rem; background: var(--navy-2); }

.visual-network span::before,
.visual-network span::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: 75%;
  width: 7rem;
  height: 1px;
  background: rgba(18, 24, 38, 0.22);
  transform-origin: left center;
  transform: rotate(-128deg);
}

.visual-network span::after { transform: rotate(-52deg); }

.support-platform-note {
  max-width: 58rem;
  margin: 1.5rem auto 0;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface);
  text-align: center;
  font-size: 0.88rem;
}

.support-guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.support-guide-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.1rem;
  min-height: 15rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.support-guide-card:hover,
.support-guide-card:focus-visible {
  border-color: rgba(241, 137, 51, 0.4);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.support-guide-card > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.support-guide-card h3 { margin-bottom: 0.55rem; }
.support-guide-card p:not(.service-tag) { margin-top: 0; }
.support-guide-card strong { margin-top: auto; color: var(--brand-deep); font-size: 0.88rem; }

.support-guide-icon {
  display: grid;
  width: 3.5rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 1rem;
  color: #ffffff;
  background: var(--brand);
  box-shadow: 0 12px 24px rgba(241, 137, 51, 0.22);
  font-size: 1.45rem;
  font-weight: 900;
}

.support-guide-icon.icon-update { background: var(--cyan); }
.support-guide-icon.icon-form { background: #a66bbd; }
.support-guide-icon.icon-commerce { color: var(--navy); background: var(--sun); }
.support-guide-icon.icon-network { background: var(--navy-2); }

.support-guide-wide {
  grid-column: 1 / -1;
  min-height: 11rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 1.35rem;
  align-items: start;
}

.hero-layout > *,
.site-header-inner > *,
.split-intro > *,
.contact-layout > * {
  min-width: 0;
}

.hero-copy,
.panel,
.metric-card,
.service-card,
.plan-card,
.case-card,
.capability-card,
.problem-card,
.process-card,
.contact-card,
.intro-block,
.signal-strip,
.platform-grid article,
.faq-grid article {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  padding: clamp(1.8rem, 4vw, 3rem);
  background:
    radial-gradient(circle at top left, rgba(220, 231, 209, 0.3), transparent 18rem),
    #ffffff;
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  max-width: 13ch;
}

.agency-hero .agency-hero-copy {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 32px 72px rgba(18, 24, 38, 0.2) !important;
  background:
    radial-gradient(circle at top left, rgba(241, 137, 51, 0.12), transparent 16rem),
    radial-gradient(circle at 82% 18%, rgba(98, 197, 199, 0.1), transparent 18rem),
    linear-gradient(180deg, rgba(10, 15, 26, 0.98), rgba(20, 28, 44, 0.98)) !important;
}

.agency-hero .agency-hero-copy h1,
.agency-hero .agency-hero-copy strong {
  color: #ffffff !important;
}

.agency-hero .agency-hero-copy .lead,
.agency-hero .agency-hero-copy p:not(.eyebrow),
.agency-hero .agency-hero-copy li {
  color: rgba(239, 244, 252, 0.78) !important;
}

.emergency-panel h2 {
  font-size: clamp(2rem, 3.2vw, 2.65rem);
}

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  max-width: 42rem;
}

.hero-kicker-row {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.hero-kicker-row .eyebrow {
  margin: 0;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(18, 24, 38, 0.04);
  color: var(--navy);
  letter-spacing: 0.1em;
}

.hero-subgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.hero-subgrid article {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.hero-subgrid strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.eyebrow,
.service-tag,
.plan-tier,
.case-type {
  display: inline-block;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--brand-deep);
}

.eyebrow {
  align-items: center;
  gap: 0.55rem;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 0.72rem;
  height: 0.72rem;
  margin-right: 0.55rem;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow:
    0 0 0 2px var(--navy),
    0 0 0 4px var(--sun);
  vertical-align: -0.08rem;
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
}

.trust-pills li {
  padding: 0.5rem 0.82rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(18, 24, 38, 0.06);
  color: var(--ink);
  font-weight: 650;
}

.hero-panel {
  display: grid;
  align-content: start;
}

.hero-art {
  position: relative;
  min-height: 23rem;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 24, 38, 0.08);
  border-radius: calc(var(--radius) + 4px);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.hero-art::after {
  content: "Website rescue · care · growth";
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.hero-art img {
  width: 100%;
  height: 100%;
  min-height: 23rem;
  object-fit: cover;
  object-position: 63% center;
}

.hero-art picture {
  display: contents;
}

.emergency-panel {
  position: relative;
  z-index: 2;
  width: calc(100% - 2rem);
  margin: -3.25rem auto 0;
  padding: 1.55rem;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.98), rgba(29, 40, 66, 0.96)),
    radial-gradient(circle at top right, rgba(241, 137, 51, 0.3), transparent 18rem);
  color: #fff8f0;
  box-shadow: var(--shadow);
}

.emergency-panel h2,
.emergency-panel p,
.emergency-panel span,
.emergency-panel strong {
  color: inherit;
}

.price-stack {
  display: grid;
  gap: 0.8rem;
  margin: 1.25rem 0 1.4rem;
}

.price-stack div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.response-note {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 0 0 1rem;
}

.response-note span {
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
}

.price-stack span {
  font-weight: 600;
}

.price-stack strong {
  font-size: 1.05rem;
}

.price-stack-light div {
  background: var(--surface);
  border-color: rgba(17, 32, 56, 0.08);
}

.price-stack-light span,
.price-stack-light strong {
  color: var(--ink);
}

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

.metric-card {
  padding: 1.15rem;
  background: #ffffff;
}

.metric-card strong {
  display: block;
  font-family: var(--body);
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  color: var(--ink);
  line-height: 1.1;
  font-weight: 800;
}

.metric-card span {
  display: block;
  margin: 0.4rem 0;
  font-weight: 700;
  color: var(--ink);
}

.signal-strip {
  padding: 0 0 1.2rem;
}

.signal-grid {
  justify-content: space-between;
  padding: 1rem 1.1rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.signal-grid article {
  min-width: 200px;
}

.signal-grid span {
  display: block;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-deep);
  font-weight: 800;
}

.signal-grid strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1rem;
}

.proof-bar {
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, var(--cyan), var(--sun), var(--coral), var(--violet), var(--orange)) top / 100% 3px no-repeat,
    var(--surface);
}

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

.proof-bar-grid div {
  padding: 1.35rem 1.2rem;
  border-right: 1px solid var(--line);
}

.proof-bar-grid div:first-child { padding-left: 0; }
.proof-bar-grid div:last-child { border-right: 0; }

.proof-bar-grid strong,
.proof-bar-grid span {
  display: block;
}

.proof-bar-grid strong {
  margin-bottom: 0.25rem;
  color: var(--ink);
}

.proof-bar-grid span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: clamp(3.25rem, 6.5vw, 5.5rem) 0;
}

.intro-block {
  padding: 0;
  box-shadow: none;
  border: 0;
}

.split-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.88fr);
  gap: 2rem;
  padding: 1.5rem 1.7rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.split-intro > * {
  position: relative;
  z-index: 1;
}

.page-hero .split-intro {
  padding: clamp(1.6rem, 3vw, 2.25rem);
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 32px 72px rgba(18, 24, 38, 0.18);
  background:
    radial-gradient(circle at top left, rgba(241, 137, 51, 0.14), transparent 16rem),
    radial-gradient(circle at 82% 18%, rgba(98, 197, 199, 0.1), transparent 18rem),
    linear-gradient(180deg, rgba(10, 15, 26, 0.98), rgba(20, 28, 44, 0.98));
}

.page-hero .split-intro h1,
.page-hero .split-intro h2,
.page-hero .split-intro h3 {
  color: #ffffff;
}

.page-hero .split-intro > div > p:not(.eyebrow),
.page-hero .split-intro li,
.page-hero .split-intro .lead {
  color: rgba(239, 244, 252, 0.78);
}

.page-hero .split-intro .eyebrow {
  color: #ffc78f;
}

.page-hero .split-intro .eyebrow::before {
  border-color: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.14),
    0 0 0 4px rgba(243, 207, 37, 0.34);
}

.page-hero .split-intro .button-outline,
.page-hero .split-intro .button-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.16);
}

.page-hero .split-intro .button-outline:hover,
.page-hero .split-intro .button-outline:focus-visible,
.page-hero .split-intro .button-ghost:hover,
.page-hero .split-intro .button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.section-heading {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.section-heading > p:not(.eyebrow) {
  max-width: 52rem;
  font-size: 1.04rem;
}

.editorial-heading {
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: end;
}

.editorial-heading .eyebrow {
  grid-column: 1 / -1;
}

.editorial-heading h2,
.editorial-heading > p:last-child {
  margin-bottom: 0;
}

.section-heading.light h2,
.section-heading.light p {
  color: #fff5eb;
}

.service-grid,
.plan-grid,
.problem-grid,
.process-grid,
.platform-grid,
.faq-grid,
.industry-grid,
.testimonial-grid {
  display: grid;
  gap: 1.2rem;
}

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

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card:nth-child(3n + 2) { --card-accent: var(--sun); }
.service-card:nth-child(3n + 3) { --card-accent: var(--violet); }

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

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

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

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

.service-card,
.plan-card,
.case-card,
.capability-card,
.problem-card,
.process-card,
.platform-grid article,
.faq-grid article,
.industry-card,
.testimonial-card {
  padding: 1.4rem;
  background: #ffffff;
}

.service-card,
.plan-card {
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover,
.plan-card:hover {
  border-color: rgba(241, 137, 51, 0.3);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.service-card::after {
  content: "";
  position: absolute;
  top: -2.7rem;
  right: -2.7rem;
  width: 5.8rem;
  height: 5.8rem;
  border-radius: 50%;
  background: radial-gradient(circle, transparent 38%, var(--card-accent, var(--cyan)) 40% 55%, transparent 57%);
  opacity: 0.2;
  pointer-events: none;
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 0.3rem;
  background: linear-gradient(90deg, var(--brand), var(--green));
}

.service-card ul,
.plan-card ul {
  margin: 1rem 0 0;
}

.service-path-card {
  display: flex;
  flex-direction: column;
  min-height: 31rem;
  padding: 1.8rem;
}

.service-path-card .path-number {
  align-self: flex-end;
  color: rgba(18, 24, 38, 0.5);
  font-size: 2.2rem;
  font-weight: 700;
}

.service-path-card .text-link {
  margin-top: auto;
  padding-top: 1.5rem;
}

.path-image {
  position: relative;
  height: 11.5rem;
  margin: 0.75rem 0 1.35rem;
  overflow: hidden;
  border-radius: 1rem;
  background: var(--surface-strong);
}

.path-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(17, 24, 39, 0.2));
  pointer-events: none;
}

.path-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.service-path-card:hover .path-image img { transform: scale(1.035); }
.service-path-card:nth-child(1) .path-image img { object-position: 68% center; }
.service-path-card:nth-child(2) .path-image img { object-position: center 20%; }

.review-path-grid .service-card {
  padding: clamp(1.5rem, 3vw, 2rem);
}

.review-visual {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  min-height: 8.5rem;
  margin-bottom: 1.6rem;
  padding: 1.1rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 20px;
  background: linear-gradient(145deg, #f7fafb, #fff);
}

.review-visual strong {
  display: grid;
  width: 4.6rem;
  aspect-ratio: 1;
  place-items: center;
  border: 0.55rem solid rgba(98, 197, 199, 0.28);
  border-top-color: var(--cyan);
  border-radius: 50%;
  color: var(--navy);
  font-size: 1.4rem;
}

.review-visual > div {
  display: grid;
  gap: 0.75rem;
}

.review-visual span {
  height: 0.62rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan) 0 24%, rgba(17, 24, 39, 0.1) 24%);
}

.review-visual span:nth-child(2) { background: linear-gradient(90deg, var(--sun) 0 62%, rgba(17, 24, 39, 0.1) 62%); }
.review-visual span:nth-child(3) { background: linear-gradient(90deg, var(--brand) 0 42%, rgba(17, 24, 39, 0.1) 42%); }

.review-visual-report {
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
}

.review-visual-report strong { color: #fff; border-color: rgba(255, 255, 255, 0.16); border-top-color: var(--brand); }
.review-visual-report span { background: linear-gradient(90deg, var(--cyan) 0 72%, rgba(255, 255, 255, 0.12) 72%); }
.review-visual-report span:nth-child(2) { background: linear-gradient(90deg, var(--sun) 0 48%, rgba(255, 255, 255, 0.12) 48%); }
.review-visual-report span:nth-child(3) { background: linear-gradient(90deg, var(--brand) 0 84%, rgba(255, 255, 255, 0.12) 84%); }

.accent-card {
  background:
    linear-gradient(180deg, rgba(220, 231, 209, 0.32), #ffffff 72%);
}

.section-dark {
  background:
    linear-gradient(180deg, #131b2a, #1b2840),
    radial-gradient(circle at top right, rgba(241, 137, 51, 0.08), transparent 18rem);
}

.rescue-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.rescue-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: rescue;
}

.rescue-steps li {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.rescue-steps li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.rescue-steps span {
  color: #ffbf9f;
  font-weight: 700;
}

.rescue-steps strong,
.rescue-steps p {
  color: #fff6ec;
}

.rescue-steps strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.15rem;
}

.rescue-steps p { margin: 0; opacity: 0.78; }

.problem-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
}

.problem-card strong,
.problem-card p {
  color: #fff6eb;
}

.problem-link {
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, background 180ms ease;
}

.problem-link:hover,
.problem-link:focus-visible {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
}

.problem-link span {
  margin-top: auto;
  padding-top: 1rem;
  color: #ffbf9f;
  font-weight: 800;
}

.problem-grid-light .problem-card {
  background: #ffffff;
  border-color: var(--line);
}

.problem-grid-light .problem-card strong,
.problem-grid-light .problem-card p {
  color: var(--ink);
}

.plan-card h3 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.plan-card h3 span {
  font-size: 1rem;
  color: var(--muted);
  font-family: var(--body);
  font-weight: 700;
}

.plan-level {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  margin: 0.15rem 0 1.25rem;
}

.plan-level span {
  height: 0.42rem;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.1);
}

.plan-level span.active {
  background: linear-gradient(90deg, var(--brand), var(--sun));
}

.plan-level small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.featured-plan .plan-level span { background: rgba(255, 255, 255, 0.13); }
.featured-plan .plan-level span.active { background: linear-gradient(90deg, var(--brand), var(--sun)); }
.featured-plan .plan-level small { color: rgba(255, 246, 236, 0.68); }

.featured-plan {
  transform: translateY(-0.35rem);
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.97), rgba(27, 39, 63, 0.95));
}

.featured-plan h3,
.featured-plan p,
.featured-plan li {
  color: #fff6ec;
}

.featured-plan .plan-tier {
  color: #ffbf9f;
}

.featured-plan .plan-note,
.featured-plan .plan-note strong {
  color: var(--ink);
}

.plan-note {
  margin-top: 1.2rem;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--brand);
  background: var(--surface);
  border-radius: 0 16px 16px 0;
}

.plan-card .button {
  margin-top: 1.25rem;
}

.plan-card {
  display: flex;
  flex-direction: column;
}

.plan-card .plan-note {
  margin-top: auto;
}

.plan-disclaimer {
  max-width: 54rem;
  margin: 1.25rem auto 0;
  text-align: center;
  font-size: 0.92rem;
}

.section-accent {
  background:
    linear-gradient(180deg, #f7f9fb, #f1f4f6);
}

.service-link {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 16rem;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-link:hover,
.service-link:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(241, 137, 51, 0.35);
  box-shadow: var(--shadow);
  outline: none;
}

.service-link span {
  margin-top: auto;
  padding-top: 1.2rem;
  color: var(--brand-deep);
  font-weight: 800;
}

.services-hero {
  position: relative;
  padding: clamp(4rem, 8vw, 7.5rem) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 82%, rgba(220, 231, 209, 0.58), transparent 30rem),
    linear-gradient(135deg, #ffffff, #f8fafb 58%, #f2f6f1);
}

.services-hero::before {
  content: "";
  position: absolute;
  width: 24rem;
  height: 24rem;
  top: -14rem;
  right: 12%;
  border: 2rem solid rgba(35, 49, 79, 0.045);
  border-radius: 50%;
}

.services-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
}

.services-hero-copy h1 {
  max-width: 14ch;
}

.services-hero-copy .lead {
  max-width: 42rem;
}

.service-compass {
  padding: 1.25rem;
  border-radius: 32px;
  color: #fff6ec;
  background:
    radial-gradient(circle at 50% 42%, rgba(241, 137, 51, 0.18), transparent 28%),
    linear-gradient(145deg, var(--navy), var(--navy-2));
  box-shadow: 0 30px 70px rgba(17, 24, 39, 0.2);
}

.service-compass > p {
  max-width: 30rem;
  margin: 0.6rem auto 0;
  color: rgba(255, 246, 236, 0.75);
  text-align: center;
  font-size: 0.92rem;
}

.compass-grid {
  position: relative;
  min-height: 22rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 3rem 3rem;
}

.compass-grid::before,
.compass-grid::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 70%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: translate(-50%, -50%) rotate(28deg);
}

.compass-grid::after {
  transform: translate(-50%, -50%) rotate(-28deg);
}

.compass-grid > strong {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  display: grid;
  width: 7rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 1.35rem;
  background: linear-gradient(145deg, var(--brand), #ffb367);
  box-shadow: 0 0 0 1rem rgba(241, 137, 51, 0.1), 0 18px 30px rgba(0, 0, 0, 0.18);
  transform: translate(-50%, -50%);
}

.compass-node {
  position: absolute;
  z-index: 2;
  padding: 0.6rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #fff6ec;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  font-size: 0.82rem;
  font-weight: 800;
}

.node-recover { left: 7%; top: 16%; }
.node-protect { right: 8%; top: 14%; }
.node-improve { left: 8%; bottom: 14%; }
.node-build { right: 5%; bottom: 16%; }

.service-route-section {
  padding-top: clamp(4rem, 7vw, 6rem);
}

.service-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-route {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  min-height: 18rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-route::after {
  content: "";
  position: absolute;
  inset: auto -3rem -5rem auto;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background: rgba(241, 137, 51, 0.08);
}

.route-care::after { background: rgba(83, 117, 72, 0.11); }
.route-growth::after { background: rgba(35, 49, 79, 0.1); }

.service-route:hover,
.service-route:focus-visible {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-route > span {
  color: var(--brand);
  font-size: 2.5rem;
  font-weight: 650;
  line-height: 1;
}

.service-route > div {
  display: flex;
  flex-direction: column;
}

.service-route strong {
  position: relative;
  z-index: 1;
  margin-top: auto;
  color: var(--brand-deep);
}

.service-cluster-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.service-cluster-intro {
  position: sticky;
  top: 8rem;
}

.service-cluster-intro h2 {
  max-width: 12ch;
}

.service-cluster-intro .text-link {
  display: inline-block;
  margin-top: 1rem;
}

.text-link-light {
  color: #ffbf9f;
}

.service-directory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.directory-card {
  min-height: 15rem;
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease;
}

.directory-card[id] {
  scroll-margin-top: 7rem;
}

.directory-card:hover,
.directory-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(241, 137, 51, 0.38);
}

.directory-card > span {
  display: inline-grid;
  width: 2.6rem;
  aspect-ratio: 1;
  place-items: center;
  margin-bottom: 2.5rem;
  border-radius: 50%;
  color: var(--brand-deep);
  background: rgba(241, 137, 51, 0.1);
  font-size: 0.78rem;
  font-weight: 900;
}

.section-dark .service-cluster-intro h2,
.section-dark .service-cluster-intro p,
.section-dark .directory-card h3,
.section-dark .directory-card p {
  color: #fff6ec;
}

.section-dark .directory-card {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.section-dark .directory-card > span {
  color: #ffbf9f;
  background: rgba(241, 137, 51, 0.18);
}

.service-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.service-proof-card {
  display: grid;
  grid-template-columns: minmax(140px, 0.8fr) minmax(0, 1.2fr);
  min-height: 19rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-proof-card:hover,
.service-proof-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-proof-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-proof-card > div {
  display: flex;
  flex-direction: column;
  padding: 1.4rem;
}

.service-proof-card strong {
  margin-top: auto;
  color: var(--brand-deep);
}

.section-actions {
  margin-top: 1.5rem;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(241, 137, 51, 0.28);
  outline-offset: 3px;
}

.audit-band {
  text-align: center;
  max-width: 820px;
}

.industry-card {
  border-radius: var(--radius);
  border: 1px solid rgba(17, 32, 56, 0.08);
  box-shadow: var(--shadow);
}

.testimonial-card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.testimonial-card p,
.testimonial-card strong {
  color: #fff4e7;
}

.testimonial-card strong {
  display: block;
  margin-top: 1rem;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 1.2rem;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.about-proof-collage {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 13rem 10rem;
  gap: 0.75rem;
  transform: rotate(-1deg);
}

.about-proof-collage figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 0.45rem solid #ffffff;
  border-radius: 1.15rem;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.about-proof-collage .about-proof-main { grid-column: 1 / -1; }
.about-proof-collage img { width: 100%; height: 100%; object-fit: cover; }
.about-proof-collage .about-proof-main img { object-position: center 28%; }
.about-proof-collage figcaption {
  position: absolute;
  left: 0.65rem;
  bottom: 0.65rem;
  padding: 0.35rem 0.55rem;
  border-radius: 0.45rem;
  color: #ffffff;
  background: rgba(17, 24, 39, 0.78);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.delivery-visual {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 1.15rem;
  min-height: 24rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid rgba(35, 49, 79, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 8%, rgba(241, 137, 51, 0.2), transparent 31%),
    linear-gradient(145deg, #ffffff 0%, #f6f8fb 100%);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.delivery-visual::after {
  content: "";
  position: absolute;
  right: -4rem;
  bottom: -5rem;
  width: 13rem;
  aspect-ratio: 1;
  border: 2.5rem solid rgba(35, 49, 79, 0.06);
  border-radius: 50%;
}

.delivery-visual-mark {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 0.38rem;
  width: 4.6rem;
  height: 4.6rem;
  padding: 0.75rem;
  border-radius: 1.25rem;
  background: var(--navy);
  box-shadow: 0 1rem 2rem rgba(35, 49, 79, 0.2);
  transform: rotate(-3deg);
}

.delivery-visual-mark span {
  width: 0.75rem;
  border-radius: 999px;
  background: #fff;
}

.delivery-visual-mark span:nth-child(1) { height: 48%; }
.delivery-visual-mark span:nth-child(2) { height: 82%; background: var(--cyan); }
.delivery-visual-mark span:nth-child(3) { height: 64%; background: var(--sun); }

.delivery-visual > p {
  position: relative;
  z-index: 1;
  max-width: 12ch;
  margin: 0;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.delivery-flow {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.delivery-flow span {
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(35, 49, 79, 0.14);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 800;
}

.delivery-flow span:nth-child(2) { border-color: rgba(98, 197, 199, 0.65); }
.delivery-flow span:nth-child(3) { border-color: rgba(164, 56, 229, 0.42); }

.delivery-visual small {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.delivery-visual-tall {
  min-height: 26rem;
}

.profile-copy {
  max-width: 49rem;
}

.founder-band {
  padding-top: 0;
}

.founder-layout {
  display: grid;
  grid-template-columns: 8rem minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.founder-layout img {
  width: 8rem;
  border-radius: 50%;
}

.founder-layout h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.text-link {
  color: var(--brand-deep);
  font-weight: 800;
}

.case-grid,
.capability-stack {
  display: grid;
  gap: 1rem;
}

.case-type {
  color: var(--navy-2);
}

.case-card {
  overflow: hidden;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  grid-template-rows: repeat(2, minmax(15rem, auto));
  gap: 1rem;
}

.showcase-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(0, 1.2fr);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.showcase-card:hover,
.showcase-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.showcase-card img {
  width: 100%;
  height: 100%;
  min-height: 16rem;
  object-fit: cover;
}

.showcase-card > div {
  align-self: center;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.showcase-card p:last-of-type { margin-bottom: 0; }
.showcase-card span { display: inline-block; margin-top: 1rem; color: var(--brand-deep); font-weight: 700; }

.showcase-large {
  grid-row: 1 / -1;
  grid-template-columns: 1fr;
}

.showcase-large img {
  min-height: 26rem;
  max-height: 30rem;
}

.founder-story {
  background: var(--surface);
}

.founder-editorial {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
}

.case-card > img {
  display: block;
  width: calc(100% + 2.8rem);
  aspect-ratio: 16 / 8.5;
  margin: -1.4rem -1.4rem 1.25rem;
  object-fit: cover;
}

.project-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  overflow: hidden;
  border-radius: calc(var(--radius) + 6px);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.project-media {
  min-height: 34rem;
}

.project-media img,
.project-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-content {
  padding: clamp(1.8rem, 5vw, 4rem);
}

.project-content h3,
.project-content p,
.project-content strong,
.project-content span {
  color: #fff6ec;
}

.project-content .case-type {
  color: #ffbf9f;
}

.project-facts {
  display: grid;
  gap: 0;
  margin: 2rem 0 0;
}

.project-facts div {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.project-facts strong {
  font-weight: 800;
}

.project-facts span {
  opacity: 0.78;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.case-quickstart {
  padding-top: 0;
}

.quickstart-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.quickstart-card {
  display: block;
  min-height: 16rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 12%, rgba(241, 137, 51, 0.18), transparent 9rem),
    linear-gradient(145deg, #ffffff, #f7fafc);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.quickstart-card:hover,
.quickstart-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(241, 137, 51, 0.3);
}

.quickstart-card span {
  display: inline-grid;
  width: 2.5rem;
  aspect-ratio: 1;
  place-items: center;
  margin-bottom: 1.6rem;
  border-radius: 50%;
  color: var(--brand-deep);
  background: rgba(241, 137, 51, 0.12);
  font-size: 0.78rem;
  font-weight: 900;
}

.results-archive {
  display: grid;
  gap: 1.5rem;
}

.results-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.results-controls {
  display: grid;
  gap: 0.85rem;
  min-width: min(100%, 55rem);
}

.results-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.results-search-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.results-pill {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(18, 24, 38, 0.1);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.results-pill:hover,
.results-pill:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(241, 137, 51, 0.45);
}

.results-pill.is-active {
  border-color: transparent;
  color: var(--navy);
  background: linear-gradient(135deg, #ffbb7b, var(--brand));
  box-shadow: 0 12px 28px rgba(241, 137, 51, 0.2);
}

.results-search {
  flex: 1 1 19rem;
  min-height: 3rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(18, 24, 38, 0.12);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  font: inherit;
}

.results-reset {
  flex: 0 0 auto;
}

.results-count {
  margin: 0;
  padding-top: 0.4rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.results-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1.28fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.results-card[hidden] {
  display: none !important;
}

.results-card > div {
  padding: 1.4rem;
}

.results-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 23rem;
  object-fit: cover;
}

.results-empty {
  padding: 1.2rem 1.4rem;
  border: 1px dashed rgba(18, 24, 38, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.65);
}

.results-empty p {
  margin: 0;
}

.archive-actions {
  margin-top: 0;
}

.news-home-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.news-card,
.news-feature,
.article-shell,
.news-signpost,
.share-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 10%, rgba(241, 137, 51, 0.12), transparent 10rem),
    linear-gradient(160deg, #ffffff, #f7fafc);
  box-shadow: var(--shadow-soft);
}

.news-card,
.news-signpost,
.share-panel {
  padding: 1.4rem;
}

.news-card h3,
.news-signpost h3 {
  margin-bottom: 0.65rem;
}

.news-card p:last-of-type,
.news-signpost p:last-of-type {
  margin-bottom: 0;
}

.news-hero {
  background:
    radial-gradient(circle at 18% 18%, rgba(98, 197, 199, 0.18), transparent 20rem),
    radial-gradient(circle at 82% 12%, rgba(241, 137, 51, 0.14), transparent 18rem),
    linear-gradient(180deg, #f9fbfd, #f0f5f8 72%, #ffffff);
}

.news-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.8fr);
  gap: 1.2rem;
  padding: 1.5rem;
}

.news-feature-copy {
  display: grid;
  gap: 0.85rem;
}

.news-feature aside {
  display: grid;
  gap: 0.85rem;
  align-content: start;
  padding: 1.2rem;
  border-radius: calc(var(--radius) - 6px);
  background: rgba(17, 24, 39, 0.04);
}

.news-feature aside p {
  margin: 0;
}

.article-shell {
  padding: 1.5rem;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 20rem);
  gap: 1.5rem;
  align-items: start;
}

.article-header {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.article-prose {
  display: grid;
  gap: 1rem;
}

.article-prose h2 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  margin-bottom: 0.35rem;
}

.article-prose p,
.article-prose li {
  max-width: 70ch;
}

.article-prose blockquote {
  margin: 0;
  padding: 1rem 1.1rem;
  border-left: 4px solid rgba(241, 137, 51, 0.6);
  border-radius: 0 1rem 1rem 0;
  background: rgba(17, 24, 39, 0.04);
}

.article-prose blockquote p {
  color: var(--ink);
}

.article-callout {
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: rgba(241, 137, 51, 0.08);
  border: 1px solid rgba(241, 137, 51, 0.14);
}

.article-callout p:last-child {
  margin-bottom: 0;
}

.article-source {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
}

.share-panel {
  display: grid;
  gap: 0.9rem;
  position: sticky;
  top: 7rem;
}

.share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.share-button:hover,
.share-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(241, 137, 51, 0.3);
  box-shadow: var(--shadow-soft);
}

.news-signpost {
  display: grid;
  gap: 0.75rem;
}

.project-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(0, 1.28fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.project-card > div {
  padding: 1.4rem;
}

.project-card img {
  min-height: 23rem;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  list-style: none;
}

.project-tags li {
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: rgba(18, 24, 38, 0.05);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.proof-strip article {
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.proof-strip span {
  color: #ffbf9f;
  font-weight: 900;
}

.proof-strip h3,
.proof-strip p {
  color: #fff6ec;
}

.button-on-dark {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.capability-card {
  background: rgba(17, 24, 39, 0.96);
  box-shadow: var(--shadow);
}

.capability-card h3,
.capability-card p {
  color: #fff4e7;
}

.platform-layout,
.process-layout,
.faq-layout {
  display: grid;
  gap: 1.5rem;
}

.platform-grid article h3,
.faq-grid article h3 {
  margin-bottom: 0.4rem;
}

.faq-grid {
  counter-reset: faq-card;
}

.faq-grid article {
  counter-increment: faq-card;
  position: relative;
  overflow: hidden;
  padding: 1.7rem 1.7rem 1.7rem 5rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(241, 137, 51, 0.12), transparent 34%),
    #ffffff;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.faq-grid article::before {
  content: counter(faq-card, decimal-leading-zero);
  position: absolute;
  top: 1.55rem;
  left: 1.45rem;
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: linear-gradient(135deg, var(--sun), var(--brand));
  box-shadow: 0 8px 20px rgba(241, 137, 51, 0.2);
  font-size: 0.74rem;
  font-weight: 900;
}

.faq-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(241, 137, 51, 0.34);
  box-shadow: var(--shadow);
}

.faq-accordion article {
  padding: 0;
}

.faq-accordion article::before {
  top: 1.25rem;
}

.faq-question {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  width: 100%;
  min-height: 5rem;
  padding: 1.25rem 1.35rem 1.25rem 5rem;
  border: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  font-weight: 750;
  letter-spacing: -0.02em;
  text-align: left;
  cursor: pointer;
}

.faq-question i,
.faq-question i::after {
  display: block;
  width: 0.9rem;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
  transition: transform 180ms ease;
}

.faq-question i { position: relative; }
.faq-question i::after { content: ""; position: absolute; inset: 0; transform: rotate(90deg); }
.faq-question[aria-expanded="true"] i::after { transform: rotate(0); }

.faq-answer-inner {
  padding: 0 1.35rem 1.35rem 5rem;
}

.faq-answer-inner > :first-child { margin-top: 0; }
.faq-answer-inner > :last-child { margin-bottom: 0; }

.section-plain {
  background: transparent;
}

.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 0.9rem;
  border-radius: 50%;
  background: rgba(219, 106, 50, 0.12);
  color: var(--brand-deep);
  font-weight: 900;
}

.contact-section {
  padding-bottom: 5rem;
}

.contact-page {
  background:
    radial-gradient(circle at top left, rgba(98, 197, 199, 0.14), transparent 24rem),
    radial-gradient(circle at top right, rgba(241, 137, 51, 0.14), transparent 28rem),
    linear-gradient(180deg, #fbfcfd 0%, #ffffff 32%, #f8fafb 100%);
}

.contact-hero {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem) 0 2rem;
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: auto auto 0 -8rem;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 207, 37, 0.2), transparent 68%);
  filter: blur(14px);
}

.contact-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: stretch;
}

.contact-hero-copy {
  padding: clamp(1.8rem, 4vw, 3.2rem);
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid rgba(17, 32, 56, 0.08);
  background:
    radial-gradient(circle at top left, rgba(255, 173, 98, 0.26), transparent 14rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 252, 0.96));
  box-shadow: 0 24px 60px rgba(18, 24, 38, 0.08);
}

.contact-hero-copy h1 {
  max-width: 11ch;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 5.3vw, 5.4rem);
  letter-spacing: -0.07em;
}

.contact-hero-copy .lead {
  max-width: 40rem;
}

.contact-hero-panel {
  display: grid;
  gap: 1rem;
}

.contact-signal-card,
.contact-direct-card,
.contact-copy-card,
.contact-checklist,
.contact-route-card,
.contact-closing-band {
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.contact-signal-card {
  padding: 1.5rem;
  color: #fff8f0;
  background:
    radial-gradient(circle at top right, rgba(241, 137, 51, 0.34), transparent 14rem),
    linear-gradient(160deg, #121b2a, #22304d 58%, #172132);
}

.contact-signal-card h2,
.contact-signal-card strong,
.contact-signal-card p,
.contact-signal-card li {
  color: inherit;
}

.contact-signal-card ol {
  display: grid;
  gap: 0.9rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.contact-signal-card li {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-signal-card li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  color: var(--navy);
  background: linear-gradient(135deg, #ffd363, #ffad62);
  font-size: 0.76rem;
  font-weight: 900;
}

.contact-signal-card li p {
  margin: 0.28rem 0 0;
  color: rgba(255, 248, 240, 0.74);
  font-size: 0.94rem;
}

.contact-direct-card {
  padding: 1.35rem 1.45rem;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
}

.contact-direct-card a {
  display: block;
  margin-top: 0.45rem;
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.contact-direct-card p:last-child {
  margin-bottom: 0;
}

.contact-proof-bar {
  margin-top: -0.3rem;
  border-top: 0;
  background: transparent;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.9fr);
  gap: 1.35rem;
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 1rem;
  padding: 0.2rem 0.2rem 0 0;
}

.contact-copy-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.88);
}

.contact-points {
  margin-top: 1.4rem;
}

.contact-points div {
  min-width: 180px;
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.contact-points span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-deep);
  font-weight: 800;
}

.contact-points strong {
  display: block;
  color: var(--ink);
}

.contact-checklist {
  padding: 1.35rem 1.45rem;
  background: linear-gradient(180deg, #fff9ef, #fffdf8);
}

.contact-checklist ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-checklist li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--ink);
  font-weight: 650;
}

.contact-checklist li + li {
  margin-top: 0.8rem;
}

.contact-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 0.2rem rgba(241, 137, 51, 0.16);
}

.contact-price-stack {
  margin-top: 0;
}

.contact-card {
  padding: 1.45rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
}

.contact-form-intro {
  margin-bottom: 1rem;
}

.contact-form-intro h2 {
  margin-bottom: 0.65rem;
  font-size: clamp(2rem, 3vw, 2.65rem);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.contact-card label {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.contact-card span {
  color: var(--ink);
  font-weight: 700;
}

.contact-card input,
.contact-card textarea,
.contact-card select {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(17, 32, 56, 0.12);
  background: var(--paper-strong);
  font: inherit;
  color: var(--ink);
}

.contact-card textarea {
  resize: vertical;
}

.contact-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
}

.contact-submit-row .button {
  min-width: 12rem;
}

.contact-submit-row p {
  margin: 0;
  font-size: 0.92rem;
}

.form-note {
  margin: 0.8rem 0 0;
  font-size: 0.92rem;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.form-status {
  min-height: 1.5rem;
  margin: 0.8rem 0 0;
  color: var(--brand-deep);
  font-weight: 700;
}

.form-status:empty { display: none; }

.contact-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contact-route-card {
  position: relative;
  overflow: hidden;
  min-height: 15rem;
  padding: 1.4rem;
  background: #ffffff;
}

.contact-route-card::after {
  content: "";
  position: absolute;
  right: -1.8rem;
  bottom: -2.3rem;
  width: 7rem;
  height: 7rem;
  border-radius: 1.8rem;
  background: linear-gradient(135deg, rgba(241, 137, 51, 0.12), rgba(98, 197, 199, 0.18));
  transform: rotate(18deg);
}

.contact-route-card > * {
  position: relative;
  z-index: 1;
}

.contact-closing-band {
  padding: clamp(1.6rem, 3vw, 2.2rem);
  background:
    radial-gradient(circle at top right, rgba(98, 197, 199, 0.18), transparent 15rem),
    linear-gradient(180deg, #ffffff, #f5f9fb);
}

.button[disabled] {
  cursor: wait;
  opacity: 0.7;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 3rem 0 4rem;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.footer-directory {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 2.05fr);
  gap: 1.4rem 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.footer-directory-intro h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
}

.footer-directory-intro p:last-child {
  max-width: 30rem;
}

.footer-directory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.footer-directory-grid section {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--surface);
}

.footer-directory-title {
  margin: 0 0 0.8rem;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.footer-directory-grid a {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.4;
}

.footer-directory-grid a + a {
  margin-top: 0.52rem;
}

.footer-directory-grid a:hover,
.footer-directory-grid a:focus-visible {
  color: var(--ink);
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal a {
  color: var(--ink);
  font-weight: 650;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.legal-summary {
  position: sticky;
  top: 8rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  box-shadow: var(--shadow-soft);
}

.legal-summary h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.legal-copy {
  display: grid;
  gap: 0;
}

.legal-copy section {
  padding: 0 0 2rem;
  border-bottom: 1px solid var(--line);
}

.legal-copy section + section {
  padding-top: 2rem;
}

.legal-copy h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
}

.legal-copy p,
.legal-copy li {
  max-width: 48rem;
}

.not-found-section {
  min-height: 68vh;
  display: grid;
  align-items: center;
}

.not-found-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(2rem, 8vw, 7rem);
  align-items: center;
}

.error-code {
  margin: 0;
  color: rgba(241, 137, 51, 0.18);
  font-size: clamp(5rem, 13vw, 10rem);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.not-found-art {
  position: relative;
  min-height: 25rem;
  overflow: hidden;
  border-radius: 45% 55% 35% 65%;
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  box-shadow: var(--shadow);
  transform: rotate(4deg);
}

.not-found-art::before,
.not-found-art::after,
.not-found-art span {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.not-found-art::before {
  width: 14rem;
  height: 14rem;
  top: 3rem;
  left: 4rem;
  border: 2.5rem solid rgba(255, 255, 255, 0.12);
}

.not-found-art::after {
  width: 8rem;
  height: 8rem;
  right: 2.5rem;
  bottom: 2.5rem;
  background: var(--brand);
}

.not-found-art span:nth-child(1) { width: 2rem; height: 2rem; top: 4rem; right: 3rem; background: var(--green); }
.not-found-art span:nth-child(2) { width: 4rem; height: 4rem; bottom: 4rem; left: 3rem; border: 0.6rem solid #fff; }
.not-found-art span:nth-child(3) { width: 1rem; height: 1rem; top: 50%; left: 50%; background: #fff; }

.footer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.7fr) minmax(180px, 0.7fr);
  gap: 1.4rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li + li {
  margin-top: 0.45rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ink);
}

.footer-heading {
  margin: 0 0 0.8rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 650;
  line-height: 1.06;
  letter-spacing: -0.025em;
}

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

.review-path-grid .service-card {
  display: flex;
  flex-direction: column;
}

.review-path-grid .button {
  margin-top: auto;
}

.health-hero .split-intro {
  align-items: center;
}

.health-check-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.health-check-intro {
  position: sticky;
  top: 8rem;
}

.health-privacy-note {
  display: grid;
  gap: 0.25rem;
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.health-privacy-note strong,
.health-privacy-note span {
  color: var(--ink);
}

.health-privacy-note span {
  font-size: 0.9rem;
}

.health-check-card {
  display: grid;
  gap: 1rem;
}

.health-check-card fieldset {
  display: grid;
  gap: 0.65rem;
  min-width: 0;
  margin: 0;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.health-check-card legend {
  padding: 0 0.5rem;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.health-check-card legend span {
  margin-right: 0.45rem;
  color: var(--brand);
}

.health-question {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.9rem;
  border: 1px solid transparent;
  border-radius: 16px;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}

.health-question:hover {
  background: var(--surface);
}

.health-question:has(input:checked) {
  border-color: rgba(83, 117, 72, 0.22);
  background: rgba(220, 231, 209, 0.36);
}

.health-question input {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0.15rem 0 0;
  accent-color: var(--brand);
}

.health-question span {
  display: grid;
  gap: 0.2rem;
}

.health-question strong {
  color: var(--ink);
}

.health-question small {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.health-result-section:has(.health-result[hidden]) {
  display: none;
}

.health-result {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
}

.health-score {
  display: grid;
  width: clamp(9rem, 17vw, 13rem);
  aspect-ratio: 1;
  place-content: center;
  text-align: center;
  border: 1rem solid rgba(241, 137, 51, 0.14);
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.health-score strong {
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.85;
  letter-spacing: -0.07em;
}

.health-score span {
  color: var(--muted);
  font-weight: 800;
}

.health-result-copy h2 {
  max-width: 18ch;
}

.health-alert {
  padding: 0.85rem 1rem;
  border-left: 4px solid var(--brand);
  border-radius: 0 14px 14px 0;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
}

.health-report-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.health-report-intro {
  display: grid;
  gap: 0.35rem;
}

.health-report-intro h3 {
  margin-bottom: 0;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

.health-report-intro p,
.health-report-form .form-note {
  margin: 0;
}

.health-report-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.health-report-grid label {
  display: grid;
  gap: 0.45rem;
}

.health-report-grid span {
  color: var(--ink);
  font-weight: 750;
}

.health-report-grid input {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(18, 24, 38, 0.12);
  border-radius: 16px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

.health-report-grid input:focus-visible {
  border-color: var(--brand);
  outline: 3px solid rgba(241, 137, 51, 0.18);
  outline-offset: 2px;
}

.health-report-wide {
  grid-column: 1 / -1;
}

.health-report-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.health-report-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.resource-controls {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.resource-controls label {
  display: grid;
  grid-template-columns: auto minmax(240px, 1fr);
  gap: 1rem;
  align-items: center;
}

.resource-controls label span {
  color: var(--ink);
  font-weight: 800;
}

.resource-controls input {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(18, 24, 38, 0.16);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.resource-controls input:focus-visible {
  border-color: var(--brand);
  outline: 3px solid rgba(241, 137, 51, 0.2);
  outline-offset: 2px;
}

.resource-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.resource-filter {
  min-height: 2.75rem;
  padding: 0.55rem 0.78rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 750;
}

.resource-filter:hover,
.resource-filter:focus-visible,
.resource-filter.is-active {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.resource-count {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.resource-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  min-height: 18rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.resource-card:hover,
.resource-card:focus-visible {
  border-color: rgba(241, 137, 51, 0.42);
  box-shadow: var(--shadow);
  outline: none;
  transform: translateY(-4px);
}

.resource-card > div {
  display: flex;
  flex-direction: column;
}

.resource-card p {
  margin-top: 0;
}

.resource-card strong {
  margin-top: auto;
  padding-top: 1rem;
  color: var(--brand-deep);
}

.resource-icon {
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(241, 137, 51, 0.12);
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 900;
}

.resource-empty {
  padding: 2rem;
  border: 1px dashed rgba(18, 24, 38, 0.24);
  border-radius: var(--radius);
  text-align: center;
  background: var(--surface);
}

@media (max-width: 1100px) {
  .support-status-card { left: 0; }
  .support-price-badge { right: 0; }

  .site-header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem 1rem;
    padding: 0.85rem 0;
  }

  .brand {
    grid-row: 1;
    grid-column: 1;
  }

  .header-actions {
    grid-row: 1;
    grid-column: 2;
    justify-content: flex-end;
  }

  .brand-logo {
    width: 7.8rem;
  }

  .brand-copy {
    display: none;
  }

  .site-nav {
    grid-row: 2;
    grid-column: 1 / -1;
    width: 100%;
    justify-self: stretch;
    justify-content: center;
    gap: 0.65rem;
    padding-top: 0.1rem;
  }

  .site-nav > a,
  .mega-trigger {
    font-size: 0.9rem;
  }

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

  .problem-grid,
  .platform-grid,
  .industry-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .proof-bar-grid div:nth-child(2) { border-right: 0; }

  .proof-bar-grid div:nth-child(n + 3) { border-top: 1px solid var(--line); }

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

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

@media (max-width: 900px) {
  .contact-hero-layout,
  .contact-route-grid,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero-copy h1 {
    max-width: 12ch;
  }

  .contact-submit-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-submit-row .button {
    width: 100%;
  }

  .support-hero-layout {
    grid-template-columns: 1fr;
  }

  .support-hero-copy h1 {
    max-width: 13ch;
  }

  .support-hero-visual {
    width: min(100%, 46rem);
    margin-inline: auto;
  }

  .services-hero-layout,
  .service-cluster-layout {
    grid-template-columns: 1fr;
  }

  .services-hero-copy h1,
  .service-cluster-intro h2 {
    max-width: none;
  }

  .service-route-grid {
    grid-template-columns: 1fr;
  }

  .health-check-layout {
    grid-template-columns: 1fr;
  }

  .health-check-intro {
    position: static;
  }

  .service-route {
    min-height: 13rem;
  }

  .service-cluster-intro {
    position: static;
  }

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

  .news-feature,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .share-panel {
    position: static;
  }

  .site-header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    padding: 0.75rem 0;
  }

  .brand {
    grid-row: 1;
    grid-column: 1;
  }

  .header-actions {
    grid-row: 1;
    grid-column: 2;
  }

  .brand-logo {
    width: 7.2rem;
  }

  .brand-copy {
    display: none;
  }

  .site-nav {
    grid-row: 2;
    grid-column: 1 / -1;
    width: 100%;
    display: none;
    padding: 0.75rem 0 0.25rem;
    border-top: 1px solid var(--line);
  }

  .nav-open .site-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.15rem;
    max-height: calc(100dvh - 8rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
  }

  .site-nav > a {
    padding: 0.65rem 0.75rem;
    text-align: left;
  }

  .nav-mega { display: block; }

  .mega-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 0.65rem 0.75rem;
    text-align: left;
  }

  .mega-panel {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 1rem;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: max-height 260ms ease, padding 260ms ease;
  }

  .mega-open .mega-panel {
    max-height: 90rem;
    padding: 0.8rem;
  }

  .mega-intro { align-items: flex-start; }
  .mega-intro div { display: block; }
  .mega-intro .mega-kicker { margin-bottom: 0.2rem; }
  .mega-grid { grid-template-columns: 1fr 1fr; }
  .mega-grid-plans { grid-template-columns: 1fr 1fr; }
  .mega-grid-proof { grid-template-columns: 1fr 1fr; }
  .mega-feature { min-height: 15rem; }
  .mega-footer { align-items: flex-start; flex-wrap: wrap; }

  .home-dark .site-nav { border-color: rgba(255, 255, 255, 0.1); }

  .nav-menu-open { overflow: hidden; }

  .header-actions {
    justify-content: flex-end;
    flex-wrap: nowrap;
  }

  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }

  .header-actions .button-ghost {
    display: none;
  }

  .header-actions .button-solid {
    min-height: 2.65rem;
    padding: 0.7rem 1rem;
  }

  .hero-layout,
  .split-intro,
  .proof-layout,
  .project-feature,
  .profile-layout,
  .founder-layout,
  .contact-layout,
  .rescue-layout,
  .founder-editorial,
  .legal-layout,
  .not-found-layout,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .footer-directory {
    grid-template-columns: 1fr;
  }

  .footer-directory-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-grid,
  .plan-grid,
  .review-path-grid,
  .project-grid,
  .quickstart-grid,
  .results-grid,
  .proof-strip,
  .process-grid,
  .faq-grid,
  .hero-metrics,
  .industry-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero-subgrid {
    grid-template-columns: 1fr;
  }

  .featured-plan {
    transform: none;
  }

  .project-media {
    min-height: 25rem;
  }

  .editorial-heading {
    grid-template-columns: 1fr;
  }

  .editorial-heading .eyebrow { grid-column: auto; }

  .showcase-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .showcase-large { grid-row: auto; }

  .legal-summary { position: static; }
}

@media (max-width: 640px) {
  .contact-hero {
    padding: 2.5rem 0 1.4rem;
  }

  .contact-hero-copy,
  .contact-signal-card,
  .contact-direct-card,
  .contact-copy-card,
  .contact-checklist,
  .contact-route-card,
  .contact-card,
  .contact-closing-band {
    padding: 1.2rem;
    border-radius: 1.5rem;
  }

  .contact-hero-copy h1 {
    max-width: none;
    font-size: clamp(2.75rem, 12vw, 4rem);
  }

  .contact-signal-card li {
    grid-template-columns: 1fr;
  }

  .contact-signal-card li span {
    margin-bottom: 0.2rem;
  }

  .support-hero {
    padding: 3rem 0 3.5rem;
  }

  .support-hero-copy h1 {
    max-width: none;
    font-size: clamp(2.75rem, 12vw, 4rem);
  }

  .support-hero-visual {
    min-height: 31rem;
  }

  .support-hero-visual figure {
    height: 24rem;
    border-radius: 1.5rem;
    transform: none;
  }

  .support-status-card {
    right: 0.65rem;
    left: 0.65rem;
    width: auto;
    padding: 1.15rem;
  }

  .support-price-badge {
    top: 0.75rem;
    right: 0.75rem;
    min-width: 7.6rem;
    padding: 0.8rem 0.9rem;
  }

  .support-scope-card {
    min-height: auto;
  }

  .support-scope-visual {
    height: 10rem;
  }

  .support-platform-note {
    border-radius: 1rem;
    text-align: left;
  }

  .support-guide-grid {
    grid-template-columns: 1fr;
  }

  .support-guide-wide {
    grid-column: auto;
  }

  .support-guide-card {
    min-height: 14rem;
    padding: 1.1rem;
  }

  .support-guide-icon {
    width: 3rem;
  }

  .mega-intro { display: grid; }
  .mega-grid { grid-template-columns: 1fr; }
  .mega-grid-plans { grid-template-columns: 1fr; }
  .mega-grid-proof { grid-template-columns: 1fr; }
  .mega-feature { min-height: 12rem; }
  .mega-column { padding: 0.15rem; }
  .mega-footer { display: grid; gap: 0.6rem; }

  .footer-directory-grid {
    grid-template-columns: 1fr;
  }

  .about-proof-collage {
    grid-template-rows: 11rem 8rem;
    transform: none;
  }

  .faq-question {
    min-height: 4.7rem;
    padding: 1.1rem 1rem 1.1rem 4.35rem;
  }

  .faq-answer-inner { padding: 0 1rem 1.2rem 4.35rem; }
  .faq-accordion article::before { left: 1rem; }

  .resource-controls label {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .resource-grid {
    grid-template-columns: 1fr;
  }

  .news-home-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .resource-card {
    min-height: 15rem;
  }

  .health-result {
    grid-template-columns: 1fr;
  }

  .health-score {
    width: 9rem;
  }

  .health-report-grid {
    grid-template-columns: 1fr;
  }

  .health-report-actions .button {
    width: 100%;
  }

  .health-check-card fieldset {
    padding: 1rem 0.7rem;
  }

  .health-question {
    padding: 0.8rem 0.65rem;
  }

  .services-hero {
    padding-top: 3.5rem;
  }

  .service-compass {
    padding: 0.8rem;
    border-radius: 24px;
  }

  .compass-grid {
    min-height: 19rem;
  }

  .compass-grid > strong {
    width: 6rem;
  }

  .compass-node {
    padding: 0.5rem 0.65rem;
    font-size: 0.72rem;
  }

  .service-directory-grid {
    grid-template-columns: 1fr;
  }

  .directory-card {
    min-height: 12rem;
  }

  .directory-card > span {
    margin-bottom: 1.3rem;
  }

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

  .service-proof-card img {
    height: 13rem;
  }

  .topbar-inner {
    padding: 0.55rem 0;
  }

  .topbar p {
    display: none;
  }

  .topbar a {
    margin-left: auto;
  }

  h1 {
    font-size: clamp(2.45rem, 11vw, 3.25rem);
    overflow-wrap: break-word;
  }

  .page-hero h1 {
    font-size: clamp(2.35rem, 10vw, 3.1rem);
  }

  .hero-copy,
  .panel {
    padding: 1.25rem;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-art,
  .hero-art img {
    min-height: 18rem;
  }

  .emergency-panel {
    width: calc(100% - 1rem);
    margin-top: -2rem;
  }

  .problem-grid,
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .signal-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-nav {
    max-width: 100%;
    justify-content: space-between;
    gap: 0.45rem;
  }

  .site-nav > a {
    flex: 0 1 auto;
    font-size: 0.88rem;
  }

  .price-stack div {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.3rem;
  }

  .hero-actions .button {
    flex: 1 1 12rem;
  }

  .trust-pills li {
    font-size: 0.88rem;
  }

  .project-card {
    grid-template-columns: 1fr;
  }

  .results-card {
    grid-template-columns: 1fr;
  }

  .founder-layout img {
    width: 6.5rem;
  }

  .project-card img,
  .results-card img {
    min-height: 15rem;
    max-height: 19rem;
  }

  .project-facts div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

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

  .proof-bar-grid div,
  .proof-bar-grid div:first-child {
    padding: 1rem 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .proof-bar-grid div:first-child { border-top: 0; }

  .showcase-card {
    grid-template-columns: 1fr;
  }

  .showcase-card img,
  .showcase-large img {
    min-height: 14rem;
    max-height: 18rem;
  }

  .service-path-card { min-height: 20rem; }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
  }

  .not-found-art { min-height: 17rem; }
}

@media (max-width: 430px) {
  .wrap {
    width: min(100% - 1.25rem, 1180px);
  }

  .header-actions .button-solid {
    display: none;
  }

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

  .hero-kicker-row {
    gap: 0.4rem;
  }

  .hero-kicker-row .eyebrow {
    padding: 0.4rem 0.55rem;
    font-size: 0.69rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Homepage art direction: cinematic, image-led and intentionally free of orbit motifs. */
.eyebrow::before {
  width: 1.5rem;
  height: 2px;
  margin-right: 0.55rem;
  border: 0;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: none;
  vertical-align: 0.22rem;
}

.home-dark .site-header {
  background: rgba(11, 16, 27, 0.92);
  border-color: rgba(255, 255, 255, 0.09);
}

.home-dark .site-nav > a,
.home-dark .mega-trigger,
.home-dark .header-actions .button-ghost {
  color: rgba(255, 255, 255, 0.72);
}

.home-dark .site-nav > a:hover,
.home-dark .site-nav > a:focus-visible,
.home-dark .site-nav > a[aria-current="page"] {
  color: #ffffff;
}

.home-dark .mega-trigger:hover,
.home-dark .mega-trigger:focus-visible,
.home-dark .mega-trigger[aria-current="page"] {
  color: #ffffff;
}

.home-dark .mega-panel a { color: var(--ink); }
.home-dark .mega-panel .mega-intro > a,
.home-dark .mega-panel .mega-footer a:hover { color: var(--brand-deep); }
.home-dark .mega-panel .mega-feature,
.home-dark .mega-panel .mega-feature strong,
.home-dark .mega-panel .mega-feature em { color: #ffffff; }

.home-dark .header-actions .button-ghost,
.home-dark .menu-toggle {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.home-hero {
  min-height: min(860px, calc(100vh - 8rem));
  padding: clamp(3.5rem, 7vw, 7rem) 0 clamp(4rem, 8vw, 7rem);
  isolation: isolate;
  background:
    radial-gradient(circle at 76% 18%, rgba(241, 137, 51, 0.12), transparent 24rem),
    radial-gradient(circle at 18% 78%, rgba(98, 197, 199, 0.08), transparent 28rem),
    linear-gradient(135deg, #080c14 0%, #101827 52%, #0b101b 100%);
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.particle-field {
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  width: 100%;
  height: min(100dvh, 60rem);
  pointer-events: none;
  overflow: hidden;
  opacity: 0;
}

.home-hero > canvas,
.particle-field canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none;
}

.home-hero > canvas {
  z-index: 0;
  opacity: 0.96;
}

.home-hero .hero-layout {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.home-hero .hero-copy {
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.home-hero .hero-copy h1 {
  max-width: 12ch;
  color: #ffffff;
  font-size: clamp(3.4rem, 6.2vw, 6.3rem);
  letter-spacing: -0.06em;
}

.home-hero .hero-copy .lead {
  max-width: 38rem;
  color: rgba(239, 244, 252, 0.72);
}

.home-hero .hero-kicker-row .eyebrow {
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.home-hero .trust-pills li {
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.home-hero .hero-actions .button-outline {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.18);
}

.home-hero .hero-panel {
  transform: rotate(1.2deg);
}

.home-hero .hero-art {
  min-height: clamp(25rem, 45vw, 38rem);
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 2.2rem;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.45);
}

.home-hero .hero-art img {
  min-height: clamp(25rem, 45vw, 38rem);
  object-position: 67% center;
  filter: saturate(0.86) contrast(1.04);
}

.home-hero .hero-art::after {
  content: "Technical support · since 2007";
  color: rgba(255, 255, 255, 0.84);
  background: rgba(8, 12, 20, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.home-hero .emergency-panel {
  width: calc(100% - 3rem);
  margin-top: -5.5rem;
  border-color: rgba(255, 255, 255, 0.12);
  transform: rotate(-1.2deg) translateX(-1rem);
  background: rgba(16, 24, 39, 0.92);
  backdrop-filter: blur(18px);
}

.home-dark .proof-bar {
  border-color: rgba(255, 255, 255, 0.08);
  background: #0b111d;
}

.home-dark .proof-bar-grid div {
  border-color: rgba(255, 255, 255, 0.08);
}

.home-dark .proof-bar-grid strong { color: #ffffff; }
.home-dark .proof-bar-grid span { color: rgba(255, 255, 255, 0.56); }

@media (max-width: 900px) {
  .home-hero {
    min-height: auto;
    padding-top: 3.5rem;
  }

  .home-hero .hero-layout {
    grid-template-columns: 1fr;
  }

  .home-hero .hero-copy h1 {
    max-width: 13ch;
    font-size: clamp(3rem, 11vw, 5rem);
  }

  .home-hero .hero-panel {
    transform: none;
  }

  .home-hero .emergency-panel {
    transform: none;
    margin-top: -3rem;
  }
}

@media (max-width: 640px) {
  .home-hero::after { background-size: 48px 48px; }
  .particle-field { opacity: 0.68; }
  .home-hero .hero-copy h1 { font-size: clamp(2.8rem, 12.5vw, 4.2rem); }
  .home-hero .hero-kicker-row .eyebrow:nth-child(n + 3) { display: none; }
  .home-hero .hero-art,
  .home-hero .hero-art img { min-height: 22rem; }
}

.chat-shell {
  position: fixed;
  right: clamp(0.8rem, 2vw, 1.5rem);
  bottom: clamp(0.8rem, 2vw, 1.5rem);
  z-index: 100;
  font-family: var(--body);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.chat-shell.chat-delayed {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.75rem);
}

.form-input-active .chat-shell {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.75rem);
}

.nav-menu-open .chat-shell {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.chat-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.65rem;
}

.floating-action {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.65rem;
  height: 3.65rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: #ffffff;
  background: #111827;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.26);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.floating-action:hover,
.floating-action:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(17, 24, 39, 0.34);
}

.floating-action-label {
  position: absolute;
  right: calc(100% + 0.7rem);
  width: max-content;
  max-width: 11rem;
  padding: 0.48rem 0.68rem;
  border-radius: 0.55rem;
  color: #ffffff;
  background: #111827;
  box-shadow: var(--shadow-soft);
  font-size: 0.74rem;
  font-weight: 800;
  opacity: 0;
  visibility: hidden;
  transform: translateX(0.4rem);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  pointer-events: none;
}

.floating-action:hover .floating-action-label,
.floating-action:focus-visible .floating-action-label {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.whatsapp-action {
  border-color: rgba(255, 255, 255, 0.28);
  background: #1f9d63;
  box-shadow: 0 18px 45px rgba(31, 157, 99, 0.25);
}

.whatsapp-action:hover,
.whatsapp-action:focus-visible {
  background: #178554;
  box-shadow: 0 22px 55px rgba(31, 157, 99, 0.34);
}

.whatsapp-action svg {
  width: 1.65rem;
  height: 1.65rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chat-launcher-mark {
  position: relative;
  width: 1.15rem;
  height: 1rem;
  border: 2px solid var(--brand);
  border-radius: 0.28rem;
}

.chat-launcher-mark::after {
  content: "";
  position: absolute;
  left: 0.12rem;
  bottom: -0.34rem;
  width: 0.38rem;
  height: 0.38rem;
  border-left: 2px solid var(--brand);
  transform: skewY(-35deg);
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 4.25rem;
  display: grid;
  grid-template-rows: auto minmax(11rem, 1fr) auto auto auto;
  width: min(25rem, calc(100vw - 1.6rem));
  height: min(39rem, calc(100vh - 7rem));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.5rem;
  color: #ffffff;
  background: #111827;
  box-shadow: 0 32px 80px rgba(8, 12, 20, 0.42);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.8rem) scale(0.98);
  transform-origin: right bottom;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.chat-open .chat-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chat-open .chat-launcher { background: var(--brand); color: var(--navy); }
.chat-open .chat-launcher .floating-action-label { display: none; }

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
}

.chat-header > div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.55rem;
  align-items: center;
}

.chat-header strong { font-size: 0.98rem; }
.chat-header small { grid-column: 2; color: rgba(255, 255, 255, 0.55); }

.chat-status-dot {
  grid-row: 1 / 3;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #72d5a5;
  box-shadow: 0 0 0 4px rgba(114, 213, 165, 0.12);
}

.chat-close {
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 750;
  cursor: pointer;
}

.chat-messages {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  overflow-y: auto;
  padding: 1rem;
  overscroll-behavior: contain;
}

.chat-message {
  max-width: 88%;
}

.chat-message span {
  display: block;
  margin: 0 0 0.3rem 0.35rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.chat-message p {
  margin: 0;
  padding: 0.8rem 0.9rem;
  border-radius: 1rem 1rem 1rem 0.2rem;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.075);
  font-size: 0.9rem;
  line-height: 1.48;
}

.chat-message-user {
  align-self: flex-end;
}

.chat-message-user span { text-align: right; margin-right: 0.35rem; }
.chat-message-user p {
  border-radius: 1rem 1rem 0.2rem 1rem;
  color: var(--navy);
  background: #f6a04f;
}

.chat-suggestions {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  padding: 0 1rem 0.8rem;
  scrollbar-width: none;
}

.chat-suggestions[hidden] { display: none; }
.chat-suggestions button {
  flex: 0 0 auto;
  padding: 0.5rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.74);
  background: transparent;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
  padding: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-form textarea {
  min-height: 3rem;
  max-height: 7rem;
  resize: vertical;
  padding: 0.72rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.8rem;
  outline: none;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  font: inherit;
  font-size: 0.88rem;
}

.chat-form textarea:focus { border-color: var(--brand); }
.chat-form textarea::placeholder { color: rgba(255, 255, 255, 0.42); }
.chat-form button {
  align-self: stretch;
  min-width: 4.2rem;
  border: 0;
  border-radius: 0.8rem;
  color: var(--navy);
  background: var(--brand);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 850;
  cursor: pointer;
}

.chat-form button[disabled],
.chat-form textarea[disabled] { opacity: 0.58; cursor: wait; }

.chat-footer {
  padding: 0 1rem 0.85rem;
  text-align: center;
}

.chat-footer p {
  margin: 0 0 0.35rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.68rem;
}

.chat-footer a {
  color: #ffc78f;
  font-size: 0.75rem;
  font-weight: 800;
}

.chat-footer > div {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.chat-footer > div a + a {
  padding-left: 0.85rem;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

@media (max-width: 640px) {
  .chat-shell { right: 0.65rem; bottom: 0.65rem; }
  .chat-panel {
    position: fixed;
    inset: auto 0.5rem 4.8rem;
    width: auto;
    height: min(38rem, calc(100dvh - 5.6rem));
  }
  .floating-action { width: 3.35rem; height: 3.35rem; }
  .floating-action-label { display: none; }
}

.checkout-page {
  background:
    radial-gradient(circle at top right, rgba(98, 197, 199, 0.12), transparent 26rem),
    radial-gradient(circle at bottom left, rgba(241, 137, 51, 0.14), transparent 24rem),
    linear-gradient(180deg, #fffdf9 0%, #f8fafc 100%);
}

.checkout-main {
  padding-bottom: 4rem;
}

.checkout-hero {
  padding-bottom: 1.5rem;
}

.checkout-hero-layout,
.checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(22rem, 0.9fr);
  gap: 1.35rem;
  align-items: start;
}

.checkout-plan-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.checkout-plan-pill {
  display: grid;
  gap: 0.2rem;
  min-width: 10rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(18, 24, 38, 0.1);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.checkout-plan-pill:hover,
.checkout-plan-pill:focus-visible,
.checkout-plan-pill.is-active {
  transform: translateY(-1px);
  border-color: rgba(241, 137, 51, 0.45);
  box-shadow: 0 18px 44px rgba(18, 24, 38, 0.08);
}

.checkout-plan-pill strong {
  color: var(--ink);
  font-size: 0.98rem;
}

.checkout-plan-pill span {
  color: var(--muted);
  font-size: 0.82rem;
}

.checkout-plan-card,
.checkout-intro-card,
.checkout-shell-card,
.checkout-return-card {
  padding: 1.5rem;
  border: 1px solid rgba(18, 24, 38, 0.09);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 26px 60px rgba(18, 24, 38, 0.08);
}

.checkout-plan-card {
  position: sticky;
  top: 6.7rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94)),
    #ffffff;
}

.checkout-price {
  margin: 0 0 0.7rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.06em;
}

.checkout-price span {
  margin-left: 0.25rem;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
}

.checkout-note,
.checkout-secure-copy {
  font-size: 0.85rem;
}

.checkout-details-form {
  display: grid;
  gap: 1rem;
}

.checkout-details-form label,
.checkout-details-form span {
  display: block;
}

.checkout-details-form label {
  display: grid;
  gap: 0.45rem;
}

.checkout-details-form span {
  color: var(--ink);
  font-weight: 700;
}

.checkout-details-form input {
  width: 100%;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  border: 1px solid rgba(17, 32, 56, 0.12);
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  font: inherit;
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.checkout-details-form input::placeholder {
  color: rgba(64, 74, 96, 0.58);
}

.checkout-details-form input:hover {
  border-color: rgba(17, 32, 56, 0.2);
}

.checkout-details-form input:focus {
  outline: none;
  border-color: rgba(241, 137, 51, 0.58);
  box-shadow: 0 0 0 0.28rem rgba(241, 137, 51, 0.14);
  background: #fffdfb;
}

.checkout-details-form small {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.checkout-shell-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.checkout-shell-badge {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  color: var(--brand-deep);
  background: rgba(241, 137, 51, 0.12);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.checkout-shell-body {
  padding: 1rem;
  border: 1px dashed rgba(18, 24, 38, 0.12);
  border-radius: 1.1rem;
  background: linear-gradient(180deg, rgba(246, 248, 250, 0.9), rgba(255, 255, 255, 0.95));
}

.checkout-shell-body.is-disabled {
  opacity: 0.92;
}

.checkout-shell-body.is-loading {
  border-style: solid;
  border-color: rgba(241, 137, 51, 0.18);
  background: linear-gradient(180deg, rgba(255, 248, 240, 0.92), rgba(255, 255, 255, 0.98));
}

.checkout-placeholder {
  display: grid;
  gap: 0.6rem;
  min-height: 13rem;
  place-content: center;
  text-align: center;
}

.checkout-loading-mark {
  width: 2.75rem;
  height: 2.75rem;
  margin: 0 auto 0.2rem;
  border: 3px solid rgba(241, 137, 51, 0.2);
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: checkout-spin 0.9s linear infinite;
}

.checkout-shell-body:not(.is-loading) .checkout-loading-mark {
  opacity: 0.7;
}

.checkout-payment-element {
  margin-bottom: 1rem;
}

.checkout-confirm-row {
  display: grid;
  gap: 0.7rem;
}

.checkout-error {
  min-height: 1.5rem;
  margin: 0.85rem 0 0;
  color: #b42318;
  font-size: 0.9rem;
}

.checkout-details-form .button-block {
  margin-top: 0.2rem;
}

.checkout-intro-card .form-status {
  margin-top: 0.15rem;
}

@keyframes checkout-spin {
  to { transform: rotate(360deg); }
}

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.checkout-steps article {
  padding: 1.15rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.checkout-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  color: var(--navy);
  background: linear-gradient(135deg, #ffb97c, var(--brand));
  font-size: 0.86rem;
  font-weight: 850;
}

.checkout-status-panel {
  margin: 1.5rem auto 0;
  max-width: 42rem;
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(18, 24, 38, 0.1);
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.checkout-status-panel strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-size: 1.12rem;
}

@media (max-width: 900px) {
  .checkout-hero-layout,
  .checkout-grid,
  .checkout-steps {
    grid-template-columns: 1fr;
  }

  .checkout-plan-card {
    position: static;
  }
}
