:root {
  --bg: #eef3f8;
  --bg-alt: #f7fbff;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-alt: #f2f6fb;
  --surface-soft: #e8f0f8;
  --ink: #17324d;
  --ink-strong: #10243a;
  --muted: #5b6d80;
  --muted-soft: #7a8da2;
  --line: #d7e1ec;
  --line-strong: #b9cada;
  --brand: #0c62ad;
  --brand-dark: #0f3f73;
  --brand-soft: #dcecfb;
  --accent: #e8a33a;
  --accent-soft: #fff1d3;
  --shadow-sm: 0 14px 32px rgba(16, 52, 92, 0.08);
  --shadow-lg: 0 28px 70px rgba(16, 52, 92, 0.14);
  --radius-xl: 32px;
  --radius-l: 24px;
  --radius-m: 18px;
  --radius-s: 14px;
  --page-gutter: clamp(16px, 5.8vw, 150px);
  --header-bleed: clamp(18px, 3vw, 72px);
  --main-width: 1920px;
  --content-width: 1920px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: clip;
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(12, 98, 173, 0.1), transparent 26%),
    radial-gradient(circle at 92% 4%, rgba(232, 163, 58, 0.12), transparent 18%),
    linear-gradient(180deg, #f8fbfe 0%, #eef3f8 46%, #f8fbfd 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  inset: 0;
}

body::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), transparent 28%);
}

body::after {
  inset: auto -120px -120px auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(12, 98, 173, 0.08);
  filter: blur(12px);
}

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

img,
svg {
  max-width: 100%;
}

img {
  height: auto;
}

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

h1,
h2,
h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.04em;
  color: var(--ink-strong);
}

p {
  margin: 0;
}

:focus-visible {
  outline: 3px solid rgba(12, 98, 173, 0.28);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  top: -64px;
  left: var(--page-gutter);
  z-index: 50;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--brand-dark);
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 16px;
}

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

.site-frame {
  position: relative;
  /* width: min(100%, var(--content-width)); */
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 var(--page-gutter) 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 16px clamp(18px, 3vw, 42px);
  border: 1px solid rgba(215, 225, 236, 0.96);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
}

.dashboard-header {
  grid-template-columns: auto 1fr auto;
}

.dashboard-header .header-actions {
  grid-column: 3;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-login {
  min-height: 44px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.brand {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(12, 98, 173, 0.2);
}

/* Use the favicon image as a mask so we can tint it with the brand color */
.brand-mark {
  background: var(--brand);
  -webkit-mask-image: url("../icons/favicon4.png");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: cover;
  mask-image: url("../icons/favicon4.png");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
}

.brand-mark img {
  display: none;
}

.brand-stack {
  display: grid;
  gap: 4px;
}

.brand-title {
  font-family: "Manrope", sans-serif;
  font-size: 1.06rem;
  font-weight: 800;
  line-height: 1;
  color: var(--ink-strong);
}

.brand-subtitle {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted-soft);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 600;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-nav a::after {
  display: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--surface-alt);
  color: var(--ink-strong);
}

.site-nav a.is-active {
  background: var(--brand-soft);
  color: var(--brand-dark);
  box-shadow: inset 0 0 0 1px rgba(12, 98, 173, 0.14);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-family: "Manrope", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--brand), #1d79c8);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(12, 98, 173, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 34px rgba(12, 98, 173, 0.24);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink-strong);
  box-shadow: 0 10px 24px rgba(16, 52, 92, 0.06);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--line-strong);
  background: #ffffff;
}

.menu-toggle {
  display: none;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  color: var(--ink-strong);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.page-main {
  display: grid;
  width: min(100%, var(--main-width));
  margin: 0 auto;
}

.section {
  padding: clamp(10px, 6vw, 10px) 0;
}

.eyebrow,
.panel-kicker,
.panel-note-label,
.proof-label,
.page-badge,
.service-tag,
.card-tag {
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.eyebrow,
.page-badge {
  margin: 0 0 16px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--brand-dark);
}

.page-badge {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 8px;
  min-height: 34px;
  width: fit-content;
  max-width: 100%;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(12, 98, 173, 0.16);
  background: var(--brand-soft);
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 840px;
  margin-bottom: 32px;
}

.section-heading h2,
.page-title {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.52;
}

.page-intro,
.hero-text,
.section-text,
.contact-lead,
.link-card p,
.detail-card p,
.service-card p,
.case-card p,
.contact-card p,
.timeline-item p,
.page-stat span,
.section-side-list span,
.panel-card p,
.panel-note,
.hero-meta span,
.footer-copy,
.footer-nav a {
  color: var(--muted);
}

.page-intro,
.hero-text,
.section-text,
.contact-lead {
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero,
.page-hero,
.section-header-split,
.split-band,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(48px, 6vw, 84px);
  align-items: start;
}

.hero {
  align-items: center;
  padding-top: 32px;
}

.hero-copy,
.page-hero-copy {
  display: grid;
  gap: 24px;
  align-content: start;
  padding-top: 12px;
}

.hero-copy::before,
.page-hero-copy::before {
  content: "";
  display: block;
  width: 96px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--brand));
}

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

.hero h1 {
  font-size: clamp(3.2rem, 8vw, 6.2rem);
  line-height: 0.96;
}

.headline-lock {
  display: inline-block;
  white-space: nowrap;
}

.hero h1 .headline-mark,
.page-title .headline-mark {
  display: inline-block;
  padding: 0 0.14em 0.04em;
  margin-right: -0.08em;
  border-radius: 0.22em;
  background: linear-gradient(180deg, rgba(220, 236, 251, 0.98), rgba(220, 236, 251, 0.82));
  box-shadow: inset 0 -0.18em 0 rgba(12, 98, 173, 0.12);
}

.hero .highlight-alt {
  background: linear-gradient(180deg, rgba(255, 241, 211, 0.98), rgba(255, 241, 211, 0.84));
  box-shadow: inset 0 -0.18em 0 rgba(232, 163, 58, 0.16);
}

.admin-dashboard-layout .page-title .headline-mark {
  background: var(--brand-soft);
  box-shadow: inset 0 -0.12em 0 rgba(12, 98, 173, 0.1);
  padding-bottom: 0.1em;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.hero-meta article,
.page-stat {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
}

.hero-meta article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), rgba(12, 98, 173, 0));
}

.hero-meta strong,
.page-stat strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.18rem;
  line-height: 1.08;
  color: var(--ink-strong);
}

.page-stats {
  display: grid;
  gap: 16px;
}

body[data-page="services"] .page-main {
  width: min(100%, 1600px);
}

body[data-page="services"] .section-heading {
  margin-bottom: 24px;
}

.pricing-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-inline: clamp(18px, 3vw, 42px);
  padding-top: clamp(8px, 4vw, 28px);
}

.pricing-hero-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(24px, 3vw, 36px);
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(15, 34, 54, 0.08);
  border-radius: 40px;
  background:
    radial-gradient(circle at top left, rgba(12, 98, 173, 0.1), transparent 32%),
    radial-gradient(circle at 86% 18%, rgba(232, 163, 58, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(241, 247, 252, 0.96));
  box-shadow: var(--shadow-lg);
}

.pricing-hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), transparent 24%),
    repeating-linear-gradient(90deg, rgba(16, 52, 92, 0.03) 0 1px, transparent 1px 180px);
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), transparent 88%);
}

.pricing-hero-copy,
.pricing-hero-board {
  position: relative;
  z-index: 1;
}

.pricing-hero-copy {
  display: grid;
  align-content: center;
  gap: 24px;
}

.pricing-hero .page-title {
  max-width: 11ch;
  font-size: clamp(3.1rem, 6vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.pricing-hero .page-intro {
  max-width: 38ch;
  font-size: clamp(1.05rem, 1.45vw, 1.2rem);
  line-height: 1.76;
}

.pricing-chip-row {
  gap: 10px;
}

.pricing-chip-row span {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(12, 98, 173, 0.12);
  box-shadow: 0 10px 24px rgba(16, 52, 92, 0.06);
}

.pricing-hero-board {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: 32px;
  background: linear-gradient(145deg, #10243a 0%, #18395a 58%, #0e4c77 100%);
  color: #ffffff;
  box-shadow: 0 26px 56px rgba(9, 27, 46, 0.2);
}

.pricing-hero-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 20%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 24%);
  pointer-events: none;
}

.pricing-hero-board-head,
.pricing-hero-snapshots,
.pricing-hero-board-note {
  position: relative;
  z-index: 1;
}

.pricing-hero-board-head {
  display: grid;
  gap: 12px;
}

.pricing-hero-board-head h2 {
  max-width: 13ch;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  line-height: 1.02;
  color: #ffffff;
}

.pricing-hero-snapshots {
  display: grid;
  gap: 12px;
}

.pricing-snapshot-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.pricing-snapshot-card strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.44rem;
  line-height: 1.06;
  color: #ffffff;
}

.pricing-snapshot-card p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.62;
}

.pricing-snapshot-card-featured {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pricing-snapshot-card-custom {
  background: rgba(232, 163, 58, 0.14);
}

.pricing-snapshot-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.68);
}

.pricing-hero-board-note {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.pricing-hero-board-note .panel-note-label {
  color: rgba(255, 255, 255, 0.62);
}

.pricing-hero-board-note p:last-child {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.68;
}

.pricing-deck-header,
.pricing-breakdown-header {
  display: grid;
  gap: 14px;
  max-width: 920px;
}

.pricing-deck-header h2,
.pricing-breakdown-header h2,
.pricing-faq-column .section-heading h2,
.pricing-cta-copy h2 {
  max-width: 14ch;
}

.pricing-deck-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(320px, 1.16fr) minmax(260px, 0.92fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-offer-card {
  display: grid;
  gap: 22px;
  min-height: 100%;
  padding: clamp(26px, 3.2vw, 34px);
  border-radius: 32px;
}

.pricing-offer-card-start {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 249, 253, 0.96));
}

.pricing-offer-card-featured {
  transform: translateY(-12px);
  background:
    radial-gradient(circle at top right, rgba(12, 98, 173, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(245, 250, 255, 0.99), rgba(236, 244, 251, 0.96));
  box-shadow: 0 28px 56px rgba(12, 98, 173, 0.12);
}

.pricing-offer-card-custom {
  background: linear-gradient(180deg, rgba(255, 252, 244, 0.99), rgba(252, 247, 236, 0.96));
}

.pricing-offer-top,
.pricing-offer-price,
.pricing-offer-footer {
  display: grid;
  gap: 16px;
}

.pricing-offer-tag-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.pricing-offer-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(12, 98, 173, 0.12);
  background: rgba(12, 98, 173, 0.08);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.pricing-offer-chip-strong {
  background: rgba(12, 98, 173, 0.14);
  border-color: rgba(12, 98, 173, 0.18);
}

.pricing-offer-price-main {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 800;
  line-height: 0.96;
  color: var(--ink-strong);
}

.pricing-offer-price-note,
.pricing-offer-lead {
  color: var(--muted);
  line-height: 1.72;
}

.pricing-offer-lead {
  font-family: "Manrope", sans-serif;
  font-size: 1.16rem;
  line-height: 1.42;
  color: var(--ink-strong);
}

.pricing-offer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pricing-offer-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 36, 58, 0.08);
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-strong);
}

.pricing-offer-footer {
  margin-top: auto;
}

.pricing-deck-footnote {
  display: grid;
  justify-items: center;
  margin-top: 18px;
}

.pricing-deck-footnote p {
  max-width: 66ch;
  padding: 18px 22px;
  border: 1px solid rgba(15, 34, 54, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  line-height: 1.7;
  text-align: center;
}

.pricing-breakdown-shell {
  display: grid;
  gap: 28px;
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid rgba(15, 34, 54, 0.08);
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(12, 98, 173, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(241, 247, 252, 0.96));
  box-shadow: var(--shadow-sm);
}

.pricing-breakdown-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(280px, 0.88fr);
  gap: 22px;
  align-items: start;
}

.pricing-breakdown-card {
  display: grid;
  gap: 14px;
  min-height: 100%;
  padding: 26px;
  border: 1px solid rgba(15, 34, 54, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
}

.pricing-breakdown-card-accent {
  background: linear-gradient(180deg, rgba(255, 252, 244, 0.98), rgba(252, 247, 236, 0.96));
}

.pricing-breakdown-note {
  display: grid;
  gap: 16px;
  padding: 30px;
}

.pricing-breakdown-note h3 {
  font-size: 1.72rem;
  line-height: 1.06;
}

.pricing-breakdown-note p {
  color: var(--muted);
  line-height: 1.72;
}

.pricing-breakdown-points {
  display: grid;
  gap: 14px;
}

.pricing-breakdown-points article {
  display: grid;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(16, 36, 58, 0.08);
}

.pricing-breakdown-points article:first-child {
  padding-top: 0;
  border-top: 0;
}

.pricing-breakdown-points strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.04rem;
  line-height: 1.12;
  color: var(--ink-strong);
}

.pricing-breakdown-points span {
  color: var(--muted);
  line-height: 1.68;
}

.pricing-faq-board {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 24px;
  align-items: start;
}

.pricing-faq-column {
  display: grid;
  gap: 24px;
}

.pricing-guidance-card {
  display: grid;
  gap: 18px;
  padding: 30px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(236, 244, 251, 0.98), rgba(255, 255, 255, 0.96));
}

.pricing-guidance-card h3 {
  font-size: 1.58rem;
  line-height: 1.08;
}

.pricing-guidance-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
}

.pricing-cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid rgba(15, 34, 54, 0.08);
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(12, 98, 173, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(240, 246, 251, 0.96));
  box-shadow: var(--shadow-sm);
}

.pricing-cta-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.pricing-cta-points {
  display: grid;
  gap: 14px;
  align-content: center;
}

.pricing-cta-points article {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(15, 34, 54, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
}

.pricing-cta-points strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.04rem;
  line-height: 1.12;
  color: var(--ink-strong);
}

.pricing-cta-points span {
  color: var(--muted);
  line-height: 1.68;
}

@media (max-width: 1200px) {

  .pricing-hero-shell,
  .pricing-breakdown-grid,
  .pricing-faq-board,
  .pricing-cta-band {
    grid-template-columns: 1fr;
  }

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

  .pricing-offer-card-featured {
    grid-column: 1 / -1;
    transform: none;
  }
}

@media (max-width: 900px) {

  .pricing-hero-shell,
  .pricing-breakdown-shell,
  .pricing-cta-band {
    padding: 22px;
    border-radius: 30px;
  }

  .pricing-hero-board,
  .pricing-guidance-card {
    padding: 24px;
    border-radius: 28px;
  }

  .pricing-deck-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .pricing-hero .page-title {
    font-size: clamp(2.8rem, 14vw, 3.8rem);
  }

  .pricing-offer-card,
  .pricing-breakdown-card,
  .pricing-breakdown-note,
  .pricing-guidance-card {
    padding: 22px;
    border-radius: 24px;
  }

  .pricing-offer-meta span,
  .pricing-chip-row span {
    width: 100%;
    justify-content: flex-start;
  }
}

.services-hero {
  align-items: start;
  gap: clamp(32px, 4vw, 56px);
}

.services-hero .page-hero-copy {
  gap: 28px;
  padding-top: clamp(18px, 2vw, 30px);
}

.services-hero .page-title {
  max-width: 11ch;
  font-size: clamp(3.2rem, 6vw, 5.3rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.services-hero .page-intro {
  max-width: 38ch;
  font-size: clamp(1.08rem, 1.45vw, 1.22rem);
  line-height: 1.72;
}

.services-hero .page-badge {
  margin-bottom: 0;
}

.services-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.services-chip-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(12, 98, 173, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(16, 52, 92, 0.06);
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink-strong);
}

.services-quick-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.services-quick-stats article {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.services-quick-stats strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.14rem;
  line-height: 1.08;
  color: var(--ink-strong);
}

.services-quick-stats span {
  color: var(--muted);
  line-height: 1.64;
}

.services-stage {
  gap: 18px;
  align-content: start;
}

.services-stage-head,
.services-stage-pills,
.services-stage-visual,
.services-stage-grid,
.services-stage-note {
  position: relative;
  z-index: 1;
}

.services-stage-intro {
  max-width: 44ch;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.services-stage-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.services-stage-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.services-stage-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  min-height: 320px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.services-stage-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.services-stage-float {
  position: absolute;
  max-width: 22ch;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(8, 18, 31, 0.72);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.5;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.services-stage-float-primary {
  top: 18px;
  left: 18px;
}

.services-stage-float-secondary {
  right: 18px;
  bottom: 18px;
}

.services-stage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.services-stage-grid article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.services-stage-grid strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.02rem;
  line-height: 1.1;
  color: #ffffff;
}

.services-stage-grid span {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.62;
}

.services-gallery-shell {
  align-items: end;
  margin-bottom: 22px;
}

.services-gallery-note {
  align-content: start;
}

.services-gallery-grid {
  margin-top: 0;
}

.services-gallery-card {
  display: grid;
  gap: 16px;
  min-height: 100%;
  padding: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(241, 247, 252, 0.96));
}

.services-gallery-media {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(16, 36, 58, 0.08);
  background: linear-gradient(180deg, rgba(240, 245, 250, 0.98), rgba(222, 233, 243, 0.94));
  aspect-ratio: 4 / 3;
}

.services-gallery-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.services-gallery-copy {
  display: grid;
  gap: 10px;
  padding: 4px 10px 10px;
}

.services-gallery-copy h3 {
  font-size: 1.42rem;
  line-height: 1.08;
}

.services-gallery-copy p:last-child {
  color: var(--muted);
  line-height: 1.68;
}

.services-stage-note {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
}

.services-stage .panel-note-label {
  color: rgba(255, 255, 255, 0.62);
}

.services-stage-note p:last-child {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.68;
}

body[data-page="services"] .page-main>.services-proof-strip.section {
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(15, 34, 54, 0.08);
  border-radius: 36px;
  background:
    radial-gradient(circle at top center, rgba(12, 98, 173, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(241, 247, 252, 0.95));
  box-shadow: var(--shadow-sm);
}

.services-proof-strip .services-proof-grid {
  align-items: stretch;
  gap: clamp(22px, 3vw, 30px);
}

.services-proof-strip .services-proof-card {
  box-shadow: 0 16px 32px rgba(15, 33, 56, 0.06);
}

.services-proof-strip .services-proof-card h2 {
  max-width: 17ch;
}

.services-package-card {
  display: grid;
  gap: 18px;
  padding: 32px;
}

.services-package-card h3 {
  font-size: 1.72rem;
  line-height: 1.06;
}

.services-package-card p {
  color: var(--muted);
  line-height: 1.72;
}

.services-package-card .services-check-list {
  margin-top: 2px;
}

.services-package-card-featured {
  box-shadow: 0 26px 60px rgba(16, 52, 92, 0.12);
}

.services-spotlight-section .home-spotlight-copy h2 {
  max-width: 15ch;
}

.services-spotlight-section .home-spotlight-copy p:last-child {
  max-width: 44ch;
}

.services-cta-section {
  padding-top: clamp(10px, 2vw, 20px);
}

.services-cta-shell {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 22px;
}

.services-cta-card .hero-actions {
  margin-top: 4px;
}

.services-cta-card .services-cta-list {
  margin-top: 4px;
}

.services-cta-shell .home-business-contact-panel {
  min-height: 100%;
}

.services-centered-heading {
  justify-items: center;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.services-centered-heading h2 {
  max-width: 18ch;
}

.services-centered-heading .section-text {
  max-width: 74ch;
}

.services-why-grid {
  margin-top: 0;
}

.services-why-card {
  min-height: 100%;
}

.services-why-card:nth-child(2),
.services-why-card:nth-child(5) {
  background: linear-gradient(180deg, rgba(243, 248, 253, 0.99), rgba(236, 244, 251, 0.96));
}

.services-why-card:nth-child(3),
.services-why-card:nth-child(6) {
  background: linear-gradient(180deg, rgba(255, 252, 244, 0.99), rgba(252, 247, 236, 0.96));
}

.services-feature-band {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 30px;
  padding: clamp(30px, 5vw, 48px);
  border: 1px solid rgba(12, 93, 141, 0.14);
  border-radius: 40px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.16), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(255, 241, 211, 0.18), transparent 18%),
    linear-gradient(145deg, #0d5f91 0%, #1174a5 52%, #1594c2 100%);
  box-shadow: var(--shadow-xl);
}

.services-feature-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.08), transparent 28%);
  pointer-events: none;
}

.services-feature-band>* {
  position: relative;
  z-index: 1;
}

.services-feature-band-head {
  margin-bottom: 0;
}

.services-feature-band .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.services-feature-band h2 {
  max-width: 16ch;
  color: #ffffff;
}

.services-feature-band .section-text {
  max-width: 70ch;
  color: rgba(255, 255, 255, 0.84);
}

.services-common-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 34px;
}

.services-common-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-common-list li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.02rem;
  line-height: 1.62;
}

.services-common-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  transform: translateY(-50%);
}

.services-seo-band {
  position: relative;
  overflow: hidden;
  align-items: stretch;
  padding: clamp(30px, 5vw, 44px);
  border: 1px solid rgba(12, 93, 141, 0.12);
  border-radius: 40px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 241, 211, 0.12), transparent 24%),
    linear-gradient(155deg, #0f5f90 0%, #0c527b 48%, #0a7ea8 100%);
  box-shadow: var(--shadow-xl);
}

.services-seo-copy,
.services-seo-media,
.services-seo-points {
  position: relative;
  z-index: 1;
}

.services-seo-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.services-seo-copy .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.services-seo-copy h2 {
  max-width: 10ch;
  font-size: clamp(2.2rem, 4.8vw, 4rem);
  line-height: 0.98;
  color: #ffffff;
}

.services-seo-copy .section-text {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.86);
}

.services-seo-points {
  display: grid;
  gap: 14px;
  margin-top: 2px;
}

