:root {
  --bg: #ece0cf;
  --bg-elevated: rgba(248, 240, 230, 0.82);
  --bg-elevated-strong: rgba(245, 236, 223, 0.94);
  --bg-soft: rgba(236, 226, 211, 0.72);
  --surface: rgba(255, 250, 243, 0.72);
  --surface-strong: rgba(255, 252, 246, 0.9);
  --line: rgba(124, 100, 78, 0.18);
  --line-strong: rgba(103, 79, 58, 0.28);
  --text: #2e241b;
  --text-soft: #564436;
  --muted: #735f4d;
  --accent-blue: #7f97a7;
  --accent-cyan: #9eb7b2;
  --accent-violet: #9a8e7f;
  --accent-gold: #b88a63;
  --shadow: 0 32px 70px rgba(91, 65, 42, 0.16);
  --shadow-soft: 0 16px 34px rgba(102, 75, 52, 0.12);
  --radius-xl: 40px;
  --radius-lg: 30px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --container: 1220px;
  --section-safe-x: clamp(24px, 5vw, 72px);
  --panel-bg: linear-gradient(180deg, rgba(255, 252, 246, 0.82), rgba(246, 238, 227, 0.7));
  --panel-bg-strong: linear-gradient(180deg, rgba(255, 252, 247, 0.9), rgba(247, 240, 230, 0.8));
  --transition: 260ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 14% 12%, rgba(190, 145, 110, 0.22), transparent 22%),
    radial-gradient(circle at 82% 20%, rgba(133, 165, 171, 0.18), transparent 24%),
    radial-gradient(circle at 22% 74%, rgba(188, 153, 124, 0.16), transparent 22%),
    linear-gradient(180deg, #f2e8da 0%, #eadcca 48%, #e5d7c6 100%);
  overflow-x: hidden;
}

body::selection {
  background: rgba(184, 138, 99, 0.28);
  color: #221913;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-bg,
.site-bg > * {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.site-bg {
  z-index: -10;
}

.orb {
  filter: blur(54px);
  opacity: 0.7;
  animation: drift 22s ease-in-out infinite alternate;
}

.orb-a {
  background:
    radial-gradient(circle at 16% 18%, rgba(189, 145, 106, 0.24), transparent 18%),
    radial-gradient(circle at 74% 22%, rgba(159, 183, 176, 0.14), transparent 15%);
}

.orb-b {
  background:
    radial-gradient(circle at 80% 70%, rgba(168, 142, 115, 0.2), transparent 18%),
    radial-gradient(circle at 28% 82%, rgba(137, 165, 171, 0.14), transparent 20%);
  animation-duration: 28s;
}

.orb-c {
  background:
    radial-gradient(circle at 55% 18%, rgba(255, 255, 255, 0.3), transparent 24%),
    radial-gradient(circle at 54% 60%, rgba(182, 144, 112, 0.14), transparent 16%);
  animation-duration: 18s;
}

.grid-haze {
  background-image:
    linear-gradient(rgba(116, 95, 78, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(116, 95, 78, 0.08) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.42), transparent 84%);
  opacity: 0.24;
}

.noise {
  opacity: 0.1;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)'/%3E%3C/svg%3E");
}

.site-header,
.section {
  width: min(calc(100% - 52px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  margin-top: 14px;
  padding: 12px 16px 12px 14px;
  border-radius: 22px;
  border: 1px solid rgba(122, 97, 73, 0.16);
  background:
    linear-gradient(180deg, rgba(249, 243, 234, 0.94), rgba(242, 233, 220, 0.86));
  backdrop-filter: blur(16px) saturate(108%);
  box-shadow:
    0 10px 28px rgba(109, 80, 49, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 15px;
  border: 1px solid rgba(117, 90, 65, 0.18);
  background:
    linear-gradient(150deg, rgba(191, 149, 111, 0.24), rgba(159, 183, 176, 0.14));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 8px 20px rgba(121, 94, 68, 0.12);
}

.brand-core {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff8f2 0%, #c68f66 45%, #7f97a7 100%);
  box-shadow:
    0 0 0 7px rgba(183, 142, 106, 0.08),
    0 0 18px rgba(159, 183, 176, 0.2);
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.8rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: #675343;
  font-size: 0.92rem;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  transition: color var(--transition);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125, 97, 75, 0.78), transparent);
  transform: scaleX(0.45);
  opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  opacity: 1;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition);
}

.button::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
}

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

