:root {
  --page: #f8f9f6;
  --surface: #ffffff;
  --surface-soft: #fff7d1;
  --surface-elevated: #ffffff;
  --ink: #191813;
  --muted: #625f57;
  --line: #e7e0cb;
  --line-strong: #d4c377;
  --line-premium: rgba(64, 58, 42, 0.14);
  --brand-yellow: #ffd21f;
  --brand-red: #e31e24;
  --accent: var(--brand-yellow);
  --graphite: #2a2925;
  --shadow-soft: 0 20px 54px rgba(32, 29, 18, 0.1);
  --shadow-card: 0 12px 32px rgba(32, 29, 18, 0.08);
  --shadow-strong: 0 34px 90px rgba(32, 29, 18, 0.17);
  --shadow-premium: 0 40px 110px rgba(32, 29, 18, 0.16), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  --radius: 18px;
  --motion-fast: 180ms ease;
  --motion-medium: 420ms cubic-bezier(0.2, 0.7, 0.2, 1);
  --motion-slow: 760ms cubic-bezier(0.16, 1, 0.3, 1);
  --ambient-shift-x: 0px;
  --ambient-shift-y: 0px;
  --ambient-shift-x-soft: 0px;
  --ambient-shift-y-soft: 0px;
  --scroll-depth: 0;
  font-family: Manrope, Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0, rgba(250, 251, 249, 0.98) 470px, rgba(247, 248, 246, 0.98) 100%),
    linear-gradient(112deg, rgba(255, 210, 31, 0.11), rgba(255, 255, 255, 0) 28%),
    linear-gradient(82deg, rgba(255, 255, 255, 0) 60%, rgba(227, 30, 36, 0.03)),
    var(--page);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.22)) calc(11% + var(--ambient-shift-x-soft)) calc(126px + var(--ambient-shift-y-soft)) / 340px 126px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.24)) calc(74% + var(--ambient-shift-x)) calc(92px + var(--ambient-shift-y)) / 430px 158px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.18)) calc(88% + var(--ambient-shift-x-soft)) calc(535px + var(--ambient-shift-y-soft)) / 310px 114px no-repeat,
    linear-gradient(rgba(42, 41, 37, 0.019) 1px, transparent 1px) var(--ambient-shift-x-soft) var(--ambient-shift-y-soft) / 48px 48px,
    linear-gradient(90deg, rgba(42, 41, 37, 0.016) 1px, transparent 1px) var(--ambient-shift-x-soft) var(--ambient-shift-y-soft) / 48px 48px,
    repeating-linear-gradient(116deg, transparent 0 196px, rgba(255, 210, 31, 0.035) 197px, transparent 199px),
    repeating-linear-gradient(26deg, transparent 0 280px, rgba(227, 30, 36, 0.018) 281px, transparent 283px);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0, rgba(0, 0, 0, 0.4) 58%, transparent 980px);
  filter: drop-shadow(0 24px 70px rgba(40, 36, 22, 0.075));
  transition: background-position 520ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: background-position;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(255, 210, 31, 0.5), rgba(227, 30, 36, 0.18), transparent) 14% 35% / 38% 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(255, 210, 31, 0.32), rgba(64, 58, 42, 0.1), transparent) 57% 70% / 32% 1px no-repeat,
    linear-gradient(180deg, transparent, rgba(64, 58, 42, 0.075), transparent) 72% 0 / 1px 100% no-repeat,
    linear-gradient(121deg, transparent 0 15%, rgba(255, 210, 31, 0.075) 15.12%, rgba(255, 210, 31, 0.025) 15.7%, transparent 16.25% 100%),
    linear-gradient(72deg, transparent 0 78%, rgba(227, 30, 36, 0.045) 78.08%, rgba(227, 30, 36, 0.018) 78.62%, transparent 79.18% 100%),
    repeating-linear-gradient(90deg, transparent 0 148px, rgba(64, 58, 42, 0.01) 149px, transparent 151px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0) 50%);
  background-position:
    calc(13% + var(--ambient-shift-x)) calc(34% + var(--ambient-shift-y)),
    calc(55% + var(--ambient-shift-x-soft)) calc(69% + var(--ambient-shift-y-soft)),
    72% 0,
    var(--ambient-shift-x) var(--ambient-shift-y),
    var(--ambient-shift-x-soft) var(--ambient-shift-y-soft),
    0 0,
    0 0;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0, rgba(0, 0, 0, 0.46) 55%, transparent 100%);
  opacity: calc(0.74 + (var(--scroll-depth) * 0.12));
  animation: premium-drift 26s ease-in-out infinite alternate;
  will-change: background-position, opacity, filter;
}

.scroll-progress {
  --scroll-progress: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-yellow), var(--brand-red));
  box-shadow: 0 8px 24px rgba(227, 30, 36, 0.18);
  pointer-events: none;
  transform: scaleX(var(--scroll-progress));
  transform-origin: left center;
  will-change: transform;
}

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

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

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

button {
  border: 0;
}

:focus-visible {
  outline: 3px solid rgba(227, 30, 36, 0.78);
  outline-offset: 4px;
}

.button,
.nav-cta,
.nav-phone,
.quiz-form button,
.lead-form button,
.mobile-sticky-cta a {
  --glass-tint: rgba(255, 255, 255, 0.46);
  --glass-accent: rgba(255, 210, 31, 0.2);
  --glass-rim: rgba(255, 255, 255, 0.74);
  --glass-shadow: rgba(40, 36, 22, 0.14);
  position: relative;
  isolation: isolate;
  border-color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(120% 90% at 50% 118%, rgba(255, 255, 255, 0.72), transparent 48%),
    radial-gradient(85% 70% at 50% -18%, rgba(255, 255, 255, 0.92), transparent 58%),
    linear-gradient(180deg, var(--glass-tint), rgba(255, 255, 255, 0.2)),
    linear-gradient(135deg, var(--glass-accent), rgba(255, 255, 255, 0.08));
  box-shadow:
    0 18px 42px var(--glass-shadow),
    inset 0 1px 1px rgba(255, 255, 255, 0.9),
    inset 0 -10px 18px rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(40, 36, 22, 0.1);
  backdrop-filter: blur(18px) saturate(1.22);
}

.button::before,
.nav-cta::before,
.nav-phone::before,
.quiz-form button::before,
.lead-form button::before,
.mobile-sticky-cta a::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.08) 44%, rgba(255, 255, 255, 0.48) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.42), transparent 18% 82%, rgba(255, 255, 255, 0.32));
  opacity: 0.72;
}

.button:hover,
.nav-cta:hover,
.nav-phone:hover,
.quiz-form button:hover,
.lead-form button:hover,
.mobile-sticky-cta a:hover {
  border-color: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 22px 50px var(--glass-shadow),
    inset 0 1px 1px rgba(255, 255, 255, 0.92),
    inset 0 -12px 22px rgba(255, 255, 255, 0.34),
    inset 0 -1px 0 rgba(40, 36, 22, 0.1);
}

::selection {
  color: #17130a;
  background: rgba(255, 210, 31, 0.72);
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin: 14px 0 30px;
  padding: 12px 15px;
  border: 1px solid var(--line-premium);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 52px rgba(32, 29, 18, 0.1), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  backdrop-filter: blur(12px);
  transition: border-color var(--motion-medium), box-shadow var(--motion-medium), transform var(--motion-medium), background var(--motion-medium);
}

.topbar.is-scrolled {
  border-radius: 0 0 18px 18px;
  border-top: 0;
  border-color: rgba(212, 195, 119, 0.92);
  background: #fffefa;
  box-shadow: 0 18px 44px rgba(40, 36, 22, 0.14);
  transform: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 14px;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  font-weight: 900;
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 50px;
  height: 50px;
  max-width: 100%;
  object-fit: contain;
  image-rendering: auto;
  filter: none;
}

.brand strong,
.brand small {
  display: block;
}

.brand .brand-word {
  display: inline-flex;
  align-items: baseline;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand-c {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 1px;
  color: var(--brand-red);
  font-weight: 950;
  text-shadow: 0.7px 0 0 var(--brand-red);
}

.brand-c::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: 0.02em;
  left: 0.12em;
  height: 0.08em;
  border-radius: 999px;
  background: var(--brand-red);
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.25;
}