.services-seo-points article {
  display: grid;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.services-seo-points article:first-child {
  padding-top: 0;
  border-top: 0;
}

.services-seo-points strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.04rem;
  line-height: 1.12;
  color: #ffffff;
}

.services-seo-points span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.66;
}

.services-seo-media {
  margin: 0;
  overflow: hidden;
  min-height: 100%;
  aspect-ratio: 5 / 4;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(227, 237, 246, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.services-seo-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero.pricing-hero {
  align-items: stretch;
}

.page-hero.pricing-hero .page-title {
  max-width: 20ch;
}

.page-hero.pricing-hero .page-intro {
  max-width: 88ch;
}

.pricing-stage {
  gap: 22px;
}

.pricing-stage-head,
.pricing-stage-grid,
.pricing-stage-note {
  position: relative;
  z-index: 1;
}

.pricing-stage-head {
  display: grid;
  gap: 14px;
}

.pricing-stage-head h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.02;
  color: #ffffff;
}

.pricing-stage-head p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.72;
}

.pricing-stage-grid {
  display: grid;
  gap: 14px;
}

.pricing-stage-grid article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.pricing-stage-grid strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.02rem;
  line-height: 1.1;
  color: #ffffff;
}

.pricing-stage-grid span {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.62;
}

.pricing-stage-note {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
}

.pricing-stage .panel-note-label {
  color: rgba(255, 255, 255, 0.62);
}

.pricing-stage-note p:last-child {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.68;
}

.pricing-package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.pricing-package-card {
  display: grid;
  gap: 24px;
  min-height: auto;
  padding: clamp(28px, 4vw, 34px);
}

.pricing-package-card-featured {
  background:
    radial-gradient(circle at top right, rgba(12, 98, 173, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(245, 250, 255, 0.98), rgba(239, 246, 252, 0.96));
}

.pricing-package-top {
  display: grid;
  gap: 18px;
}

.pricing-package-tag-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.pricing-package-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(12, 98, 173, 0.12);
  background: rgba(12, 98, 173, 0.08);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--brand-dark);
}

.pricing-package-badge-strong {
  background: rgba(12, 98, 173, 0.14);
  border-color: rgba(12, 98, 173, 0.18);
}

.pricing-price {
  display: grid;
  gap: 8px;
}

.pricing-price-value {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  font-weight: 800;
  line-height: 0.96;
  color: var(--ink-strong);
}

.pricing-price-note,
.pricing-package-meta {
  color: var(--muted);
  line-height: 1.68;
}

.pricing-package-card h3,
.pricing-faq-note h3 {
  font-size: 1.58rem;
  line-height: 1.08;
}

.pricing-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.68;
}

.pricing-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.pricing-package-footer,
.pricing-faq-note,
.pricing-faq-list {
  display: grid;
  gap: 14px;
}

.pricing-package-footer {
  margin-top: auto;
}

.pricing-faq-shell {
  align-items: start;
}

.pricing-package-subtag {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.pricing-feature-card {
  padding: clamp(28px, 4vw, 34px);
}

.pricing-feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-feature-item {
  position: relative;
  padding: 18px 0 18px 30px;
  border-top: 1px solid rgba(16, 36, 58, 0.1);
  color: var(--ink-strong);
  font-family: "Manrope", sans-serif;
  font-size: 1.02rem;
  line-height: 1.5;
}

.pricing-feature-item::before {
  position: absolute;
  top: 18px;
  left: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

.pricing-feature-item.is-included::before {
  content: "\2713";
  color: #76aa19;
}

.pricing-feature-item.is-extra::before {
  content: "\2715";
  color: #d93838;
}

.pricing-compare-panel {
  display: grid;
  gap: 24px;
  margin-top: 22px;
  padding: clamp(28px, 4vw, 36px);
}

.pricing-compare-copy {
  display: grid;
  gap: 14px;
  align-content: start;
  max-width: 72ch;
}

.pricing-compare-copy h3 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.02;
}

.pricing-compare-copy p:last-child {
  color: var(--muted);
  line-height: 1.72;
}

.pricing-compare-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 22px;
  align-items: start;
}

.pricing-compare-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(15, 34, 54, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.66);
}

.pricing-compare-card-side {
  align-self: start;
}

.pricing-compare-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.pricing-feature-list-single {
  grid-template-columns: 1fr;
  gap: 0;
}

.pricing-feature-list-single .pricing-feature-item {
  padding: 16px 0 16px 30px;
}

.pricing-feature-list-single .pricing-feature-item::before {
  top: 16px;
}

.pricing-faq-note,
.pricing-cta-card {
  padding: 30px;
}

.pricing-faq-list article {
  display: grid;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(16, 36, 58, 0.08);
}

.pricing-faq-list article:first-child {
  padding-top: 0;
  border-top: 0;
}

.pricing-faq-list strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.04rem;
  line-height: 1.12;
  color: var(--ink-strong);
}

.pricing-faq-list span {
  color: var(--muted);
  line-height: 1.68;
}


body[data-page="pricing"] .section-heading {
  margin-bottom: 24px;
}

body[data-page="pricing"] .pricing-compare-panel {
  margin-top: 16px;
}

.services-proof-strip {
  padding-top: 14px;
}

.services-proof-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
}

.services-proof-card,
.services-feature-card,
.services-summary-card,
.services-fit-card,
.services-process-card,
.services-cta-card,
.services-transform-card {
  display: grid;
  gap: 18px;
  padding: 32px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.services-proof-card:hover,
.services-feature-card:hover,
.services-summary-card:hover,
.services-fit-card:hover,
.services-transform-card:hover,
.services-process-card:hover,
.services-cta-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-lg);
}

.services-proof-card {
  grid-column: span 4;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 248, 252, 0.96));
}

.services-proof-card-wide {
  grid-column: span 5;
}

.services-proof-card-accent {
  grid-column: span 3;
  background: linear-gradient(180deg, rgba(255, 251, 244, 0.99), rgba(252, 247, 236, 0.96));
}

.services-proof-card-accent::before {
  background: linear-gradient(90deg, rgba(232, 163, 58, 0.84), rgba(232, 163, 58, 0));
}

.services-proof-card h2 {
  max-width: 20ch;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 0.98;
}

.services-proof-card h3 {
  max-width: 15ch;
  font-size: 1.5rem;
  line-height: 1.08;
}

.services-proof-card p:last-child {
  line-height: 1.72;
}

.services-offer-shell {
  align-items: stretch;
}

.services-feature-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(238, 245, 251, 0.97));
}

.services-feature-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.services-feature-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #8b5d0f;
}

.services-feature-card h3,
.services-summary-card h3,
.services-fit-card h3,
.services-process-card h3,
.services-cta-card h3,
.services-transform-card h3 {
  font-size: 1.72rem;
  line-height: 1.06;
}

.services-feature-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
  gap: 24px;
  align-items: start;
}

.services-feature-media {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(16, 36, 58, 0.08);
  background: linear-gradient(180deg, #eff4fa, #dde8f1);
  aspect-ratio: 5 / 6;
}

.services-feature-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.services-feature-body {
  display: grid;
  gap: 16px;
}

.services-feature-points,
.services-summary-list,
.services-fit-list,
.services-process-list,
.services-cta-list {
  display: grid;
  gap: 14px;
}

.services-feature-points article,
.services-summary-list article,
.services-fit-list article,
.services-process-list article,
.services-cta-list article {
  display: grid;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(16, 36, 58, 0.08);
}

.services-feature-points article:first-child,
.services-summary-list article:first-child,
.services-fit-list article:first-child,
.services-process-list article:first-child,
.services-cta-list article:first-child {
  padding-top: 0;
  border-top: 0;
}

.services-feature-points strong,
.services-summary-list strong,
.services-fit-list strong,
.services-process-list strong,
.services-cta-list strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.04rem;
  line-height: 1.14;
  color: var(--ink-strong);
}

.services-feature-points span,
.services-summary-list span,
.services-fit-list span,
.services-process-list span,
.services-cta-list span {
  color: var(--muted);
  line-height: 1.68;
}

.services-offer-aside {
  display: grid;
  gap: 22px;
}

.services-summary-card,
.services-fit-card,
.services-cta-card,
.services-process-card {
  align-content: start;
}

.services-summary-card {
  background: linear-gradient(180deg, rgba(236, 244, 251, 0.98), rgba(255, 255, 255, 0.96));
}

.services-fit-card {
  background: linear-gradient(180deg, rgba(244, 250, 249, 0.99), rgba(236, 246, 245, 0.96));
}

@media (max-width: 1400px) {

  body[data-page="services"] .services-hero,
  body[data-page="services"] .services-gallery-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.services-package-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 22px;
  align-items: stretch;
}

.services-package-stack {
  display: grid;
  gap: 22px;
}

.services-package-card {
  min-height: 100%;
}

.services-package-card-featured {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(243, 247, 252, 0.96));
}

.services-package-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-family: "Manrope", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
}

.services-package-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 4px;
}

.services-package-metrics article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(16, 36, 58, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
}

.services-package-metrics strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.02rem;
  line-height: 1.12;
  color: var(--ink-strong);
}

.services-package-metrics span {
  color: var(--muted);
  line-height: 1.62;
}

.services-package-card-accent {
  background: linear-gradient(180deg, rgba(255, 251, 244, 0.99), rgba(252, 247, 236, 0.96));
}

.services-package-card-accent::before {
  background: linear-gradient(90deg, rgba(232, 163, 58, 0.82), rgba(232, 163, 58, 0));
}

.services-package-card-calm {
  background: linear-gradient(180deg, rgba(244, 250, 249, 0.99), rgba(236, 246, 245, 0.96));
}

.services-package-card-calm::before {
  background: linear-gradient(90deg, rgba(17, 133, 128, 0.78), rgba(17, 133, 128, 0));
}

.services-transform-heading {
  margin-bottom: 22px;
}

.services-transform-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px minmax(0, 1fr);
  gap: 22px;
  margin-top: 22px;
  align-items: stretch;
}

.services-transform-card {
  min-height: 100%;
}

.services-transform-bridge {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(233, 242, 251, 0.98), rgba(255, 255, 255, 0.96));
  text-align: center;
}

.services-transform-bridge strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
  line-height: 1.08;
  color: var(--ink-strong);
}

.services-transform-bridge span {
  color: var(--muted);
  line-height: 1.62;
}

.services-transform-before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 248, 252, 0.96));
}

.services-transform-after {
  background: linear-gradient(180deg, rgba(236, 244, 251, 0.99), rgba(248, 251, 255, 0.96));
}

.services-check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-strong);
  line-height: 1.7;
}

.services-check-list li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.services-transform-before .services-check-list li::before {
  background: rgba(12, 98, 173, 0.22);
  box-shadow: inset 0 0 0 3px rgba(12, 98, 173, 0.34);
}

.services-transform-after .services-check-list li::before {
  background: rgba(17, 133, 128, 0.2);
  box-shadow: inset 0 0 0 3px rgba(17, 133, 128, 0.34);
}

.services-delivery-grid {
  margin-top: 22px;
}

.services-delivery-grid> :nth-child(2) {
  background: linear-gradient(180deg, rgba(246, 250, 255, 0.99), rgba(240, 246, 252, 0.96));
}

.services-delivery-grid> :nth-child(3) {
  background: linear-gradient(180deg, rgba(255, 252, 244, 0.99), rgba(252, 247, 236, 0.96));
}

.services-delivery-grid> :nth-child(4) {
  background: linear-gradient(180deg, rgba(244, 250, 249, 0.99), rgba(236, 246, 245, 0.96));
}

.services-process-band {
  align-items: stretch;
}

.services-process-copy {
  display: grid;
  gap: 24px;
  align-content: start;
}

.services-process-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 252, 0.96));
}

.services-cta-shell {
  align-items: stretch;
}

.services-cta-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 246, 252, 0.96));
}

.services-transform-card p,
.services-summary-card p,
.services-fit-card p,
.services-feature-card p,
.services-proof-card p,
.services-process-card p,
.services-cta-card p {
  line-height: 1.72;
}

.services-fit-card .panel-kicker,
.services-summary-card .panel-kicker,
.services-cta-card .panel-kicker {
  margin-bottom: 2px;
}

#services-offer,
#services-features,
#services-seo,
#services-process {
  scroll-margin-top: 126px;
}

.projects-hero {
  align-items: stretch;
}

.project-hero-inline-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.project-inline-stat {
  display: grid;
  gap: 10px;
  min-height: 168px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 246, 251, 0.96));
}

.project-inline-stat strong {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1;
  color: var(--ink-strong);
}

.project-inline-stat span {
  color: var(--muted);
  line-height: 1.68;
}

.projects-hero-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 24px;
  min-height: 100%;
  padding: 34px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 28%),
    linear-gradient(155deg, #102f52 0%, #07111b 54%, #093558 100%);
  box-shadow: var(--shadow-lg);


}

.projects-hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -56px -72px auto;
  width: 240px;
  height: 240px;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(232, 163, 58, 0.26));
  transform: rotate(18deg);
}

.projects-hero-panel::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 28px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.projects-hero-heading,
.projects-hero-grid,
.projects-hero-note {
  position: relative;
  z-index: 1;
}

.projects-hero-heading {
  display: grid;
  gap: 14px;
}

.projects-hero-heading h2 {
  max-width: 14ch;
  color: #ffffff;
  font-size: clamp(2.1rem, 4.4vw, 3.5rem);
  line-height: 0.98;
}

.projects-hero-heading p {
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.72;
}

.projects-hero-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.projects-hero-grid article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.projects-hero-grid strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.02rem;
  line-height: 1.18;
  color: #ffffff;
}

.projects-hero-grid span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.62;
}

.projects-hero-note {
  display: grid;
  gap: 8px;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

.projects-hero-note .panel-note-label {
  color: rgba(255, 255, 255, 0.62);
}

.project-curation {
  display: grid;
  gap: 28px;
  padding-top: clamp(28px, 4vw, 56px);
}

.project-selector-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: clamp(24px, 3vw, 34px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 246, 252, 0.96));
}

.project-selector-band-copy {
  display: grid;
  gap: 12px;
  align-content: start;
}

.project-selector-band-copy h3 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.04;
  color: var(--ink-strong);
}

.project-selector-band-copy .section-text {
  max-width: 32ch;
}

.project-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 0;
}

.project-selector-button {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  min-height: 104px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  text-align: left;
  box-shadow: 0 8px 32px rgba(16, 52, 92, 0.04);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.project-selector-button:hover {
  transform: translateY(-3px) scale(1.02);
  background: #ffffff;
  border-color: var(--brand);
  box-shadow: 0 12px 40px rgba(12, 98, 173, 0.1);
}

.project-selector-button.is-active {
  background: var(--brand);
  color: #ffffff;
  border-color: var(--brand);
  box-shadow: 0 16px 48px rgba(12, 98, 173, 0.25);
}

.project-selector-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.project-selector-meta {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.68;
}

.project-selector-title {
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.18;
  color: inherit;
}

.project-selector-index {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  min-height: 42px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.2);
  color: inherit;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  font-weight: 700;
}

.project-selector-button.is-active .project-selector-meta {
  opacity: 0.78;
}

.project-selector-button.is-active .project-selector-index {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.project-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1.2fr);
  gap: 48px;
  scroll-margin-top: 112px;
  padding: clamp(32px, 5vw, 64px);
  border-radius: 48px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(28px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 48px 100px rgba(16, 52, 92, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  overflow: hidden;
  position: relative;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.project-spotlight::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(circle, rgba(12, 98, 173, 0.12), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.project-spotlight-copy {
  display: grid;
  gap: 24px;
  align-content: center;
  position: relative;
  z-index: 2;
}

.project-spotlight-label {
  color: var(--brand);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
}

.project-spotlight h2 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: var(--ink-strong);
}

.project-spotlight .section-text {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 42ch;
}

.project-spotlight-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.project-spotlight-tags span {
  padding: 8px 16px;
  background: rgba(12, 98, 173, 0.06);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-dark);
}

.project-spotlight-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.project-spotlight-metrics article {
  display: grid;
  gap: 10px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 32px rgba(16, 52, 92, 0.04);
}

.project-spotlight-metrics strong {
  font-size: 1.5rem;
  color: var(--ink-strong);
}

.project-spotlight-media {
  margin: 0;
  border-radius: 32px;
  background: linear-gradient(135deg, #f0f7ff, #e2edfb);
  aspect-ratio: 16 / 11;
  box-shadow: 0 40px 80px rgba(16, 52, 92, 0.2);
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.project-spotlight:hover .project-spotlight-media {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.project-spotlight-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}

#projektgalleri {
  scroll-margin-top: 120px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 30px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(160deg, #10375f 0%, #07111b 48%, #093558 100%);
  color: #ffffff;
  box-shadow: var(--shadow-lg);
}

.hero-panel::before,
.contact-primary::before {
  content: "";
  position: absolute;
  right: -72px;
  bottom: -88px;
  width: 260px;
  height: 260px;
  border-radius: 46px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(232, 163, 58, 0.22));
  transform: rotate(18deg);
}

.hero-panel::after,
.contact-primary::after {
  content: "";
  position: absolute;
  top: -52px;
  right: 32px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.panel-kicker {
  margin: 0;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.68);
}

.panel-kicker-dark {
  color: var(--brand-dark);
}

.hero-status {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.hero-status article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.hero-status strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.14rem;
  line-height: 1.08;
}

.hero-status span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.62;
}

.panel-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.panel-card {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.panel-index,
.service-no,
.timeline-index {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  font-weight: 600;
}

.panel-index {
  background: rgba(255, 255, 255, 0.12);
  color: #ffe4b0;
}

.panel-card h2,
.link-card h3,
.detail-card h3,
.service-card h3,
.case-card h3,
.contact-card h3,
.timeline-item h3 {
  font-size: 1.48rem;
  line-height: 1.08;
}

.panel-card h2 {
  margin-top: 14px;
  color: #ffffff;
}

.panel-card p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.68;
}

.panel-note {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 20px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
}

.panel-note-label {
  margin: 0 0 8px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.62);
}

.proof-strip {
  padding-top: 20px;
}

.proof-grid,
.cards-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
}

.proof-card {
  position: relative;
  overflow: hidden;
  grid-column: span 3;
  display: grid;
  gap: 16px;
  min-height: 240px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 253, 0.96));
  box-shadow: var(--shadow-sm);
}

.proof-card::before,
.surface-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, rgba(12, 98, 173, 0.72), rgba(12, 98, 173, 0));
}

.proof-card:nth-child(2) {
  background: linear-gradient(180deg, rgba(245, 250, 255, 0.98), rgba(240, 247, 252, 0.96));
}

.proof-card:nth-child(2)::before {
  background: linear-gradient(90deg, rgba(17, 133, 128, 0.78), rgba(17, 133, 128, 0));
}

.proof-card:nth-child(3) {
  background: linear-gradient(180deg, rgba(255, 252, 244, 0.98), rgba(252, 247, 236, 0.96));
}

.proof-card:nth-child(3)::before {
  background: linear-gradient(90deg, rgba(232, 163, 58, 0.82), rgba(232, 163, 58, 0));
}

.proof-card:nth-child(4) {
  background: linear-gradient(180deg, rgba(248, 251, 254, 0.98), rgba(241, 246, 251, 0.96));
}

.proof-label,
.card-tag,
.service-tag {
  margin: 0;
  font-size: 0.72rem;
  color: var(--brand-dark);
}

.proof-card h2 {
  max-width: 14ch;
  font-size: 1.72rem;
  line-height: 1.08;
}

.proof-card p:last-child {
  line-height: 1.72;
}

.surface-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.section-side-card,
.link-card,
.detail-card,
.service-card,
.case-card,
.contact-card {
  display: grid;
  gap: 14px;
  padding: 30px;
}

.section-side-card {
  gap: 18px;
  background: linear-gradient(180deg, rgba(236, 244, 251, 0.98), rgba(255, 255, 255, 0.94));
}

.section-side-list {
  display: grid;
  gap: 14px;
}

.section-side-list article {
  display: grid;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(16, 36, 58, 0.08);
}

.section-side-list article:first-child {
  padding-top: 0;
  border-top: 0;
}

.section-side-list strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
  line-height: 1.1;
  color: var(--ink-strong);
}

.section-side-list span {
  line-height: 1.68;
}

.cards-grid-three>* {
  grid-column: span 4;
}

.cards-grid-four>* {
  grid-column: span 3;
}

.link-card,
.detail-card,
.case-card,
.service-card,
.contact-card {
  min-height: 250px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 253, 0.96));
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.link-card:hover,
.link-card:focus-visible,
.detail-card:hover,
.service-card:hover,
.case-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-lg);
}

.link-card p,
.detail-card p,
.service-card p,
.case-card p,
.contact-card p {
  line-height: 1.72;
}

.card-link {
  margin-top: auto;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  color: var(--brand-dark);
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.service-no {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #ffffff;
}

.service-list {
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  padding-top: 14px;
  border-top: 1px solid rgba(16, 36, 58, 0.08);
  color: var(--ink-strong);
  font-weight: 600;
}

.service-list li+li {
  margin-top: 12px;
}

.timeline-shell {
  display: grid;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 246, 252, 0.96));
  box-shadow: var(--shadow-sm);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: start;
  gap: 14px;
  padding: 26px 0;
  border-top: 1px solid rgba(16, 36, 58, 0.08);
}

.timeline-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.timeline-item p {
  margin-top: 10px;
  line-height: 1.7;
}

.timeline-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  justify-self: start;
  min-width: 0;
  min-height: 0;
  padding: 0 14px;
  border: 1px solid rgba(12, 98, 173, 0.14);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(220, 236, 251, 0.96), rgba(245, 249, 253, 0.98));
  color: var(--brand-dark);
  box-shadow: 0 10px 22px rgba(16, 52, 92, 0.06);
  gap: 6px;
}

.timeline-index::before {
  content: "Steg";
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-soft);
}