.button-primary {
  color: #fff8f1;
  border-color: rgba(103, 79, 58, 0.24);
  background:
    linear-gradient(145deg, rgba(88, 65, 48, 0.96), rgba(63, 47, 34, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 238, 0.16),
    inset 0 -14px 26px rgba(184, 138, 99, 0.1),
    0 14px 28px rgba(103, 77, 54, 0.18);
}

.button-primary::before {
  background: linear-gradient(90deg, rgba(255, 247, 238, 0.12), transparent 30%, rgba(198, 143, 102, 0.08));
}

.button-secondary,
.button-ghost {
  color: var(--text);
  border-color: rgba(124, 100, 78, 0.2);
  background: rgba(255, 250, 243, 0.74);
  backdrop-filter: blur(12px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.46),
    0 10px 24px rgba(103, 77, 54, 0.1);
}

.button-secondary::before,
.button-ghost::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent);
}

.button-full {
  width: 100%;
}

.section {
  position: relative;
  padding: 108px 0;
  scroll-margin-top: 112px;
  isolation: isolate;
}

#pain::before,
#results::before,
#services::before,
#audience::before,
#how::before,
#scenarios::before,
#solutions::before,
#advantages::before,
#workflow::before,
#faq::before,
#final-cta::before,
#contacts::before {
  content: "";
  position: absolute;
  inset: 18px 0;
  z-index: -1;
  border-radius: 34px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.64;
  filter: saturate(1.02) contrast(0.98) brightness(1.03);
  box-shadow: inset 0 0 0 1px rgba(124, 100, 78, 0.04);
}

#pain::after,
#results::after,
#services::after,
#audience::after,
#how::after,
#scenarios::after,
#solutions::after,
#advantages::after,
#workflow::after,
#faq::after,
#final-cta::after,
#contacts::after {
  content: "";
  position: absolute;
  inset: 18px 0;
  z-index: -1;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(248, 242, 233, 0.16), rgba(248, 242, 233, 0.05)),
    linear-gradient(90deg, rgba(248, 242, 233, 0.72) 0%, rgba(248, 242, 233, 0.34) 34%, rgba(248, 242, 233, 0.26) 100%);
}

#pain::before {
  background-image: url("assets/images/scene-09-laptop-house.jpg");
  background-position: center 34%;
}

#results::before {
  background-image: url("assets/images/scene-03-vision.jpg");
  background-position: center 26%;
}

#services::before {
  background-image: url("assets/images/scene-01-desk-house.jpg");
  background-position: center 16%;
}

#audience::before {
  background-image: url("assets/images/scene-11-brick.jpg");
  background-position: center 30%;
}

#how::before {
  background-image: url("assets/images/scene-10-foundation.jpg");
  background-position: center 34%;
}

#scenarios::before {
  background-image: url("assets/images/scene-02-structure.jpg");
  background-position: center 27%;
}

#solutions::before {
  background-image: url("assets/images/scene-08-house-cut.jpg");
  background-position: center 32%;
}

#advantages::before {
  background-image: url("assets/images/scene-04-office.jpg");
  background-position: center 22%;
}

#workflow::before {
  background-image: url("assets/images/scene-06-time.jpg");
  background-position: center 34%;
}

#faq::before {
  background-image: url("assets/images/scene-05-construction.jpg");
  background-position: center 30%;
}

#contacts::before {
  background-image: url("assets/images/scene-07-path.jpg");
  background-position: center 44%;
}

.hero-section {
  padding-top: 8px;
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(22px, 2.4vw, 34px);
  align-items: center;
  min-height: calc(100vh - 88px);
  min-height: calc(100svh - 88px);
  padding: clamp(14px, 1.9vw, 22px) clamp(18px, 2.2vw, 28px) clamp(18px, 2vw, 24px);
  border-radius: 46px;
  overflow: hidden;
  border: 1px solid rgba(124, 100, 78, 0.18);
  background:
    radial-gradient(circle at 14% 18%, rgba(192, 149, 112, 0.22), transparent 22%),
    radial-gradient(circle at 82% 20%, rgba(149, 175, 181, 0.18), transparent 18%),
    radial-gradient(circle at 70% 70%, rgba(208, 177, 150, 0.18), transparent 22%),
    linear-gradient(145deg, rgba(248, 242, 232, 0.98), rgba(241, 232, 220, 0.96) 62%, rgba(236, 226, 211, 0.99));
  box-shadow:
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    inset 0 0 90px rgba(182, 145, 110, 0.08);
}

.hero-shell::before,
.hero-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-shell::before {
  background: radial-gradient(circle at center, transparent 44%, rgba(115, 86, 61, 0.08) 100%);
}

