/*
Theme Name: Tier1 Homepage
Theme URI: https://tier1-homepage.ru/
Author: Tier1.shop
Description: Lightweight landing theme for the Tier1.shop Yandex Business page.
Version: 1.0.0
Requires at least: 6.4
Requires PHP: 8.1
Text Domain: tier1-homepage
*/

:root {
  --ink: #102a2e;
  --muted: #5d7074;
  --paper: #f7faf9;
  --white: #ffffff;
  --teal: #0f7a85;
  --teal-dark: #075b64;
  --teal-soft: #dff2f0;
  --lime: #d9f56d;
  --orange: #ff9b63;
  --line: rgba(16, 42, 46, 0.12);
  --shadow: 0 24px 70px rgba(10, 48, 53, 0.12);
  --radius: 28px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.admin-bar .site-header {
  top: 32px;
}

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.screen-reader-text:focus {
  z-index: 9999;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  clip: auto;
  color: var(--ink);
  background: var(--white);
  border-radius: 10px;
}

.wrap {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 55, 61, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  background: var(--lime);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(217, 245, 109, 0.22);
}

.brand-mark svg {
  width: 22px;
  height: 22px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.site-nav a.button-primary,
.site-nav a.button-primary:hover,
.site-nav a.button-primary:focus-visible {
  color: var(--teal-dark);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button:focus-visible,
summary:focus-visible,
a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.button-primary {
  color: var(--teal-dark);
  background: var(--lime);
  box-shadow: 0 14px 34px rgba(217, 245, 109, 0.2);
}

.button-primary:hover {
  box-shadow: 0 18px 40px rgba(217, 245, 109, 0.3);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.button-light {
  color: var(--teal-dark);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(16, 42, 46, 0.08);
}

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 13px;
  border-radius: 12px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 74px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 12%, rgba(217, 245, 109, 0.2), transparent 28%),
    radial-gradient(circle at 10% 90%, rgba(33, 177, 182, 0.22), transparent 34%),
    #07373d;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 68px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: #b8e7e4;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(217, 245, 109, 0.12);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 6vw, 74px);
  line-height: 0.99;
  letter-spacing: -0.065em;
}

.hero h1 span {
  color: var(--lime);
}

.hero-lead {
  max-width: 670px;
  margin: 27px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}

.hero-price {
  width: fit-content;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin: 20px 0 0;
  padding: 9px 14px;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(217, 245, 109, 0.28);
  border-radius: 999px;
  background: rgba(217, 245, 109, 0.09);
  font-size: 13px;
  font-weight: 700;
}

.hero-price strong {
  color: var(--lime);
  font-size: 19px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin-top: 27px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  font-weight: 650;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-note span::before {
  content: "✓";
  color: var(--lime);
  font-weight: 900;
}

.hero-panel {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
  transform: rotate(1.5deg);
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.panel-label {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 750;
}

.panel-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  color: #244d29;
  background: var(--lime);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.panel-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2d7a37;
}

.chart {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.1));
}

.chart::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 100% 44px;
}

.chart svg {
  position: absolute;
  inset: 18px 14px 12px;
  width: calc(100% - 28px);
  height: calc(100% - 30px);
}

.chart-metric {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 8px 11px;
  color: var(--ink);
  background: var(--white);
  border-radius: 11px;
  box-shadow: 0 10px 30px rgba(0,0,0,.14);
  font-size: 12px;
  font-weight: 850;
}

.panel-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.panel-stat {
  padding: 14px 12px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  background: rgba(4, 34, 38, 0.35);
}

.panel-stat strong {
  display: block;
  color: var(--lime);
  font-size: 19px;
  line-height: 1.2;
}

.panel-stat span {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,.58);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
}