.case-card {
  grid-column: span 3;
}

.case-card-featured {
  grid-column: span 6;
  background: linear-gradient(180deg, rgba(228, 240, 251, 0.98), rgba(255, 255, 255, 0.96));
}

.case-card-featured::before {
  background: linear-gradient(90deg, rgba(232, 163, 58, 0.86), rgba(232, 163, 58, 0));
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 400px));
  gap: 22px;
  align-items: start;
  justify-content: start;
}

.project-showcase {
  grid-column: auto;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  width: 100%;
  max-width: 400px;
  height: 560px;
  gap: 14px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 249, 252, 0.97));
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.project-showcase:nth-child(2) {
  background: linear-gradient(180deg, rgba(247, 250, 255, 0.99), rgba(240, 246, 251, 0.97));
}

.project-showcase:nth-child(3) {
  background: linear-gradient(180deg, rgba(253, 252, 247, 0.99), rgba(248, 245, 237, 0.97));
}

.project-showcase:nth-child(4) {
  background: linear-gradient(180deg, rgba(244, 250, 250, 0.99), rgba(237, 246, 246, 0.97));
}

.project-showcase-featured {
  grid-column: auto;
}

.project-showcase-compact {
  grid-column: auto;
}

.project-showcase-standard {
  grid-column: auto;
}

.project-showcase.is-selected {
  transform: translateY(-4px);
  border-color: rgba(12, 98, 173, 0.22);
  box-shadow: 0 26px 58px rgba(12, 98, 173, 0.14);
}

.project-media {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(16, 36, 58, 0.08);
  background: linear-gradient(180deg, #eef4f8, #dde8f1);
  aspect-ratio: 16 / 9.4;
}

.project-showcase-featured .project-media {
  aspect-ratio: 16 / 9.4;
}

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

.project-copy {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 12px;
  min-height: 0;
}

.project-header {
  display: grid;
  gap: 8px;
}

.project-card-body {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 0;
  overflow: hidden;
  padding-right: 0;
}

.project-showcase [data-project-description] {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.project-showcase h3 {
  font-size: 1.44rem;
  line-height: 1.08;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.project-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--ink-strong);
  font-size: 0.84rem;
  font-weight: 600;
}

.project-card-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 2px;
}

.project-card-note {
  max-width: 24ch;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.52;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.project-card-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(12, 98, 173, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--brand-dark);
  font-family: "Manrope", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.project-card-trigger:hover,
.project-card-trigger:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(12, 98, 173, 0.24);
  background: #ffffff;
  box-shadow: 0 16px 32px rgba(12, 98, 173, 0.14);
}

.project-showcase:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-lg);
}

body[data-page="projects"] .projects-faq-stage {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: clamp(24px, 3vw, 32px);
  padding: clamp(32px, 4vw, 44px);
  border: 1px solid rgba(9, 27, 46, 0.12);
  border-radius: 40px;
  background:
    radial-gradient(circle at 14% 18%, rgba(12, 98, 173, 0.18), transparent 22%),
    radial-gradient(circle at 84% 82%, rgba(232, 163, 58, 0.1), transparent 24%),
    linear-gradient(145deg, #0b2742 0%, #103451 52%, #0d4265 100%);
  box-shadow: 0 30px 64px rgba(9, 27, 46, 0.24);
  isolation: isolate;
}

body[data-page="projects"] .projects-faq-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 18%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 164px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.96), transparent 92%);
  pointer-events: none;
}

body[data-page="projects"] .projects-faq-stage>* {
  position: relative;
  z-index: 1;
}

body[data-page="projects"] .projects-faq-stage-head {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

body[data-page="projects"] .projects-faq-stage-head .eyebrow {
  color: rgba(255, 216, 154, 0.94);
}

body[data-page="projects"] .projects-faq-stage-head h2 {
  font-size: clamp(2.5rem, 4.8vw, 4.35rem);
  line-height: 0.96;
  color: #ffffff;
}

body[data-page="projects"] .projects-faq-stage-head .section-text {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.68);
}

body[data-page="projects"] .projects-faq-stage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

body[data-page="projects"] .projects-faq-card {
  padding: 24px 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

body[data-page="projects"] .projects-faq-card[open] {
  transform: translateY(-2px);
  border-color: rgba(12, 98, 173, 0.26);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 32px rgba(4, 19, 33, 0.18);
}

body[data-page="projects"] .projects-faq-card summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 18px;
  cursor: pointer;
  list-style: none;
}

body[data-page="projects"] .projects-faq-card summary::-webkit-details-marker {
  display: none;
}

body[data-page="projects"] .projects-faq-card summary>span:last-child {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.2rem, 1.8vw, 1.48rem);
  font-weight: 800;
  line-height: 1.16;
  color: #ffffff;
}

body[data-page="projects"] .projects-faq-card summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 98, 173, 0.14);
  color: rgba(220, 236, 251, 0.96);
  font-family: "IBM Plex Mono", monospace;
  font-size: 1rem;
  font-weight: 600;
}

body[data-page="projects"] .projects-faq-card[open] summary::after {
  content: "-";
}

body[data-page="projects"] .projects-faq-card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 42px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(12, 98, 173, 0.14);
  color: rgba(220, 236, 251, 0.96);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

body[data-page="projects"] .projects-faq-card p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.72;
}

body[data-page="projects"] .projects-faq-stage-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(232, 163, 58, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body[data-page="projects"] .projects-faq-stage-panel-copy {
  display: grid;
  gap: 12px;
  align-content: center;
}

body[data-page="projects"] .projects-faq-stage-panel-copy .card-tag {
  color: rgba(255, 216, 154, 0.94);
}

body[data-page="projects"] .projects-faq-stage-panel-copy h3 {
  max-width: 18ch;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.02;
  color: #ffffff;
}

body[data-page="projects"] .projects-faq-stage-panel-copy p {
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.72;
}

body[data-page="projects"] .projects-faq-stage-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body[data-page="projects"] .projects-faq-stage-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.84);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body[data-page="projects"] .projects-faq-stage-points {
  display: grid;
  gap: 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

body[data-page="projects"] .projects-faq-stage-points article {
  display: grid;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-page="projects"] .projects-faq-stage-points article:first-child {
  padding-top: 0;
  border-top: 0;
}

body[data-page="projects"] .projects-faq-stage-points strong {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.18;
  color: #ffffff;
}

body[data-page="projects"] .projects-faq-stage-points span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.68;
}

body[data-page="projects"] .projects-guidance-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-inline: clamp(18px, 3vw, 42px);
}

.project-principles {
  display: grid;
  gap: 18px;
  padding: 32px;
  background: linear-gradient(180deg, rgba(235, 244, 251, 0.98), rgba(255, 255, 255, 0.96));
}

.project-principle-list {
  display: grid;
  gap: 14px;
}

.project-principle-list article {
  display: grid;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(16, 36, 58, 0.08);
}

.project-principle-list article:first-child {
  padding-top: 0;
  border-top: 0;
}

.project-principle-list strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
  line-height: 1.14;
  color: var(--ink-strong);
}

.project-principle-list span {
  color: var(--muted);
  line-height: 1.68;
}

.projects-cta {
  gap: 20px;
}

.admin-auth-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.74fr);
  gap: clamp(22px, 3vw, 34px);
  align-items: start;
}

.admin-auth-card,
.admin-side-card,
.admin-project-card {
  display: grid;
  gap: 20px;
  padding: 30px;
}

.admin-auth-copy {
  display: grid;
  gap: 10px;
}

.admin-status {
  min-height: 24px;
  color: var(--brand-dark);
  font-size: 0.98rem;
}

.admin-form,
.admin-projects-form {
  display: grid;
  gap: 18px;
}

.admin-form .form-field,
.admin-project-card .form-field {
  gap: 8px;
}

.admin-form .form-field>span,
.admin-project-card .form-field>span {
  font-family: "Manrope", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--ink-strong);
}

.admin-form input,
.admin-form textarea,
.admin-project-card input,
.admin-project-card textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink-strong);
}

.admin-project-card input[type="file"] {
  padding: 12px;
  background: var(--surface-alt);
}

.admin-form textarea,
.admin-project-card textarea {
  min-height: 120px;
  resize: vertical;
}

.admin-side-card {
  background: linear-gradient(180deg, rgba(236, 244, 251, 0.98), rgba(255, 255, 255, 0.94));
}

.admin-projects-grid {
  display: grid;
  gap: 22px;
}

.admin-project-card-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.admin-project-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.admin-project-card-heading,
.admin-project-card-meta,
.admin-project-toolbar {
  display: flex;
}

.admin-project-card-heading {
  flex-direction: column;
  gap: 10px;
}

.admin-project-card-meta {
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.admin-project-order {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(12, 98, 173, 0.08);
  color: var(--brand-dark);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
}

.admin-project-toolbar {
  align-items: center;
  gap: 8px;
}

.admin-project-card-header h3 {
  font-size: 1.52rem;
  line-height: 1.06;
}

.admin-project-preview {
  display: grid;
  gap: 14px;
}

.admin-preview-media {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(16, 36, 58, 0.08);
  background: linear-gradient(180deg, #eef4f8, #dde8f1);
  aspect-ratio: 16 / 10;
}

.admin-preview-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-preview-note,
.admin-field-help {
  color: var(--muted);
  line-height: 1.62;
}

.admin-fields-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.admin-fields-grid .form-field-wide {
  grid-column: 1 / -1;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.admin-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-primary {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 100%;
  padding: 34px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(155deg, #11375f 0%, #174b75 58%, #2b668f 100%);
  box-shadow: var(--shadow-lg);
}

.contact-primary h2 {
  position: relative;
  z-index: 1;
  max-width: 14ch;
  color: #ffffff;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1;
}

.contact-lead {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.82);
}

.contact-hero .page-title {
  max-width: 20ch;
}

.contact-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-hero-actions {
  align-items: center;
}

.contact-hero-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 6px;
}

.contact-fact-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.84);
}

.contact-fact-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brand-dark);
}

.contact-fact-card strong {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.22rem, 1.8vw, 1.52rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--brand-dark);
}

.contact-fact-card p {
  color: var(--muted);
  line-height: 1.66;
}

.contact-chip-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(12, 98, 173, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(16, 52, 92, 0.06);
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink-strong);
}

.contact-hero-panel {
  gap: 24px;
}

.contact-hero-details,
.contact-route-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.contact-hero-details article,
.contact-route-list article {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.contact-route-list article {
  grid-template-columns: auto 1fr;
  align-items: start;
}

.contact-hero-details strong,
.contact-route-list strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.04rem;
  line-height: 1.12;
  color: #ffffff;
}

.contact-hero-details span,
.contact-route-list article div span {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.64;
}

.contact-route-index {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  min-height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
  font-weight: 600;
  color: #ffe4b0;
}

.contact-primary-note {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.contact-primary-note strong {
  font-family: "Manrope", sans-serif;
  color: #ffffff;
}

.contact-primary-note span {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.66;
}

.contact-primary-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.contact-note {
  position: relative;
  z-index: 1;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.66;
}

.contact-sidebar {
  display: grid;
  gap: 20px;
}

.contact-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  display: grid;
  gap: 10px;
}

.contact-list li {
  line-height: 1.68;
}

.contact-link {
  margin-top: auto;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  color: var(--brand-dark);
}

.contact-message-layout {
  align-items: stretch;
}

.contact-entry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.74fr);
  gap: clamp(22px, 3vw, 34px);
  align-items: start;
}

.contact-form-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.contact-form-meta article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(15, 34, 54, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.contact-form-meta strong {
  font-family: "Manrope", sans-serif;
  color: var(--ink-strong);
}

.contact-form-meta span {
  color: var(--muted);
  line-height: 1.64;
}

.contact-sidebar-stack {
  display: grid;
  gap: 22px;
  align-content: start;
}

.contact-side-card {
  display: grid;
  gap: 18px;
  padding: 30px;
  align-content: start;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 246, 252, 0.96));
}

.contact-side-card h3 {
  font-size: 1.58rem;
  line-height: 1.08;
}

.contact-side-card-highlight {
  background:
    radial-gradient(circle at top right, rgba(12, 93, 141, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(239, 246, 252, 0.98), rgba(255, 255, 255, 0.96));
}

.contact-direct-card {
  display: grid;
  gap: 28px;
  padding: clamp(24px, 4vw, 38px);
  background:
    radial-gradient(circle at top right, rgba(12, 98, 173, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(240, 246, 251, 0.98), rgba(255, 255, 255, 0.96));
}

.contact-direct-header {
  display: grid;
  gap: 12px;
  max-width: 72ch;
}

.contact-direct-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.contact-direct-item {
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 100%;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(16, 52, 92, 0.08);
  background: rgba(255, 255, 255, 0.92);
}

.contact-direct-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brand-dark);
}

.contact-direct-link {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--brand-dark);
  word-break: break-word;
}

.contact-direct-link:hover,
.contact-direct-link:focus-visible {
  color: var(--brand);
}

.contact-direct-item p {
  color: var(--muted);
  line-height: 1.66;
}

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

.contact-direct-line {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(15, 34, 54, 0.08);
  background: rgba(255, 255, 255, 0.9);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-direct-line:hover,
.contact-direct-line:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(12, 93, 141, 0.22);
  box-shadow: 0 16px 34px rgba(15, 33, 56, 0.08);
}

.contact-direct-line span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--brand-dark);
}

.contact-direct-line strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.22rem;
  line-height: 1.1;
  color: var(--ink-strong);
}

.contact-message-panel {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.34), transparent 28%),
    linear-gradient(180deg, #d6e7e6 0%, #c9dddd 100%);
}

.contact-panel-header {
  display: grid;
  gap: 14px;
}

.contact-panel-header .section-text {
  max-width: 54ch;
}

.contact-form-support {
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 100%;
  padding: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 246, 252, 0.96));
}

.contact-form-support h3 {
  font-size: 1.58rem;
  line-height: 1.08;
}

.contact-form-support-list {
  display: grid;
  gap: 14px;
}

.contact-form-support-list article {
  display: grid;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(16, 36, 58, 0.08);
}

.contact-form-support-list article:first-child {
  padding-top: 0;
  border-top: 0;
}

.contact-form-support-list strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.04rem;
  line-height: 1.14;
  color: var(--ink-strong);
}

.contact-form-support-list span,
.contact-support-note {
  color: var(--muted);
  line-height: 1.7;
}

.contact-review-stack {
  display: grid;
  gap: 14px;
}

.contact-review-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(15, 34, 54, 0.08);
  background: rgba(255, 255, 255, 0.8);
}

.contact-review-stars {
  font-size: 0;
  line-height: 0;
  color: transparent;
}

.contact-review-stars::before {
  content: "\2605 \2605 \2605 \2605 \2605";
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.contact-review-quote {
  font-family: "Manrope", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.55;
  color: var(--ink-strong);
}

.contact-process-heading {
  margin-bottom: 28px;
}

.contact-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.contact-process-card {
  display: grid;
  gap: 14px;
  padding: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 252, 0.96));
}

.contact-process-card .timeline-index {
  justify-self: start;
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.contact-process-card h3 {
  font-size: 1.48rem;
  line-height: 1.08;
}

.contact-process-card p {
  color: var(--muted);
  line-height: 1.7;
}

.contact-timeline-shell {
  max-width: none;
}

.message-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.72fr);
  gap: clamp(22px, 3vw, 34px);
  align-items: start;
}

.message-panel {
  display: grid;
  gap: 22px;
  padding: 34px;
  border: 1px solid rgba(17, 66, 84, 0.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.3), transparent 28%),
    linear-gradient(180deg, #cfe2e1 0%, #c2dada 100%);
  box-shadow: var(--shadow-sm);
}

.message-panel h2 {
  max-width: 12ch;
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  line-height: 1;
}

.message-form {
  display: grid;
  gap: 18px;
}

.form-field {
  display: grid;
}

.message-form select,
.message-form textarea,
.message-form input {
  width: 100%;
  padding: 18px 20px;
  border: 2px solid rgba(16, 36, 58, 0.6);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink-strong);
  box-shadow: none;
}

.message-form select {
  min-height: 62px;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--ink-strong) 50%),
    linear-gradient(135deg, var(--ink-strong) 50%, transparent 50%);
  background-position:
    calc(100% - 28px) calc(50% - 4px),
    calc(100% - 20px) calc(50% - 4px);
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
}

.message-form textarea {
  min-height: 168px;
  resize: vertical;
}

.message-form select::placeholder,
.message-form textarea::placeholder,
.message-form input::placeholder {
  color: rgba(16, 36, 58, 0.78);
}

.message-submit {
  justify-content: center;
  min-height: 58px;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, #085f62 0%, #0a6b6f 100%);
  color: #ffffff;
  font-size: 1.12rem;
  font-weight: 800;
  box-shadow: none;
}

.message-submit:hover,
.message-submit:focus-visible {
  background: linear-gradient(135deg, #074e51 0%, #085f62 100%);
}

.form-status {
  min-height: 24px;
  color: rgba(16, 36, 58, 0.82);
  font-size: 0.98rem;
}

.privacy-box {
  padding-top: 4px;
}

.privacy-box summary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  list-style: none;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #063f57;
}

.privacy-box summary::-webkit-details-marker {
  display: none;
}

.privacy-box summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(6, 63, 87, 0.1);
  font-family: "IBM Plex Mono", monospace;
}

.privacy-box[open] summary::after {
  content: "-";
}

.privacy-box p {
  margin-top: 14px;
  max-width: 60ch;
  color: rgba(16, 36, 58, 0.8);
  line-height: 1.7;
}

.message-side {
  display: grid;
  gap: 16px;
  min-height: 100%;
  padding: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 247, 249, 0.96));
}

.message-side h3 {
  font-size: 1.58rem;
  line-height: 1.08;
}

.message-side p {
  line-height: 1.72;
}

#vanliga-fragor {
  scroll-margin-top: 120px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.faq-item {
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 253, 0.96));
  box-shadow: var(--shadow-sm);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.faq-item[open] {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-lg);
}

.faq-item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  font-family: "Manrope", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.22;
  color: var(--ink-strong);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  min-height: 34px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-family: "IBM Plex Mono", monospace;
  font-size: 1rem;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.72;
}

.contact-primary .eyebrow,
.contact-primary .eyebrow {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.72);
}

.contact-primary .button-primary,
.contact-primary .button-primary {
  background: #ffffff;
  color: var(--brand-dark);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.contact-primary .button-ghost,
.contact-primary .button-ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: none;
}

.contact-primary .button-ghost:hover,
.contact-primary .button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.site-footer {
  position: relative;
  isolation: isolate;
  width: calc(100% + (var(--page-gutter) * 2));
  margin: 40px calc(var(--page-gutter) * -1) 0;
  padding: clamp(38px, 6vw, 64px) clamp(22px, 4vw, 56px) 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.88);
  background:
    linear-gradient(145deg, #0b2742 0%, #103451 52%, #0d4265 100%);
  border-top: 1px solid rgba(217, 233, 245, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 -18px 42px rgba(15, 33, 56, 0.08);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 18%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 160px);
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 85%);
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: auto auto -120px -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(217, 233, 245, 0.12);
  filter: blur(18px);
  pointer-events: none;
}

.footer-main,
.footer-column,
.footer-stack {
  display: grid;
}

.footer-main {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
}

.footer-column {
  gap: 18px;
  align-content: start;
  padding: clamp(20px, 2.4vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.footer-title {
  color: rgba(228, 239, 247, 0.82);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: -0.02em;
}

.footer-stack {
  gap: 8px;
}

.footer-link,
.footer-detail {
  max-width: 32ch;
  font-size: 1.08rem;
  line-height: 1.72;
  color: rgba(245, 249, 252, 0.9);
}

.footer-link {
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: #ffffff;
}

.footer-meta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 6px;
}

.footer-meta-links a {
  position: relative;
  color: rgba(228, 239, 247, 0.74);
  font-weight: 600;
  transition: color 180ms ease;
}

.footer-meta-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.footer-meta-links a:hover,
.footer-meta-links a:focus-visible {
  color: #ffffff;
}

.footer-meta-links a:hover::after,
.footer-meta-links a:focus-visible::after {
  transform: scaleX(1);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: clamp(30px, 5vw, 52px);
  padding: 22px 0 26px;
  border-top: 1px solid rgba(217, 233, 245, 0.16);
  color: rgba(236, 243, 248, 0.82);
}

.footer-bottom p {
  line-height: 1.6;
}

.footer-bottom-link {
  text-decoration: underline;
  text-underline-offset: 0.16em;
  transition: color 180ms ease;
}

.footer-bottom-link:hover,
.footer-bottom-link:focus-visible {
  color: #ffffff;
}

/* Premium refresh */
:root {
  --bg: #edf3f8;
  --bg-alt: #f8fafc;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-alt: #eef4f8;
  --surface-soft: #e3ecf3;
  --ink: #1d3248;
  --ink-strong: #0f2236;
  --muted: #5d6e80;
  --muted-soft: #7c8ea0;
  --line: rgba(15, 34, 54, 0.1);
  --line-strong: rgba(15, 34, 54, 0.18);
  --brand: #0c5d8d;
  --brand-dark: #0b2742;
  --brand-soft: #d9e9f5;
  --accent: #d39537;
  --accent-soft: #fff4df;
  --shadow-sm: 0 18px 44px rgba(15, 33, 56, 0.08);
  --shadow-lg: 0 32px 84px rgba(15, 33, 56, 0.14);
  --shadow-xl: 0 42px 120px rgba(10, 28, 46, 0.18);
  --radius-xl: 36px;
  --radius-l: 26px;
  --radius-m: 20px;
  --radius-s: 16px;
  --main-width: 1820px;
  --content-width: 1720px;
}

body {
  background:
    radial-gradient(circle at 8% 10%, rgba(12, 93, 141, 0.14), transparent 28%),
    radial-gradient(circle at 90% 8%, rgba(211, 149, 55, 0.14), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(11, 39, 66, 0.06), transparent 34%),
    linear-gradient(180deg, #fbfcfe 0%, #eff3f7 44%, #f7f9fb 100%);
}

body::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), transparent 32%),
    repeating-linear-gradient(90deg, rgba(11, 39, 66, 0.03) 0 1px, transparent 1px 140px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 46%);
}