.hero-shell::after {
  background:
    linear-gradient(90deg, rgba(113, 89, 66, 0.05), transparent 16%, transparent 84%, rgba(113, 89, 66, 0.05)),
    linear-gradient(180deg, rgba(113, 89, 66, 0.03), transparent 12%, transparent 88%, rgba(113, 89, 66, 0.03));
  opacity: 0.72;
}

.hero-copy,
.hero-visual,
.final-card,
.contact-form {
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: grid;
  align-content: start;
  gap: 0;
  padding: clamp(8px, 1vw, 14px) clamp(18px, 2.5vw, 26px) clamp(18px, 2.4vw, 24px);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.74), rgba(246, 238, 227, 0.5));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    0 14px 28px rgba(103, 77, 54, 0.06);
}

.hero-chip {
  display: inline-grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  align-self: start;
  margin-top: -2px;
  margin-bottom: 10px;
  max-width: min(100%, 30rem);
  padding: 8px 12px;
  border-radius: 999px;
  color: #5b4636;
  font-size: 0.74rem;
  line-height: 1.2;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  background: rgba(255, 250, 242, 0.68);
  border: 1px solid rgba(124, 100, 78, 0.16);
  box-shadow: 0 8px 18px rgba(111, 83, 58, 0.08);
}

.hero-chip span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.hero-chip-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fffaf3 0%, #c68f66 44%, #7f97a7 100%);
  box-shadow: 0 0 12px rgba(173, 133, 98, 0.22);
}

.eyebrow,
.stream-label,
.mini-label,
.signal-tag,
.card-index,
.step-number,
.scenario-mark,
.solution-badge,
.process-index,
.contact-label,
.form-kicker,
.matrix-card span {
  margin: 0;
  color: #6a5442;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, rgba(184, 138, 99, 0), rgba(184, 138, 99, 0.95));
}

.hero-copy h1,
.section-head h2,
.final-copy h2,
.contacts-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.hero-copy h1 {
  max-width: 11.6em;
  font-size: clamp(2.56rem, 4vw, 4.45rem);
  text-wrap: balance;
  line-height: 0.9;
}

.section-head {
  max-width: 100%;
  margin-bottom: 16px;
}

.section-shell {
  margin: 0 clamp(22px, 3.2vw, 42px);
  padding: clamp(20px, 2.4vw, 28px);
  border-radius: 32px;
  border: 1px solid rgba(124, 100, 78, 0.1);
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.56), rgba(246, 238, 227, 0.38));
  box-shadow:
    0 14px 28px rgba(103, 77, 54, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.section-intro-card {
  margin-bottom: 12px;
  padding: 18px 22px 16px;
  border-radius: 28px;
}

.section-intro-card .section-text {
  max-width: 42rem;
  margin-top: 8px;
}

.section-shell .section-head,
.section-shell .cards-grid,
.section-shell .workflow-line,
.section-shell .inline-cta,
.section-shell .faq-list {
  padding-inline: 0;
}

:is(#pain, #results, #services, #audience, #how, #scenarios, #solutions, #advantages, #workflow, #contacts) .section-head {
  width: 100%;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
  box-shadow: none;
}

:is(#pain, #results, #services, #audience, #how, #scenarios, #solutions, #advantages, #workflow, #faq) .section-head.section-intro-card {
  padding: 18px 22px 16px;
  border-radius: 28px;
  border: 1px solid rgba(124, 100, 78, 0.08);
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.44), rgba(243, 233, 220, 0.28));
  backdrop-filter: blur(6px);
  box-shadow:
    0 10px 20px rgba(103, 77, 54, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

#pain .section-head h2,
#results .section-head h2,
#services .section-head h2,
#advantages .section-head h2,
#contacts .contacts-copy h2 {
  max-width: none;
}

#pain .section-head h2,
#results .section-head h2 {
  max-width: none;
}

#audience .section-head h2 {
  max-width: none;
}

#how .section-head h2,
#workflow .section-head h2 {
  max-width: none;
}

#scenarios .section-head h2 {
  max-width: none;
}

#solutions .section-head h2 {
  max-width: none;
}

.section-head h2,
.final-copy h2,
.contacts-copy h2 {
  font-size: clamp(1.86rem, 2.45vw, 2.84rem);
  text-wrap: balance;
  color: #251b14;
}

.hero-lead,
.section-text,
.glass-card p,
.soft-card p,
.line-step p,
.scenario-card p,
.solution-card li,
.advantage-card p,
.process-card p,
.faq-answer p,
.final-copy p,
.contact-card p,
.form-intro p,
.form-note {
  color: var(--muted);
  line-height: 1.72;
}

