:root {
  --bg: #f7f8f5;
  --paper: #ffffff;
  --panel: #eef1ef;
  --line: rgba(24, 27, 25, 0.1);
  --line-strong: rgba(24, 27, 25, 0.2);
  --text: #181b19;
  --muted: #5f665f;
  --soft: #879087;
  --blue: #005ecb;
  --green: #16704c;
  --teal: #008399;
  --orange: #b25a00;
  --purple: #7344a8;
  --pink: #c43257;
  --neutral: #6e6e73;
  --ink: #111311;
  --warm: #fff8ea;
  --shadow: 0 22px 70px rgba(24, 27, 25, 0.12);
  --shadow-soft: 0 12px 34px rgba(24, 27, 25, 0.08);
  --radius: 8px;
  --font-sans: Inter, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Noto Serif SC", "Songti SC", "STSong", "SimSun", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
}

section,
#faq {
  scroll-margin-top: 78px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  line-break: strict;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button {
  letter-spacing: 0;
}

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

.container.narrow {
  width: min(860px, calc(100% - 40px));
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 248, 245, 0.86);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

.nav-shell {
  width: min(1180px, calc(100% - 40px));
  height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 760;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 820;
}

.desktop-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a,
.nav-menu-trigger {
  color: var(--muted);
  text-decoration: none;
  border: 0;
  background: transparent;
  padding: 10px 0;
  cursor: pointer;
}

.desktop-nav a:hover,
.nav-menu-trigger:hover {
  color: var(--text);
}

.nav-menu {
  position: relative;
}

.nav-menu-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  width: 210px;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  pointer-events: none;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-menu:hover .nav-menu-panel,
.nav-menu:focus-within .nav-menu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-menu-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 11px;
  border-radius: 6px;
  color: var(--muted);
}

.nav-menu-panel a:hover {
  background: var(--panel);
}

.cat-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--blue);
}

.cat-dot.pet,
.theme-pet .cat-dot,
.theme-pet {
  --theme: var(--green);
  --theme-soft: rgba(23, 138, 69, 0.1);
}

.cat-dot.swim,
.theme-swim {
  --theme: var(--blue);
  --theme-soft: rgba(0, 110, 219, 0.1);
}

.cat-dot.tea,
.theme-tea {
  --theme: var(--orange);
  --theme-soft: rgba(184, 100, 0, 0.1);
}

.cat-dot.eye,
.theme-eye {
  --theme: var(--purple);
  --theme-soft: rgba(125, 61, 179, 0.11);
}

.cat-dot.pet {
  background: var(--green);
}

.cat-dot.swim {
  background: var(--blue);
}

.cat-dot.tea {
  background: var(--orange);
}

.cat-dot.eye {
  background: var(--purple);
}

.nav-cta {
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 680;
  text-decoration: none;
}

.menu-button {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  width: 42px;
  height: 42px;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 99px;
  background: var(--text);
}

.mobile-panel {
  position: fixed;
  top: 64px;
  right: 0;
  left: 0;
  z-index: 70;
  width: 100%;
  max-height: calc(100vh - 64px);
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px max(20px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateY(-120%);
  transition: transform 0.28s ease;
}

body.menu-open .mobile-panel {
  transform: translateY(0);
}

.mobile-panel a {
  text-decoration: none;
  color: var(--text);
  font-weight: 650;
}

.mobile-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  font-weight: 760;
}

.mobile-panel-head button {
  border: 0;
  background: transparent;
  font-size: 26px;
  cursor: pointer;
}

.mobile-cases {
  display: grid;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mobile-cases a {
  color: var(--muted);
  font-size: 14px;
}

.hero {
  padding: 126px 0 58px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f8f5 76%, var(--bg) 100%);
  overflow: hidden;
}

.hero-copy {
  width: min(1180px, 100%);
  margin: 0 auto 24px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(54px, 6.4vw, 90px);
  line-height: 0.98;
  font-weight: 900;
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: normal;
}

.hero-copy p {
  width: min(760px, 100%);
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.68;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 720;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

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

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

.authority-bar {
  width: min(980px, 100%);
  margin: 0 auto 34px;
  padding: 18px 20px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.authority-bar p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.authority-bar div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.authority-bar span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--text);
  font-size: 12px;
  font-weight: 760;
}

.gallery-shell {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 0 14px;
  user-select: none;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
  max-width: 100%;
}