body::after {
  inset: auto -80px -120px auto;
  width: 520px;
  height: 520px;
  background: rgba(12, 93, 141, 0.08);
  filter: blur(14px);
}

.site-header {
  top: 0;
  gap: 24px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(26px);
  box-shadow: 0 24px 60px rgba(15, 33, 56, 0.08);
}

.header-actions {
  gap: 10px;
}

.header-login {
  padding: 0 18px;
}

.brand-mark {
  border-radius: 18px;
  box-shadow: 0 22px 42px rgba(12, 93, 141, 0.18);
}

.site-nav a {
  min-height: 46px;
  padding: 0 18px;
}

.site-nav a.is-active {
  background: linear-gradient(135deg, rgba(217, 233, 245, 0.98), rgba(255, 255, 255, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(12, 93, 141, 0.1),
    0 12px 24px rgba(15, 33, 56, 0.06);
}

.button {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.96rem;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  box-shadow: 0 18px 38px rgba(12, 93, 141, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 24px 44px rgba(12, 93, 141, 0.22);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 30px rgba(15, 33, 56, 0.06);
}

.menu-toggle {
  min-height: 46px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
}

.page-main {
  gap: 4px;
}

.section-heading {
  gap: 14px;
  max-width: 900px;
  margin-bottom: 36px;
}

.section-heading h2,
.page-title {
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.01;
}

.page-intro,
.hero-text,
.section-text,
.contact-lead {
  font-size: 1.1rem;
  line-height: 1.78;
}

.hero,
.page-hero,
.section-header-split,
.split-band,
.contact-grid {
  gap: clamp(28px, 4vw, 48px);
}

.hero {
  padding-top: 40px;
}

.hero-copy,
.page-hero-copy {
  gap: 26px;
  padding-top: 20px;
}

.hero-copy::before,
.page-hero-copy::before {
  width: 118px;
  height: 10px;
  background: linear-gradient(90deg, var(--accent), var(--brand));
}

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

.hero h1 {
  font-size: clamp(3.4rem, 7.6vw, 6.6rem);
}

.hero h1 .headline-mark,
.page-title .headline-mark {
  padding: 0 0.18em 0.06em;
  border-radius: 0.26em;
  background: linear-gradient(180deg, rgba(217, 233, 245, 1), rgba(217, 233, 245, 0.84));
  box-shadow: inset 0 -0.18em 0 rgba(12, 93, 141, 0.1);
}

.hero-meta article,
.page-stat {
  padding: 24px;
  border-radius: 24px;
  border-color: rgba(15, 34, 54, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 250, 253, 0.86));
}

.hero-meta strong,
.page-stat strong {
  font-size: 1.22rem;
}

.hero-proofline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-proofline article {
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border: 1px solid rgba(15, 34, 54, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
}

.hero-proofline strong,
.trust-metrics strong,
.impact-card strong,
.home-cta-list strong {
  font-family: "Manrope", sans-serif;
  color: var(--ink-strong);
}

.hero-proofline strong {
  font-size: 1rem;
  line-height: 1.12;
}

.hero-proofline span,
.trust-intro p,
.trust-metrics span,
.impact-card p,
.home-cta-note>p:last-child,
.home-cta-list span {
  color: var(--muted);
  line-height: 1.68;
}

.hero-panel,
.projects-hero-panel,
.contact-primary {
  border-radius: 36px;
  box-shadow: var(--shadow-xl);
}

.hero-panel {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 24%),
    linear-gradient(150deg, #0d2942 0%, #08111c 56%, #123f63 100%);
}

.projects-hero-panel {
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(150deg, #0d2942 0%, #08111c 56%, #114567 100%);
  box-shadow: var(--shadow-xl);
}

.contact-primary {
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(145deg, #0d2b45 0%, #113a5d 48%, #1d628d 100%);
}

.hero-status article,
.panel-card,
.panel-note,
.projects-hero-grid article,
.projects-hero-note,
.contact-hero-details article {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
}

.proof-card,
.surface-card,
.timeline-shell,
.faq-item,
.message-side,
.contact-form-support {
  border-radius: 32px;
  border: 1px solid rgba(15, 34, 54, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 252, 0.92));
  box-shadow: var(--shadow-sm);
}

.proof-card::before,
.surface-card::before {
  height: 5px;
  background: linear-gradient(90deg, rgba(12, 93, 141, 0.72), rgba(12, 93, 141, 0));
}

.link-card,
.detail-card,
.case-card,
.service-card,
.contact-card,
.project-showcase {
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.link-card:hover,
.link-card:focus-visible,
.detail-card:hover,
.service-card:hover,
.case-card:hover,
.contact-card:hover,
.project-showcase:hover {
  transform: translateY(-6px);
}

.trust-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  padding: 34px;
  border-radius: 34px;
}

.trust-intro {
  display: grid;
  gap: 16px;
  align-content: start;
}

.trust-intro h2 {
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.02;
  color: var(--ink-strong);
}

.trust-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.trust-metrics article {
  display: grid;
  gap: 8px;
  padding: 24px;
  border: 1px solid rgba(15, 34, 54, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
}

.trust-metrics strong {
  font-size: 1.08rem;
  line-height: 1.16;
}

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

.impact-card {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid rgba(15, 34, 54, 0.08);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 252, 0.94));
  box-shadow: var(--shadow-sm);
}

.impact-card strong {
  font-size: 1.46rem;
  line-height: 1.08;
}

.home-cta-shell {
  align-items: stretch;
}

.home-cta-note {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 32px;
}

.home-cta-list {
  display: grid;
  gap: 14px;
}

.home-cta-list article {
  display: grid;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(15, 34, 54, 0.08);
}

.home-cta-list article:first-child {
  padding-top: 0;
  border-top: 0;
}

.home-cta-list strong {
  font-size: 1.04rem;
  line-height: 1.14;
}

/* Home page redesign */
body[data-page="home"] .page-main {
  width: min(100%, var(--main-width));
}

.home-hero {
  display: grid;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-inline: clamp(18px, 3vw, 42px);
  padding-top: clamp(0px, 5vw, 28px);
}

.home-hero-banner {
  position: relative;
  overflow: hidden;
  min-height: clamp(480px, 58vw, 720px);
  border-radius: 38px;
  background: #0b1620;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.home-hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 15, 24, 0.88) 0%, rgba(8, 18, 29, 0.74) 34%, rgba(8, 18, 29, 0.42) 58%, rgba(8, 18, 29, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.26));
}

.home-hero-banner::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -34%;
  z-index: 1;
  width: min(46vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(151, 209, 217, 0.24) 0%, rgba(151, 209, 217, 0) 72%);
  filter: blur(18px);
  pointer-events: none;
}

.home-hero-media {
  position: absolute;
  inset: 0;
}

.home-hero-poster,
.home-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero-poster {
  display: block;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.24) saturate(0.82) contrast(1.02) brightness(0.84);
}

.home-hero-video {
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 0.72;
  filter: grayscale(0.14) saturate(0.78) contrast(1.04) brightness(0.8);
}

.home-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 24px;
  min-height: inherit;
  width: min(58%, 760px);
  padding: clamp(40px, 6vw, 78px);
}

.home-hero-badge {
  margin: 0;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.home-hero .page-title {
  max-width: 11ch;
  font-size: clamp(3.35rem, 6.8vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  color: #ffffff;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.home-hero .hero-text {
  max-width: 37ch;
  font-size: clamp(1.06rem, 1.5vw, 1.32rem);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.9);
}

.home-hero .hero-actions {
  gap: 12px;
}

.home-hero .button-primary {
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.24);
}

.home-hero .button-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.home-hero .button-ghost:hover,
.home-hero .button-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.18);
}

.home-business-section {
  padding: clamp(40px, 2vw, 100px) 0;
  background: radial-gradient(circle at 100% 0%, rgba(12, 98, 173, 0.05), transparent 40%);
}

.home-business-shell {
  display: grid;
  gap: clamp(36px, 5vw, 64px);
  margin: 0 auto;
}

.home-business-header {
  display: grid;
  gap: 20px;
  max-width: 800px;
}

.home-business-header h2 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.05;
  color: var(--ink-strong);
}

.home-business-intro p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--muted);
}

.home-business-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.home-business-benefit-card {
  display: flex;
  gap: 20px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-dark);
  border-radius: 12px;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
}

.benefit-content h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.benefit-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

.home-business-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: stretch;
}

.home-business-trust-panel,
.home-business-contact-panel {
  padding: 20px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
}

.home-business-trust-panel {
  display: grid;
  gap: 20px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-alt) 100%);
}

.home-business-trust-panel h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.1;
  max-width: 18ch;
}

.home-business-trust-panel p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
}

.home-business-tip {
  padding: 20px;
  background: var(--accent-soft);
  border-radius: var(--radius-m);
  border-left: 4px solid var(--accent);
}

.home-business-contact-panel {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: linear-gradient(145deg, #0b2742 0%, #103451 52%, #0d4265 100%);
  color: #fff;
  border: none;
  box-shadow: 0 30px 64px rgba(9, 27, 46, 0.24);
}

.home-business-contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 18%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 160px);
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 85%);
  inset: 1px;
  border-radius: calc(var(--radius-xl) - 1px);
  border: 1px solid rgba(255, 255, 255, 0.08);

}

.home-business-contact-panel::after {
  content: "";
  position: absolute;
  inset: auto auto -120px -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(217, 233, 245, 0.12);
  filter: blur(18px);
  pointer-events: none;
}

.home-business-contact-panel .card-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: #ffd89a;
}

.home-business-contact-panel h3 {
  color: #fff;
  font-size: clamp(1.9rem, 2.5vw, 2.4rem);
  line-height: 1.05;
  max-width: 12ch;
}

.contact-hero,
.contact-header,
.contact-methods,
.contact-panel-footer,
.contact-signals {
  position: relative;
  z-index: 1;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(150px, 17vw, 220px);
  gap: 20px;
  align-items: start;
}

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

.contact-brand-lockup {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.contact-brand-badge {
  position: relative;
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 20px;
  border-radius: 28px;
}

.contact-brand-badge img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.24));
}

.contact-intro {
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.02rem;
  line-height: 1.68;
}

.contact-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-signal {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.contact-methods {
  display: grid;
  gap: 14px;
}

.contact-method {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 18px 18px 18px 16px;
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 16px 28px rgba(7, 20, 34, 0.12);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.contact-method:hover,
.contact-method:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(232, 163, 58, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 22px 34px rgba(7, 20, 34, 0.16);
}

.method-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
}

.method-icon svg {
  width: 22px;
  height: 22px;
}

.method-body {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.method-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.56);
}

.method-value {
  font-family: "Manrope", sans-serif;
  font-size: 1.46rem;
  font-weight: 800;
  line-height: 1.08;
  color: #ffffff;
  word-break: break-word;
}

.method-helper {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.95rem;
  line-height: 1.55;
}

.method-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-panel-footer {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.contact-panel-cta {
  width: 100%;
  min-height: 58px;
  justify-content: center;
  background: linear-gradient(135deg, #1a7ac9 0%, #0c62ad 50%, #0a4b81 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 38px rgba(4, 27, 52, 0.32);
}

.business-contact-note {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.97rem;
  line-height: 1.62;
}

@media (min-width: 1101px) {
  .home-business-shell {
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    align-items: start;
  }

  .home-business-header {
    grid-column: 1;
    grid-row: 1;
    max-width: none;
  }

  .home-business-footer {
    display: contents;
  }

  .home-business-contact-panel {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: stretch;
  }

  .home-business-trust-panel {
    grid-column: 1;
    grid-row: 2;
    align-self: start;
  }

  .home-business-benefits-grid {
    grid-column: 1 / -1;
    grid-row: 3;
  }
}

.home-image-slot-caption strong {
  max-width: 19ch;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.25rem, 1.8vw, 1.62rem);
  line-height: 1.1;
  color: var(--ink-strong);
}

.home-image-slot-caption span {
  margin: 0;
  max-width: 34ch;
  color: var(--muted);
  line-height: 1.68;
}

.home-contact-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(15, 34, 54, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
}

.home-contact-intro {
  display: grid;
  gap: 8px;
}

.home-contact-card h3 {
  max-width: 14ch;
  font-size: clamp(1.55rem, 2.1vw, 2rem);
  line-height: 1.04;
  color: var(--ink-strong);
}

.home-contact-support {
  margin: 0;
  color: var(--muted);
  line-height: 1.64;
}

.home-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.home-contact-item {
  display: grid;
  gap: 6px;
  align-content: center;
  min-height: 80px;
  padding: 16px 18px;
  border: 1px solid rgba(15, 34, 54, 0.08);
  border-radius: 18px;
  background: rgba(246, 250, 253, 0.94);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.home-contact-item:hover,
.home-contact-item:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(12, 93, 141, 0.24);
  box-shadow: 0 16px 28px rgba(15, 33, 56, 0.08);
}

.home-contact-item span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.home-contact-item strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.14rem;
  line-height: 1.14;
  color: var(--ink-strong);
}

.home-contact-actions {
  display: grid;
  gap: 12px;
  align-content: center;
  justify-items: start;
}

.home-contact-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-contact-meta p {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--brand-soft);
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.home-contact-card .button-primary {
  justify-self: start;
  width: max-content;
}

.home-expertise-shell {
  display: grid;
  gap: 28px;
}

.home-expertise-header {
  display: grid;
  gap: 14px;
  max-width: 1100px;
}

.home-expertise-lead {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(28px, 3.4vw, 44px);
  align-items: start;
}

.home-expertise-lead-main {
  margin: 0;
  max-width: 28ch;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.5rem, 2vw, 1.95rem);
  line-height: 1.28;
  color: var(--ink-strong);
}

.home-expertise-lead p {
  margin: 0;
  max-width: 56ch;
  color: var(--muted);
  line-height: 1.8;
}

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

.home-expertise-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding-top: 24px;
  border-top: 1px solid rgba(15, 34, 54, 0.08);
}

.home-expertise-card:not(:first-child) {
  padding-left: 26px;
  border-left: 1px solid rgba(15, 34, 54, 0.08);
}

.home-expertise-card h3 {
  font-size: 1.9rem;
  line-height: 1.08;
  color: var(--ink-strong);
}

.home-expertise-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.home-showcase-section {
  display: grid;
  gap: clamp(22px, 3vw, 30px);
  padding-top: clamp(18px, 2.6vw, 34px);
}

.home-showcase-header {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.home-showcase-header h2 {
  max-width: 50ch;
  font-size: clamp(2.8rem, 2vw, 4.8rem);
  line-height: 0.98;
}

.home-showcase-header .section-text {
  max-width: 66ch;
}

.home-showcase-strip {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  align-items: end;
}

.home-showcase-card {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(15, 34, 54, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 36px rgba(15, 33, 56, 0.08);
  backdrop-filter: blur(10px);
}

.home-showcase-card-media {
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(243, 248, 253, 0.98), rgba(233, 241, 248, 0.94));
  aspect-ratio: var(--showcase-ratio, 4 / 5);
}

.home-showcase-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.home-showcase-card-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 34, 54, 0.08);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-strong);
}

.home-showcase-card-clinic {
  grid-column: span 2;
  --showcase-ratio: 4 / 7;
  transform: translateY(16px);
}

.home-showcase-card-services {
  grid-column: span 3;
  --showcase-ratio: 5 / 4;
  transform: translateY(-8px);
}

.home-showcase-card-studio {
  grid-column: span 2;
  --showcase-ratio: 4 / 6;
  transform: translateY(22px);
}

.home-showcase-card-start {
  grid-column: span 3;
  --showcase-ratio: 16 / 10;
  transform: translateY(-18px);
}

.home-showcase-card-vollgames {
  grid-column: span 2;
  --showcase-ratio: 4 / 7;
  transform: translateY(10px);
}

.home-showcase-actions {
  display: flex;
  justify-content: center;
}

.home-spotlight-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-inline: clamp(18px, 3vw, 42px);
  padding-top: clamp(18px, 2.6vw, 34px);
}

.home-spotlight-shell {
  display: grid;
}

.home-spotlight-media {
  position: relative;
  margin: 0;
  min-height: clamp(360px, 38vw, 560px);
  overflow: hidden;
  border-radius: 36px;
  background: #dce8f2;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}



.home-spotlight-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-spotlight-copy {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: min(74%, 980px);
  padding: clamp(26px, 4vw, 48px) clamp(24px, 4.4vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 30px;
  background: linear-gradient(145deg, #0b2742 0%, #103451 52%, #0d4265 100%);
  transform: translate(-50%, -50%);
  text-align: center;
}

.home-spotlight-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 18%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 160px);
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 85%);
}

.home-spotlight-copy::after {
  content: "";
  position: absolute;
  inset: auto auto -120px -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(217, 233, 245, 0.12);
  filter: blur(18px);
  pointer-events: none;
}

.home-spotlight-kicker {
  margin-bottom: 16px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.home-spotlight-copy h2 {
  margin: 0 auto;
  max-width: 14ch;
  font-size: clamp(2.4rem, 4.8vw, 4.8rem);
  line-height: 0.98;
  color: #ffffff;
}

.home-spotlight-copy p:last-child {
  margin: 18px auto 0;
  max-width: 48ch;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.home-reasons-section {
  padding-top: clamp(20px, 3vw, 40px);
}

.home-reasons-shell {
  display: grid;
  gap: clamp(34px, 4vw, 48px);
  border: 1px solid rgba(15, 34, 54, 0.08);
  border-radius: 36px;
  background:
    radial-gradient(circle at top center, rgba(12, 98, 173, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(241, 247, 252, 0.95));
  box-shadow: var(--shadow-sm);
}

.home-reasons-header {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.home-reasons-header h2 {
  max-width: 14ch;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.home-reasons-header p:last-child {
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.8;
}

.home-reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 38px;
}

.home-reasons-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(15, 34, 54, 0.1);
}

.home-reasons-card h3 {
  font-size: 1.86rem;
  line-height: 1.08;
  color: var(--ink-strong);
}

.home-reasons-card p {
  color: var(--muted);
  line-height: 1.82;
}

.home-build-shell {
  align-items: start;
}

.home-build-copy {
  display: grid;
  gap: 24px;
}

.home-build-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.home-build-card {
  display: grid;
  gap: 14px;
  min-height: 220px;
  padding: 30px;
}

.home-build-card h3 {
  font-size: 1.44rem;
  line-height: 1.08;
  color: var(--ink-strong);
}

.home-build-card p {
  color: var(--muted);
  line-height: 1.72;
}

.home-build-panel h2 {
  max-width: 11ch;
}

.home-build-stack {
  margin-top: 4px;
}

.project-inline-stat {
  min-height: 184px;
  padding: 26px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 246, 251, 0.96));
}

.project-selector-button {
  min-height: 104px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.88);
}

.project-selector-button.is-active {
  background: linear-gradient(135deg, rgba(12, 98, 173, 0.98), rgba(16, 74, 132, 0.98));
  box-shadow: 0 22px 44px rgba(12, 93, 141, 0.18);
}

.project-spotlight {
  gap: 30px;
  padding: 30px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(12, 93, 141, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(241, 246, 252, 0.98));
}

.project-showcase {
  padding: 24px;
  border-radius: 32px;
}

.project-card-trigger {
  min-height: 46px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.9);
}

.message-panel {
  border: 1px solid rgba(15, 34, 54, 0.08);
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.42), transparent 28%),
    linear-gradient(180deg, #e4edf5 0%, #d7e4ee 100%);
  box-shadow: var(--shadow-sm);
}

.contact-message-panel {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.42), transparent 28%),
    linear-gradient(180deg, #e7eef4 0%, #dbe7f0 100%);
}