.glass-card p,
.soft-card p,
.scenario-card p,
.solution-card li,
.advantage-card p,
.process-card p,
.line-step p,
.matrix-card p,
.contact-card p,
.contact-form p,
.inline-cta p {
  color: #4f3d30;
}

.hero-lead {
  max-width: 34rem;
  margin: 10px 0 0;
  font-size: 0.96rem;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 16px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  padding: 10px 13px;
  border-radius: 999px;
  color: #5b4636;
  font-size: 0.86rem;
  background: rgba(255, 250, 243, 0.72);
  border: 1px solid rgba(124, 100, 78, 0.14);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 18px rgba(111, 83, 58, 0.06);
}

.hero-visual {
  position: relative;
  min-height: clamp(380px, 48vh, 560px);
  perspective: 1400px;
  transform: translateY(-12px);
  transition: transform 320ms ease;
}

.hero-grid {
  position: absolute;
  inset: 10% 8% 8% 10%;
  border-radius: 36px;
  border: 1px solid rgba(124, 100, 78, 0.12);
  background:
    linear-gradient(rgba(118, 102, 86, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(118, 102, 86, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.46), transparent 92%);
}

.signal-card {
  position: absolute;
  border-radius: 30px;
  border: 1px solid rgba(124, 100, 78, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.88), rgba(245, 237, 226, 0.82));
  backdrop-filter: blur(12px) saturate(105%);
  box-shadow:
    0 20px 34px rgba(103, 77, 54, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.signal-card-main {
  top: 42px;
  right: 18px;
  width: min(100%, 420px);
  padding: 16px;
}

.signal-card-float {
  width: 196px;
  padding: 14px 14px 13px;
}

.signal-card-top {
  top: 4px;
  right: 82px;
  transform: rotate(-5deg);
}

.signal-card-left {
  left: 12px;
  bottom: 122px;
  transform: rotate(-7deg);
}

.signal-card-bottom {
  right: 0;
  bottom: 8px;
  width: 212px;
  transform: rotate(5deg);
}

@media (min-width: 981px) and (max-width: 1460px) {
  .site-header {
    top: 10px;
    gap: 16px;
    margin-top: 10px;
    padding: 10px 14px 10px 12px;
  }

  .site-nav {
    gap: 20px;
    font-size: 0.88rem;
  }

  .header-button {
    min-height: 46px;
    padding: 0 18px;
  }

  .hero-section {
    padding-top: 4px;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.92fr);
    gap: 20px;
    min-height: calc(100vh - 82px);
    min-height: calc(100svh - 82px);
    padding: 14px 20px 16px;
  }

  .hero-copy h1 {
    max-width: 9.6em;
    font-size: clamp(2.5rem, 3.7vw, 4rem);
  }

  .hero-lead {
    max-width: 31rem;
    margin-top: 10px;
    font-size: 0.93rem;
    line-height: 1.56;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 14px;
  }

  .hero-actions .button {
    min-height: 46px;
    padding: 0 18px;
  }

  .hero-points {
    gap: 8px;
    margin-top: 12px;
  }

  .hero-points li {
    padding: 9px 12px;
    font-size: 0.8rem;
  }

  .hero-visual {
    min-height: clamp(340px, 43vh, 470px);
    transform: translateY(-10px);
  }

  .signal-card-main {
    top: 32px;
    right: 10px;
    width: min(100%, 380px);
    padding: 14px;
  }

  .signal-card-float {
    width: 180px;
    padding: 12px 12px 11px;
  }

  .signal-card-top {
    top: 2px;
    right: 70px;
  }

  .signal-card-left {
    left: 8px;
    bottom: 96px;
  }

  .signal-card-bottom {
    right: 0;
    bottom: 0;
    width: 194px;
  }

  .signal-card strong {
    font-size: 1.04rem;
  }

  .signal-card p {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .signal-head {
    gap: 8px;
    font-size: 0.76rem;
  }

  .signal-tag {
    padding: 7px 10px;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
  }

  .stream-item,
  .route-node {
    padding: 11px;
  }

  .stream-item strong,
  .route-node strong {
    font-size: 0.96rem;
  }

  .route-line {
    height: 40px;
  }
}

.signal-card strong,
.glass-card h3,
.soft-card h3,
.line-step h3,
.scenario-card h3,
.solution-card h3,
.advantage-card h3,
.process-card h3,
.form-intro h3,
.matrix-card strong {
  display: block;
  margin: 8px 0 0;
  color: #2c2118;
  font-size: 1.14rem;
  line-height: 1.24;
  letter-spacing: -0.02em;
}

.signal-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

.signal-head {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-size: 0.82rem;
}

.signal-head > span:nth-child(2) {
  flex: 1;
}

.signal-status {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff7ef 0%, #c68f66 46%, #839aaa 100%);
  box-shadow: 0 0 10px rgba(184, 138, 99, 0.18);
}

.signal-tag {
  padding: 8px 12px;
  border-radius: 999px;
  background: transparent;
  border: 0;
}

.signal-stream {
  display: grid;
  gap: 13px;
  margin-top: 16px;
}

.stream-item,
.route-node {
  padding: 15px;
  border-radius: 24px;
  background: transparent;
  border: 0;
}

.stream-item strong,
.route-node strong {
  font-size: 1.02rem;
}

.stream-route {
  display: grid;
  gap: 10px;
}

.route-line {
  height: 54px;
  width: 2px;
  margin-left: 22px;
  background: linear-gradient(180deg, rgba(143, 112, 85, 0.8), rgba(159, 183, 176, 0.24));
  box-shadow: 0 0 10px rgba(143, 112, 85, 0.14);
}

@media (min-width: 981px) and (max-width: 1460px) {
  .signal-card strong {
    font-size: 1.04rem;
  }

  .signal-card p {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .signal-head {
    gap: 8px;
    font-size: 0.76rem;
  }

  .signal-tag {
    padding: 7px 10px;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
  }

  .stream-item,
  .route-node {
    padding: 13px;
  }

  .stream-item strong,
  .route-node strong {
    font-size: 0.96rem;
  }

  .route-line {
    height: 40px;
  }
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding-top: 8px;
  padding-bottom: 34px;
}

.trust-item {
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(124, 100, 78, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 251, 245, 0.78), rgba(243, 233, 220, 0.72));
  color: var(--text-soft);
  text-align: center;
  font-weight: 600;
  backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    0 10px 24px rgba(103, 77, 54, 0.1);
}

.cards-grid {
  display: grid;
  gap: 18px;
}

.services-grid,
.pain-grid,
.results-grid,
.scenario-grid,
.solution-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

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

.glass-card,
.soft-card,
.scenario-card,
.solution-card,
.advantage-card,
.process-card,
.faq-item,
.contact-card,
.contact-form,
.inline-cta,
.line-step,
.matrix-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(124, 100, 78, 0.1);
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.44), rgba(243, 233, 220, 0.28));
  backdrop-filter: blur(6px);
  box-shadow:
    0 10px 20px rgba(103, 77, 54, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.glass-card::before,
.soft-card::before,
.scenario-card::before,
.solution-card::before,
.advantage-card::before,
.process-card::before,
.faq-item::before,
.contact-card::before,
.contact-form::before,
.inline-cta::before,
.line-step::before,
.matrix-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.glass-card,
.soft-card,
.scenario-card,
.solution-card,
.advantage-card,
.process-card {
  padding: 24px;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.glass-card,
.soft-card,
.scenario-card,
.solution-card,
.advantage-card,
.process-card,
.line-step,
.matrix-card {
  border-color: rgba(124, 100, 78, 0.08);
}

.glass-card:hover,
.soft-card:hover,
.scenario-card:hover,
.solution-card:hover,
.advantage-card:hover,
.process-card:hover {
  transform: none;
  box-shadow: none;
}

.card-index,
.process-index,
.scenario-mark,
.solution-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #745b48;
}

.card-index::before,
.process-index::before,
.scenario-mark::before,
.solution-badge::before,
.contact-label::before,
.form-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(184, 138, 99, 0), rgba(184, 138, 99, 0.95));
}