.nav-links {
  display: none;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 8px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-links a {
  border-radius: 999px;
  padding: 9px 12px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover {
  color: var(--ink);
  background: var(--surface-soft);
}

.mobile-section-nav {
  display: none;
}

@media (min-width: 1180px) {
  .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 8px 10px;
    font-size: 0.9rem;
  }
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  gap: 10px;
}

.nav-cta {
  --glass-tint: rgba(255, 210, 31, 0.56);
  --glass-accent: rgba(255, 210, 31, 0.56);
  --glass-shadow: rgba(190, 147, 0, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  padding: 0 14px;
  color: #17130a;
  background:
    radial-gradient(100% 95% at 50% 118%, rgba(255, 255, 255, 0.82), transparent 48%),
    radial-gradient(85% 70% at 50% -18%, rgba(255, 255, 255, 0.96), transparent 58%),
    linear-gradient(180deg, rgba(255, 225, 58, 0.9), rgba(255, 210, 31, 0.42)),
    linear-gradient(135deg, rgba(255, 210, 31, 0.52), rgba(255, 255, 255, 0.18));
  box-shadow:
    0 14px 34px rgba(190, 147, 0, 0.24),
    inset 0 1px 1px rgba(255, 255, 255, 0.92),
    inset 0 -9px 16px rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(40, 36, 22, 0.12);
  font-size: 0.9rem;
  font-weight: 900;
  transition: transform var(--motion-fast), box-shadow var(--motion-fast), border-color var(--motion-fast), filter var(--motion-fast);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow:
    0 18px 42px rgba(190, 147, 0, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.94),
    inset 0 -10px 18px rgba(255, 255, 255, 0.34),
    inset 0 -1px 0 rgba(40, 36, 22, 0.12);
  filter: saturate(1.04);
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  padding: 0 14px;
  background:
    radial-gradient(100% 90% at 50% 118%, rgba(255, 255, 255, 0.7), transparent 48%),
    radial-gradient(85% 70% at 50% -18%, rgba(255, 255, 255, 0.9), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.22));
  box-shadow:
    0 12px 30px rgba(40, 36, 22, 0.1),
    inset 0 1px 1px rgba(255, 255, 255, 0.9),
    inset 0 -8px 14px rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(16px) saturate(1.18);
  min-width: max-content;
  color: var(--graphite);
  font-size: 0.9rem;
  font-weight: 800;
  transition: border-color var(--motion-fast), box-shadow var(--motion-fast), transform var(--motion-fast), filter var(--motion-fast);
}

.nav-phone:hover {
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
  box-shadow:
    0 16px 38px rgba(40, 36, 22, 0.14),
    inset 0 1px 1px rgba(255, 255, 255, 0.94),
    inset 0 -9px 18px rgba(255, 255, 255, 0.32);
}

.section {
  padding: 86px 0;
  scroll-margin-top: 24px;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(430px, 0.78fr) minmax(560px, 1.22fr);
  gap: 18px;
  align-items: center;
  min-height: 642px;
  padding-top: 18px;
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  top: 44px;
  bottom: 20px;
  width: auto;
  border-radius: 42px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0 24%, rgba(255, 255, 255, 0.5) 48%, rgba(255, 255, 255, 0.08) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(244, 245, 242, 0.3));
  box-shadow: 0 42px 120px rgba(38, 35, 26, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 18px -5% 18px;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(255, 210, 31, 0.42), rgba(227, 30, 36, 0.13), transparent) 52% 44% / 460px 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(255, 210, 31, 0.35), rgba(64, 58, 42, 0.09), transparent) 63% 73% / 360px 1px no-repeat,
    linear-gradient(180deg, transparent, rgba(64, 58, 42, 0.07), transparent) 73% 0 / 1px 100% no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.13)) 55% 12% / 300px 96px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.1)) 88% 68% / 250px 92px no-repeat;
  filter: drop-shadow(0 30px 72px rgba(40, 36, 22, 0.08));
  opacity: 0.74;
}

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

.hero-copy,
.hero-visual,
.lead-copy,
.section-heading,
.glass-card {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--brand-red);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 800px;
  margin-bottom: 22px;
  font-size: 3.58rem;
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--ink);
  text-wrap: balance;
}

.hero h1 {
  max-width: 500px;
  font-size: 2.52rem;
  line-height: 1.08;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h2 {
  max-width: 820px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2rem, 2.55rem, 2.55rem);
  line-height: 1.08;
  text-wrap: balance;
}

h3 {
  margin-bottom: 11px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.28;
}

p {
  color: var(--muted);
}

.hero-text {
  max-width: 470px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.56;
}

.hero-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: min(100%, 430px);
  gap: 10px;
  margin: 24px 0 12px;
}

.hero-actions .button {
  width: 100%;
  min-width: 0;
  font-size: 0.96rem;
  white-space: normal;
  text-wrap: balance;
}

.button {
  --magnet-x: 0px;
  --magnet-y: 0px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 18px;
  padding: 0 20px;
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
  overflow: hidden;
  cursor: pointer;
  transform: translate(var(--magnet-x), var(--magnet-y));
  transition: transform var(--motion-fast), border-color var(--motion-fast), box-shadow var(--motion-fast), background var(--motion-fast), color var(--motion-fast), filter var(--motion-fast);
}

.button::after {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 24%, rgba(255, 255, 255, 0.54) 50%, transparent 76%);
  transform: translateX(-130%);
  transition: transform var(--motion-slow);
}

.button:hover {
  transform: translate(var(--magnet-x), calc(var(--magnet-y) - 2px));
}

.button:hover::after {
  transform: translateX(130%);
}

.button-primary {
  --glass-tint: rgba(255, 210, 31, 0.6);
  --glass-accent: rgba(255, 210, 31, 0.58);
  --glass-shadow: rgba(190, 147, 0, 0.24);
  border-color: rgba(255, 255, 255, 0.82);
  color: #17130a;
  background:
    radial-gradient(120% 92% at 50% 118%, rgba(255, 255, 255, 0.82), transparent 48%),
    radial-gradient(88% 72% at 50% -18%, rgba(255, 255, 255, 0.95), transparent 58%),
    linear-gradient(180deg, rgba(255, 226, 64, 0.92), rgba(255, 210, 31, 0.44)),
    linear-gradient(135deg, rgba(255, 210, 31, 0.58), rgba(255, 255, 255, 0.15));
  box-shadow:
    0 18px 44px rgba(190, 147, 0, 0.28),
    inset 0 1px 1px rgba(255, 255, 255, 0.94),
    inset 0 -12px 20px rgba(255, 255, 255, 0.32),
    inset 0 -1px 0 rgba(40, 36, 22, 0.12);
}

.button-primary:hover {
  box-shadow:
    0 24px 54px rgba(190, 147, 0, 0.34),
    inset 0 1px 1px rgba(255, 255, 255, 0.96),
    inset 0 -14px 24px rgba(255, 255, 255, 0.38),
    inset 0 -1px 0 rgba(40, 36, 22, 0.12);
  filter: saturate(1.04);
}

.button-secondary,
.button-ghost {
  color: var(--ink);
  background:
    radial-gradient(120% 90% at 50% 118%, rgba(255, 255, 255, 0.74), transparent 48%),
    radial-gradient(88% 72% at 50% -18%, rgba(255, 255, 255, 0.94), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.22));
  border-color: rgba(255, 255, 255, 0.76);
  box-shadow:
    0 14px 36px rgba(32, 29, 18, 0.1),
    inset 0 1px 1px rgba(255, 255, 255, 0.92),
    inset 0 -10px 18px rgba(255, 255, 255, 0.3);
}

.button-secondary[data-goal="max_click"] {
  color: #fff;
  background:
    radial-gradient(120% 90% at 50% 118%, rgba(255, 255, 255, 0.34), transparent 48%),
    radial-gradient(88% 72% at 50% -18%, rgba(255, 255, 255, 0.48), transparent 58%),
    linear-gradient(180deg, rgba(227, 30, 36, 0.84), rgba(227, 30, 36, 0.54));
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow:
    0 18px 42px rgba(227, 30, 36, 0.24),
    inset 0 1px 1px rgba(255, 255, 255, 0.46),
    inset 0 -10px 18px rgba(255, 255, 255, 0.16);
}

.button-ghost {
  color: var(--graphite);
  background:
    radial-gradient(120% 90% at 50% 118%, rgba(255, 255, 255, 0.56), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.12));
}

.button-ghost:hover,
.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 18px 44px rgba(32, 29, 18, 0.13),
    inset 0 1px 1px rgba(255, 255, 255, 0.96),
    inset 0 -12px 22px rgba(255, 255, 255, 0.34);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  width: min(100%, 430px);
  gap: 10px;
}

.hero-meta span,
.tag-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  padding: 9px 13px;
  color: var(--graphite);
  font-size: 0.92rem;
  font-weight: 750;
  flex: 1 1 0;
  justify-content: center;
  min-width: 0;
  text-align: center;
  white-space: normal;
}

.tag-cloud span {
  flex: 0 1 auto;
  max-width: 100%;
}

.hero-meta span:first-child {
  flex: 0 1 152px;
  min-width: 152px;
  border-color: rgba(227, 30, 36, 0.26);
  color: var(--brand-red);
  background: rgba(227, 30, 36, 0.06);
}

.hero-meta span:nth-child(2) {
  flex: 1 1 238px;
}

.quiet-card,
.glass-card {
  position: relative;
  border: 1px solid var(--line-premium);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 254, 249, 0.82));
  box-shadow: var(--shadow-card);
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.quiet-card p,
.glass-card p,
.process-list span,
.form-note {
  color: var(--muted);
}

.hero-visual {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  display: grid;
  place-items: center;
  min-height: 514px;
  padding: 0;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform var(--motion-medium);
  translate: 0 0;
  overflow: visible;
  animation: workstation-float 9s ease-in-out infinite;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.2), transparent 58%);
  opacity: 0;
  transform: translateX(-22%);
  transition: opacity var(--motion-medium), transform var(--motion-slow);
}