.proof-strip {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof-grid {
  width: min(calc(100% - 40px), 1360px);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.proof-item {
  padding: 5px 30px;
  border-right: 1px solid var(--line);
}

.proof-item:first-child {
  padding-left: 0;
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  color: var(--teal-dark);
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.proof-item span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.section {
  padding: 104px 0;
}

.section-compact {
  padding: 76px 0;
}

.section-white {
  background: var(--white);
}

.section-dark {
  color: var(--white);
  background: #0a3237;
}

.section-head {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.kicker {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-dark .kicker {
  color: #82d7d2;
}

.section h2 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.055em;
}

.section-intro {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section-dark .section-intro {
  color: rgba(255,255,255,.66);
}

.bot-preview-section {
  background: var(--teal-soft);
}

.bot-preview {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: 68px;
}

.bot-preview .section-head {
  margin-bottom: 0;
}

.bot-preview .button {
  margin-top: 28px;
}

.cta-microcopy {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.cta-microcopy-light {
  color: rgba(255,255,255,.62);
  text-align: center;
}

.bot-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(7,91,100,.13);
  border-radius: 30px;
  background: rgba(255,255,255,.7);
  box-shadow: var(--shadow);
}

.bot-menu-item {
  min-height: 156px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.bot-menu-item > span {
  align-self: flex-start;
  padding: 5px 8px;
  color: var(--teal-dark);
  background: var(--lime);
  border-radius: 8px;
  font-size: 10px;
  font-weight: 900;
}

.bot-menu-item strong {
  margin-top: 18px;
  font-size: 18px;
}

.bot-menu-item small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.benefit-card {
  position: relative;
  min-height: 250px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.benefit-number {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border-radius: 14px;
  font-size: 14px;
  font-weight: 900;
}

.benefit-card h3 {
  margin: 30px 0 10px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.process-step {
  position: relative;
  padding: 26px 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  background: rgba(255,255,255,.055);
}

.process-step::after {
  content: "→";
  position: absolute;
  top: 30px;
  right: -15px;
  z-index: 2;
  color: var(--lime);
  font-size: 22px;
}

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

.process-step span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.process-step h3 {
  margin: 28px 0 9px;
  font-size: 20px;
  line-height: 1.2;
}

.process-step p {
  margin: 0;
  color: rgba(255,255,255,.62);
  font-size: 14px;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.case-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 18px 54px rgba(16,42,46,.06);
}

.case-card.featured {
  color: var(--white);
  border-color: transparent;
  background: var(--teal-dark);
}

.case-tag {
  align-self: flex-start;
  padding: 7px 10px;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.featured .case-tag {
  color: var(--teal-dark);
  background: var(--lime);
}

.case-metric {
  margin-top: 26px;
  color: var(--teal-dark);
  font-size: clamp(31px, 3vw, 44px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.055em;
}

.featured .case-metric {
  color: var(--lime);
}

.case-card h3 {
  margin: 16px 0 9px;
  font-size: 19px;
  line-height: 1.25;
}

.case-card p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
}

.featured p {
  color: rgba(255,255,255,.68);
}

.case-period {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.case-period span {
  display: block;
  margin-bottom: 3px;
  color: var(--teal);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.case-source {
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.featured .case-period,
.featured .case-source {
  color: rgba(255,255,255,.6);
}

.featured .case-period {
  border-color: rgba(255,255,255,.14);
}

.featured .case-period span {
  color: var(--lime);
}

.flagship-case {
  padding: 42px;
  color: var(--white);
  border-radius: 30px;
  background:
    radial-gradient(circle at 93% 5%, rgba(217,245,109,.2), transparent 32%),
    var(--teal-dark);
  box-shadow: var(--shadow);
}

.flagship-case-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 46px;
}

.flagship-case h3 {
  max-width: 750px;
  margin: 20px 0 14px;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1.04;
  letter-spacing: -.05em;
}

.flagship-case-head p {
  max-width: 760px;
  margin: 0;
  color: rgba(255,255,255,.7);
}

.flagship-metric {
  min-width: 150px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: rgba(255,255,255,.07);
  text-align: center;
}

.flagship-metric strong,
.flagship-metric span {
  display: block;
}

.flagship-metric strong {
  color: var(--lime);
  font-size: 48px;
  line-height: 1;
  letter-spacing: -.06em;
}

.flagship-metric span {
  margin-top: 8px;
  color: rgba(255,255,255,.58);
  font-size: 11px;
  font-weight: 800;
}

.flagship-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.flagship-facts div {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(3,32,35,.28);
}

.flagship-facts span,
.flagship-facts strong {
  display: block;
}

.flagship-facts span {
  color: rgba(255,255,255,.52);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.flagship-facts strong {
  margin-top: 7px;
  font-size: 17px;
  line-height: 1.3;
}

.flagship-insight {
  margin-top: 18px;
  padding: 22px 24px;
  color: var(--ink);
  border-radius: 18px;
  background: var(--lime);
}

.flagship-insight strong {
  font-size: 13px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.flagship-insight p {
  margin: 7px 0 0;
  font-size: 14px;
}

.case-disclaimer {
  margin: 16px 0 0;
  color: rgba(255,255,255,.55);
  font-size: 12px;
}

.cases-grid-primary {
  margin-top: 22px;
}

.content-disclosure {
  margin-top: 24px;
}

.content-disclosure > summary {
  width: fit-content;
  min-height: 48px;
  display: flex;
  align-items: center;
  margin-inline: auto;
  padding: 11px 18px;
  color: var(--teal-dark);
  border: 1px solid rgba(7,91,100,.22);
  border-radius: 14px;
  background: var(--white);
  font-size: 14px;
  font-weight: 850;
  list-style: none;
  cursor: pointer;
}

.content-disclosure > summary::-webkit-details-marker {
  display: none;
}

.content-disclosure > summary::after {
  content: "+";
  margin-left: 10px;
  font-size: 19px;
}

.content-disclosure[open] > summary::after {
  content: "−";
}

.content-disclosure .hide-label,
.content-disclosure[open] .show-label {
  display: none;
}

.content-disclosure[open] .hide-label {
  display: inline;
}

.disclosure-grid {
  margin-top: 24px;
}

.inline-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 42px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--teal-soft);
}

.inline-cta p {
  margin: 0;
}

.inline-cta p strong,
.inline-cta p span {
  display: block;
}

.inline-cta p span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.inline-cta-dark {
  color: var(--white);
  border-color: transparent;
  background: var(--teal-dark);
}

.inline-cta-dark p span {
  color: rgba(255,255,255,.62);
}

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

.objection-item {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.objection-item summary {
  position: relative;
  padding: 22px 58px 22px 22px;
  font-weight: 850;
  list-style: none;
  cursor: pointer;
}

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

.objection-item summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  border-radius: 50%;
  background: var(--teal-soft);
}

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

.objection-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 14px;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-weight: 850;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.reviews-summary {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: end;
  gap: 42px;
  margin-bottom: 34px;
}

.rating-box {
  padding: 30px;
  border-radius: 26px;
  color: var(--white);
  background: var(--teal-dark);
  box-shadow: var(--shadow);
}

.rating-stars {
  color: var(--lime);
  font-size: 24px;
  letter-spacing: 5px;
}

.rating-box strong {
  display: block;
  margin-top: 18px;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.rating-box p {
  margin: 10px 0 22px;
  color: rgba(255,255,255,.68);
  font-size: 14px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.review-card {
  min-height: 236px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.review-stars {
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 13px;
  letter-spacing: 3px;
}

.review-card blockquote {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: auto;
  padding-top: 20px;
  color: var(--muted);
  font-size: 13px;
}

.review-author strong,
.review-author small {
  display: block;
}

.review-author strong {
  color: var(--ink);
  font-size: 13px;
}

.review-author small {
  margin-top: 2px;
  font-size: 11px;
}

.review-avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border-radius: 50%;
  font-weight: 900;
}

.faq-grid {
  max-width: 900px;
  margin-inline: auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.faq-item summary {
  position: relative;
  padding: 21px 58px 21px 24px;
  list-style: none;
  font-weight: 820;
  cursor: pointer;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 21px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border-radius: 50%;
  transform: translateY(-50%);
}

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

.faq-answer {
  padding: 0 58px 23px 24px;
  color: var(--muted);
  font-size: 15px;
}

.faq-answer p {
  margin: 0;
}

.cta-box {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  overflow: hidden;
  padding: 54px 58px;
  color: var(--white);
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 0%, rgba(217,245,109,.22), transparent 35%),
    var(--teal-dark);
}

.cta-box h2 {
  max-width: 700px;
  font-size: clamp(34px, 4vw, 52px);
}

.cta-box p {
  max-width: 650px;
  margin: 16px 0 0;
  color: rgba(255,255,255,.68);
}

.cta-actions {
  display: grid;
  gap: 10px;
  min-width: 220px;
}

.site-footer {
  padding: 48px 0 30px;
  color: rgba(255,255,255,.65);
  background: #061f23;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 40px;
}

.footer-brand p {
  max-width: 520px;
  margin: 16px 0 0;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 24px;
}

.footer-links a {
  color: rgba(255,255,255,.72);
  font-size: 13px;
  text-underline-offset: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 11px;
}

.attribution-privacy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 22px;
  align-items: center;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  line-height: 1.55;
}

.attribution-privacy p {
  margin: 0;
}

.privacy-opt-out {
  border: 0;
  border-bottom: 1px dashed currentColor;
  padding: 2px 0;
  background: transparent;
  color: rgba(255, 255, 255, .78);
  font: inherit;
  cursor: pointer;
}

.privacy-opt-out:focus-visible {
  outline: 2px solid #d9f56d;
  outline-offset: 4px;
}

.privacy-opt-out-status {
  grid-column: 1 / -1;
  color: #d9f56d;
}

@media (max-width: 720px) {
  .attribution-privacy {
    grid-template-columns: 1fr;
  }
}

.content-shell {
  min-height: 70vh;
  padding: 80px 0;
  background: var(--white);
}

.content-entry {
  max-width: 820px;
  margin-inline: auto;
}

.content-entry h1 {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.content-entry a {
  color: var(--teal-dark);
}

body .clearfy-cookie.clearfy-cookie--bottom {
  right: auto;
  bottom: 18px;
  left: 50%;
  width: min(calc(100% - 28px), 900px);
  padding: 13px 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 54px rgba(7, 55, 61, 0.18);
  transform: translateX(-50%) translateZ(0);
  backdrop-filter: blur(16px);
}

body .clearfy-cookie.clearfy-cookie--bottom.clearfy-cookie-hide {
  opacity: 0;
  transform: translate(-50%, 150%) translateZ(0);
}

body .clearfy-cookie .clearfy-cookie-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
}

body .clearfy-cookie .clearfy-cookie-accept {
  flex: none;
  min-width: 58px;
  margin: 0;
  padding: 9px 14px;
  color: var(--teal-dark);
  border: 0;
  border-radius: 10px;
  background: var(--lime);
  font-weight: 900;
}

@media (max-width: 980px) {
  .site-nav a:not(.button) {
    display: none;
  }

  .hero-grid,
  .reviews-summary,
  .bot-preview {
    grid-template-columns: 1fr;
  }

  .bot-preview {
    gap: 38px;
  }

  .hero-panel {
    max-width: 620px;
    transform: none;
  }

  .benefit-grid,
  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .proof-item:nth-child(2n) {
    border-right: 0;
  }

  .proof-item:nth-child(n+3) {
    margin-top: 16px;
  }

  .proof-item:last-child {
    grid-column: 1 / -1;
    text-align: center;
  }

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

  .process-step:nth-child(2n)::after {
    display: none;
  }

  .flagship-facts {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .cta-actions {
    display: flex;
    flex-wrap: wrap;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  body.admin-bar .site-header {
    top: 46px;
  }

  .wrap {
    width: min(calc(100% - 28px), var(--content));
  }

  .header-inner {
    min-height: 66px;
  }

  .brand {
    gap: 9px;
    font-size: 17px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .site-nav .button {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 12px;
  }

  .hero {
    padding: 64px 0 54px;
  }

  .hero-grid {
    gap: 46px;
  }

  .hero h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .hero-price {
    margin-top: 18px;
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

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

  .hero-panel {
    padding: 17px;
    border-radius: 24px;
  }

  .chart {
    height: 185px;
  }

  .panel-stat {
    padding: 11px 8px;
  }

  .panel-stat strong {
    font-size: 16px;
  }

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

  .proof-item,
  .proof-item:first-child {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child {
    grid-column: auto;
    text-align: left;
    border-bottom: 0;
  }

  .section {
    padding: 76px 0;
  }

  .section-compact {
    padding: 58px 0;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .benefit-grid,
  .process-grid,
  .cases-grid,
  .review-grid,
  .objection-grid,
  .bot-menu {
    grid-template-columns: 1fr;
  }

  .bot-menu {
    padding: 14px;
  }

  .bot-menu-item {
    min-height: 0;
  }

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

  .benefit-card {
    min-height: 0;
  }

  .case-card {
    min-height: 0;
  }

  .flagship-case {
    padding: 28px 22px;
  }

  .flagship-case-head,
  .flagship-facts {
    grid-template-columns: 1fr;
  }

  .flagship-case-head {
    gap: 24px;
  }

  .flagship-metric {
    width: 100%;
  }

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

  .inline-cta .button {
    width: 100%;
  }

  .reviews-summary {
    gap: 28px;
  }

  .review-card {
    min-height: 210px;
  }

  .cta-box {
    padding: 38px 24px;
    border-radius: 25px;
  }

  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }

  body .clearfy-cookie.clearfy-cookie--bottom {
    bottom: 10px;
    padding: 12px;
    font-size: 12px;
  }

  body .clearfy-cookie .clearfy-cookie-container {
    align-items: flex-end;
    gap: 10px;
  }
}

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

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