.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.42), rgba(243, 233, 220, 0.3));
  border: 1px solid rgba(124, 100, 78, 0.08);
  backdrop-filter: blur(6px);
  box-shadow:
    0 10px 20px rgba(103, 77, 54, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.inline-cta p {
  max-width: 42rem;
  margin: 0;
  color: #5d4939;
}

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

.line-step {
  padding: 20px 18px;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.4), rgba(243, 233, 220, 0.28));
}

.line-step::after {
  content: "";
  position: absolute;
  top: 34px;
  right: -14px;
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, rgba(143, 112, 85, 0.65), rgba(159, 183, 176, 0.22));
  box-shadow: 0 0 12px rgba(143, 112, 85, 0.12);
}

.line-step:last-child::after {
  display: none;
}

.line-step h3 {
  margin-top: 14px;
}

.solution-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.solution-card li + li {
  margin-top: 10px;
}

.solution-card strong {
  font-size: inherit;
}

.faq-section {
  padding-bottom: 80px;
}

#faq .section-shell {
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.42), rgba(246, 238, 227, 0.22));
  border-color: rgba(124, 100, 78, 0.08);
}

#faq::after {
  background:
    linear-gradient(180deg, rgba(248, 242, 233, 0.1), rgba(248, 242, 233, 0.03)),
    linear-gradient(90deg, rgba(248, 242, 233, 0.58) 0%, rgba(248, 242, 233, 0.22) 34%, rgba(248, 242, 233, 0.16) 100%);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  padding: 0;
  border: 1px solid rgba(124, 100, 78, 0.08);
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.46), rgba(246, 238, 227, 0.32));
  box-shadow:
    0 8px 18px rgba(103, 77, 54, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 22px 24px;
  color: var(--text);
  text-align: left;
  background: transparent;
  border: 0;
}