.gallery-shell::-webkit-scrollbar {
  height: 6px;
}

.gallery-shell::-webkit-scrollbar-thumb {
  background: var(--line-strong);
  border-radius: 99px;
}

.gallery-grid {
  display: inline-grid;
  gap: 14px;
  min-width: max-content;
}

.gallery-row {
  display: flex;
  gap: 14px;
}

.gallery-tile {
  width: 205px;
  height: 270px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper);
  cursor: zoom-in;
}

.gallery-tile.is-wide {
  width: 424px;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.gallery-tile.is-square img {
  object-fit: cover;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.metric {
  padding: 22px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  text-align: left;
}

.metric strong {
  display: block;
  color: var(--theme);
  font-size: clamp(24px, 3.5vw, 36px);
  line-height: 1;
  font-weight: 900;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 720;
}

.theme-blue,
.theme-swim {
  --theme: var(--blue);
  --theme-soft: rgba(0, 110, 219, 0.1);
}

.theme-green,
.theme-pet {
  --theme: var(--green);
  --theme-soft: rgba(23, 138, 69, 0.1);
}

.theme-teal {
  --theme: var(--teal);
}

.theme-orange,
.theme-tea {
  --theme: var(--orange);
  --theme-soft: rgba(184, 100, 0, 0.1);
}

.theme-purple,
.theme-eye {
  --theme: var(--purple);
  --theme-soft: rgba(125, 61, 179, 0.1);
}

.theme-pink {
  --theme: var(--pink);
}

.theme-neutral {
  --theme: var(--neutral);
}

.section {
  padding: 96px 0;
  background: var(--bg);
}

.band-light {
  background: var(--paper);
}

.service-section {
  position: relative;
  overflow: hidden;
  padding: 112px 0 104px;
  background: var(--ink);
  color: #f7f8f5;
}

.service-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(22, 112, 76, 0.28), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 120px);
}

.service-section .container {
  position: relative;
  z-index: 1;
}

.service-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 34px;
  align-items: stretch;
  margin-bottom: 20px;
}

.service-header {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px 0;
}

.service-header .eyebrow {
  color: #81d9ad;
}

.service-header h2 {
  max-width: 880px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(48px, 5.6vw, 76px);
  line-height: 1.02;
  text-wrap: balance;
  word-break: keep-all;
}

.service-header p:not(.eyebrow) {
  width: min(760px, 100%);
  margin: 22px 0 0;
  color: rgba(247, 248, 245, 0.72);
  font-size: 18px;
  line-height: 1.78;
  text-wrap: pretty;
}

.service-outcome {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.service-outcome span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(129, 217, 173, 0.42);
  border-radius: 999px;
  background: rgba(129, 217, 173, 0.1);
  color: #e8fff2;
  font-size: 13px;
  font-weight: 780;
}

.service-system-card {
  min-height: 430px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 20px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #f0f5ee;
  color: var(--text);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.system-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.system-card-head span {
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.system-card-head strong {
  max-width: 220px;
  text-align: right;
  font-family: var(--font-serif);
  font-size: 28px;
  line-height: 1.08;
}

.system-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.system-flow span {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
}

.system-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-self: end;
}

.system-metrics div {
  min-height: 96px;
  padding: 14px;
  border: 1px solid rgba(24, 27, 25, 0.14);
  border-radius: 6px;
  background: #fff;
}

.system-metrics strong,
.system-metrics span {
  display: block;
}

.system-metrics strong {
  color: var(--green);
  font-size: 24px;
  line-height: 1;
}

.system-metrics span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
}

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

.service-proof-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(24, 27, 25, 0.12);
  border-radius: 6px;
  background: #fff;
}

.section-header {
  width: min(980px, 100%);
  margin: 0 0 42px;
  text-align: left;
}

.section-header h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.08;
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: normal;
}

.section-header p:not(.eyebrow) {
  width: min(760px, 100%);
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
  text-wrap: pretty;
}

.surface-card,
.price-card,
.brand-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  border: 0;
  background: transparent;
}

.service-card {
  position: relative;
  min-height: 336px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #fff;
  color: var(--text);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: var(--theme, var(--green));
}

.service-card-1 {
  --theme: var(--green);
}

.service-card-2 {
  --theme: var(--blue);
}

.service-card-3 {
  --theme: var(--orange);
}