.hero-visual:hover {
  box-shadow: none;
}

.hero-visual:hover::after {
  opacity: 1;
  transform: translateX(18%);
}

.hero-visual-art {
  width: 100%;
  max-width: 100%;
  min-height: 0;
  aspect-ratio: 1.64;
  padding: 0;
  border-radius: 34px;
  background: transparent;
}

.hero-visual-art::after {
  opacity: 0.55;
}

.hero-product-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  box-shadow: 0 42px 108px rgba(48, 45, 38, 0.14);
  mask-image: linear-gradient(90deg, transparent 0, rgba(0, 0, 0, 0.82) 9%, #000 28%, #000 100%);
}

.hero-service-card {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 3px;
  min-width: 142px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(39, 36, 28, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(16px);
  pointer-events: none;
  animation: hero-card-drift 8s ease-in-out infinite;
}

.hero-service-card::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 15px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--brand-yellow);
  box-shadow: 18px 0 0 rgba(227, 30, 36, 0.86);
}

.hero-service-card span {
  padding-left: 36px;
  font-size: 0.82rem;
  font-weight: 950;
  line-height: 1.2;
}

.hero-service-card small {
  padding-left: 36px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
  line-height: 1.24;
}

.hero-service-card-exchange {
  left: 2%;
  top: 11%;
}

.hero-service-card-reports {
  left: 10%;
  bottom: 28%;
  animation-delay: -2.2s;
}

.hero-service-card-edo {
  right: 4%;
  top: 24%;
  min-width: 154px;
  animation-delay: -3.5s;
}

.hero-service-card-cash {
  right: 2%;
  bottom: 21%;
  animation-delay: -5.1s;
}

.hero-proof-card {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 3;
  display: grid;
  gap: 4px;
  max-width: 230px;
  border: 1px solid rgba(64, 58, 42, 0.13);
  border-radius: 16px;
  padding: 13px 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 48px rgba(40, 36, 22, 0.15);
  backdrop-filter: blur(10px);
}

.hero-proof-card span {
  color: var(--brand-red);
  font-size: 0.8rem;
  font-weight: 950;
}

.hero-proof-card strong {
  font-size: 0.98rem;
  line-height: 1.14;
}

.hero-mascot-card {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 3;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: min(180px, calc(100% - 36px));
  max-width: 180px;
  border: 1px solid rgba(64, 58, 42, 0.14);
  border-radius: 18px;
  padding: 8px 12px 8px 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 28px rgba(40, 36, 22, 0.08);
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.hero-mascot-card img,
.mascot-portrait img,
.price-mascot-note img,
.lead-mascot-card img {
  display: block;
  height: auto;
  object-fit: contain;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.hero-mascot-card img {
  width: 56px;
  max-height: 56px;
}

.hero-mascot-card span {
  min-width: 0;
  color: var(--graphite);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.25;
  overflow-wrap: break-word;
}

.visual-backdrop {
  position: absolute;
  inset: 12px;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 14px;
  object-fit: cover;
  opacity: 0.18;
  filter: saturate(0.9);
}

.diagnostic-console {
  position: relative;
  z-index: 2;
  width: min(100%, 454px);
  border: 1px solid rgba(42, 41, 37, 0.1);
  border-radius: 28px;
  padding: 18px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.86)),
    var(--surface);
  box-shadow: 0 28px 80px rgba(40, 36, 22, 0.18);
  transform: translateY(-24px);
}

.console-top,
.console-status,
.console-footer {
  display: flex;
  align-items: center;
}

.console-top {
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.console-logo {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: var(--ink);
  background: var(--brand-yellow);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7), 0 12px 24px rgba(190, 147, 0, 0.18);
  font-weight: 950;
}

.console-top strong {
  border: 1px solid rgba(28, 141, 73, 0.16);
  border-radius: 999px;
  padding: 7px 10px;
  color: #188449;
  background: rgba(28, 141, 73, 0.08);
}

.console-status {
  justify-content: space-between;
  margin: 22px 0 16px;
  padding: 20px;
  border-radius: 22px;
  color: var(--surface);
  background:
    linear-gradient(135deg, rgba(227, 30, 36, 0.92), rgba(161, 18, 22, 0.95)),
    var(--brand-red);
  box-shadow: 0 18px 34px rgba(227, 30, 36, 0.2);
}

.console-status span {
  font-size: 1.06rem;
  font-weight: 850;
}

.console-status strong {
  font-size: 2.22rem;
  line-height: 1;
}

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

.metric {
  border: 1px solid rgba(231, 224, 203, 0.86);
  border-radius: 18px;
  padding: 14px;
  background: #fffefa;
}

.metric span,
.module-row span,
.console-footer span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.metric strong {
  display: block;
  margin-top: 6px;
  font-size: 1.05rem;
}

.module-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.module-row {
  display: grid;
  grid-template-columns: 148px 1fr;
  align-items: center;
  gap: 12px;
}

.module-row i {
  position: relative;
  height: 10px;
  border-radius: 999px;
  background: rgba(42, 41, 37, 0.08);
  overflow: hidden;
}

.module-row i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-yellow), var(--brand-red));
}

.console-footer {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.console-footer span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 10px;
  background: var(--surface);
}

.service-wallet {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(262px, calc(100% - 36px));
  gap: 8px;
}

.wallet-card {
  display: grid;
  gap: 6px;
  min-height: 88px;
  border: 1px solid rgba(231, 224, 203, 0.96);
  border-radius: 18px;
  padding: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 38px rgba(40, 36, 22, 0.13);
  transition: transform var(--motion-fast), box-shadow var(--motion-fast);
}

.wallet-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(40, 36, 22, 0.18);
}

.wallet-card span,
.wallet-card small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1.25;
}

.wallet-card strong {
  align-self: end;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.12;
}

.wallet-card-primary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), transparent 64%),
    var(--brand-yellow);
  border-color: rgba(42, 41, 37, 0.12);
}

.wallet-card-red {
  color: var(--surface);
  background: var(--brand-red);
  border-color: rgba(227, 30, 36, 0.8);
}

.wallet-card-red span,
.wallet-card-red small,
.wallet-card-red strong {
  color: var(--surface);
}

.status-panel {
  position: absolute;
  left: 30px;
  bottom: 34px;
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 60px);
  gap: 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 11px 14px;
  color: var(--ink);
  background: rgba(255, 253, 246, 0.92);
  box-shadow: 0 12px 28px rgba(55, 45, 24, 0.14);
  font-weight: 850;
}

.status-dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-yellow);
  box-shadow: 0 0 0 5px rgba(255, 210, 31, 0.22);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: -2px 0 34px;
  border: 1px solid rgba(231, 224, 203, 0.92);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 48px rgba(40, 36, 22, 0.08);
  overflow: hidden;
}

.trust-strip div {
  min-height: 96px;
  padding: 18px 18px;
  border-right: 1px solid rgba(231, 224, 203, 0.8);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.34rem;
  line-height: 1.1;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.45;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 26px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  max-width: none;
  gap: 26px;
  align-items: end;
}

.split-heading p:last-child {
  margin: 0 0 4px;
  font-size: 0.98rem;
  line-height: 1.52;
}

.section-heading h2 {
  margin-bottom: 0;
}

.product-section {
  padding-top: 18px;
}

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

.product-card {
  position: relative;
  min-height: 220px;
  border: 1px solid var(--line-premium);
  border-radius: 22px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 220, 0.34)),
    var(--surface);
  box-shadow: 0 20px 50px rgba(32, 29, 18, 0.09);
  overflow: hidden;
  transition: transform var(--motion-fast), border-color var(--motion-fast), box-shadow var(--motion-fast);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(227, 30, 36, 0.22);
  box-shadow: 0 28px 68px rgba(32, 29, 18, 0.13);
}

.product-card::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: 86px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-yellow), var(--brand-red));
  opacity: 0.38;
}

.product-card span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--brand-red);
  font-size: 0.82rem;
  font-weight: 900;
}

.product-card h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

.product-card p {
  margin: 0;
  line-height: 1.62;
}

.route-visual-section {
  padding-top: 48px;
}

.mascot-section {
  position: relative;
  padding-top: 58px;
  padding-bottom: 74px;
  isolation: isolate;
}

.mascot-section::before {
  content: "";
  position: absolute;
  inset: 26px -26px 18px;
  z-index: -1;
  border: 1px solid rgba(64, 58, 42, 0.08);
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 210, 31, 0.18), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(227, 30, 36, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 252, 239, 0.2));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  pointer-events: none;
}

.mascot-section .section-heading {
  margin-bottom: 28px;
}

.mascot-command-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  perspective: 1200px;
}