.faq-question span:first-child {
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(143, 112, 85, 1), rgba(159, 183, 176, 0.92));
  transform: translate(-50%, -50%);
  transition: transform var(--transition), opacity var(--transition);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--transition);
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 24px 0;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 22px;
}

.faq-item.is-open .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
}

.final-cta {
  padding-top: 32px;
}

.final-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(24px, 3vw, 40px);
  padding: clamp(24px, 3.2vw, 34px);
  border-radius: 42px;
  border: 1px solid rgba(124, 100, 78, 0.16);
  background:
    radial-gradient(circle at 18% 18%, rgba(191, 149, 111, 0.14), transparent 26%),
    radial-gradient(circle at 84% 24%, rgba(159, 183, 176, 0.11), transparent 18%),
    radial-gradient(circle at 74% 78%, rgba(217, 188, 162, 0.12), transparent 20%),
    linear-gradient(145deg, rgba(247, 240, 229, 0.72), rgba(239, 230, 217, 0.52));
  box-shadow:
    0 14px 28px rgba(103, 77, 54, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.final-copy p {
  max-width: 38rem;
}

.cta-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.cta-meta span {
  padding: 10px 14px;
  border-radius: 999px;
  color: #5b4636;
  font-size: 0.92rem;
  font-weight: 600;
  background: rgba(255, 250, 243, 0.68);
  border: 1px solid rgba(124, 100, 78, 0.12);
}

.final-matrix {
  display: grid;
  gap: 14px;
}

.matrix-card {
  padding: 18px;
  min-height: 118px;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.42), rgba(244, 235, 223, 0.28));
}

.matrix-card p {
  margin: 10px 0 0;
  color: #685343;
  line-height: 1.58;
  font-size: 0.92rem;
}

.matrix-card strong {
  margin-top: 12px;
  font-size: 1.12rem;
}

.matrix-card-accent {
  background:
    linear-gradient(180deg, rgba(248, 238, 226, 0.94), rgba(239, 227, 212, 0.84));
  border-color: rgba(124, 100, 78, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    0 18px 34px rgba(103, 77, 54, 0.12);
}

.contacts-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
  max-width: 860px;
  margin: 0 auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

#services,
#pain,
#results,
#audience,
#how,
#advantages,
#workflow,
#final-cta,
#scenarios,
#solutions,
#faq,
#contacts {
  padding-top: 72px;
  padding-bottom: 72px;
}

#services {
  padding-top: 52px;
}

#pain .section-head,
#results .section-head,
#services .section-head,
#audience .section-head,
#how .section-head,
#advantages .section-head,
#workflow .section-head,
#scenarios .section-head,
#solutions .section-head,
#faq .section-head,
#contacts .contacts-copy {
  max-width: 100%;
  margin-bottom: 14px;
}

#pain .pain-shell {
  margin: 0 clamp(22px, 3.2vw, 42px);
  padding: clamp(18px, 2.3vw, 26px);
  border-radius: 30px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

#results .section-shell,
#services .section-shell,
#audience .section-shell,
#how .section-shell,
#scenarios .section-shell,
#advantages .section-shell,
#workflow .section-shell,
#solutions .section-shell,
#faq .section-shell {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

#contacts .contacts-grid {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

#pain .section-head {
  max-width: 100%;
  margin-bottom: 12px;
  padding-inline: 0;
}

#pain .section-intro-card {
  max-width: 52rem;
}

#pain .section-text,
#results .section-text,
#services .section-text,
#audience .section-text,
#how .section-text,
#advantages .section-text,
#workflow .section-text,
#contacts .section-text {
  max-width: 52rem;
  margin-top: 6px;
}

#pain .section-text {
  max-width: 60rem;
}

#pain .pain-grid,
#results .results-grid,
#services .services-grid,
#audience .audience-grid,
#advantages .advantages-grid,
#workflow .process-grid {
  gap: 12px;
}