.message-form select,
.message-form textarea,
.message-form input {
  border: 1px solid rgba(15, 34, 54, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.message-form select:focus,
.message-form textarea:focus,
.message-form input:focus {
  outline: none;
  border-color: rgba(12, 93, 141, 0.48);
  box-shadow: 0 0 0 5px rgba(12, 93, 141, 0.1);
}

.message-submit {
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
  box-shadow: 0 18px 38px rgba(12, 93, 141, 0.18);
}

.message-submit:hover,
.message-submit:focus-visible {
  background: linear-gradient(135deg, #081f35 0%, #0b517c 100%);
}

.contact-primary .button-primary {
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
}

.no-js .reveal {
  opacity: 1;
  transform: none;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .site-footer {
    margin-top: 52px;
    padding-top: clamp(42px, 6vw, 64px);
  }

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

  .footer-column-about {
    grid-column: 1 / -1;
  }

  .hero,
  .page-hero,
  .section-header-split,
  .split-band,
  .contact-grid,
  .contact-entry-layout,
  .admin-auth-grid,
  .admin-project-card-grid,
  .message-layout,
  .trust-band,
  .home-cta-shell {
    grid-template-columns: 1fr;
  }

  .services-quick-stats,
  .services-stage-grid,
  .services-feature-layout,
  .services-package-metrics,
  .hero-proofline,
  .home-build-grid,
  .trust-metrics,
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .services-package-layout,
  .services-transform-flow,
  .pricing-compare-panel,
  .pricing-compare-grid {
    grid-template-columns: 1fr;
  }

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

  .services-common-list:last-child {
    grid-column: 1 / -1;
  }

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

  .services-proof-card-wide {
    grid-column: 1 / -1;
  }

  .services-proof-card,
  .services-proof-card-accent {
    grid-column: auto;
  }

  .project-showcase,
  .proof-card,
  .cards-grid-three>*,
  .cards-grid-four>*,
  .case-card,
  .case-card-featured {
    grid-column: span 6;
  }

  .project-showcase-featured,
  .project-showcase-compact {
    grid-column: span 6;
  }

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

  .project-spotlight h2 {
    max-width: none;
  }
}

@media (max-width: 860px) {
  :root {
    --header-bleed: 0px;
  }

  .site-header {
    width: 100vw;
    grid-template-columns: 1fr auto;
    justify-content: stretch;
    gap: 14px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    justify-content: flex-start;
    border-radius: 14px;
  }

  .header-actions {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .page-hero,
  .hero,
  .section-header-split,
  .split-band,
  .contact-grid,
  .contact-entry-layout,
  .message-layout,
  .trust-band,
  .home-cta-shell {
    gap: 24px;
  }

  .hero-meta,
  .hero-status {
    grid-template-columns: 1fr;
  }

  .hero-proofline,
  .trust-metrics,
  .impact-grid,
  .project-hero-inline-stats,
  .projects-hero-grid,
  .project-spotlight-metrics,
  body[data-page="projects"] .projects-faq-stage-grid,
  body[data-page="projects"] .projects-faq-stage-panel {
    grid-template-columns: 1fr;
  }

  .project-selector-band {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .project-selector {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .project-selector-button {
    width: 100%;
  }

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

  .project-showcase {
    max-width: none;
    height: auto;
  }

  .project-card-body {
    overflow: hidden;
    padding-right: 0;
  }

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

  .services-quick-stats,
  .services-stage-grid,
  .services-proof-grid {
    grid-template-columns: 1fr;
  }

  .services-common-grid {
    grid-template-columns: 1fr;
  }

  .services-common-list:last-child {
    grid-column: auto;
  }

  .services-proof-card,
  .services-proof-card-wide,
  .services-proof-card-accent {
    grid-column: auto;
  }

  .proof-card,
  .cards-grid-three>*,
  .cards-grid-four>*,
  .project-showcase,
  .project-showcase-featured,
  .project-showcase-compact,
  .case-card,
  .case-card-featured {
    grid-column: 1 / -1;
  }

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

  .admin-fields-grid {
    grid-template-columns: 1fr;
  }

  .project-card-footer {
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  :root {
    --page-gutter: 14px;
  }

  .site-frame {
    padding-bottom: 0;
  }

  .site-header {
    width: 100vw;
    top: 0;
    padding: 20px 20px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    gap: 10px;
  }

  .brand-stack {
    gap: 2px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .brand-subtitle,
  .header-actions {
    display: none;
  }

  .services-hero .page-title {
    max-width: 11ch;
    font-size: clamp(2.85rem, 11vw, 4.35rem);
  }

  .services-hero .page-intro {
    max-width: 34ch;
    font-size: 1rem;
  }

  body[data-page="services"] .page-main>.services-proof-strip.section {
    padding: 24px;
    border-radius: 28px;
  }

  .site-nav {
    top: calc(100% + 10px);
    padding: 16px;
    max-height: calc(100vh - 92px);
    overflow: auto;
  }

  .site-nav a {
    min-height: 42px;
  }

  .section {
    padding: 40px 0;
  }

  .hero {
    padding-top: 18px;
  }

  .hero h1,
  .page-title {
    max-width: none;
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .section-heading h2,
  .contact-primary h2 {
    font-size: clamp(1.95rem, 9vw, 3rem);
  }

  .page-intro,
  .hero-text,
  .section-text,
  .contact-lead {
    font-size: 1rem;
  }

  .headline-lock {
    display: inline;
    white-space: normal;
  }

  .hero h1 .headline-mark,
  .page-title .headline-mark {
    display: inline;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }

  .page-hero,
  .hero,
  .section-header-split,
  .split-band,
  .contact-grid,
  .contact-entry-layout,
  .message-layout {
    gap: 20px;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .hero-panel,
  .projects-hero-panel,
  .proof-card,
  .surface-card,
  .timeline-shell,
  .message-panel,
  .admin-project-card,
  .contact-primary,
  .impact-card,
  .trust-band,
  .home-cta-note,
  .hero-proofline article {
    border-radius: 24px;
  }

  .hero-panel,
  .projects-hero-panel,
  .proof-card,
  .section-side-card,
  .link-card,
  .detail-card,
  .service-card,
  .case-card,
  .contact-card,
  .contact-fact-card,
  .timeline-shell,
  .faq-item,
  .project-showcase,
  .admin-auth-card,
  .admin-side-card,
  .admin-project-card,
  .message-panel,
  .message-side,
  .contact-primary,
  .contact-side-card,
  .contact-process-card,
  .impact-card,
  .trust-band,
  .home-cta-note {
    padding: 24px;
  }

  .hero-proofline article,
  .trust-metrics article {
    padding: 18px;
  }

  .project-inline-stat,
  .project-spotlight {
    padding: 24px;
  }

  .services-feature-card,
  .services-summary-card,
  .services-fit-card,
  .services-process-card,
  .services-cta-card,
  .services-proof-card,
  .services-transform-card,
  .services-transform-bridge,
  .contact-form-support,
  .contact-fact-card,
  .contact-side-card,
  .contact-process-card,
  .contact-review-card {
    padding: 24px;
  }

  .services-feature-card h3,
  .services-summary-card h3,
  .services-fit-card h3,
  .services-process-card h3,
  .services-cta-card h3,
  .services-transform-card h3 {
    font-size: 1.48rem;
  }

  .contact-form-support h3,
  .contact-side-card h3,
  .contact-process-card h3 {
    font-size: 1.4rem;
  }

  .contact-review-quote {
    font-size: 0.98rem;
  }

  .services-chip-row,
  .contact-chip-row {
    gap: 8px;
  }

  .services-chip-row span,
  .contact-chip-row span {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .services-stage-visual {
    min-height: 240px;
  }

  .services-feature-band,
  .services-seo-band {
    padding: 24px;
    border-radius: 28px;
  }

  .services-seo-media {
    border-radius: 24px;
    aspect-ratio: 4 / 3;
  }

  .services-stage-visual,
  .services-feature-media,
  .project-media,
  .project-spotlight-media,
  .admin-preview-media {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .project-showcase-featured .project-media {
    aspect-ratio: 4 / 3;
  }

  .services-stage-float {
    display: none;
  }

  .hero-panel::before,
  .hero-panel::after,
  .projects-hero-panel::before,
  .projects-hero-panel::after,
  .contact-primary::before,
  .contact-primary::after {
    display: none;
  }

  .services-quick-stats article,
  .services-stage-grid article,
  .services-stage-note,
  .services-package-metrics article,
  .contact-hero-details article,
  .contact-route-list article,
  .contact-form-meta article {
    padding: 18px;
  }

  .message-form select,
  .message-form textarea,
  .message-form input {
    padding: 16px;
  }

  .message-form {
    gap: 14px;
  }

  .message-form select {
    min-height: 56px;
  }

  .message-form textarea {
    min-height: 148px;
  }

  .faq-item {
    padding: 22px 20px;
  }

  body[data-page="projects"] .projects-faq-stage {
    padding: 24px;
    border-radius: 30px;
  }

  body[data-page="projects"] .projects-faq-card {
    padding: 20px;
    border-radius: 24px;
  }

  body[data-page="projects"] .projects-faq-stage-panel,
  body[data-page="projects"] .projects-faq-stage-points {
    padding: 20px;
    border-radius: 24px;
  }

  body[data-page="projects"] .projects-faq-stage-panel-copy h3 {
    max-width: none;
  }

  .project-spotlight-copy {
    padding: 0;
  }

  .project-spotlight-metrics article {
    padding: 18px;
  }

  .project-card-trigger {
    width: 100%;
  }

  .panel-card h2,
  .link-card h3,
  .detail-card h3,
  .service-card h3,
  .case-card h3,
  .project-showcase h3,
  .admin-project-card-header h3,
  .contact-card h3,
  .timeline-item h3 {
    font-size: 1.34rem;
  }

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

  .faq-item summary {
    font-size: 1.05rem;
  }

  .message-panel h2 {
    max-width: none;
  }

  .site-footer {
    margin-top: 32px;
    padding: 28px 18px 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-column-about {
    grid-column: auto;
  }

  .footer-link,
  .footer-detail {
    font-size: 1rem;
  }

  .footer-meta-links {
    gap: 10px 14px;
  }

  .footer-bottom {
    justify-content: flex-start;
    padding-bottom: 22px;
  }
}

@media (max-width: 480px) {
  .site-frame {
    padding-bottom: 0;
  }

  .site-header {
    top: 0;
    padding: 12px 14px;
    gap: 12px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .brand-title {
    font-size: 1rem;
  }

  .menu-toggle {
    min-height: 44px;
    padding: 0 14px;
    font-size: 0.92rem;
  }

  .hero h1,
  .page-title {
    font-size: clamp(2.3rem, 11vw, 3.4rem);
  }

  body[data-page="projects"] .projects-faq-stage {
    padding: 20px;
    border-radius: 28px;
  }

  body[data-page="projects"] .projects-faq-stage-head {
    justify-items: start;
    text-align: left;
  }

  body[data-page="projects"] .projects-faq-stage-head h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  body[data-page="projects"] .projects-faq-card {
    padding: 18px;
  }

  body[data-page="projects"] .projects-faq-card summary>span:last-child {
    font-size: 1.12rem;
  }

  body[data-page="projects"] .projects-faq-stage-panel {
    padding: 18px;
    border-radius: 24px;
  }

  body[data-page="projects"] .projects-faq-stage-points {
    padding: 16px;
    border-radius: 22px;
  }

  body[data-page="projects"] .projects-faq-stage-panel-copy h3 {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
  }

  .services-hero .page-title {
    font-size: clamp(2.4rem, 12vw, 3.7rem);
  }

  body[data-page="services"] .page-main>.services-proof-strip.section {
    padding: 20px;
    border-radius: 24px;
  }

  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-title {
    font-size: 1.18rem;
  }

  .footer-meta-links {
    gap: 8px 12px;
  }

  .section-heading h2,
  .contact-primary h2,
  .message-panel h2 {
    font-size: clamp(1.75rem, 8vw, 2.4rem);
  }

  .hero-panel,
  .projects-hero-panel,
  .proof-card,
  .surface-card,
  .timeline-shell,
  .message-panel,
  .contact-primary,
  .contact-form-support,
  .faq-item,
  .project-showcase,
  .impact-card,
  .trust-band,
  .home-cta-note,
  .hero-proofline article {
    border-radius: 20px;
  }

  .hero-panel,
  .projects-hero-panel,
  .proof-card,
  .section-side-card,
  .link-card,
  .detail-card,
  .service-card,
  .case-card,
  .contact-card,
  .contact-fact-card,
  .timeline-shell,
  .faq-item,
  .project-showcase,
  .message-panel,
  .contact-primary,
  .contact-form-support,
  .contact-side-card,
  .contact-process-card,
  .contact-review-card,
  .services-feature-card,
  .services-summary-card,
  .services-fit-card,
  .services-process-card,
  .services-cta-card,
  .services-proof-card,
  .services-transform-card,
  .services-transform-bridge,
  .impact-card,
  .trust-band,
  .home-cta-note {
    padding: 20px;
  }

  .hero-proofline article,
  .trust-metrics article {
    padding: 16px;
  }

  .services-quick-stats article,
  .services-stage-grid article,
  .services-stage-note,
  .services-package-metrics article,
  .contact-hero-details article,
  .contact-route-list article,
  .contact-form-meta article {
    padding: 16px;
  }

  .services-chip-row span,
  .contact-chip-row span {
    font-size: 0.8rem;
  }

  .services-feature-band,
  .services-seo-band {
    padding: 20px;
    border-radius: 24px;
  }

  .services-common-grid {
    gap: 18px;
  }

  .services-common-list li {
    font-size: 0.98rem;
  }

  .services-seo-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .services-seo-media {
    border-radius: 20px;
  }

  .message-submit {
    width: 100%;
  }

  body::after {
    display: none;
  }

  .privacy-box summary {
    font-size: 0.94rem;
  }

  .faq-item summary {
    gap: 12px;
    font-size: 1rem;
  }

}

@media (max-width: 1240px) {
  .home-hero-content {
    width: min(66%, 760px);
  }

  .home-showcase-strip {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .home-showcase-card-clinic,
  .home-showcase-card-studio,
  .home-showcase-card-vollgames {
    grid-column: span 2;
    transform: none;
  }

  .home-showcase-card-services,
  .home-showcase-card-start {
    grid-column: span 4;
    transform: none;
  }

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

@media (max-width: 860px) {
  .home-hero-content {
    width: min(78%, 700px);
  }

  .home-business-benefits-grid,
  .home-expertise-grid {
    grid-template-columns: 1fr;
  }

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

  .home-showcase-card,
  .home-showcase-card-clinic,
  .home-showcase-card-services,
  .home-showcase-card-studio,
  .home-showcase-card-start,
  .home-showcase-card-vollgames {
    grid-column: span 1;
    transform: none;
  }

  .home-business-shell {
    gap: 32px;
  }

  .home-expertise-lead {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-expertise-card:not(:first-child) {
    padding-left: 0;
    padding-top: 22px;
    border-left: 0;
    border-top: 1px solid rgba(15, 34, 54, 0.08);
  }

  .home-spotlight-copy {
    width: min(86%, 760px);
    padding: 24px 28px;
  }

  .home-spotlight-copy h2 {
    font-size: clamp(2.1rem, 6vw, 3.4rem);
  }

  .home-reasons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 24px;
  }
}

@media (max-width: 640px) {
  .home-hero {
    padding-inline: 14px;
    padding-top: 18px;
  }

  .home-hero-banner {
    min-height: 520px;
    border-radius: 30px;
  }

  .home-hero-content {
    width: auto;
    min-height: 520px;
    align-content: end;
    padding: 28px 24px 30px;
  }

  .home-hero .page-title {
    max-width: 9ch;
    font-size: clamp(2.8rem, 12vw, 4.25rem);
  }

  .home-hero .hero-text {
    max-width: 32ch;
    font-size: 1rem;
    line-height: 1.68;
  }

  .home-contact-card,
  .home-business-trust,
  .home-image-slot {
    padding: 24px;
  }

  .home-contact-card h3 {
    font-size: 1.28rem;
  }

  .home-business-copy .section-heading h2 {
    font-size: clamp(2.5rem, 9vw, 3.7rem);
  }

  .home-business-trust-panel,
  .home-business-contact-panel {
    padding: 24px;
  }

  .contact-hero {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-brand-lockup {
    justify-content: flex-start;
  }

  .contact-brand-badge {
    width: min(180px, 48vw);
  }

  .contact-method {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
  }

  .method-action {
    grid-column: 2;
    justify-self: start;
  }

  .contact-panel-cta {
    min-height: 54px;
  }

  .home-image-slot-media {
    min-height: 240px;
  }

  .home-spotlight-media {
    min-height: 400px;
    border-radius: 28px;
  }

  .home-spotlight-copy {
    top: auto;
    right: 20px;
    bottom: 20px;
    left: 20px;
    width: auto;
    padding: 22px;
    border-radius: 24px;
    transform: none;
    text-align: left;
  }

  .home-spotlight-copy h2,
  .home-spotlight-copy p:last-child {
    margin-left: 0;
    margin-right: 0;
  }

  .home-spotlight-copy h2 {
    max-width: 12ch;
    font-size: clamp(2rem, 9vw, 2.9rem);
  }

  .home-spotlight-copy p:last-child {
    max-width: 34ch;
    font-size: 1rem;
    line-height: 1.7;
  }

  .home-showcase-header {
    justify-items: start;
    text-align: left;
  }

  .home-showcase-header h2,
  .home-showcase-header .section-text {
    max-width: none;
  }

  .home-showcase-header h2 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

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

  .home-spotlight-section {
    padding-inline: 14px;
  }

  .home-reasons-shell {
    gap: 28px;
    padding: 24px;
    border-radius: 28px;
  }

  .home-reasons-header {
    justify-items: start;
    text-align: left;
  }

  .home-reasons-header h2,
  .home-reasons-header p:last-child {
    max-width: none;
  }

  .home-reasons-header h2 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .home-reasons-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-reasons-card h3 {
    font-size: 1.52rem;
  }

  .home-contact-item {
    min-height: 0;
  }

  .home-contact-card .button-primary {
    width: 100%;
    justify-self: stretch;
    justify-content: center;
  }

}

@media (max-width: 480px) {
  .home-hero {
    padding-inline: 10px;
  }

  .home-spotlight-section {
    padding-inline: 10px;
  }

  .home-hero-banner {
    min-height: 460px;
    border-radius: 26px;
  }

  .home-hero-content {
    min-height: 460px;
    padding: 22px 20px 24px;
  }

  .home-hero-badge {
    min-height: 32px;
    padding: 0 12px;
    font-size: 0.7rem;
  }

  .home-hero .page-title {
    font-size: clamp(2.45rem, 13vw, 3.7rem);
  }

  .home-hero .hero-text {
    font-size: 0.98rem;
  }

  .home-business-trust-panel,
  .home-business-contact-panel {
    padding: 20px;
  }

  .contact-brand-badge {
    width: min(150px, 52vw);
    padding: 16px;
    border-radius: 24px;
  }

  .contact-intro,
  .method-helper,
  .business-contact-note {
    font-size: 0.94rem;
  }

  .contact-signal {
    min-height: 32px;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .method-icon {
    width: 48px;
    height: 48px;
  }

  .method-value {
    font-size: 1.26rem;
  }

  .home-business-benefit-card {
    flex-direction: column;
    padding: 24px;
  }

  .home-image-slot-media {
    min-height: 200px;
  }

  .home-spotlight-media {
    min-height: 360px;
  }

  .home-spotlight-copy {
    right: 16px;
    bottom: 16px;
    left: 16px;
    padding: 18px;
  }

  .home-spotlight-kicker {
    margin-bottom: 12px;
    font-size: 0.74rem;
    letter-spacing: 0.22em;
  }

  .home-reasons-shell {
    padding: 20px;
    border-radius: 24px;
  }

  .home-showcase-card {
    padding: 8px;
    border-radius: 22px;
  }

  .home-showcase-card-media {
    border-radius: 16px;
  }

  .home-showcase-card-tag {
    top: 14px;
    left: 14px;
    min-height: 28px;
    padding: 0 10px;
    font-size: 0.64rem;
  }

}

.services-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-inline: clamp(18px, 3vw, 42px);
  padding-top: clamp(8px, 4vw, 28px);
}

.services-hero-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(20px, 2vw, 28px);
  min-height: clamp(560px, 58vw, 760px);
  padding: clamp(24px, 3vw, 36px);
  border-radius: 38px;
  background: #0b1620;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.services-hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(104deg, rgba(7, 15, 24, 0.92) 0%, rgba(8, 18, 29, 0.78) 42%, rgba(8, 18, 29, 0.52) 68%, rgba(8, 18, 29, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.26));
}

.services-hero-shell::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -24%;
  z-index: 1;
  width: min(40vw, 460px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(151, 209, 217, 0.22) 0%, rgba(151, 209, 217, 0) 72%);
  filter: blur(20px);
  pointer-events: none;
}

.services-hero-media {
  position: absolute;
  inset: 0;
}

.services-hero-poster,
.services-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.services-hero-poster {
  display: block;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.08) saturate(0.86) contrast(1.02) brightness(0.74);
}

.services-hero-video {
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 0.58;
  filter: grayscale(0.18) saturate(0.84) contrast(1.05) brightness(0.72);
}

.services-hero-copy,
.services-hero-rail {
  position: relative;
  z-index: 2;
}

.services-hero-copy {
  display: grid;
  align-content: center;
  gap: 24px;
  min-height: 100%;
  padding: clamp(12px, 1.6vw, 24px);
}

.services-hero-badge {
  margin: 0;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.services-hero .page-title {
  max-width: 11ch;
  font-size: clamp(3.1rem, 6.2vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  color: #ffffff;
  text-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.services-hero .page-intro {
  max-width: 37ch;
  font-size: clamp(1.06rem, 1.45vw, 1.22rem);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.86);
}

.services-hero .hero-actions {
  gap: 12px;
}

.services-hero .button-primary {
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.24);
}

.services-hero .button-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.services-hero .button-ghost:hover,
.services-hero .button-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.16);
}

.services-hero .services-chip-row span,
.services-hero-signals span {
  min-height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.services-hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.services-hero-signals span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.services-hero-rail {
  display: grid;
  align-content: end;
  gap: 18px;
  padding: clamp(12px, 1.6vw, 24px);
}

.services-hero-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(8, 18, 31, 0.46);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.14);
}

.services-hero-card .card-tag {
  color: rgba(255, 255, 255, 0.66);
}

.services-hero-card h2,
.services-hero-mini-copy h3 {
  color: #ffffff;
}

.services-hero-card h2 {
  max-width: 13ch;
  font-size: clamp(1.85rem, 2.8vw, 2.45rem);
  line-height: 1.02;
}

.services-hero-list {
  display: grid;
  gap: 14px;
}

.services-hero-list article {
  display: grid;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.services-hero-list article:first-child {
  padding-top: 0;
  border-top: 0;
}

.services-hero-list strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.04rem;
  line-height: 1.12;
  color: #ffffff;
}

.services-hero-list span,
.services-hero-mini-copy p:last-child {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.64;
}

.services-hero-card-visual {
  grid-template-columns: minmax(0, 0.94fr) minmax(220px, 1.06fr);
  align-items: stretch;
}

.services-hero-mini-visual {
  margin: 0;
  overflow: hidden;
  min-height: 220px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.services-hero-mini-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.services-hero-mini-copy {
  display: grid;
  align-content: center;
  gap: 10px;
}

.services-showcase-section .home-showcase-header .section-text {
  max-width: 60ch;
}

.services-flow-shell {
  display: grid;
  gap: clamp(24px, 4vw, 34px);
}

.services-flow-header {
  display: grid;
  gap: 14px;
  max-width: 920px;
}

.services-flow-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 24px;
  align-items: stretch;
}

.services-flow-panel {
  display: grid;
  gap: 22px;
  min-height: 100%;
  padding: 32px;
}

.services-flow-panel-stage {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(241, 247, 252, 0.96));
}

.services-flow-story-head {
  display: grid;
  gap: 12px;
}

.services-flow-story-head h3 {
  max-width: 14ch;
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
  line-height: 1.02;
}

.services-flow-story-head p:last-child {
  color: var(--muted);
  line-height: 1.72;
}

.services-flow-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.services-flow-column {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(16, 36, 58, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 253, 0.96));
}

.services-flow-column-highlight {
  background: linear-gradient(180deg, rgba(236, 244, 251, 0.98), rgba(255, 255, 255, 0.96));
}

.services-flow-column .services-check-list {
  margin: 0;
}

.services-flow-note {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid rgba(12, 98, 173, 0.12);
  border-radius: 22px;
  background: rgba(220, 236, 251, 0.74);
}

.services-flow-note strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.02rem;
  line-height: 1.1;
  color: var(--brand-dark);
}

.services-flow-note span {
  color: var(--muted);
  line-height: 1.68;
}

.services-flow-image {
  margin: 0;
  overflow: hidden;
  min-height: 340px;
  border-radius: 26px;
  background: #dce8f2;
}

.services-flow-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.services-flow-stage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.services-flow-stage-grid article {
  display: grid;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(16, 36, 58, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
}

.services-flow-stage-grid strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.02rem;
  line-height: 1.12;
  color: var(--ink-strong);
}

.services-flow-stage-grid span {
  color: var(--muted);
  line-height: 1.62;
}

.services-package-section .home-reasons-shell {
  gap: clamp(30px, 4vw, 42px);
}

.services-process-shell {
  position: relative;
  overflow: hidden;
  align-items: stretch;
  gap: 26px;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(15, 34, 54, 0.08);
  border-radius: 40px;
  background:
    radial-gradient(circle at top left, rgba(12, 98, 173, 0.08), transparent 34%),
    radial-gradient(circle at bottom right, rgba(232, 163, 58, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(241, 247, 252, 0.96));
  box-shadow: var(--shadow-sm);
}

.services-process-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent 18%),
    repeating-linear-gradient(90deg, rgba(16, 52, 92, 0.03) 0 1px, transparent 1px 180px);
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), transparent 86%);
}

.services-process-shell>* {
  position: relative;
  z-index: 1;
}

.services-process-section .services-process-card {
  display: grid;
  gap: 24px;
  padding: clamp(26px, 3vw, 36px);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(242, 247, 252, 0.96));
  box-shadow: 0 22px 44px rgba(15, 33, 56, 0.08);
}

.services-process-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 18px;
}

.services-process-heading {
  display: grid;
  gap: 10px;
}

.services-process-badge {
  display: grid;
  gap: 6px;
  min-width: 168px;
  padding: 18px 20px;
  border: 1px solid rgba(12, 98, 173, 0.12);
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.services-process-badge strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.28rem;
  line-height: 1;
  color: var(--brand-dark);
}

.services-process-badge span {
  color: var(--muted);
  line-height: 1.52;
}

.services-process-intro {
  display: grid;
  gap: 16px;
}

.services-process-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.services-process-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(12, 98, 173, 0.12);
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.services-process-section .services-process-list {
  gap: 12px;
}

.services-process-section .services-process-list article {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(16, 36, 58, 0.08);
  border-top: 1px solid rgba(16, 36, 58, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 253, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.services-process-section .services-process-list article:first-child {
  padding-top: 20px;
  border-top: 1px solid rgba(16, 36, 58, 0.08);
}

.services-process-step-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.services-process-step-body {
  display: grid;
  gap: 6px;
  padding-top: 2px;
}

.services-process-footer {
  display: grid;
  gap: 14px;
  padding-top: 4px;
}

.services-process-note {
  max-width: 60ch;
  color: var(--muted);
  line-height: 1.72;
}

.services-process-shell .home-business-contact-panel {
  min-height: 100%;
  border-radius: 32px;
}

.services-process-contact-panel .contact-brand-badge {
  max-width: 180px;
  padding: 16px;
  border-radius: 24px;
}

.services-process-contact-panel .contact-method {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.services-process-contact-panel .contact-panel-footer {
  margin-top: 6px;
}

@media (max-width: 1200px) {

  .services-hero-shell,
  .services-flow-grid,
  .services-process-shell {
    grid-template-columns: 1fr;
  }

  .services-hero-shell {
    min-height: auto;
  }

  .services-hero-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
  }
}

@media (max-width: 900px) {

  .services-hero-card-visual,
  .services-hero-rail,
  .services-flow-columns,
  .services-flow-stage-grid {
    grid-template-columns: 1fr;
  }

  .services-process-head {
    flex-direction: column;
    align-items: start;
  }

  .services-process-badge {
    min-width: 0;
    max-width: 240px;
  }

  .services-hero-copy,
  .services-hero-rail {
    padding: 0;
  }

  .services-hero-shell {
    padding: 20px;
    border-radius: 30px;
  }
}

@media (max-width: 640px) {
  .services-hero .page-title {
    font-size: clamp(2.8rem, 14vw, 3.7rem);
  }

  .services-hero-card,
  .services-flow-panel,
  .services-process-section .services-process-card {
    padding: 22px;
    border-radius: 24px;
  }

  .services-process-shell {
    padding: 16px;
    border-radius: 28px;
  }

  .services-process-section .services-process-list article {
    padding: 18px;
    grid-template-columns: 1fr;
  }

  .services-process-step-number {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .services-hero .services-chip-row span,
  .services-hero-signals span {
    width: 100%;
    justify-content: flex-start;
  }

  .services-flow-image,
  .services-hero-mini-visual {
    min-height: 220px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .js-ready .reveal {
    opacity: 1;
    transform: none;
  }

  .home-hero-video,
  .services-hero-video {
    display: none;
  }
}

/* --- Login & Auth --- */
.login-container {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 5vw, 64px) 0;
}

.login-card {
  width: 100%;
  max-width: 480px;
  padding: clamp(32px, 6vw, 64px);
  border-radius: var(--radius-xl);
  background: var(--surface);
  backdrop-filter: blur(24px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.login-header {
  text-align: center;
  margin-bottom: 2.5rem;
  display: grid;
  justify-items: center;
  gap: 16px;
}

.login-logo {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(12, 98, 173, 0.22);
}

.login-logo img {
  display: block;
  width: 100%;
  height: 100%;
}

.admin-form {
  display: grid;
  gap: 20px;
}

.admin-project-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.admin-icon-button,
.admin-delete-project {
  color: var(--muted) !important;
  padding: 8px !important;
  min-height: auto !important;
  border-radius: 10px !important;
  border-color: transparent !important;
}

.admin-icon-button:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.admin-icon-button:hover:not(:disabled) {
  background: rgba(12, 98, 173, 0.08) !important;
  color: var(--brand-dark) !important;
  border-color: rgba(12, 98, 173, 0.18) !important;
}

.admin-delete-project:hover {
  background: #fee2e2 !important;
  color: #dc2626 !important;
  border-color: #fecaca !important;
}

.admin-card-removing {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  transition: all 300ms ease;
}

/* --- Admin Inbox Styles --- */
.admin-inbox-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr);
  margin-top: 16px;
}

.admin-inbox-card {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 16px;
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.admin-inbox-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 16px 40px rgba(16, 52, 92, 0.1);
}

.admin-inbox-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.admin-inbox-meta {
  display: grid;
  gap: 4px;
}

.admin-inbox-subject {
  font-family: "Manrope", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink-strong);
}

.admin-inbox-sender {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.85rem;
  color: var(--muted);
}

.admin-inbox-date {
  font-size: 0.85rem;
  color: var(--muted-soft);
}

.admin-inbox-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.admin-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.admin-badge-new {
  background: var(--brand-soft);
  color: var(--brand-dark);
  border: 1px solid rgba(12, 98, 173, 0.16);
}

.admin-badge-replied {
  background: rgba(232, 163, 58, 0.15);
  color: #a8711c;
  border: 1px solid rgba(232, 163, 58, 0.3);
}

.admin-inbox-body {
  padding: 16px;
  background: var(--surface-alt);
  border-radius: 12px;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.6;
  white-space: pre-wrap;
}

.admin-reply-section {
  display: none;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.admin-inbox-card.is-replying .admin-reply-section {
  display: block;
}

.admin-reply-form {
  display: grid;
  gap: 12px;
}

.admin-reply-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 8px;
}

body[data-page="pricing"] .pricing-hero {
  display: grid;
  gap: clamp(16px, 2vw, 22px);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-inline: clamp(18px, 3vw, 42px);
  padding-top: clamp(10px, 4vw, 28px);
}

body[data-page="pricing"] .pricing-guidance-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-inline: clamp(18px, 3vw, 42px);
}

body[data-page="pricing"] .pricing-marquee-section {
  padding-inline: 0;
  padding-top: 0;
}

body[data-page="pricing"] .pricing-marquee-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  padding: clamp(16px, 2vw, 20px);
  border: 1px solid rgba(15, 34, 54, 0.07);
  border-radius: 32px;
  background:
    radial-gradient(circle at 12% 18%, rgba(12, 98, 173, 0.06), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(232, 163, 58, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 249, 253, 0.96));
  box-shadow: 0 18px 38px rgba(16, 52, 92, 0.06);
}

body[data-page="pricing"] .pricing-marquee-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent 28%),
    repeating-linear-gradient(90deg, rgba(16, 52, 92, 0.03) 0 1px, transparent 1px 184px);
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.96), transparent 96%);
}