.mascot-card {
  --mascot-delay: 0ms;
  position: relative;
  display: grid;
  grid-template-rows: 142px minmax(104px, 1fr);
  min-height: 274px;
  border: 1px solid var(--line-premium);
  border-radius: 22px;
  padding: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 251, 235, 0.54)),
    var(--surface);
  box-shadow: 0 18px 46px rgba(32, 29, 18, 0.075);
  overflow: hidden;
  isolation: isolate;
  transform-style: preserve-3d;
  transition: transform var(--motion-medium), border-color var(--motion-fast), box-shadow var(--motion-fast), background var(--motion-fast);
}

.mascot-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 80% 14%, rgba(255, 210, 31, 0.18), transparent 32%),
    linear-gradient(125deg, rgba(255, 210, 31, 0.1), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), transparent 48%);
  opacity: 0.72;
  transition: opacity var(--motion-medium), transform var(--motion-medium);
}

.mascot-card::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  z-index: 1;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-yellow), var(--brand-red));
  opacity: 0.26;
  transform: scaleX(0.34);
  transform-origin: left center;
  transition: transform var(--motion-medium), opacity var(--motion-medium);
}

.mascot-card:hover {
  transform: translateY(-6px) rotateX(1.4deg);
  border-color: rgba(227, 30, 36, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(255, 250, 229, 0.68)),
    var(--surface);
  box-shadow: 0 30px 72px rgba(32, 29, 18, 0.13);
}

.mascot-card:hover::before {
  opacity: 0.95;
  transform: translate3d(0, -4px, 0);
}

.mascot-card:hover::after {
  opacity: 0.64;
  transform: scaleX(1);
}

.mascot-card-wide {
  grid-column: span 2;
}

.mascot-portrait {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  height: 142px;
  margin: 0 0 16px;
  border: 1px solid rgba(64, 58, 42, 0.09);
  border-radius: 18px;
  padding: 10px;
  background:
    radial-gradient(circle at 50% 76%, rgba(255, 210, 31, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 251, 232, 0.42));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 12px 28px rgba(32, 29, 18, 0.045);
  overflow: visible;
}

.mascot-portrait::before {
  content: "";
  position: absolute;
  right: 18%;
  bottom: 17px;
  left: 18%;
  height: 16px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(32, 29, 18, 0.16), transparent 70%);
  filter: blur(8px);
  opacity: 0.72;
  transform: translateY(4px);
}

.mascot-portrait::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 14px;
  background: linear-gradient(110deg, transparent 26%, rgba(255, 255, 255, 0.38) 48%, transparent 70%);
  opacity: 0;
  transform: translateX(-24%);
  transition: opacity var(--motion-medium), transform var(--motion-slow);
  pointer-events: none;
}

.mascot-portrait img {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: min(148px, 92%);
  max-height: 128px;
  filter: none;
  animation: mascot-idle 5.8s ease-in-out infinite;
  animation-delay: var(--mascot-delay);
  transition: transform var(--motion-medium);
}

.mascot-card:hover .mascot-portrait::after {
  opacity: 1;
  transform: translateX(24%);
}

.mascot-card:hover .mascot-portrait img {
  transform: translate3d(0, -8px, 0);
}

.mascot-card div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  min-width: 0;
}

.mascot-card span {
  color: var(--brand-red);
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1.25;
  text-transform: uppercase;
}

.mascot-card strong {
  min-width: 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.34;
  overflow-wrap: break-word;
}

.mascot-card:nth-child(1) {
  --mascot-delay: 0ms;
}

.mascot-card:nth-child(2) {
  --mascot-delay: 160ms;
}

.mascot-card:nth-child(3) {
  --mascot-delay: 320ms;
}

.mascot-card:nth-child(4) {
  --mascot-delay: 480ms;
}

.mascot-card:nth-child(5) {
  --mascot-delay: 640ms;
}

.mascot-card:nth-child(6) {
  --mascot-delay: 800ms;
}

.mascot-card:nth-child(7) {
  --mascot-delay: 960ms;
}

.product-section .cta-band,
#cases .cta-band,
#trust .cta-band,
#faq .cta-band,
#knowledge .knowledge-media-pair {
  display: none;
}

#mascots .mascot-card {
  grid-template-rows: 126px minmax(76px, 1fr);
  min-height: 226px;
}

#mascots .mascot-portrait {
  height: 126px;
  margin-bottom: 12px;
}

#mascots .mascot-portrait img {
  max-height: 116px;
}

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

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

.flow-visual {
  position: relative;
  margin: 0;
  border: 1px solid var(--line-premium);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow-premium);
  overflow: hidden;
}

.flow-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: inherit;
}

.flow-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
}

.section-media,
.media-tile,
.lead-visual,
.knowledge-article-media {
  position: relative;
  margin: 0;
  border: 1px solid var(--line-premium);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow-premium);
  overflow: hidden;
  isolation: isolate;
}

.section-media::after,
.media-tile::after,
.lead-visual::after,
.knowledge-article-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.14), transparent 54%);
}

.section-media img,
.media-tile img,
.lead-visual img,
.knowledge-article-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7.6;
  object-fit: cover;
  object-position: center;
  transition: transform var(--motion-slow), filter var(--motion-medium);
}

.section-media:hover img,
.media-tile:hover img,
.lead-visual:hover img,
.knowledge-article-media:hover img {
  transform: scale(1.018);
  filter: saturate(1.02) contrast(1.01);
}

.product-media {
  margin: 0 0 18px;
}

.service-visual-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) repeat(2, minmax(0, 0.91fr));
  gap: 14px;
  margin: 0 0 18px;
}

.service-visual-showcase-wide {
  position: relative;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  margin-bottom: 22px;
  overflow: clip;
}

.service-visual-showcase-wide::before {
  content: "";
  position: absolute;
  inset: -26px -18px 18px;
  z-index: 0;
  border-radius: 34px;
  background:
    radial-gradient(50% 80% at 18% 22%, rgba(255, 221, 0, 0.18), transparent 62%),
    radial-gradient(44% 72% at 82% 35%, rgba(220, 28, 19, 0.1), transparent 66%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.18));
  filter: blur(8px);
  opacity: 0.72;
  pointer-events: none;
}

.service-suite-media,
.service-visual-points {
  position: relative;
  z-index: 1;
}

.service-suite-media {
  min-height: 0;
  aspect-ratio: 16 / 7;
  border-radius: 26px;
  overflow: hidden;
  box-shadow:
    0 30px 78px rgba(32, 29, 18, 0.11),
    0 1px 0 rgba(255, 255, 255, 0.92) inset;
}

.service-suite-media::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.34), transparent 26%, transparent 72%, rgba(255, 255, 255, 0.22)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 44%);
  pointer-events: none;
}

.service-suite-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
}

.service-visual-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.service-visual-points span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  padding: 0 13px;
  color: var(--graphite);
  background:
    radial-gradient(78% 140% at 50% 0%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.48) 56%, rgba(255, 255, 255, 0.28)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(248, 246, 237, 0.28));
  box-shadow:
    0 12px 26px rgba(32, 29, 18, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 -10px 22px rgba(255, 221, 0, 0.08) inset;
  backdrop-filter: blur(14px) saturate(1.14);
  font-size: 0.82rem;
  font-weight: 850;
}

.media-tile {
  min-height: 220px;
  box-shadow: 0 24px 64px rgba(32, 29, 18, 0.1);
}

.media-tile img {
  min-height: 0;
}

.media-tile-large img {
  object-position: center;
}

.knowledge-media {
  margin: 0 0 18px;
}

.knowledge-media-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 0;
}

.trust-media {
  margin: 0 0 18px;
}

.lead-visual {
  margin: 22px 0 18px;
  border-radius: 22px;
  box-shadow: 0 22px 58px rgba(32, 29, 18, 0.1);
}

.lead-visual img {
  aspect-ratio: 16 / 9;
}

.knowledge-article-media {
  margin: 0 0 22px;
}

.formats-section {
  padding-top: 54px;
}

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

.format-card {
  position: relative;
  display: grid;
  min-height: 300px;
  border: 1px solid var(--line-premium);
  border-radius: 22px;
  padding: 22px;
  background: var(--surface);
  box-shadow: 0 18px 46px rgba(32, 29, 18, 0.07);
  overflow: hidden;
  transition: transform var(--motion-fast), border-color var(--motion-fast), box-shadow var(--motion-fast);
}

.format-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 22px 22px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-yellow), var(--brand-red));
  opacity: 0.22;
}

.format-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 58px rgba(40, 36, 22, 0.12);
}

.format-card span {
  display: inline-flex;
  width: fit-content;
  height: 32px;
  align-items: center;
  border: 1px solid rgba(227, 30, 36, 0.18);
  border-radius: 999px;
  padding: 0 10px;
  color: var(--brand-red);
  background: rgba(227, 30, 36, 0.06);
  font-size: 0.78rem;
  font-weight: 900;
}

.format-card h3 {
  margin: 28px 0 12px;
  font-size: 1.24rem;
}

.format-card p {
  margin: 0 0 22px;
  line-height: 1.55;
}

.format-card a {
  align-self: end;
  width: fit-content;
  border-bottom: 2px solid var(--brand-yellow);
  padding-bottom: 4px;
  color: var(--ink);
  font-weight: 900;
}