#pain .pain-grid {
  padding-inline: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

#pain .soft-card,
#results .glass-card,
#services .glass-card,
#audience .soft-card,
#advantages .advantage-card,
#workflow .process-card {
  padding: 22px;
}

#contacts .contacts-copy {
  padding: 22px 24px 24px;
}

#pain .soft-card {
  padding: 20px 20px 18px;
}

#pain .soft-card,
#results .glass-card,
#services .glass-card,
#audience .soft-card,
#advantages .advantage-card,
#workflow .process-card,
#how .line-step {
  min-height: 100%;
}

#pain .soft-card h3,
#results .glass-card h3,
#services .glass-card h3,
#audience .soft-card h3,
#advantages .advantage-card h3,
#workflow .process-card h3 {
  font-size: 1.08rem;
}

#pain .soft-card p {
  line-height: 1.58;
}

#results .glass-card p,
#services .glass-card p,
#audience .soft-card p,
#advantages .advantage-card p,
#workflow .process-card p,
#scenarios .scenario-card p {
  max-width: 30rem;
}

#audience .soft-card h3 {
  margin-top: 0;
}

#how .workflow-line {
  gap: 12px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

#how .line-step {
  padding: 18px 16px 16px;
}

#how .line-step::after {
  top: 24px;
}

#how .line-step h3 {
  font-size: 0.98rem;
}

#how .line-step p {
  font-size: 0.92rem;
  line-height: 1.54;
}

#workflow .process-grid {
  align-items: stretch;
}

#workflow .process-grid,
#solutions .solution-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

#solutions .impact-grid {
  margin-top: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

#results .results-grid,
#services .services-grid,
#audience .audience-grid,
#scenarios .scenario-grid,
#advantages .advantages-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

#workflow .process-card {
  padding-top: 20px;
}

#solutions .matrix-card {
  min-height: 0;
  padding: 18px 18px 17px;
  border-radius: 22px;
  border-color: rgba(124, 100, 78, 0.08);
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.78), rgba(244, 235, 223, 0.64));
  box-shadow:
    0 12px 24px rgba(103, 77, 54, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

#solutions .matrix-card strong {
  margin-top: 8px;
  font-size: 1.02rem;
}

#solutions .matrix-card p {
  margin-top: 8px;
  font-size: 0.88rem;
}

#solutions .matrix-card-accent {
  border-color: rgba(124, 100, 78, 0.1);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.contact-identity {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 0;
}