body[data-page="pricing"] .pricing-marquee-row {
  position: relative;
  z-index: 1;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

body[data-page="pricing"] .pricing-marquee-flow {
  display: flex;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

body[data-page="pricing"] .pricing-marquee-list {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(28px, 3vw, 54px);
  padding-right: clamp(28px, 3vw, 54px);
}

body[data-page="pricing"] .pricing-marquee-list span {
  flex: 0 0 auto;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.5rem, 2.4vw, 2.15rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  white-space: nowrap;
  color: rgba(16, 36, 58, 0.94);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.34);
}

body[data-page="pricing"] .pricing-marquee-row:first-child .pricing-marquee-list span:nth-child(4n + 1) {
  color: var(--brand);
}

body[data-page="pricing"] .pricing-marquee-row:first-child .pricing-marquee-list span:nth-child(4n + 2) {
  color: var(--ink-strong);
}

body[data-page="pricing"] .pricing-marquee-row:first-child .pricing-marquee-list span:nth-child(4n + 3) {
  color: #b17818;
}

body[data-page="pricing"] .pricing-marquee-row:first-child .pricing-marquee-list span:nth-child(4n + 4) {
  color: var(--brand-dark);
}

body[data-page="pricing"] .pricing-marquee-row-reverse .pricing-marquee-list span:nth-child(4n + 1) {
  color: var(--ink-strong);
}

body[data-page="pricing"] .pricing-marquee-row-reverse .pricing-marquee-list span:nth-child(4n + 2) {
  color: var(--brand-dark);
}

body[data-page="pricing"] .pricing-marquee-row-reverse .pricing-marquee-list span:nth-child(4n + 3) {
  color: #aa7216;
}

body[data-page="pricing"] .pricing-marquee-row-reverse .pricing-marquee-list span:nth-child(4n + 4) {
  color: var(--ink);
}

body[data-page="pricing"] .pricing-editorial-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: clamp(20px, 2vw, 28px);
  min-height: clamp(560px, 58vw, 760px);
  padding: clamp(24px, 3vw, 36px);
  border-radius: 38px;
  background: #0b1620;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

body[data-page="pricing"] .pricing-editorial-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(102deg, rgba(7, 15, 24, 0.9) 0%, rgba(8, 18, 29, 0.8) 38%, rgba(8, 18, 29, 0.54) 66%, rgba(8, 18, 29, 0.18) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.28));
}

body[data-page="pricing"] .pricing-editorial-shell::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -28%;
  z-index: 1;
  width: min(42vw, 500px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(151, 209, 217, 0.22) 0%, rgba(151, 209, 217, 0) 72%);
  filter: blur(20px);
  pointer-events: none;
}

body[data-page="pricing"] .pricing-editorial-media,
body[data-page="pricing"] .pricing-editorial-copy,
body[data-page="pricing"] .pricing-editorial-rail {
  position: relative;
  z-index: 2;
}

body[data-page="pricing"] .pricing-editorial-media {
  position: absolute;
  inset: 0;
}

body[data-page="pricing"] .pricing-editorial-figure {
  position: relative;
  margin: 0;
  width: 100%;
  height: 100%;
}

body[data-page="pricing"] .pricing-editorial-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 16, 29, 0.08), transparent 34%),
    linear-gradient(0deg, rgba(8, 16, 29, 0.2), rgba(8, 16, 29, 0.02) 46%);
}

body[data-page="pricing"] .pricing-editorial-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.18) saturate(0.84) contrast(1.04) brightness(0.76);
}

body[data-page="pricing"] .pricing-editorial-copy {
  display: grid;
  align-content: center;
  gap: 24px;
  min-height: 100%;
  padding: clamp(12px, 1.6vw, 24px);
}

body[data-page="pricing"] .pricing-hero .page-title {
  max-width: 10.2ch;
  font-size: clamp(3.1rem, 6.2vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
  color: #ffffff;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

body[data-page="pricing"] .pricing-hero .page-intro {
  max-width: 39ch;
  font-size: clamp(1.06rem, 1.45vw, 1.22rem);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.86);
}

body[data-page="pricing"] .pricing-editorial-badge {
  margin: 0;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

body[data-page="pricing"] .pricing-hero .hero-actions {
  gap: 12px;
}

body[data-page="pricing"] .pricing-hero .button-primary {
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.24);
}

body[data-page="pricing"] .pricing-hero .button-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  box-shadow: none;
  backdrop-filter: blur(12px);
}

body[data-page="pricing"] .pricing-hero .button-ghost:hover,
body[data-page="pricing"] .pricing-hero .button-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.16);
}

body[data-page="pricing"] .pricing-editorial-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body[data-page="pricing"] .pricing-editorial-signals span,
body[data-page="pricing"] .pricing-addon-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  backdrop-filter: blur(10px);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

body[data-page="pricing"] .pricing-editorial-rail {
  display: grid;
  align-content: end;
  gap: 18px;
  padding: clamp(12px, 1.6vw, 24px);
}

body[data-page="pricing"] .pricing-editorial-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(8, 18, 31, 0.46);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.14);
}

body[data-page="pricing"] .pricing-editorial-card .card-tag,
body[data-page="pricing"] .pricing-lane-custom .card-tag {
  color: rgba(255, 255, 255, 0.68);
}

body[data-page="pricing"] .pricing-editorial-card h2,
body[data-page="pricing"] .pricing-editorial-mini-copy h3 {
  color: #ffffff;
}

body[data-page="pricing"] .pricing-editorial-card h2 {
  max-width: 14ch;
  font-size: clamp(1.85rem, 2.7vw, 2.35rem);
  line-height: 1.02;
}

body[data-page="pricing"] .pricing-editorial-meter {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

body[data-page="pricing"] .pricing-meter-item {
  display: grid;
  gap: 8px;
  min-height: 100%;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body[data-page="pricing"] .pricing-meter-item-featured {
  border-color: rgba(12, 98, 173, 0.32);
  background: linear-gradient(180deg, rgba(12, 98, 173, 0.22), rgba(255, 255, 255, 0.08));
}

body[data-page="pricing"] .pricing-meter-label,
body[data-page="pricing"] .pricing-lane-footer span {
  display: inline-flex;
  align-items: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 216, 154, 0.94);
}

body[data-page="pricing"] .pricing-meter-item strong,
body[data-page="pricing"] .pricing-factor-card h3,
body[data-page="pricing"] .pricing-clarity-list strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.18rem;
  line-height: 1.18;
  color: #ffffff;
}

body[data-page="pricing"] .pricing-meter-item p,
body[data-page="pricing"] .pricing-clarity-list span {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.68;
}

body[data-page="pricing"] .pricing-editorial-card-visual {
  grid-template-columns: minmax(0, 0.88fr) minmax(220px, 1.12fr);
  align-items: stretch;
}

body[data-page="pricing"] .pricing-editorial-mini-visual {
  margin: 0;
  overflow: hidden;
  min-height: 220px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

body[data-page="pricing"] .pricing-editorial-mini-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-page="pricing"] .pricing-editorial-mini-copy {
  display: grid;
  align-content: center;
  gap: 10px;
}

body[data-page="pricing"] .pricing-editorial-mini-copy .panel-kicker {
  color: rgba(255, 216, 154, 0.94);
}

body[data-page="pricing"] .pricing-editorial-mini-copy p:last-child {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.64;
}

body[data-page="pricing"] .pricing-lanes-shell {
  position: relative;
  display: grid;
  gap: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(15, 34, 54, 0.08);
  border-radius: 38px;
  background:
    radial-gradient(circle at top left, rgba(123, 178, 219, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(241, 247, 252, 0.96));
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  isolation: isolate;
}

body[data-page="pricing"] .pricing-lanes-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 22%),
    repeating-linear-gradient(90deg, rgba(16, 36, 58, 0.03) 0 1px, transparent 1px 168px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), transparent 88%);
  pointer-events: none;
}

body[data-page="pricing"] .pricing-lanes-shell::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -110px;
  width: 300px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(12, 98, 173, 0.14) 0%, rgba(12, 98, 173, 0) 72%);
  filter: blur(10px);
  pointer-events: none;
}

body[data-page="pricing"] .pricing-matrix-header,
body[data-page="pricing"] .pricing-guidance-story-head {
  display: grid;
  gap: 14px;
  max-width: 920px;
}


body[data-page="pricing"] .pricing-lanes-header {
  position: relative;
  z-index: 1;
  display: grid;
  padding: clamp(22px, 3vw, 38px);
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: end;
  gap: 24px;
  max-width: none;
}