.featured-format {
  border-color: rgba(212, 195, 119, 0.96);
  background:
    linear-gradient(180deg, rgba(255, 210, 31, 0.16), transparent 46%),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.problem-grid,
.service-grid,
.case-grid,
.pricing-grid,
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

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

.problem-card,
.service-card,
.case-card,
.price-card,
.guarantee-grid .glass-card {
  min-height: 156px;
  padding: 24px;
}

.problem-card,
.service-card,
.case-card {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.problem-card:hover,
.service-card:hover,
.case-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.problem-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 42px;
  border-top: 1px solid rgba(222, 213, 194, 0.82);
}

.problem-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  min-height: 0;
  border: 0;
  border-bottom: 1px solid rgba(222, 213, 194, 0.82);
  border-radius: 0;
  padding: 18px 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.problem-card:hover {
  transform: translateX(4px);
  border-color: rgba(200, 185, 145, 0.95);
  box-shadow: none;
}

.problem-card span,
.icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 12px;
  font-weight: 900;
}

.icon {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), transparent 62%),
    var(--brand-yellow);
}

.problem-card span {
  border: 1px solid rgba(227, 30, 36, 0.18);
  color: var(--brand-red);
  background: rgba(227, 30, 36, 0.06);
}

.problem-card span {
  margin: 0;
}

.problem-card h3 {
  margin: 0;
  font-size: 1.02rem;
}

.service-card,
.case-card,
.price-card {
  box-shadow: 0 8px 18px rgba(55, 45, 24, 0.045);
}

.service-card {
  position: relative;
  min-height: 0;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 220, 0.24)),
    var(--surface);
  isolation: isolate;
}

.service-card:nth-child(n + 5) {
  background: rgba(255, 254, 250, 0.82);
  box-shadow: none;
}

.service-card:nth-child(n + 5) .icon {
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  opacity: 0.84;
}

.case-card,
.knowledge-teaser-card,
.trust-proof-grid .glass-card {
  background: rgba(255, 254, 250, 0.9);
  box-shadow: 0 8px 22px rgba(55, 45, 24, 0.045);
}

.service-card .icon {
  width: auto;
  min-width: 42px;
  padding: 0 9px;
  font-size: 0.86rem;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand-yellow), var(--brand-red));
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: calc(var(--radius) - 1px);
  background: linear-gradient(135deg, rgba(255, 210, 31, 0.08), transparent 48%);
  opacity: 0;
  transition: opacity var(--motion-fast);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card p {
  line-height: 1.56;
}

.service-example {
  margin-top: 14px;
  border-top: 1px solid rgba(231, 224, 203, 0.84);
  padding-top: 13px;
  color: var(--graphite);
  font-size: 0.9rem;
  font-weight: 750;
}

.service-card a,
.format-card a {
  position: relative;
  z-index: 1;
}

.service-card a {
  display: inline-flex;
  width: fit-content;
  margin-top: 16px;
  border-bottom: 2px solid var(--brand-yellow);
  padding-bottom: 4px;
  color: var(--ink);
  font-weight: 900;
}

.case-card {
  min-height: 0;
  padding: 22px 24px;
}

.case-card p {
  margin-bottom: 10px;
  line-height: 1.56;
}

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

.case-card strong {
  color: var(--ink);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(280px, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  border: 1px solid var(--line-premium);
  border-radius: 20px;
  padding: 18px;
  background:
    linear-gradient(90deg, rgba(255, 210, 31, 0.17), rgba(255, 255, 255, 0.96) 54%),
    var(--surface);
  box-shadow: 0 26px 68px rgba(32, 29, 18, 0.1);
}

.cta-band strong {
  color: var(--ink);
  font-size: 1.12rem;
}

.cta-band span {
  color: var(--muted);
  line-height: 1.45;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.cta-actions .button {
  min-width: 146px;
}

.cta-band-compact {
  margin-top: 18px;
  background:
    linear-gradient(90deg, rgba(255, 210, 31, 0.12), rgba(255, 255, 255, 0.98) 58%),
    var(--surface);
}

.process-section {
  border-top: 1px solid rgba(222, 213, 194, 0.72);
  border-bottom: 1px solid rgba(222, 213, 194, 0.72);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 10px 16px;
  padding: 22px;
}

.process-list li::before {
  counter-increment: process;
  content: counter(process, decimal-leading-zero);
  grid-row: span 2;
  color: var(--brand-red);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.1;
}

.process-list strong {
  color: var(--ink);
  line-height: 1.25;
}

.process-list span {
  line-height: 1.55;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-cloud span {
  background: var(--surface);
}

.pricing-section {
  position: relative;
}

.price-table {
  display: grid;
  padding: 0;
}

.price-table div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, auto);
  gap: 16px;
  align-items: center;
  min-height: 70px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(231, 224, 203, 0.86);
}

.price-table div:last-child {
  border-bottom: 0;
}

.price-table span {
  color: var(--graphite);
  font-weight: 800;
}

.price-table strong {
  color: var(--brand-red);
  font-size: 1.18rem;
  line-height: 1.15;
  text-align: right;
}

.price-mascot-note,
.lead-mascot-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(231, 224, 203, 0.92);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 210, 31, 0.09), rgba(255, 255, 255, 0.96) 58%),
    var(--surface);
  box-shadow: 0 16px 40px rgba(32, 29, 18, 0.065);
}

.price-mascot-note {
  max-width: 680px;
  margin: 18px auto 20px;
  padding: 10px 16px 10px 10px;
}

.lead-mascot-card {
  max-width: 580px;
  margin-top: 18px;
  padding: 10px 14px 10px 10px;
}

.price-mascot-note img,
.lead-mascot-card img {
  width: auto;
  max-width: 82px;
  max-height: 90px;
}

.price-mascot-note p,
.lead-mascot-card p {
  display: grid;
  gap: 4px;
  margin: 0;
  max-width: none;
  min-width: 0;
}

.price-mascot-note strong,
.lead-mascot-card strong {
  min-width: 0;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.26;
  overflow-wrap: break-word;
}

.price-mascot-note span,
.lead-mascot-card span {
  min-width: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.42;
  overflow-wrap: break-word;
}

.price-card strong {
  display: block;
  margin-bottom: 16px;
  color: var(--brand-red);
  font-size: 1.42rem;
  line-height: 1.12;
}

.price-card p {
  line-height: 1.6;
}

.featured {
  border-color: var(--line-strong);
  background:
    linear-gradient(180deg, rgba(255, 210, 31, 0.14), transparent 46%),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.price-label {
  display: inline-flex;
  margin: 0 0 18px;
  border: 1px solid rgba(227, 30, 36, 0.18);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--brand-red);
  background: rgba(227, 30, 36, 0.06);
  font-size: 0.78rem;
  font-weight: 900;
}

.centered {
  display: flex;
  width: fit-content;
  margin: 28px auto 0;
}

.guarantee-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
  border-top: 1px solid rgba(222, 213, 194, 0.82);
}

.guarantee-grid .glass-card {
  min-height: 0;
  border: 0;
  border-bottom: 1px solid rgba(222, 213, 194, 0.82);
  border-radius: 0;
  padding: 18px 0 18px 34px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.guarantee-grid .glass-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 14px;
  height: 14px;
  border: 4px solid var(--brand-yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(42, 41, 37, 0.12);
}

.quiz-section {
  border-top: 1px solid rgba(222, 213, 194, 0.72);
  border-bottom: 1px solid rgba(222, 213, 194, 0.72);
}

.quiz-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
}

.quiz-form fieldset {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(231, 224, 203, 0.88);
  border-radius: 20px;
  padding: 18px;
  background: #fffefa;
}

.quiz-form legend {
  padding: 0 6px;
  color: var(--ink);
  font-weight: 900;
}

.quiz-form label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--graphite);
  font-weight: 750;
  line-height: 1.3;
}

.quiz-form input[type="radio"] {
  width: auto;
  accent-color: var(--brand-red);
}

.quiz-contact,
.quiz-form button,
.quiz-form .form-note {
  grid-column: 1 / -1;
}

.quiz-contact {
  display: grid !important;
  gap: 8px;
}

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

.trust-proof-grid .glass-card {
  min-height: 150px;
  padding: 22px;
}

.trust-proof-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--brand-red);
  font-size: 1.28rem;
  line-height: 1.12;
}

.trust-proof-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.faq-section {
  padding-top: 52px;
}

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

.faq-item {
  border: 1px solid rgba(231, 224, 203, 0.92);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 214, 0.28)),
    var(--surface);
  box-shadow: 0 16px 42px rgba(40, 36, 22, 0.08);
  overflow: hidden;
  transition: border-color var(--motion-fast), box-shadow var(--motion-fast), transform var(--motion-fast);
}

.faq-item:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: 0 22px 54px rgba(40, 36, 22, 0.1);
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 20px 56px 20px 22px;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.25;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--brand-yellow);
  transform: translateY(-50%);
  transition: transform var(--motion-fast), background var(--motion-fast);
}