.service-card-4 {
  --theme: var(--purple);
}

.service-card-5 {
  --theme: var(--pink);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: auto;
}

.step-label {
  display: inline-flex;
  margin-bottom: 0;
  color: var(--theme, var(--green));
  font-weight: 820;
  font-size: 13px;
}

.service-code {
  color: var(--soft);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.service-card h3,
.surface-card h3,
.price-card h3,
.process-item h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.25;
}

.service-card h3,
.surface-card h3,
.price-card h3,
.process-item h3,
.faq-list summary {
  text-wrap: balance;
  word-break: keep-all;
}

.service-card p,
.surface-card p,
.price-card p,
.process-item p,
.brand-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.service-card h3 {
  margin: 74px 0 14px;
  font-size: clamp(24px, 2.1vw, 31px);
}

.service-card p {
  color: #515850;
  font-size: 15px;
  line-height: 1.78;
}

.filter-bar {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--theme);
  background: var(--theme-soft);
  color: var(--theme);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
}

.brand-card-wrap {
  cursor: pointer;
}

.brand-card-wrap.is-hidden {
  display: none;
}

.brand-card {
  height: 100%;
  overflow: hidden;
  border-top: 0;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.brand-card.is-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
}

.brand-card-wrap:has(.brand-card.is-featured) {
  grid-column: span 2;
}

.brand-card:hover,
.brand-card-wrap:focus-visible .brand-card {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.brand-image {
  aspect-ratio: 4 / 3;
  background: var(--panel);
  overflow: hidden;
}

.brand-card.is-featured .brand-image {
  aspect-ratio: auto;
  min-height: 100%;
}

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

.brand-body {
  padding: 20px 20px 18px;
}

.brand-card.is-featured .brand-body {
  padding: 28px;
  align-self: end;
}

.brand-kicker {
  color: var(--theme);
  font-size: 12px;
  font-weight: 760;
  margin-bottom: 8px;
}

.brand-body h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.05;
}

.brand-card.is-featured .brand-body h3 {
  font-size: clamp(38px, 5vw, 58px);
}

.brand-slogan {
  margin: 7px 0 12px !important;
  color: var(--soft) !important;
  font-style: italic;
}

.brand-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 13px 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.brand-card.is-featured .brand-footer {
  grid-column: 1 / -1;
  background: var(--theme-soft);
  color: var(--text);
}

.proof-image {
  width: 100%;
  display: block;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  cursor: zoom-in;
  overflow: hidden;
}

.proof-image img {
  width: 100%;
  display: block;
  border-radius: 0;
}

.pain-list,
.process-list {
  display: grid;
  gap: 14px;
}

.process-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 28px;
  align-items: start;
}

.pain-item,
.process-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.pain-item strong,
.process-item span {
  color: var(--green);
  font-weight: 850;
}

.pain-item p {
  margin: 0;
  color: var(--text);
}

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

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

.faq-list summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--text);
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--green);
  font-weight: 900;
}

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

.faq-list p {
  margin: -6px 0 22px;
  color: var(--muted);
  font-size: 14px;
}

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

.method-grid .surface-card {
  padding: 28px;
}

.method-list {
  display: grid;
  gap: 15px;
}

.method-item {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.method-item:last-child {
  border-bottom: 0;
}

.method-item strong {
  font-size: 15px;
}

.method-item span {
  color: var(--muted);
  font-size: 13px;
}

.score-list {
  display: grid;
  gap: 16px;
}

.score-row > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
}

.score-row strong {
  color: var(--theme);
}

.score-track {
  height: 6px;
  overflow: hidden;
  border-radius: 99px;
  background: var(--panel);
}

.score-track i {
  display: block;
  height: 100%;
  border-radius: 99px;
  background: var(--theme);
}

.verification-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.verification-strip div {
  min-height: 116px;
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
}

.verification-strip strong {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
}

.verification-strip span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(920px, 100%);
  margin: 0;
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.price-card.is-featured {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(22, 112, 76, 0.08);
}

.plan-label {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 22px 0 18px;
}

.price-line strong {
  color: var(--green);
  font-size: 42px;
  line-height: 1;
}

.price-line span {
  color: var(--soft);
  font-size: 14px;
}

.price-card ul {
  flex: 1;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.price-card li::before {
  content: "✓";
  color: var(--green);
  font-weight: 850;
  margin-right: 8px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 22px;
  align-items: start;
}

.contact-form {
  padding: 30px;
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--panel);
  color: var(--text);
  padding: 13px 14px;
  outline: none;
}