body[data-page="pricing"] .pricing-lanes-copy {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

body[data-page="pricing"] .pricing-lanes-header h2 {
  max-width: 50ch;
  font-size: clamp(1.5rem, 3vw, 3.35rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

body[data-page="pricing"] .pricing-lanes-copy .section-text {
  max-width: 48ch;
}

body[data-page="pricing"] .pricing-lanes-intro {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: clamp(22px, 2.6vw, 28px);
  border: 1px solid rgba(12, 98, 173, 0.12);
  border-radius: 28px;
  background: rgba(244, 248, 252, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

body[data-page="pricing"] .pricing-lanes-intro h3 {
  font-size: clamp(1.3rem, 2.1vw, 1.7rem);
  line-height: 1.16;
  color: var(--ink-strong);
}

body[data-page="pricing"] .pricing-lanes-intro-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body[data-page="pricing"] .pricing-lanes-intro-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(15, 34, 54, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

body[data-page="pricing"] .pricing-lanes-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  padding-top: 8px;
}

body[data-page="pricing"] .pricing-lane,
body[data-page="pricing"] .pricing-mini-panel,
body[data-page="pricing"] .pricing-clarity-card {
  display: grid;
  gap: 20px;
  padding: clamp(26px, 3vw, 34px);
  border-radius: 32px;
}

body[data-page="pricing"] .pricing-lane {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 100%;
  gap: 22px;
  overflow: hidden;
}

body[data-page="pricing"] .pricing-lane::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  pointer-events: none;
}

body[data-page="pricing"] .pricing-lane-start {
  border: 1px solid rgba(15, 34, 54, 0.06);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 249, 253, 0.96));
  box-shadow: 0 24px 46px rgba(15, 34, 54, 0.06);
}

body[data-page="pricing"] .pricing-lane-start::before {
  background: linear-gradient(90deg, rgba(232, 163, 58, 0.96), rgba(232, 163, 58, 0.16) 34%, transparent 70%);
}

body[data-page="pricing"] .pricing-lane-core {
  background:
    radial-gradient(circle at top right, rgba(12, 98, 173, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(246, 250, 255, 0.99), rgba(236, 244, 251, 0.96));
  border: 1px solid rgba(12, 98, 173, 0.16);
  box-shadow: 0 28px 58px rgba(12, 98, 173, 0.12);
}

body[data-page="pricing"] .pricing-lane-core::before {
  background: linear-gradient(90deg, rgba(12, 98, 173, 0.98), rgba(12, 98, 173, 0.18) 36%, transparent 72%);
}

body[data-page="pricing"] .pricing-lane-custom {
  border: 1px solid rgba(9, 27, 46, 0.12);
  background: linear-gradient(160deg, #10243a 0%, #19395a 58%, #0d517b 100%);
  box-shadow: 0 28px 56px rgba(9, 27, 46, 0.2);
}

body[data-page="pricing"] .pricing-lane-custom::before {
  background: linear-gradient(90deg, rgba(151, 209, 217, 0.8), rgba(151, 209, 217, 0.16) 34%, transparent 70%);
}

body[data-page="pricing"] .pricing-lane-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

body[data-page="pricing"] .pricing-lane-chip,
body[data-page="pricing"] .pricing-lane-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(12, 98, 173, 0.14);
  border: 1px solid rgba(12, 98, 173, 0.18);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

body[data-page="pricing"] .pricing-lane-chip {
  background: rgba(15, 34, 54, 0.05);
  border-color: rgba(15, 34, 54, 0.08);
}

body[data-page="pricing"] .pricing-lane-price-block {
  display: grid;
  gap: 10px;
}

body[data-page="pricing"] .pricing-lane-price {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.2rem, 3.7vw, 3.3rem);
  font-weight: 800;
  line-height: 0.92;
  color: var(--ink-strong);
}

body[data-page="pricing"] .pricing-lane-caption,
body[data-page="pricing"] .pricing-lane-lead,
body[data-page="pricing"] .pricing-mini-note {
  color: var(--muted);
  line-height: 1.72;
}

body[data-page="pricing"] .pricing-lane-lead {
  font-family: "Manrope", sans-serif;
  font-size: 1.12rem;
  line-height: 1.5;
  color: var(--ink-strong);
}

body[data-page="pricing"] .pricing-lane-note {
  display: grid;
  gap: 8px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(15, 34, 54, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

body[data-page="pricing"] .pricing-lane-note strong {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.24;
  color: var(--ink-strong);
}

body[data-page="pricing"] .pricing-lane-note p {
  color: var(--muted);
  line-height: 1.68;
}

body[data-page="pricing"] .pricing-lane-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

body[data-page="pricing"] .pricing-lane-stats article {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(15, 34, 54, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

body[data-page="pricing"] .pricing-lane-stats strong {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.08;
  color: var(--ink-strong);
}

body[data-page="pricing"] .pricing-lane-stats span {
  color: var(--muted);
  line-height: 1.5;
}

body[data-page="pricing"] .pricing-lane-list,
body[data-page="pricing"] .pricing-mini-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body[data-page="pricing"] .pricing-lane-list li,
body[data-page="pricing"] .pricing-mini-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

body[data-page="pricing"] .pricing-lane-list li::before,
body[data-page="pricing"] .pricing-mini-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

body[data-page="pricing"] .pricing-lane-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

body[data-page="pricing"] .pricing-lane-footer span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(15, 34, 54, 0.08);
  border-radius: 999px;
  background: rgba(15, 34, 54, 0.05);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

body[data-page="pricing"] .pricing-lane-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(5, 15, 24, 0.16));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 18px;
  aspect-ratio: 16 / 10;
}

body[data-page="pricing"] .pricing-lane-visual-soft {
  border-color: rgba(15, 34, 54, 0.08);
  background: linear-gradient(180deg, rgba(238, 245, 251, 0.98), rgba(255, 255, 255, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 16px 30px rgba(15, 34, 54, 0.06);
}

body[data-page="pricing"] .pricing-lane-visual-core {
  border-color: rgba(12, 98, 173, 0.12);
  background: linear-gradient(180deg, rgba(231, 241, 250, 0.98), rgba(255, 255, 255, 0.95));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 18px 34px rgba(12, 98, 173, 0.08);
  aspect-ratio: 16 / 8.6;
}

body[data-page="pricing"] .pricing-lane-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body[data-page="pricing"] .pricing-lane-custom .pricing-lane-price,
body[data-page="pricing"] .pricing-lane-custom .pricing-lane-lead,
body[data-page="pricing"] .pricing-lane-custom .pricing-lane-footer span,
body[data-page="pricing"] .pricing-lane-custom .pricing-lane-note strong {
  color: #ffffff;
}

body[data-page="pricing"] .pricing-lane-custom .pricing-lane-caption,
body[data-page="pricing"] .pricing-lane-custom .pricing-lane-list li,
body[data-page="pricing"] .pricing-lane-custom .pricing-lane-note p {
  color: rgba(255, 255, 255, 0.78);
}

body[data-page="pricing"] .pricing-lane-custom .pricing-lane-list li::before {
  background: #e8a33a;
}

body[data-page="pricing"] .pricing-lane-chip-dark,
body[data-page="pricing"] .pricing-lane-custom .pricing-lane-note-dark,
body[data-page="pricing"] .pricing-lane-custom .pricing-lane-footer span {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

body[data-page="pricing"] .pricing-lane-chip-dark {
  color: rgba(255, 255, 255, 0.88);
}

body[data-page="pricing"] .pricing-lane-custom .button-ghost {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

body[data-page="pricing"] .pricing-mini-panel {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(260px, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 24px;
  margin-top: 0;
  border: 1px solid rgba(15, 34, 54, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(242, 247, 252, 0.96));
}

body[data-page="pricing"] .pricing-mini-head {
  display: grid;
  gap: 12px;
  max-width: 34ch;
}

body[data-page="pricing"] .pricing-mini-head h3 {
  font-size: clamp(1.7rem, 3.1vw, 2.4rem);
  line-height: 1.04;
  color: var(--ink-strong);
}

body[data-page="pricing"] .pricing-mini-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

body[data-page="pricing"] .pricing-mini-list-grid li {
  padding: 16px 18px 16px 34px;
  border: 1px solid rgba(15, 34, 54, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink-strong);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  line-height: 1.48;
}

body[data-page="pricing"] .pricing-mini-list-grid li::before {
  top: 22px;
  left: 16px;
}

body[data-page="pricing"] .pricing-matrix-shell,
body[data-page="pricing"] .pricing-guidance-story {
  display: grid;
  gap: 26px;
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid rgba(15, 34, 54, 0.08);
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(12, 98, 173, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(241, 247, 252, 0.96));
  box-shadow: var(--shadow-sm);
}

body[data-page="pricing"] .pricing-matrix-board {
  display: grid;
  gap: 12px;
}

body[data-page="pricing"] .pricing-matrix-head,
body[data-page="pricing"] .pricing-matrix-row {
  display: grid;
  grid-template-columns: minmax(180px, 1.05fr) repeat(3, minmax(0, 1fr));
  gap: 12px;
}

body[data-page="pricing"] .pricing-matrix-heading,
body[data-page="pricing"] .pricing-matrix-label,
body[data-page="pricing"] .pricing-matrix-cell {
  padding: 18px 20px;
  border: 1px solid rgba(15, 34, 54, 0.08);
  border-radius: 22px;
}

body[data-page="pricing"] .pricing-matrix-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.84);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

body[data-page="pricing"] .pricing-matrix-heading-featured {
  background: linear-gradient(145deg, #10243a 0%, #173855 100%);
  color: #ffffff;
  border-color: rgba(16, 36, 58, 0.08);
}

body[data-page="pricing"] .pricing-matrix-label {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.84);
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink-strong);
}

body[data-page="pricing"] .pricing-matrix-cell {
  display: grid;
  gap: 8px;
  background: rgba(255, 255, 255, 0.72);
}

body[data-page="pricing"] .pricing-matrix-cell.is-featured {
  background: linear-gradient(180deg, rgba(245, 250, 255, 0.99), rgba(235, 244, 251, 0.96));
  border-color: rgba(12, 98, 173, 0.16);
}

body[data-page="pricing"] .pricing-matrix-cell strong {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.18;
  color: var(--ink-strong);
}

body[data-page="pricing"] .pricing-matrix-cell span {
  color: var(--muted);
  line-height: 1.66;
}

body[data-page="pricing"] .pricing-matrix-cell::before {
  display: none;
}

body[data-page="pricing"] .pricing-guidance-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: clamp(24px, 3vw, 30px);
  padding: clamp(28px, 3.5vw, 40px);
  border: 1px solid rgba(15, 34, 54, 0.08);
  border-radius: 40px;
  background:
    radial-gradient(circle at top left, rgba(123, 178, 219, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(241, 247, 252, 0.96));
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}

body[data-page="pricing"] .pricing-guidance-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 24%),
    repeating-linear-gradient(90deg, rgba(16, 36, 58, 0.03) 0 1px, transparent 1px 168px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), transparent 90%);
  pointer-events: none;
}

body[data-page="pricing"] .pricing-guidance-shell-head,
body[data-page="pricing"] .pricing-guidance-layout {
  position: relative;
  z-index: 1;
}

body[data-page="pricing"] .pricing-guidance-shell-head {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 24px;
  align-items: end;
}

body[data-page="pricing"] .pricing-guidance-shell-copy {
  display: grid;
  gap: 14px;
  max-width: 760px;
}

body[data-page="pricing"] .pricing-guidance-shell-copy h2 {
  max-width: 14ch;
  font-size: clamp(2.4rem, 4.6vw, 3.9rem);
  line-height: 0.98;
}

body[data-page="pricing"] .pricing-guidance-shell-note {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 22px;
  border: 1px solid rgba(12, 98, 173, 0.12);
  border-radius: 28px;
  background: rgba(245, 250, 255, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

body[data-page="pricing"] .pricing-guidance-shell-note strong {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.18rem, 1.8vw, 1.4rem);
  line-height: 1.16;
  color: var(--ink-strong);
}

body[data-page="pricing"] .pricing-guidance-shell-note p:last-child {
  color: var(--muted);
  line-height: 1.7;
}

body[data-page="pricing"] .pricing-guidance-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
  gap: 24px;
  align-items: stretch;
}

body[data-page="pricing"] .pricing-guidance-overview {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 22px;
  padding: clamp(24px, 2.8vw, 30px);
  border: 1px solid rgba(15, 34, 54, 0.08);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 252, 0.95));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

body[data-page="pricing"] .pricing-guidance-overview-body {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
  gap: 22px;
  align-items: stretch;
}

body[data-page="pricing"] .pricing-guidance-overview-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(15, 34, 54, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at bottom left, rgba(246, 209, 121, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(244, 249, 253, 0.98), rgba(255, 255, 255, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

body[data-page="pricing"] .pricing-guidance-overview-visual img {
  display: block;
  width: 100%;
  height: auto;
}

body[data-page="pricing"] .pricing-guidance-steps {
  display: grid;
  gap: 14px;
  align-content: start;
}

body[data-page="pricing"] .pricing-guidance-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border: 1px solid rgba(15, 34, 54, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
}

body[data-page="pricing"] .pricing-guidance-step:first-child {
  border-color: rgba(12, 98, 173, 0.16);
  background: linear-gradient(180deg, rgba(247, 251, 255, 0.98), rgba(241, 248, 253, 0.94));
}

body[data-page="pricing"] .pricing-guidance-step h3 {
  font-size: 1rem;
  line-height: 1.2;
  color: var(--ink-strong);
}

body[data-page="pricing"] .pricing-guidance-step p {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.68;
}

body[data-page="pricing"] .pricing-guidance-step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(12, 98, 173, 0.1);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--brand-dark);
}

body[data-page="pricing"] .pricing-guidance-overview-footer {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(12, 98, 173, 0.12);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(245, 250, 255, 0.94), rgba(236, 245, 252, 0.88));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.54);
}

body[data-page="pricing"] .pricing-guidance-overview-footer-copy {
  display: grid;
  gap: 8px;
  max-width: 58ch;
}

body[data-page="pricing"] .pricing-guidance-overview-footer-copy p:last-child {
  color: var(--muted);
  line-height: 1.7;
}

body[data-page="pricing"] .pricing-guidance-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body[data-page="pricing"] .pricing-guidance-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(12, 98, 173, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 10px 22px rgba(16, 52, 92, 0.06);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

body[data-page="pricing"] .pricing-guidance-contact {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 20px;
  padding: clamp(24px, 2.8vw, 30px);
  border: 1px solid rgba(9, 27, 46, 0.12);
  border-radius: 34px;
  background: linear-gradient(160deg, #10243a 0%, #153654 58%, #0d4b74 100%);
  box-shadow: 0 28px 56px rgba(9, 27, 46, 0.2);
}

body[data-page="pricing"] .pricing-guidance-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 18%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 160px);
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), transparent 90%);
}

body[data-page="pricing"] .pricing-guidance-contact>* {
  position: relative;
  z-index: 1;
}

body[data-page="pricing"] .pricing-guidance-contact-media {
  margin: 0;
  overflow: hidden;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 36px rgba(4, 19, 33, 0.18);
}

body[data-page="pricing"] .pricing-guidance-contact-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 22px;
}

body[data-page="pricing"] .pricing-guidance-contact-copy {
  display: grid;
  gap: 14px;
}

body[data-page="pricing"] .pricing-guidance-contact-copy .card-tag,
body[data-page="pricing"] .pricing-guidance-contact-cta .card-tag {
  color: rgba(255, 216, 154, 0.94);
}

body[data-page="pricing"] .pricing-guidance-contact-copy h3 {
  max-width: 10ch;
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 0.98;
  color: #ffffff;
}

body[data-page="pricing"] .pricing-guidance-contact-copy p {
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

body[data-page="pricing"] .pricing-guidance-contact-points {
  display: grid;
  gap: 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

body[data-page="pricing"] .pricing-guidance-contact-points article {
  display: grid;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-page="pricing"] .pricing-guidance-contact-points article:first-child {
  padding-top: 0;
  border-top: 0;
}

body[data-page="pricing"] .pricing-guidance-contact-points strong {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  color: #ffffff;
}

body[data-page="pricing"] .pricing-guidance-contact-points span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.68;
}

body[data-page="pricing"] .pricing-guidance-contact-footer {
  display: grid;
  gap: 18px;
  align-content: end;
}

body[data-page="pricing"] .pricing-guidance-contact-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body[data-page="pricing"] .pricing-guidance-contact-signals span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

body[data-page="pricing"] .pricing-guidance-contact-cta {
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at bottom left, rgba(98, 168, 224, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

body[data-page="pricing"] .pricing-guidance-contact-cta-copy {
  display: grid;
  gap: 10px;
  max-width: 28ch;
}

body[data-page="pricing"] .pricing-guidance-contact-cta h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.08;
  color: #ffffff;
}

body[data-page="pricing"] .pricing-faq-stage {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: clamp(26px, 3vw, 34px);
  padding: clamp(34px, 4vw, 46px);
  border: 1px solid rgba(9, 27, 46, 0.12);
  border-radius: 40px;
  background:
    radial-gradient(circle at 12% 14%, rgba(12, 98, 173, 0.18), transparent 22%),
    radial-gradient(circle at 88% 84%, rgba(232, 163, 58, 0.12), transparent 24%),
    linear-gradient(145deg, #0b2742 0%, #103451 52%, #0d4265 100%);
  box-shadow: 0 30px 64px rgba(9, 27, 46, 0.24);
  isolation: isolate;
}

body[data-page="pricing"] .pricing-faq-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 18%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 164px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.96), transparent 92%);
  pointer-events: none;
}

body[data-page="pricing"] .pricing-faq-stage>* {
  position: relative;
  z-index: 1;
}

body[data-page="pricing"] .pricing-faq-stage-head {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

body[data-page="pricing"] .pricing-faq-stage-head .eyebrow {
  color: rgba(255, 216, 154, 0.94);
}

body[data-page="pricing"] .pricing-faq-stage-head h2 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  line-height: 0.96;
  color: #ffffff;
}

body[data-page="pricing"] .pricing-faq-stage-head .section-text {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.68);
}

body[data-page="pricing"] .pricing-faq-stage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

body[data-page="pricing"] .pricing-faq-card {
  padding: 24px 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

body[data-page="pricing"] .pricing-faq-card[open] {
  transform: translateY(-2px);
  border-color: rgba(12, 98, 173, 0.26);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 32px rgba(4, 19, 33, 0.18);
}

body[data-page="pricing"] .pricing-faq-card summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 18px;
  cursor: pointer;
  list-style: none;
}

body[data-page="pricing"] .pricing-faq-card summary::-webkit-details-marker {
  display: none;
}

body[data-page="pricing"] .pricing-faq-card summary>span:last-child {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.26rem, 2vw, 1.62rem);
  font-weight: 800;
  line-height: 1.16;
  color: #ffffff;
}

body[data-page="pricing"] .pricing-faq-card summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(12, 98, 173, 0.14);
  color: rgba(220, 236, 251, 0.96);
  font-family: "IBM Plex Mono", monospace;
  font-size: 1rem;
  font-weight: 600;
}

body[data-page="pricing"] .pricing-faq-card[open] summary::after {
  content: "-";
}

body[data-page="pricing"] .pricing-faq-card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 42px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(12, 98, 173, 0.14);
  color: rgba(220, 236, 251, 0.96);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

body[data-page="pricing"] .pricing-faq-card p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.72;
}

body[data-page="pricing"] .pricing-faq-stage-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(180px, 20vw, 260px);
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(232, 163, 58, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body[data-page="pricing"] .pricing-faq-stage-cta-copy {
  display: grid;
  gap: 12px;
  align-content: center;
}

body[data-page="pricing"] .pricing-faq-stage-cta-copy .card-tag {
  color: rgba(255, 216, 154, 0.94);
}

body[data-page="pricing"] .pricing-faq-stage-cta-copy h3 {
  max-width: 18ch;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.02;
  color: #ffffff;
}

body[data-page="pricing"] .pricing-faq-stage-cta-copy p {
  max-width: 44ch;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

body[data-page="pricing"] .pricing-faq-stage-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body[data-page="pricing"] .pricing-faq-stage-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.84);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body[data-page="pricing"] .pricing-faq-stage-cta-media {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(12, 98, 173, 0.18), rgba(255, 255, 255, 0.04));
}

body[data-page="pricing"] .pricing-faq-stage-cta-media img {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
}

body[data-page="pricing"] .pricing-faq-stage-cta .contact-panel-cta {
  grid-column: 1 / -1;
}

@media (max-width: 1200px) {

  body[data-page="pricing"] .pricing-editorial-shell,
  body[data-page="pricing"] .pricing-faq-stage-grid,
  body[data-page="pricing"] .pricing-faq-stage-cta,
  body[data-page="pricing"] .pricing-guidance-shell-head,
  body[data-page="pricing"] .pricing-guidance-layout,
  body[data-page="pricing"] .pricing-guidance-overview-body {
    grid-template-columns: 1fr;
  }

  body[data-page="pricing"] .pricing-faq-stage-head h2 {
    max-width: none;
  }

  body[data-page="pricing"] .pricing-editorial-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
  }

  body[data-page="pricing"] .pricing-faq-stage-cta-media {
    max-width: 280px;
    justify-self: start;
  }

  body[data-page="pricing"] .pricing-guidance-shell-copy h2 {
    max-width: none;
  }

  body[data-page="pricing"] .pricing-guidance-shell-note {
    max-width: none;
  }

  body[data-page="pricing"] .pricing-lanes-header {
    grid-template-columns: 1fr;
  }

  body[data-page="pricing"] .pricing-lanes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="pricing"] .pricing-lane-custom,
  body[data-page="pricing"] .pricing-mini-panel {
    grid-column: 1 / -1;
  }

  body[data-page="pricing"] .pricing-mini-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {

  body[data-page="pricing"] .pricing-editorial-shell,
  body[data-page="pricing"] .pricing-marquee-shell,
  body[data-page="pricing"] .pricing-lanes-shell,
  body[data-page="pricing"] .pricing-matrix-shell,
  body[data-page="pricing"] .pricing-faq-stage,
  body[data-page="pricing"] .pricing-guidance-shell,
  body[data-page="pricing"] .pricing-guidance-overview,
  body[data-page="pricing"] .pricing-guidance-contact,
  body[data-page="pricing"] .pricing-guidance-shell-note {
    padding: 22px;
    border-radius: 30px;
  }

  body[data-page="pricing"] .pricing-faq-card,
  body[data-page="pricing"] .pricing-faq-stage-cta {
    border-radius: 26px;
  }

  body[data-page="pricing"] .pricing-faq-stage-cta-media {
    max-width: 240px;
  }

  body[data-page="pricing"] .pricing-editorial-rail,
  body[data-page="pricing"] .pricing-editorial-card-visual {
    grid-template-columns: 1fr;
  }

  body[data-page="pricing"] .pricing-editorial-copy,
  body[data-page="pricing"] .pricing-editorial-rail {
    padding: 0;
  }

  body[data-page="pricing"] .pricing-guidance-overview-visual,
  body[data-page="pricing"] .pricing-guidance-overview-footer,
  body[data-page="pricing"] .pricing-guidance-contact-points,
  body[data-page="pricing"] .pricing-guidance-contact-cta {
    border-radius: 26px;
  }

  body[data-page="pricing"] .pricing-guidance-contact-cta .contact-panel-cta {
    width: 100%;
  }

  body[data-page="pricing"] .pricing-lanes-intro,
  body[data-page="pricing"] .pricing-editorial-card,
  body[data-page="pricing"] .pricing-lane,
  body[data-page="pricing"] .pricing-mini-panel,
  body[data-page="pricing"] .pricing-clarity-card {
    border-radius: 26px;
  }

  body[data-page="pricing"] .pricing-editorial-meter,
  body[data-page="pricing"] .pricing-lanes-grid,
  body[data-page="pricing"] .pricing-lane-stats,
  body[data-page="pricing"] .pricing-mini-list-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="pricing"] .pricing-matrix-head {
    display: none;
  }

  body[data-page="pricing"] .pricing-matrix-row {
    grid-template-columns: 1fr;
  }

  body[data-page="pricing"] .pricing-guidance-contact-copy h3 {
    max-width: none;
  }

  body[data-page="pricing"] .pricing-matrix-cell::before {
    content: attr(data-plan);
    display: inline-flex;
    margin-bottom: 2px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-dark);
  }
}

@media (max-width: 640px) {
  body[data-page="pricing"] .pricing-hero .page-title {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  body[data-page="pricing"] .pricing-faq-stage {
    padding: 20px;
    border-radius: 28px;
  }

  body[data-page="pricing"] .pricing-faq-stage-head {
    justify-items: start;
    text-align: left;
  }

  body[data-page="pricing"] .pricing-faq-card {
    padding: 20px;
  }

  body[data-page="pricing"] .pricing-faq-card summary>span:last-child {
    font-size: 1.18rem;
  }

  body[data-page="pricing"] .pricing-faq-stage-cta {
    padding: 20px;
    border-radius: 24px;
  }

  body[data-page="pricing"] .pricing-marquee-shell {
    gap: 14px;
    padding: 16px;
  }

  body[data-page="pricing"] .pricing-marquee-list {
    gap: 22px;
    padding-right: 22px;
  }

  body[data-page="pricing"] .pricing-marquee-list span {
    font-size: 1.22rem;
  }

  body[data-page="pricing"] .pricing-lanes-header h2 {
    max-width: none;
  }

  body[data-page="pricing"] .pricing-editorial-shell {
    min-height: auto;
  }

  body[data-page="pricing"] .pricing-editorial-card,
  body[data-page="pricing"] .pricing-faq-card,
  body[data-page="pricing"] .pricing-faq-stage-cta {
    padding: 20px;
  }

  body[data-page="pricing"] .pricing-editorial-signals span,
  body[data-page="pricing"] .pricing-addon-strip span,
  body[data-page="pricing"] .pricing-lane-footer span {
    width: 100%;
    justify-content: flex-start;
  }

  body[data-page="pricing"] .pricing-editorial-mini-visual {
    min-height: 220px;
  }
}

/* Projects hero refinement */
body[data-page="projects"] {
  background:
    radial-gradient(circle at 9% 10%, rgba(12, 98, 173, 0.12), transparent 25%),
    radial-gradient(circle at 86% 14%, rgba(232, 163, 58, 0.14), transparent 22%),
    linear-gradient(180deg, #f7fbff 0%, #ebf2f9 52%, #f8fbff 100%);
}

body[data-page="projects"]::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent 32%),
    repeating-linear-gradient(90deg, rgba(12, 98, 173, 0.02) 0 1px, transparent 1px 180px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 56%);
}