.faq-item[open] summary::after {
  background: rgba(227, 30, 36, 0.1);
  color: var(--brand-red);
  transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
  margin: 0;
  border-top: 1px solid rgba(231, 224, 203, 0.84);
  padding: 0 22px 22px;
  line-height: 1.6;
}

.knowledge-teaser {
  position: relative;
}

.knowledge-teaser-grid,
.knowledge-grid {
  display: grid;
  gap: 14px;
}

.knowledge-teaser-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.knowledge-teaser-card,
.knowledge-card,
.knowledge-related-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid var(--line-premium);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 220, 0.46)),
    var(--surface);
  box-shadow: 0 18px 42px rgba(32, 29, 18, 0.065);
  color: var(--ink);
  text-decoration: none;
  transition: transform var(--motion-fast), border-color var(--motion-fast), box-shadow var(--motion-fast), background var(--motion-fast);
  isolation: isolate;
}

.knowledge-card[hidden] {
  display: none;
}

.knowledge-teaser-card::before,
.knowledge-card::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 0;
  height: 2px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--brand-yellow), var(--brand-red));
  opacity: 0.9;
}

.knowledge-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 0 38%, rgba(255, 255, 255, 0.72) 46%, transparent 58% 100%);
  opacity: 0;
  transform: translateX(-42%);
  transition: opacity var(--motion-fast), transform var(--motion-medium);
  pointer-events: none;
}

.knowledge-teaser-card:hover,
.knowledge-card:hover,
.knowledge-related-card:hover {
  transform: translateY(-4px);
  border-color: rgba(227, 30, 36, 0.26);
  box-shadow: 0 28px 66px rgba(32, 29, 18, 0.12);
}

.knowledge-card:hover::after {
  opacity: 1;
  transform: translateX(42%);
}

.knowledge-teaser-card {
  min-height: 154px;
  padding: 24px 20px 20px;
}

.knowledge-teaser-card span,
.knowledge-card span {
  color: var(--brand-red);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.knowledge-teaser-card strong,
.knowledge-card strong {
  margin-top: 18px;
  font-size: 1.02rem;
  line-height: 1.28;
}

.knowledge-page {
  background:
    linear-gradient(180deg, rgba(255, 210, 31, 0.11) 0, rgba(255, 255, 255, 0) 420px),
    linear-gradient(90deg, rgba(227, 30, 36, 0.032), rgba(255, 255, 255, 0) 42%),
    var(--page);
}

.knowledge-page .topbar {
  margin-top: 22px;
}

.knowledge-index-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: 28px;
  align-items: stretch;
  padding-top: 54px;
}

.knowledge-index-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 330px;
  border-radius: 20px;
  padding: 28px;
  overflow: hidden;
}

.knowledge-index-panel::before {
  content: "";
  position: absolute;
  inset: 18px 18px auto auto;
  z-index: 3;
  width: 74px;
  height: 74px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), transparent 54%),
    var(--brand-yellow);
  box-shadow: 0 18px 40px rgba(190, 147, 0, 0.18);
  animation: knowledge-float 5.8s ease-in-out infinite;
}

.knowledge-index-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 248, 220, 0.92) 68%);
}

.knowledge-panel-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
  opacity: 0.28;
  filter: saturate(0.96);
  transform: scale(1.04);
}

.knowledge-index-panel > :not(.knowledge-panel-art) {
  position: relative;
  z-index: 2;
}

.knowledge-index-panel strong {
  color: var(--brand-red);
  font-size: 4.8rem;
  line-height: 0.92;
  font-weight: 950;
}

.knowledge-index-panel span {
  margin-top: 12px;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.2;
}

.knowledge-index-panel p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.knowledge-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.24fr);
  gap: 16px;
  align-items: end;
  margin: -24px 0 20px;
  border-radius: 20px;
  padding: 18px;
}

.knowledge-search {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.knowledge-search span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.knowledge-search input {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line-premium);
  border-radius: 14px;
  padding: 0 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  font-weight: 750;
  outline: none;
  transition: border-color var(--motion-fast), box-shadow var(--motion-fast), background var(--motion-fast);
}

.knowledge-search input:focus {
  border-color: rgba(227, 30, 36, 0.38);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(255, 210, 31, 0.22);
}

.knowledge-status {
  display: grid;
  align-content: center;
  min-height: 54px;
  border: 1px solid var(--line-premium);
  border-radius: 14px;
  padding: 10px 14px;
  background: linear-gradient(135deg, rgba(255, 210, 31, 0.22), rgba(255, 255, 255, 0.9));
}

.knowledge-status strong {
  color: var(--brand-red);
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 950;
}

.knowledge-status span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.25;
}

.knowledge-tabs {
  position: sticky;
  top: 96px;
  z-index: 12;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border: 1px solid var(--line-premium);
  border-radius: 18px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 50px rgba(32, 29, 18, 0.09);
  backdrop-filter: blur(12px);
}

.knowledge-tabs a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border-radius: 999px;
  padding: 0 13px;
  color: var(--graphite);
  background: rgba(255, 248, 220, 0.66);
  font-size: 0.88rem;
  font-weight: 850;
}

.knowledge-tabs a span,
.knowledge-tabs a small {
  display: inline-flex;
  align-items: center;
}

.knowledge-tabs a {
  gap: 8px;
}

.knowledge-tabs small {
  justify-content: center;
  min-width: 26px;
  min-height: 22px;
  border-radius: 999px;
  padding: 0 7px;
  color: var(--ink);
  background: var(--brand-yellow);
  font-size: 0.76rem;
  font-weight: 950;
}

.knowledge-empty {
  margin: 18px 0 0;
  border: 1px solid rgba(227, 30, 36, 0.2);
  border-radius: 20px;
  padding: 18px 20px;
  color: var(--graphite);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 44px rgba(40, 36, 22, 0.06);
  font-weight: 800;
  line-height: 1.55;
}

.knowledge-empty[hidden] {
  display: none;
}

.knowledge-category {
  padding: 72px 0 0;
}

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

.knowledge-card {
  min-height: 168px;
  padding: 22px 20px 20px;
}

.knowledge-card small {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.knowledge-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 18px 0 36px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.knowledge-breadcrumbs a {
  color: var(--graphite);
  text-decoration: underline;
  text-decoration-color: rgba(227, 30, 36, 0.25);
  text-underline-offset: 4px;
}

.knowledge-hero {
  max-width: 880px;
  padding: 38px 0 44px;
}

.knowledge-hero h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: 3.05rem;
}

.knowledge-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.knowledge-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(231, 224, 203, 0.92);
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--graphite);
  font-size: 0.86rem;
  font-weight: 850;
}

.knowledge-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
  gap: 34px;
  align-items: start;
  padding-bottom: 100px;
}

.knowledge-body {
  display: grid;
  gap: 18px;
}

.knowledge-block {
  border: 1px solid var(--line-premium);
  border-radius: 18px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(32, 29, 18, 0.06);
}

.knowledge-block h2 {
  margin-bottom: 16px;
  font-size: 1.36rem;
}

.knowledge-block ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.knowledge-block li {
  position: relative;
  padding-left: 24px;
  color: var(--graphite);
  line-height: 1.62;
}

.knowledge-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-yellow);
  box-shadow: inset 0 0 0 2px rgba(42, 41, 37, 0.12);
}

.knowledge-block p {
  margin: 0;
  color: var(--graphite);
  line-height: 1.68;
}

.knowledge-note {
  border-color: rgba(227, 30, 36, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 210, 31, 0.17), rgba(255, 255, 255, 0.94) 52%),
    var(--surface);
}

.knowledge-sources a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(227, 30, 36, 0.32);
  text-underline-offset: 4px;
}

.knowledge-sidebar {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 16px;
}

.knowledge-cta {
  border-radius: 18px;
  padding: 22px;
}

.knowledge-cta strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.1rem;
  line-height: 1.25;
}

.knowledge-cta p {
  color: var(--muted);
  line-height: 1.58;
}

.knowledge-related {
  display: grid;
  gap: 9px;
}

.knowledge-related-card {
  min-height: 46px;
  justify-content: center;
  border-radius: 14px;
  padding: 11px 13px;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.32;
}

.landing-page .site-shell {
  padding-top: 0;
}

.landing-page .topbar {
  margin-top: 22px;
}

.mini-landing-hero {
  padding-top: 48px;
}

.ad-pages-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.tag-cloud + .ad-pages-grid {
  margin-top: 18px;
}

.ad-page-link {
  display: flex;
  align-items: center;
  min-height: 72px;
  border: 1px solid rgba(231, 224, 203, 0.92);
  border-radius: 18px;
  padding: 16px 18px;
  background: rgba(255, 254, 250, 0.92);
  box-shadow: 0 18px 40px rgba(28, 26, 21, 0.06);
  color: var(--ink);
  font-weight: 900;
  line-height: 1.22;
  text-decoration: none;
  transition: transform var(--motion-fast), border-color var(--motion-fast), box-shadow var(--motion-fast);
}

.ad-page-link:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 34, 39, 0.26);
  box-shadow: 0 24px 54px rgba(28, 26, 21, 0.1);
}