.contact-form textarea {
  min-height: 112px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22, 112, 76, 0.1);
}

.form-feedback {
  min-height: 20px;
  margin: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
}

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

.contact-aside > div {
  padding: 22px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper);
}

.info-label {
  display: block;
  margin-bottom: 6px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 760;
}

.contact-aside strong {
  display: block;
  font-size: 17px;
}

.contact-aside p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.qr-card img {
  width: 138px;
  height: 138px;
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.site-footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  color: var(--soft);
}

.footer-shell p,
.footer-shell small {
  margin: 0;
  font-size: 13px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(18px);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: 94vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.deck-page {
  min-height: 100vh;
  background: var(--bg);
  padding-top: 62px;
}

.deck-bar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(251, 251, 253, 0.86);
  backdrop-filter: blur(18px) saturate(160%);
}

.back-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.deck-bar span {
  color: var(--theme);
  font-size: 13px;
  font-weight: 800;
}

.deck-hero {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0 34px;
  text-align: center;
}

.deck-hero h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.1;
  text-wrap: balance;
  word-break: keep-all;
}

.deck-hero p {
  margin: 14px auto 0;
  color: var(--muted);
}

.deck-hero small {
  display: block;
  margin-top: 8px;
  color: var(--soft);
  font-weight: 700;
}

.deck-slides {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding-bottom: 72px;
}

.deck-slide {
  margin-bottom: 26px;
  text-align: center;
}

.deck-slide img {
  width: 100%;
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.deck-slide span {
  display: inline-block;
  margin-top: 10px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 700;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (max-width: 1040px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

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

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

  .authority-bar,
  .service-spotlight,
  .process-faq-grid,
  .brand-card.is-featured {
    grid-template-columns: 1fr;
  }

  .metric-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .brand-card-wrap:has(.brand-card.is-featured) {
    grid-column: span 2;
  }

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

@media (max-width: 760px) {
  .container,
  .container.narrow,
  .nav-shell,
  .deck-slides,
  .deck-hero {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding-top: 98px;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 11vw, 58px);
    line-height: 1.04;
    word-break: normal;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .authority-bar {
    padding: 16px 0;
  }

  .authority-bar div {
    justify-content: flex-start;
  }

  .gallery-tile {
    width: 146px;
    height: 194px;
  }

  .gallery-tile.is-wide {
    width: 304px;
  }

  .metric-grid,
  .service-grid,
  .brand-grid,
  .method-grid,
  .pricing-grid,
  .contact-grid,
  .process-faq-grid,
  .verification-strip {
    grid-template-columns: 1fr;
  }

  .brand-card-wrap:has(.brand-card.is-featured) {
    grid-column: auto;
  }

  .section {
    padding: 64px 0;
  }

  .service-section {
    padding: 76px 0 72px;
  }

  .service-spotlight {
    gap: 18px;
    margin-bottom: 14px;
  }

  .service-header {
    min-height: auto;
    padding: 0;
  }

  .service-header h2 {
    font-size: clamp(38px, 12vw, 54px);
    line-height: 1.05;
    word-break: normal;
  }

  .service-header p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.68;
  }

  .service-outcome {
    margin-top: 24px;
  }

  .service-system-card {
    min-height: auto;
    padding: 18px;
  }

  .system-card-head {
    display: grid;
  }

  .system-card-head strong {
    max-width: none;
    text-align: left;
    font-size: 25px;
  }

  .system-flow,
  .system-metrics {
    grid-template-columns: 1fr;
  }

  .service-proof-strip {
    grid-template-columns: repeat(3, minmax(92px, 1fr));
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .section-header h2 {
    font-size: clamp(32px, 11vw, 44px);
    word-break: normal;
  }

  .deck-hero h1,
  .service-card h3,
  .surface-card h3,
  .price-card h3,
  .process-item h3,
  .faq-list summary {
    word-break: normal;
  }

  .service-grid {
    gap: 12px;
  }

  .service-card {
    min-height: 268px;
    padding: 22px;
  }

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

  .brand-footer,
  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .pain-item,
  .process-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .deck-bar {
    padding: 0 16px;
  }

  .deck-bar span {
    max-width: 58%;
    text-align: right;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

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