.contact-identity strong {
  font-size: 1.26rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.contact-identity p {
  margin: 0;
  color: #5d4939;
  line-height: 1.6;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 0;
}

.contact-list p {
  margin: 0;
  color: #4f3d30;
  line-height: 1.6;
}

.contact-list span {
  font-weight: 700;
}

.contact-list a {
  text-decoration: underline;
  text-decoration-color: rgba(124, 100, 78, 0.24);
  text-underline-offset: 3px;
}

.contact-card {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border: 1px solid rgba(124, 100, 78, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.44), rgba(243, 233, 220, 0.28));
  box-shadow:
    0 10px 20px rgba(103, 77, 54, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.contact-card strong {
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.contact-card p {
  margin: 0;
}

.contact-card-static {
  cursor: default;
}

.mobile-bar {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 45;
  display: none;
  gap: 10px;
  width: min(calc(100% - 24px), 560px);
  padding: 10px;
  transform: translateX(-50%);
  border-radius: 22px;
  border: 1px solid rgba(124, 100, 78, 0.16);
  background:
    linear-gradient(180deg, rgba(249, 243, 234, 0.94), rgba(242, 233, 220, 0.86));
  backdrop-filter: blur(14px);
  box-shadow:
    0 16px 34px rgba(103, 77, 54, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.mobile-bar .button {
  flex: 1;
  min-height: 48px;
  padding: 0 12px;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.18, 1, 0.26, 1);
}

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

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(0, 18px, 0) scale(1.04);
  }
}

@media (max-width: 1180px) {
  .final-card,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

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

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

  .line-step::after {
    display: none;
  }

  .signal-card-main {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
  }

  .signal-card-top {
    right: 24px;
  }

  .signal-card-left {
    left: 0;
    bottom: 84px;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav {
    display: none;
  }

  .hero-shell {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 14px 16px 18px;
  }

  .services-grid,
  .pain-grid,
  .results-grid,
  .scenario-grid,
  .solution-grid,
  .impact-grid,
  .advantages-grid,
  .audience-grid,
  .process-grid,
  .workflow-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .inline-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-shell {
    margin-inline: 18px;
    padding: 18px;
  }

  #pain .pain-shell {
    margin-inline: 18px;
    padding: 16px;
  }

  #pain .pain-grid {
    grid-template-columns: 1fr;
    padding-inline: 0;
  }
}

@media (max-width: 720px) {
  .site-header,
  .section {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    gap: 12px;
    padding: 10px 12px;
  }

  .brand-copy span {
    display: none;
  }

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

  .section {
    padding: 84px 0;
  }

  .hero-shell,
  .final-card {
    border-radius: 28px;
  }

  .section-shell {
    margin-inline: 12px;
    padding: 14px;
    border-radius: 26px;
  }

  .section-intro-card {
    padding: 16px 18px 14px;
    border-radius: 24px;
  }

  .hero-shell {
    gap: 14px;
    padding: 12px 14px 14px;
  }

  .hero-visual {
    transform: none;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.18rem, 8.8vw, 3.12rem);
  }

  .section-head h2,
  .final-copy h2,
  .contacts-copy h2 {
    font-size: clamp(1.68rem, 7vw, 2.38rem);
    white-space: normal;
  }

  .hero-actions,
  .mobile-bar {
    display: flex;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 46px;
  }

  .hero-points {
    gap: 8px;
    margin-top: 10px;
  }

  .hero-points li {
    width: calc(50% - 4px);
    border-radius: 16px;
    text-align: center;
  }

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

  .signal-card-float {
    width: min(100%, 168px);
    padding: 11px 11px 10px;
  }

  .signal-card-top {
    top: 0;
    right: 8px;
  }

  .signal-card-left {
    left: 0;
    bottom: 82px;
  }

  .signal-card-bottom {
    right: 0;
    bottom: 0;
    width: 176px;
  }

  .signal-card-main {
    top: 28px;
    right: 0;
    width: 100%;
    padding: 13px;
  }

  .stream-item,
  .route-node {
    padding: 10px;
  }

  .stream-item strong,
  .route-node strong,
  .signal-card strong {
    font-size: 0.95rem;
  }

  .signal-card p {
    font-size: 0.84rem;
    line-height: 1.45;
  }

  #pain .pain-shell {
    margin-inline: 12px;
    padding: 12px;
  }

  #pain .section-head {
    padding-inline: 0;
  }

  #pain .pain-grid {
    padding-inline: 0;
    gap: 10px;
    grid-template-columns: 1fr;
  }

  #pain .soft-card {
    padding: 16px;
  }

  .trust-bar,
  .pain-grid,
  .results-grid,
  .services-grid,
  .audience-grid,
  .scenario-grid,
  .solution-grid,
  .impact-grid,
  .advantages-grid,
  .process-grid,
  .workflow-line {
    grid-template-columns: 1fr;
  }

  #results .results-grid,
  #services .services-grid,
  #audience .audience-grid,
  #scenarios .scenario-grid,
  #solutions .solution-grid,
  #solutions .impact-grid,
  #advantages .advantages-grid,
  #workflow .process-grid,
  #how .workflow-line {
    grid-template-columns: 1fr;
  }

  #results .glass-card,
  #services .glass-card,
  #audience .soft-card,
  #scenarios .scenario-card,
  #solutions .solution-card,
  #advantages .advantage-card,
  #workflow .process-card,
  #solutions .matrix-card,
  #how .line-step {
    min-width: 0;
    width: 100%;
    padding: 16px;
  }

  #contacts .contacts-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  #contacts .contacts-copy {
    padding: 18px;
  }

  .contact-card {
    padding: 14px 16px;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-answer p {
    padding-left: 20px;
    padding-right: 20px;
  }

  .faq-item.is-open .faq-answer p {
    padding-bottom: 20px;
  }

  body {
    padding-bottom: 92px;
  }
}

@media (max-width: 430px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand-copy strong {
    font-size: 0.9rem;
    line-height: 1.05;
  }

  .header-button {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .hero-points li {
    width: 100%;
  }

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

  .signal-card-float {
    width: min(100%, 154px);
  }

  .signal-card-left {
    bottom: 72px;
  }
}

@media (min-width: 721px) {
  #pain .section-head h2,
  #results .section-head h2,
  #services .section-head h2,
  #audience .section-head h2,
  #how .section-head h2,
  #scenarios .section-head h2,
  #advantages .section-head h2,
  #workflow .section-head h2,
  #solutions .section-head h2 {
    white-space: nowrap;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
#pain .soft-card h3 {
  margin-top: 0;
}

#results .glass-card p {
  max-width: 22rem;
}