.lead-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 30px;
  align-items: start;
  padding-bottom: 100px;
}

.lead-copy p {
  max-width: 580px;
  font-size: 1.04rem;
  line-height: 1.65;
}

.lead-hints {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.lead-hints li {
  position: relative;
  min-height: 42px;
  border: 1px solid rgba(231, 224, 203, 0.9);
  border-radius: 999px;
  padding: 10px 16px 10px 42px;
  color: var(--graphite);
  background: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.lead-hints li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border: 3px solid var(--brand-yellow);
  border-radius: 50%;
  transform: translateY(-50%);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
}

.form-brief {
  display: grid;
  grid-column: 1 / -1;
  gap: 6px;
  border: 1px solid rgba(255, 210, 31, 0.5);
  border-radius: 18px;
  padding: 14px 16px;
  background:
    linear-gradient(135deg, rgba(255, 210, 31, 0.18), rgba(255, 255, 255, 0.92) 62%),
    #fffefa;
}

.form-brief strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.25;
}

.form-brief span {
  color: var(--muted);
  font-size: 0.91rem;
  font-weight: 750;
  line-height: 1.45;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--graphite);
  font-size: 0.94rem;
  font-weight: 800;
}

.lead-form .wide,
.lead-form button,
.form-note {
  grid-column: 1 / -1;
}

.file-input {
  padding: 10px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: #fffefa;
  padding: 13px 14px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(105, 98, 87, 0.72);
}

input:hover,
select:hover,
textarea:hover {
  border-color: var(--line-strong);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand-yellow);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(255, 210, 31, 0.22);
}

select {
  appearance: auto;
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-note.is-error {
  color: var(--brand-red);
}

.mobile-sticky-cta {
  display: none;
}

.is-reveal {
  opacity: 0;
  transform: translate3d(0, 26px, 0) scale(0.988);
  filter: none;
  transition: opacity var(--motion-slow), transform var(--motion-slow), border-color var(--motion-medium), box-shadow var(--motion-medium);
  transition-delay: calc(var(--reveal-index, 0) * 70ms);
  will-change: opacity, transform;
}

.mascot-card.is-reveal,
.price-mascot-note.is-reveal,
.lead-mascot-card.is-reveal {
  filter: none;
}

.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: none;
}

@keyframes premium-drift {
  0% {
    filter: saturate(1) contrast(1);
  }

  100% {
    filter: saturate(1.08) contrast(1.015);
  }
}

@keyframes soft-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -6px;
  }
}

@keyframes workstation-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -8px;
  }
}

@keyframes hero-card-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -7px, 0);
  }
}

@keyframes mascot-idle {
  0%,
  100% {
    translate: 0 0;
  }

  42% {
    translate: 0 -5px;
  }

  58% {
    translate: 0 -3px;
  }
}

@keyframes knowledge-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(-8px, 8px, 0) rotate(4deg);
  }
}