body[data-page="projects"] .projects-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(500px, 1.06fr);
  gap: clamp(26px, 3vw, 42px);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  min-height: clamp(760px, calc(100vh - 94px), 920px);
  align-items: stretch;
  padding: clamp(24px, 2.6vw, 34px) clamp(18px, 3vw, 42px) clamp(22px, 2.5vw, 32px);
  border-top: 1px solid rgba(12, 98, 173, 0.08);
  border-bottom: 1px solid rgba(12, 98, 173, 0.08);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(251, 254, 255, 0.98) 0%, rgba(251, 254, 255, 0.98) 46%, rgba(238, 246, 255, 0.98) 46%, rgba(238, 246, 255, 0.98) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 22px 56px rgba(16, 52, 92, 0.08);
}

body[data-page="projects"] .projects-hero::before,
body[data-page="projects"] .projects-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

body[data-page="projects"] .projects-hero::before {
  top: 0;
  bottom: 0;
  left: calc(47% - 1px);
  width: 2px;
  background: linear-gradient(180deg, rgba(12, 98, 173, 0.14), rgba(12, 98, 173, 0.04) 32%, rgba(232, 163, 58, 0.12) 100%);
}

body[data-page="projects"] .projects-hero::after {
  right: -140px;
  bottom: -190px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(12, 98, 173, 0.1), transparent 70%);
}

body[data-page="projects"] .projects-hero .page-hero-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
  align-content: center;
  padding-top: 0;
  padding-inline: clamp(4px, 0.8vw, 12px);
}

body[data-page="projects"] .projects-hero .page-hero-copy::before {
  display: none;
}

body[data-page="projects"] .projects-hero-copy-shell {
  display: grid;
  gap: 18px;
  max-width: 620px;
}

body[data-page="projects"] .projects-hero-kicker {
  max-width: 58ch;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  line-height: 1.92;
  text-transform: uppercase;
  color: rgba(15, 63, 115, 0.7);
}

body[data-page="projects"] .projects-hero .page-badge {
  margin: 0;
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(12, 98, 173, 0.2);
  color: var(--brand-dark);
  box-shadow: 0 8px 18px rgba(12, 98, 173, 0.09);
}

body[data-page="projects"] .projects-hero .page-title {
  max-width: 8.4ch;
  font-size: clamp(3.6rem, 7vw, 6rem);
  line-height: 0.88;
  letter-spacing: -0.088em;
  color: #0f1c2d;
}

body[data-page="projects"] .projects-hero .page-title .headline-mark {
  position: relative;
  display: inline-block;
  padding: 0 0.16em;
  margin: 0 -0.08em;
  color: var(--brand-dark);
  background: linear-gradient(180deg, rgba(220, 236, 251, 0.95), rgba(220, 236, 251, 0.7));
  box-shadow:
    inset 0 -0.16em 0 rgba(12, 98, 173, 0.14),
    0 8px 20px rgba(12, 98, 173, 0.09);
  border-radius: 0.18em;
}

body[data-page="projects"] .projects-hero .page-intro {
  max-width: 52ch;
  font-size: 1.04rem;
  line-height: 1.72;
  color: rgba(33, 52, 71, 0.86);
}

body[data-page="projects"] .projects-hero .hero-actions {
  gap: 12px;
}

body[data-page="projects"] .projects-hero .button {
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
}

body[data-page="projects"] .projects-hero .button-primary {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  box-shadow: 0 16px 32px rgba(12, 98, 173, 0.24);
}

body[data-page="projects"] .projects-hero .button-ghost {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(12, 98, 173, 0.16);
  color: var(--brand-dark);
}

body[data-page="projects"] .project-hero-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
  max-width: 700px;
}

body[data-page="projects"] .project-proof-pill {
  display: grid;
  gap: 5px;
  min-height: 84px;
  padding: 12px 13px;
  border: 1px solid rgba(12, 98, 173, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 18px rgba(16, 52, 92, 0.06);
}

body[data-page="projects"] .project-proof-value {
  font-family: "Manrope", sans-serif;
  font-size: 1.36rem;
  font-weight: 800;
  line-height: 1;
  color: var(--brand-dark);
}

body[data-page="projects"] .project-proof-pill span:last-child {
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(32, 51, 70, 0.78);
}

body[data-page="projects"] .project-hero-inline-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 2px;
  padding-top: 0;
  border-top: 0;
}

body[data-page="projects"] .project-inline-stat {
  min-height: 0;
  padding: 16px 16px 15px;
  border: 1px solid rgba(12, 98, 173, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 8px 18px rgba(16, 52, 92, 0.05);
}

body[data-page="projects"] .project-inline-stat+.project-inline-stat {
  padding-left: 16px;
  border-left: 0;
}

body[data-page="projects"] .project-inline-stat strong {
  display: block;
  margin-bottom: 7px;
  font-size: 1rem;
  line-height: 1.12;
  color: var(--ink-strong);
}

body[data-page="projects"] .project-inline-stat span {
  font-size: 0.9rem;
  line-height: 1.58;
  color: rgba(41, 57, 69, 0.84);
}

body[data-page="projects"] .projects-hero-panel {
  position: relative;
  display: grid;
  align-items: stretch;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

body[data-page="projects"] .projects-hero-panel::before,
body[data-page="projects"] .projects-hero-panel::after {
  display: none;
}

body[data-page="projects"] .projects-hero-panel-window {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 18px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 84% 22%, rgba(232, 163, 58, 0.28), transparent 28%),
    radial-gradient(circle at 18% 88%, rgba(125, 191, 252, 0.16), transparent 24%),
    linear-gradient(165deg, #0b315c 0%, #0a548f 44%, #08213f 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 30px 72px rgba(8, 29, 49, 0.24);
}

body[data-page="projects"] .projects-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.14;
  filter: saturate(0.86) contrast(1.02) brightness(0.86);
  pointer-events: none;
}

body[data-page="projects"] .projects-hero-panel-layer {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 26, 47, 0.54), rgba(7, 26, 47, 0.82)),
    radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.14), transparent 40%);
  z-index: 1;
}

body[data-page="projects"] .projects-hero-panel-window::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 26%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 130px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.94), transparent 96%);
  z-index: 2;
  pointer-events: none;
}

body[data-page="projects"] .projects-hero-panel-window::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -130px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(125, 191, 252, 0.24), rgba(125, 191, 252, 0) 70%);
  filter: blur(4px);
  z-index: 2;
  pointer-events: none;
}

body[data-page="projects"] .projects-hero-panel-chrome {
  position: relative;
  z-index: 4;
  display: flex;
  gap: 8px;
  padding: 0 2px 14px;
}

body[data-page="projects"] .projects-hero-panel-chrome span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.28);
}

body[data-page="projects"] .projects-hero-panel-chrome span:nth-child(1) {
  background: rgba(235, 118, 92, 0.92);
}

body[data-page="projects"] .projects-hero-panel-chrome span:nth-child(2) {
  background: rgba(242, 201, 76, 0.9);
}

body[data-page="projects"] .projects-hero-panel-chrome span:nth-child(3) {
  background: rgba(125, 191, 252, 0.94);
}

body[data-page="projects"] .projects-hero-panel-stage {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  min-height: calc(100% - 23px);
}

body[data-page="projects"] .projects-hero-heading {
  display: grid;
  gap: 12px;
  align-content: start;
  max-width: 540px;
  padding: 4px 4px 0;
}

body[data-page="projects"] .projects-hero-heading .panel-kicker-dark {
  color: rgba(224, 237, 252, 0.86);
}

body[data-page="projects"] .projects-hero-heading h2 {
  max-width: 10.2ch;
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  line-height: 0.92;
  letter-spacing: -0.058em;
  color: #ffffff;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

body[data-page="projects"] .projects-hero-heading p {
  max-width: 40ch;
  font-size: 0.95rem;
  line-height: 1.64;
  color: rgba(229, 240, 252, 0.82);
}

body[data-page="projects"] .projects-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

body[data-page="projects"] .projects-hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(243, 249, 255, 0.92);
}

body[data-page="projects"] .projects-hero-lower {
  display: grid;
  grid-template-columns: minmax(230px, 0.36fr) minmax(0, 1fr);
  gap: 12px;
  align-items: end;
  margin-top: auto;
}

body[data-page="projects"] .projects-hero-media {
  position: relative;
  z-index: 4;
  margin: 0;
  width: min(100%, 520px);
  padding: 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(242, 248, 254, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 22px 48px rgba(8, 29, 49, 0.26);
  transform: translateY(6px);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

body[data-page="projects"] .projects-hero-media::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 15px;
  border: 1px solid rgba(12, 98, 173, 0.14);
  pointer-events: none;
}

body[data-page="projects"] .projects-hero-media:hover {
  transform: translateY(4px);
}

body[data-page="projects"] .projects-hero-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(6, 24, 40, 0.16);
}

body[data-page="projects"] .projects-hero-floating-card {
  position: relative;
  z-index: 4;
  width: 100%;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(247, 251, 255, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 12px 28px rgba(8, 29, 49, 0.18);
}

body[data-page="projects"] .projects-hero-floating-list {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

body[data-page="projects"] .projects-hero-floating-list article {
  display: grid;
  gap: 3px;
  padding-top: 9px;
  border-top: 1px solid rgba(15, 34, 54, 0.12);
}

body[data-page="projects"] .projects-hero-floating-list article:first-child {
  padding-top: 0;
  border-top: 0;
}

body[data-page="projects"] .projects-hero-floating-list strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  line-height: 1.1;
  color: var(--ink-strong);
}

body[data-page="projects"] .projects-hero-floating-list span {
  font-size: 0.88rem;
  line-height: 1.52;
  color: rgba(38, 54, 68, 0.84);
}

@media (max-width: 1180px) {
  body[data-page="projects"] .projects-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    min-height: auto;
    padding: 28px 24px;
    border: 1px solid rgba(12, 98, 173, 0.1);
    border-radius: 30px;
    background:
      linear-gradient(180deg, rgba(251, 254, 255, 0.99) 0%, rgba(251, 254, 255, 0.99) 52%, rgba(238, 246, 255, 0.98) 100%);
  }

  body[data-page="projects"] .projects-hero .page-hero-copy {
    align-content: start;
  }

  body[data-page="projects"] .projects-hero::before {
    top: auto;
    right: 0;
    bottom: calc(48% + 2px);
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(12, 98, 173, 0.14), rgba(12, 98, 173, 0.04) 34%, rgba(232, 163, 58, 0.1) 100%);
  }

  body[data-page="projects"] .projects-hero .page-title,
  body[data-page="projects"] .projects-hero-heading h2 {
    max-width: none;
  }

  body[data-page="projects"] .projects-hero-panel-window {
    min-height: 560px;
  }

  body[data-page="projects"] .projects-hero-lower {
    grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  }
}

@media (max-width: 980px) {
  body[data-page="projects"] .projects-hero .page-title {
    font-size: clamp(3rem, 10vw, 4.8rem);
  }

  body[data-page="projects"] .projects-hero-panel-window {
    min-height: 520px;
  }

  body[data-page="projects"] .projects-hero-lower {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body[data-page="projects"] .projects-hero-media {
    width: min(100%, 520px);
    justify-self: end;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  body[data-page="projects"] .projects-hero {
    gap: 24px;
    padding: 24px;
    border-radius: 26px;
  }

  body[data-page="projects"] .projects-hero .page-intro {
    font-size: 0.98rem;
  }

  body[data-page="projects"] .project-hero-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="projects"] .project-hero-inline-stats {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 0;
  }

  body[data-page="projects"] .projects-hero-panel-window {
    padding: 14px;
    border-radius: 24px;
  }

  body[data-page="projects"] .projects-hero-heading {
    padding: 6px 3px 0;
  }

  body[data-page="projects"] .projects-hero-heading h2 {
    font-size: clamp(1.84rem, 7vw, 2.8rem);
  }
}

@media (max-width: 640px) {
  body[data-page="projects"] .projects-hero .hero-actions {
    grid-template-columns: 1fr;
  }

  body[data-page="projects"] .projects-hero .button {
    width: 100%;
  }

  body[data-page="projects"] .projects-hero .page-title {
    font-size: clamp(2.5rem, 12vw, 3.8rem);
  }

  body[data-page="projects"] .projects-hero-kicker {
    font-size: 0.62rem;
    line-height: 1.7;
  }

  body[data-page="projects"] .project-hero-proof-strip {
    grid-template-columns: 1fr;
  }

  body[data-page="projects"] .project-proof-pill {
    min-height: auto;
  }

  body[data-page="projects"] .projects-hero-panel-window {
    min-height: 420px;
    border-radius: 20px;
  }

  body[data-page="projects"] .projects-hero-panel-chrome {
    padding-bottom: 10px;
  }

  body[data-page="projects"] .projects-hero-heading p {
    font-size: 0.94rem;
    line-height: 1.62;
  }

  body[data-page="projects"] .projects-hero-floating-card {
    padding: 14px;
  }

  body[data-page="projects"] .projects-hero-tags span {
    width: 100%;
    justify-content: flex-start;
  }
}

/* Projects gallery card layout refresh */
body[data-page="projects"] #projektgalleri {
  display: grid;
  gap: 20px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page="projects"] #projektgalleri .section-heading {
  margin-bottom: 0;
}

body[data-page="projects"] #projektgalleri .eyebrow {
  color: var(--brand-dark);
}

body[data-page="projects"] #projektgalleri .section-heading h2 {
  max-width: 18ch;
  color: var(--ink-strong);
}

body[data-page="projects"] #projektgalleri .section-heading .section-text {
  max-width: 60ch;
  color: var(--muted);
}

body[data-page="projects"] .project-gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body[data-page="projects"] .project-filter-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(15, 34, 54, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink-strong);
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

body[data-page="projects"] .project-filter-chip.is-active {
  border-color: rgba(8, 47, 86, 0.64);
  background: linear-gradient(135deg, #0f3c68, #0c62ad);
  color: #ffffff;
}

body[data-page="projects"] .project-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: 18px;
  align-items: stretch;
}

body[data-page="projects"] .project-showcase {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  grid-column: auto;
  min-height: 280px;
  aspect-ratio: 16 / 9.6;
  padding: 0;
  border-radius: 22px;
  border: 1px solid rgba(15, 34, 54, 0.14);
  background: #12263b;
  box-shadow: 0 14px 34px rgba(12, 26, 43, 0.16);
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

body[data-page="projects"] .project-showcase-featured {
  grid-column: auto;
  aspect-ratio: 16 / 9.4;
}

body[data-page="projects"] .project-showcase-secondary {
  grid-column: auto;
  aspect-ratio: 16 / 9.4;
}

body[data-page="projects"] .project-showcase-compact {
  grid-column: auto;
  aspect-ratio: 16 / 9.4;
}

body[data-page="projects"] .project-showcase-standard {
  grid-column: auto;
  aspect-ratio: 16 / 9.4;
}

body[data-page="projects"] .project-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 13, 22, 0.04) 30%, rgba(6, 13, 22, 0.74) 100%),
    linear-gradient(0deg, rgba(8, 18, 30, 0.16), rgba(8, 18, 30, 0.16));
  pointer-events: none;
}

body[data-page="projects"] .project-showcase:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(10, 26, 42, 0.22);
}

body[data-page="projects"] .project-showcase.is-selected {
  border-color: rgba(12, 98, 173, 0.5);
  box-shadow: 0 20px 42px rgba(10, 26, 42, 0.24);
}

body[data-page="projects"] .project-media {
  position: absolute;
  inset: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: #0f1824;
}

body[data-page="projects"] .project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  transform: scale(1.01);
  transition: transform 520ms ease;
}

body[data-page="projects"] .project-showcase-featured .project-media img {
  object-position: center 62%;
}

body[data-page="projects"] .project-showcase-secondary .project-media img {
  object-position: center 56%;
}

body[data-page="projects"] .project-showcase:hover .project-media img {
  transform: scale(1.04);
}

body[data-page="projects"] .project-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  min-height: 100%;
  padding: 16px;
}

body[data-page="projects"] .project-header {
  display: grid;
  gap: 4px;
  width: fit-content;
  max-width: min(92%, 560px);
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(
      180deg,
      rgba(7, 20, 34, 0.72),
      rgba(7, 20, 34, 0.54)
    );
  backdrop-filter: blur(8px);
}

body[data-page="projects"] .project-header .card-tag {
  display: none;
}

body[data-page="projects"] .project-showcase h3 {
  margin: 0;
  color: #ffffff;
  max-width: 14ch;
  font-size: clamp(1.34rem, 1.8vw, 1.85rem);
  line-height: 1.02;
  text-shadow: 0 8px 16px rgba(0, 0, 0, 0.24);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

body[data-page="projects"] .project-showcase-featured h3 {
  max-width: 12ch;
  font-size: clamp(1.72rem, 2.6vw, 2.3rem);
  -webkit-line-clamp: 3;
}

body[data-page="projects"] .project-card-body {
  display: grid;
  gap: 8px;
}

body[data-page="projects"] .project-showcase [data-project-description] {
  display: none;
}

body[data-page="projects"] .project-showcase-featured [data-project-description] {
  display: none;
}

body[data-page="projects"] .project-meta {
  display: none;
}

body[data-page="projects"] .project-card-footer {
  margin-top: 0;
  padding-top: 0;
  justify-content: flex-end;
  align-items: flex-end;
}

body[data-page="projects"] .project-card-note {
  display: none;
}

body[data-page="projects"] .project-card-trigger {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(8, 21, 36, 0.78);
  color: #f7fbff;
  box-shadow: none;
}

body[data-page="projects"] .project-card-trigger:hover,
body[data-page="projects"] .project-card-trigger:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(8, 22, 36, 0.92);
  transform: translateY(-1px);
}

body[data-page="projects"] .project-spotlight {
  --spotlight-tilt-x: 0deg;
  --spotlight-tilt-y: 0deg;
  --spotlight-glare-x: 50%;
  --spotlight-glare-y: 50%;
  border: 1px solid rgba(15, 34, 54, 0.12);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.88),
    rgba(246, 250, 255, 0.86)
  );
  box-shadow:
    0 28px 58px rgba(16, 52, 92, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

body[data-page="projects"] .project-spotlight-media {
  border: 1px solid rgba(15, 34, 54, 0.12);
  box-shadow: 0 18px 36px rgba(16, 52, 92, 0.14);
  transform-origin: center center;
  backface-visibility: hidden;
  isolation: isolate;
  transform:
    perspective(1200px)
    rotateX(var(--spotlight-tilt-x))
    rotateY(var(--spotlight-tilt-y));
  transition: transform 200ms ease, box-shadow 200ms ease;
  will-change: transform;
}

body[data-page="projects"] .project-spotlight-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    420px circle at var(--spotlight-glare-x) var(--spotlight-glare-y),
    rgba(255, 255, 255, 0.2),
    transparent 58%
  );
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 260ms ease;
}

body[data-page="projects"] .project-spotlight-media:hover {
  box-shadow: 0 22px 40px rgba(16, 52, 92, 0.18);
}

body[data-page="projects"] .project-spotlight-media:hover::after {
  opacity: 0.38;
}

body[data-page="projects"] .project-spotlight-media img {
  transition: opacity 0.5s ease, transform 420ms ease;
}

body[data-page="projects"] .project-spotlight-media:hover img {
  transform: scale(1.008);
}

body[data-page="projects"] .project-spotlight-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

body[data-page="projects"] .project-spotlight-label {
  display: none;
}

body[data-page="projects"] .project-spotlight-website {
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(8, 47, 86, 0.32);
  border-radius: 999px;
  background: linear-gradient(135deg, #0f3c68, #0c62ad);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(12, 98, 173, 0.2);
}

body[data-page="projects"] .project-spotlight-website:hover,
body[data-page="projects"] .project-spotlight-website:focus-visible {
  border-color: rgba(8, 47, 86, 0.42);
  background: linear-gradient(135deg, #124a7c, #0f6ab7);
  transform: translateY(-1px);
}

@media (max-width: 1200px) {
  body[data-page="projects"] .project-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="projects"] .project-showcase-featured {
    grid-column: auto;
    aspect-ratio: 16 / 9.6;
  }

  body[data-page="projects"] .project-showcase-secondary {
    grid-column: auto;
    aspect-ratio: 16 / 9.8;
  }

  body[data-page="projects"] .project-showcase-compact,
  body[data-page="projects"] .project-showcase-standard {
    grid-column: auto;
  }
}

@media (max-width: 860px) {
  body[data-page="projects"] .project-gallery {
    grid-template-columns: 1fr;
  }

  body[data-page="projects"] .project-showcase,
  body[data-page="projects"] .project-showcase-featured,
  body[data-page="projects"] .project-showcase-secondary,
  body[data-page="projects"] .project-showcase-compact,
  body[data-page="projects"] .project-showcase-standard {
    grid-column: auto;
    min-height: 260px;
    aspect-ratio: 16 / 10;
  }

  body[data-page="projects"] .project-showcase h3 {
    font-size: clamp(1.64rem, 8vw, 2.28rem);
  }
}