@media (max-width: 980px) {
  .topbar {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    justify-content: flex-start;
    width: 100%;
  }

  .hero,
  .lead-section,
  .knowledge-index-hero,
  .knowledge-layout,
  .knowledge-control {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-mascot-card {
    display: none;
  }

  .hero-visual {
    min-height: 500px;
  }

  .trust-strip,
  .format-grid,
  .mascot-command-grid,
  .quiz-form,
  .trust-proof-grid,
  .ad-pages-grid,
  .knowledge-teaser-grid,
  .knowledge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-visual-showcase,
  .knowledge-media-pair {
    grid-template-columns: 1fr;
  }

  .knowledge-tabs,
  .knowledge-sidebar {
    position: static;
  }

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

  .problem-grid,
  .service-grid,
  .case-grid,
  .pricing-grid,
  .product-strip,
  .guarantee-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band {
    grid-template-columns: 1fr;
  }

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

@media (min-width: 761px) and (max-width: 980px) {
  .topbar {
    align-items: center;
    flex-wrap: nowrap;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
    gap: 16px;
    align-items: center;
    min-height: 560px;
    padding-top: 12px;
  }

  .hero-copy {
    max-width: 430px;
  }

  h1,
  .hero h1 {
    font-size: 2.24rem;
    line-height: 1.04;
  }

  .hero-text {
    max-width: 410px;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .hero-actions .button {
    min-height: 48px;
    padding-inline: 16px;
  }

  .hero-meta span {
    min-height: 34px;
    padding: 7px 11px;
    font-size: 0.82rem;
  }

  .hero-visual {
    min-height: 400px;
  }

  .hero-visual-art {
    aspect-ratio: 1.36;
  }

  .hero-service-card {
    min-width: 118px;
    padding: 11px 12px;
  }

  .hero-service-card span,
  .hero-service-card small {
    padding-left: 28px;
  }

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

@media (min-width: 761px) and (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: auto;
  }

  .hero-copy {
    max-width: 620px;
  }

  h1,
  .hero h1 {
    max-width: 620px;
    font-size: 2.34rem;
    line-height: 1.06;
  }

  .hero-text {
    max-width: 560px;
  }

  .hero-actions,
  .hero-meta {
    width: min(100%, 500px);
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-visual-art {
    aspect-ratio: 1.58;
  }

  .service-visual-showcase-wide::before {
    inset: 0;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 88px;
  }

  body::before {
    inset: 0;
    background-size: 34px 34px, 34px 34px, auto, auto;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.44) 0, rgba(0, 0, 0, 0.22) 52%, transparent 720px);
    transform: none;
  }

  body::after {
    opacity: 0.52;
    transform: none;
  }

  .site-shell {
    width: calc(100% - 32px);
    padding: 0;
    overflow-x: clip;
  }

  .topbar,
  .hero,
  .hero-copy,
  .hero-actions,
  .hero-meta,
  .hero-visual,
  .section-media,
  .mascot-command-grid,
  .service-visual-showcase,
  .media-tile,
  .section-heading,
  .trust-strip,
  .format-grid,
  .quiz-form,
  .trust-proof-grid,
  .ad-pages-grid,
  .knowledge-teaser-grid,
  .knowledge-media-pair,
  .knowledge-grid,
  .knowledge-tabs,
  .knowledge-layout,
  .knowledge-control,
  .knowledge-block,
  .knowledge-cta,
  .faq-grid,
  .price-table,
  .problem-grid,
  .service-grid,
  .case-grid,
  .pricing-grid,
  .guarantee-grid,
  .process-list,
  .lead-section,
  .lead-form {
    max-width: calc(100vw - 32px);
  }

  .topbar {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    padding: 12px;
    overflow: hidden;
  }

  .brand,
  .nav-actions,
  .nav-cta,
  .nav-phone {
    min-width: 0;
  }

  .nav-actions {
    display: grid;
    width: auto;
    grid-template-columns: 1fr;
  }

  .nav-cta {
    display: none;
  }

  .nav-phone {
    width: auto;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0 12px;
    background: var(--surface);
    font-size: 0.92rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-links {
    display: none;
  }

  .section {
    padding: 42px 0;
    scroll-margin-top: 18px;
  }

  .hero {
    gap: 20px;
    padding-top: 8px;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
  }

  h1,
  .hero h1 {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: 1.58rem;
    line-height: 1.14;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 1.55rem;
    line-height: 1.14;
  }

  .hero-text {
    font-size: 0.98rem;
    line-height: 1.55;
  }

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

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

  .button {
    min-height: 48px;
    padding: 0 16px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero-meta span,
  .tag-cloud span {
    max-width: 100%;
  }

  .hero-meta {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-meta span {
    justify-content: center;
    min-width: 0;
    width: 100%;
    text-align: center;
    white-space: normal;
  }

  .hero-meta span:first-child,
  .hero-meta span:nth-child(2) {
    flex: 1 1 auto;
    min-width: 0;
  }

  .problem-grid,
  .service-grid,
  .service-visual-showcase,
  .case-grid,
  .pricing-grid,
  .trust-strip,
  .format-grid,
  .quiz-form,
  .trust-proof-grid,
  .ad-pages-grid,
  .knowledge-teaser-grid,
  .knowledge-media-pair,
  .knowledge-grid,
  .faq-grid,
  .product-strip,
  .guarantee-grid,
  .process-list,
  .lead-form {
    grid-template-columns: 1fr;
  }

  #services .service-grid,
  #knowledge .knowledge-teaser-grid {
    grid-template-columns: 1fr;
  }

  .service-visual-showcase-wide::before {
    inset: 0;
    border-radius: 26px;
    filter: blur(6px);
  }

  .service-suite-media {
    aspect-ratio: 1.18;
    border-radius: 22px;
  }

  .service-suite-media img {
    aspect-ratio: 1.18;
    object-position: 42% center;
  }

  .service-visual-points {
    gap: 6px;
  }

  .service-visual-points span {
    flex: 1 1 calc(50% - 6px);
    justify-content: center;
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.78rem;
    text-align: center;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-section {
    padding-top: 28px;
  }

  .formats-section {
    padding-top: 36px;
  }

  .route-visual-section {
    padding-top: 36px;
  }

  .product-card {
    min-height: 0;
    border-radius: 20px;
    padding: 20px;
  }

  .mascot-section {
    padding-top: 38px;
  }

  .mascot-command-grid {
    grid-template-columns: 1fr;
  }

  .mascot-card,
  .mascot-card-wide {
    grid-column: auto;
    grid-template-columns: 92px minmax(0, 1fr);
    grid-template-rows: auto;
    align-items: center;
    min-height: 0;
    padding: 12px;
  }

  .mascot-portrait {
    height: 96px;
    margin: 0;
    padding: 6px;
  }

  .mascot-portrait img {
    max-width: 80px;
    max-height: 80px;
  }

  .product-card span {
    margin-bottom: 22px;
  }

  .section-media,
  .media-tile,
  .lead-visual,
  .knowledge-article-media {
    border-radius: 22px;
  }

  .section-media img,
  .media-tile img,
  .lead-visual img,
  .knowledge-article-media img {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .trust-strip {
    margin: 8px 0 12px;
    border-radius: 22px;
  }

  .trust-strip div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(231, 224, 203, 0.8);
    padding: 18px;
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .trust-strip strong {
    font-size: 1.18rem;
  }

  .mobile-section-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 0 0 18px;
    padding: 4px 0 0;
    overflow: visible;
    scrollbar-width: none;
  }

  .mobile-section-nav::-webkit-scrollbar {
    display: none;
  }

  .mobile-section-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    min-height: 38px;
    border: 1px solid rgba(212, 195, 119, 0.78);
    border-radius: 999px;
    padding: 0 8px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 8px 20px rgba(40, 36, 22, 0.07);
    font-size: 0.84rem;
    font-weight: 850;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
  }

  .problem-card,
  .service-card,
  .case-card,
  .format-card,
  .price-card,
  .guarantee-grid .glass-card,
  .lead-form {
    padding: 20px;
  }

  .form-brief {
    padding: 13px 14px;
  }

  .problem-grid,
  .guarantee-grid {
    gap: 0;
  }

  .problem-card {
    grid-template-columns: 46px 1fr;
    padding: 16px 0;
  }

  .guarantee-grid .glass-card {
    padding: 16px 0 16px 30px;
  }

  .process-list li {
    grid-template-columns: 52px 1fr;
    padding: 20px;
  }

  .hero-visual {
    display: block;
    min-height: 0;
    padding: 10px;
  }

  .hero-visual-art {
    aspect-ratio: 1.16;
    padding: 0;
    border-radius: 24px;
  }

  .hero-product-art {
    object-position: 66% center;
    mask-image: linear-gradient(180deg, #000 0, #000 100%);
  }

  .hero-service-card {
    display: none;
  }

  .hero-proof-card {
    left: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    border-radius: 16px;
    padding: 11px 12px;
  }

  .hero-mascot-card {
    display: none;
  }

  .visual-backdrop {
    inset: 8px;
    height: auto;
    object-position: center 46%;
  }

  .diagnostic-console {
    width: 100%;
    border-radius: 22px;
    padding: 14px;
    transform: none;
  }

  .console-status {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin: 18px 0 14px;
    padding: 18px;
  }

  .console-status strong {
    font-size: 1.68rem;
  }

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

  .module-row {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .service-wallet {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 10px;
  }

  .wallet-card {
    min-height: 92px;
    border-radius: 16px;
    padding: 12px;
  }

  .wallet-card strong {
    font-size: 0.92rem;
  }

  .format-card {
    min-height: 0;
    border-radius: 22px;
  }

  .format-card h3 {
    margin-top: 22px;
  }

  .cta-band {
    grid-template-columns: 1fr;
    border-radius: 22px;
    padding: 18px;
  }

  .cta-actions {
    justify-content: stretch;
  }

  .cta-actions .button {
    width: 100%;
    min-width: 0;
  }

  .price-table div {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 16px 18px;
  }

  .price-table strong {
    text-align: left;
  }

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

  .tag-cloud span {
    width: 100%;
    min-height: 44px;
    padding: 8px 10px;
    justify-content: center;
    font-size: 0.82rem;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .price-mascot-note,
  .lead-mascot-card {
    grid-template-columns: 72px minmax(0, 1fr);
    border-radius: 16px;
  }

  .price-mascot-note {
    margin: 16px 0 18px;
  }

  .price-mascot-note img,
  .lead-mascot-card img {
    max-width: 72px;
    max-height: 78px;
  }

  .quiz-form {
    padding: 16px;
  }

  .quiz-form fieldset {
    border-radius: 18px;
    padding: 16px;
  }

  .trust-proof-grid .glass-card {
    min-height: 0;
    padding: 20px;
  }

  .faq-section {
    padding-top: 34px;
  }

  .knowledge-index-hero {
    gap: 18px;
    padding-top: 28px;
  }

  .knowledge-index-panel {
    min-height: 210px;
    border-radius: 22px;
    padding: 22px;
  }

  .knowledge-index-panel strong {
    font-size: 3.3rem;
  }

  .knowledge-tabs {
    border-radius: 18px;
  }

  .knowledge-tabs a {
    flex: 1 1 100%;
    justify-content: center;
    text-align: center;
  }

  .knowledge-category {
    padding-top: 42px;
  }

  .knowledge-teaser-grid,
  .knowledge-grid {
    grid-template-columns: 1fr;
  }

  .knowledge-control {
    margin: 0 0 18px;
    border-radius: 20px;
    padding: 14px;
  }

  .knowledge-search input {
    min-height: 50px;
    border-radius: 16px;
  }

  .knowledge-teaser-card,
  .knowledge-card {
    min-height: 0;
    border-radius: 20px;
  }

  .knowledge-hero {
    padding: 18px 0 28px;
  }

  .knowledge-hero h1 {
    font-size: 1.72rem;
    line-height: 1.14;
  }

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

  .knowledge-meta span {
    justify-content: center;
    border-radius: 18px;
    min-height: 44px;
    text-align: center;
    white-space: normal;
  }

  .knowledge-layout {
    padding-bottom: 94px;
  }

  .knowledge-block,
  .knowledge-cta {
    border-radius: 20px;
    padding: 20px;
  }

  .knowledge-block h2 {
    font-size: 1.18rem;
  }

  .faq-item {
    border-radius: 18px;
  }

  .faq-item summary {
    min-height: 62px;
    padding: 17px 50px 17px 18px;
  }

  .faq-item summary::after {
    right: 16px;
  }

  .faq-item p {
    padding: 0 18px 18px;
  }

  .lead-hints li {
    border-radius: 18px;
  }

  .flow-visual {
    border-radius: 24px;
  }

  .flow-visual img {
    aspect-ratio: 1 / 1;
    object-position: center;
  }

  .status-panel {
    display: none;
  }

  .lead-section {
    padding-bottom: 94px;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 24px;
    padding: 8px;
    background:
      radial-gradient(120% 90% at 50% 118%, rgba(255, 255, 255, 0.78), transparent 48%),
      radial-gradient(90% 70% at 50% -18%, rgba(255, 255, 255, 0.92), transparent 58%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.3));
    box-shadow:
      0 20px 48px rgba(40, 36, 22, 0.2),
      inset 0 1px 1px rgba(255, 255, 255, 0.94),
      inset 0 -10px 18px rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(18px) saturate(1.2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
    transition: opacity var(--motion-medium), transform var(--motion-medium);
  }

  .mobile-sticky-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-sticky-cta.is-suppressed {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
  }

  .mobile-sticky-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 18px;
    color: var(--ink);
    font-weight: 900;
  }

  .mobile-sticky-cta a:first-child {
    background:
      radial-gradient(120% 90% at 50% 118%, rgba(255, 255, 255, 0.76), transparent 48%),
      radial-gradient(90% 70% at 50% -18%, rgba(255, 255, 255, 0.92), transparent 58%),
      linear-gradient(180deg, rgba(255, 226, 64, 0.92), rgba(255, 210, 31, 0.48));
    box-shadow:
      0 12px 28px rgba(190, 147, 0, 0.24),
      inset 0 1px 1px rgba(255, 255, 255, 0.94),
      inset 0 -9px 16px rgba(255, 255, 255, 0.32);
  }

  .mobile-sticky-cta a:last-child {
    border: 1px solid rgba(255, 255, 255, 0.76);
    background:
      radial-gradient(120% 90% at 50% 118%, rgba(255, 255, 255, 0.72), transparent 48%),
      radial-gradient(90% 70% at 50% -18%, rgba(255, 255, 255, 0.92), transparent 58%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0.24));
    box-shadow:
      0 10px 24px rgba(40, 36, 22, 0.1),
      inset 0 1px 1px rgba(255, 255, 255, 0.94),
      inset 0 -8px 14px rgba(255, 255, 255, 0.3);
  }

  .is-reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

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

  .is-reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  html {
    --ambient-shift-x: 0px;
    --ambient-shift-y: 0px;
    --ambient-shift-x-soft: 0px;
    --ambient-shift-y-soft: 0px;
    --scroll-depth: 0;
  }
}
