:root {
  --bg: #000000;
  --bg-soft: #090909;
  --bg-panel: #101010;
  --text: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.74);
  --text-muted: rgba(255, 255, 255, 0.58);
  --line: rgba(255, 255, 255, 0.12);
  --accent: #f26e00;
  --accent-deep: #cc5600;
  --accent-soft: rgba(242, 110, 0, 0.14);
  --font-body: "Montserrat", "Segoe UI", "Trebuchet MS", sans-serif;
  --font-display: "Gilroy", "Montserrat", "Segoe UI", "Trebuchet MS", sans-serif;
  --max: 1820px;
  --content-max: 1840px;
  --radius-2xl: 38px;
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
  --shadow-strong: 0 26px 80px rgba(0, 0, 0, 0.44);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
}

.skip-link {
  position: absolute;
  left: 18px;
  top: -48px;
  z-index: 200;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  transition: top 0.2s ease;
}

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

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

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

p,
li,
input,
textarea,
summary,
label {
  font-size: 16px;
}

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

.narrow {
  width: min(calc(100% - 52px), 1120px);
}

.site-header {
  position: relative;
  z-index: 20;
  background: #000;
  border-bottom: none;
}

.header-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  min-height: 64px;
  padding: 6px 0;
}

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

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  object-position: center;
  flex: 0 0 auto;
}

.brand span {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.brand strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand small {
  color: rgba(255, 255, 255, 0.9);
  font-size: 7px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.header-desktop-meta {
  display: none;
}

.header-address {
  display: block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.18s ease;
}

.header-address:hover {
  opacity: 0.84;
}

.header-social {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff8521 0%, var(--accent) 100%);
  color: #000;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 10px 20px rgba(242, 110, 0, 0.16);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.header-social:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 24px rgba(242, 110, 0, 0.22);
}

.header-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.header-desktop-meta {
  display: none;
  align-items: center;
}

.header-desktop-meta .header-social + .header-social {
  margin-left: 8px;
}

.header-desktop-meta .header-address {
  margin-left: 16px;
}

.header-cta {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  font-weight: 800;
  font-size: 14px;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}

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

.button--primary {
  background: linear-gradient(180deg, #ff8521 0%, var(--accent) 100%);
  color: #fff;
  box-shadow: 0 18px 34px rgba(242, 110, 0, 0.24);
}

.button--primary:hover {
  background: linear-gradient(180deg, #ff7a12 0%, var(--accent-deep) 100%);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.button--light {
  background: #ffffff;
  color: #121212;
}

.menu-toggle {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  flex-direction: column;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.header-nav-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-nav {
  display: none;
}

.site-nav ul {
  display: flex;
  flex-wrap: nowrap;
  gap: 34px;
  justify-content: center;
  margin: 0;
  padding: 10px 0 12px;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
}

.site-nav ul::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.18s ease;
}

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

.breadcrumbs {
  padding: 20px 0 8px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-muted);
  font-size: 14px;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.25);
}

.hero {
  padding: 0;
}

.hero > .container {
  width: 100%;
  max-width: none;
}

.hero-grid {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 0;
  background: #c4c4c4;
}

.hero-copy,
.hero-media {
  grid-area: 1 / 1;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: #0a0a0a;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: brightness(1.02) contrast(0.78) saturate(0.76);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.12) 44%, rgba(0, 0, 0, 0.2) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(0, 0, 0, 0.06) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
  min-height: 560px;
  padding: 56px 0 56px clamp(28px, 5.3vw, 78px);
  background: transparent;
}

.hero-copy > * {
  max-width: 690px;
}

.hero-copy .button-row {
  max-width: none;
}

.eyebrow {
  display: none;
}

.hero h1,
.section h2,
.card h3,
.price-card h3,
.step-card h3,
.faq-item summary {
  font-family: var(--font-display);
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(44px, 4.5vw, 66px);
  line-height: 1.01;
  letter-spacing: 0.01em;
  text-transform: none;
  text-wrap: balance;
}

.accent-word {
  color: var(--accent);
}

.hero-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.52;
  text-wrap: pretty;
}

.hero-subtitle strong {
  color: #fff;
}

.hero-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.55;
  text-wrap: pretty;
}

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

.hero-meta li {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  backdrop-filter: blur(8px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 0;
}

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

.fact-list li {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.hero .fact-list {
  display: none;
}

.hero .button-row .button--secondary {
  display: none;
}

.hero-prices {
  display: grid;
  gap: 14px;
  margin-top: 26px;
  max-width: 560px;
}

.hero-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.hero-price span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-price strong {
  color: #fff;
  font-size: 28px;
}

.hero-media-badge {
  display: none;
}

.hero-arrows {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--accent);
  font-size: 30px;
  line-height: 1;
  transform: translateY(-50%);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.hero-arrow--prev {
  left: 22px;
}

.hero-arrow--next {
  right: 22px;
}

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

.section--muted {
  background: var(--bg);
}

.section--cta {
  padding-top: 24px;
  padding-bottom: 124px;
  background: var(--bg);
}

.section--story {
  padding-top: 38px;
  padding-bottom: 24px;
}

.story-block {
  max-width: 1100px;
}

.story-line {
  width: 164px;
  height: 4px;
  margin: 14px 0 30px;
  background: var(--accent);
}

.story-text {
  max-width: 820px;
  color: var(--text-soft);
  font-size: 20px;
  line-height: 1.72;
  text-wrap: pretty;
}

.story-text p {
  margin: 0 0 22px;
  font-size: inherit;
}

.story-text strong {
  color: #fff;
  font-weight: 800;
}

.section-head {
  max-width: 920px;
  margin-bottom: 20px;
}

.section h2 {
  margin: 0;
  font-size: clamp(34px, 3.6vw, 60px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.section-intro,
.card p,
.card-meta,
.price-text,
.cta-text,
.rich-text,
.rich-text p,
.rich-text li,
.gallery-card figcaption,
.faq-item p,
.form-note,
.footer-bottom p {
  color: var(--text-soft);
}

.section-intro,
.cta-text {
  margin: 0;
  font-size: 17px;
  line-height: 1.58;
  max-width: 720px;
  text-wrap: pretty;
}

.card-grid,
.price-grid,
.step-grid,
.gallery-grid,
.cta-grid,
.faq-list {
  display: grid;
  gap: 26px;
  align-items: start;
}

.card-grid > *,
.price-grid > *,
.step-grid > *,
.gallery-grid > *,
.cta-grid > *,
.faq-list > * {
  min-width: 0;
}

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

.card-grid--4 {
  grid-template-columns: 1fr;
}

.card,
.price-card,
.step-card,
.gallery-card,
.lead-form,
.faq-item,
.cta-grid > div {
  border-radius: var(--radius-xl);
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 220px;
  padding: 30px;
  background: linear-gradient(180deg, #0f0f0f 0%, #141414 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.card-link-wrap {
  display: block;
  height: 100%;
  color: inherit;
}

.card-link-wrap:hover .card,
.card-link-wrap:focus-visible .card,
.price-card:hover,
.step-card:hover,
.gallery-card:hover,
.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(242, 110, 0, 0.28);
}

.card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 800;
  max-width: 100%;
  overflow-wrap: break-word;
  hyphens: auto;
  text-wrap: balance;
}

.card p {
  margin: 0 0 12px;
  font-size: 17px;
  line-height: 1.56;
  text-wrap: pretty;
}

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

.card-list {
  display: grid;
  gap: 10px;
  margin: 8px 0 16px;
  padding: 0;
  list-style: none;
}

.card-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  line-height: 1.55;
}

.card-list li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

.card-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--accent);
  font-weight: 800;
}

.card-tag {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 18px;
  border-radius: 0;
  background: var(--accent);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}

.card--article {
  overflow: hidden;
  min-height: 100%;
  padding: 0;
}

.card--article .card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.card--article .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.32s ease;
}

.card-link-wrap:hover .card--article .card-image img,
.card-link-wrap:focus-visible .card--article .card-image img {
  transform: scale(1.03);
}

.card--article .card-tag {
  align-self: flex-start;
  min-height: 34px;
  margin: 22px 24px 0;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.card--article h3,
.card--article p,
.card--article .card-list,
.card--article .card-meta,
.card--article .card-link {
  padding-left: 24px;
  padding-right: 24px;
}

.card--article h3 {
  margin-top: 16px;
  font-size: 26px;
  line-height: 1.08;
  text-transform: none;
}

.card--article p {
  margin-bottom: 14px;
}

.card--article .card-list {
  margin-top: 4px;
  margin-bottom: 16px;
}

.card--article .card-meta {
  margin-top: auto;
  padding-bottom: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.card--article .card-link {
  margin-top: 10px;
  padding-bottom: 24px;
}

.card--poster {
  min-height: 520px;
  padding: 0;
  overflow: hidden;
  border: none;
  background: transparent;
  border-radius: 32px;
}

.card--poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.2) 34%, rgba(0, 0, 0, 0.78) 100%);
  pointer-events: none;
}

.card--poster .card-image {
  width: 100%;
  height: 100%;
}

.card--poster .card-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center center;
}

.card--poster .card-tag {
  position: absolute;
  bottom: 88px;
  left: 0;
  z-index: 1;
}

.card--poster h3 {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  margin: 0;
  padding: 22px 22px 20px;
  background: linear-gradient(180deg, rgba(39, 29, 17, 0.04) 0%, rgba(49, 41, 31, 0.84) 100%);
  border-radius: 0 0 32px 32px;
  font-size: 26px;
  line-height: 1.04;
  text-transform: uppercase;
}

.card--poster p,
.card--poster .card-meta,
.card--poster .card-link {
  display: none;
}

.price-card,
.step-card,
.gallery-card,
.faq-item,
.lead-form,
.cta-grid > div {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px;
  background: linear-gradient(180deg, #0f0f0f 0%, #151515 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

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

.lead-form > * {
  min-width: 0;
}

.price-card h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 46px;
}

.price-label {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.feature-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.price-card .button {
  margin-top: auto;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

.step-card span {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
}

.step-card h3 {
  font-size: 26px;
  color: #fff;
}

.gallery-card {
  overflow: hidden;
  padding: 0;
}

.gallery-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
}

.gallery-card figcaption {
  margin: 0;
  padding: 18px 20px 20px;
}

.rich-text {
  font-size: 18px;
  line-height: 1.72;
  max-width: 780px;
  text-wrap: pretty;
}

.rich-text h3 {
  margin: 30px 0 12px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.1vw, 30px);
  line-height: 1.16;
}

.rich-text ul,
.rich-text ol {
  margin: 18px 0 22px;
  padding-left: 22px;
}

.rich-text li + li {
  margin-top: 8px;
}

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  color: #fff;
  font-size: 26px;
  font-weight: 800;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 36px;
  line-height: 1;
}

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

.faq-item div {
  padding-top: 0;
  max-width: 780px;
}

.section--toc {
  padding-top: 12px;
  padding-bottom: 16px;
}

.toc-nav {
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  background: linear-gradient(180deg, #0f0f0f 0%, #151515 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.toc-nav ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.toc-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.toc-nav a:hover {
  color: var(--accent);
}

.faq-item p {
  margin: 0;
  line-height: 1.68;
  text-wrap: pretty;
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form label span {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font: inherit;
}

.lead-form textarea {
  resize: vertical;
  min-height: 130px;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: rgba(242, 110, 0, 0.52);
  box-shadow: 0 0 0 4px rgba(242, 110, 0, 0.12);
}

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

.lead-form .button {
  justify-self: start;
}

.form-note,
.form-success {
  margin: 0;
}

.form-success {
  padding: 14px 16px;
  border: 1px solid rgba(242, 110, 0, 0.24);
  border-radius: 14px;
  background: rgba(242, 110, 0, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1.5;
}

.site-footer {
  padding: 60px 0 150px;
  background: #050505;
  color: var(--text-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  gap: 26px;
}

.footer-grid h3 {
  margin-top: 0;
  color: #fff;
}

.footer-logo {
  width: 120px;
  height: auto;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer-bottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-fab {
  position: fixed;
  right: 22px;
  bottom: 104px;
  z-index: 50;
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0;
  box-shadow: 0 18px 34px rgba(242, 110, 0, 0.22);
}

.chat-fab::before {
  content: "";
  width: 20px;
  height: 16px;
  border: 2px solid #fff;
  border-radius: 11px;
}

.chat-fab::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(32deg);
}

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

body.menu-open .header-nav-wrap {
  display: block;
  position: static;
  z-index: auto;
  border-top: none;
  padding: 0 0 14px;
  background: #000;
}

body.menu-open .site-nav {
  display: block;
  background: #090909;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  box-shadow: var(--shadow-strong);
}

body.menu-open .site-nav ul {
  display: grid;
  gap: 16px;
  justify-content: stretch;
  padding: 24px 22px;
}

.page-home .section--catalog {
  padding-top: 18px;
}

.page-home .hero-grid {
  min-height: 640px;
}

.page-home .hero-copy {
  justify-content: center;
  min-height: 640px;
  max-width: 700px;
  padding: 34px 0 44px 52px;
}

.page-home .section--catalog .container {
  width: min(calc(100% - 52px), 1760px);
}

.page-home .section--catalog .section-head {
  max-width: 1120px;
  margin-bottom: 16px;
}

.page-home .section--catalog h2 {
  font-size: clamp(34px, 3.15vw, 54px);
  line-height: 1.02;
}

.page-home .section--catalog .section-intro {
  max-width: 860px;
  font-size: 16px;
  line-height: 1.56;
}

.page-home .section--catalog .card-grid {
  gap: 18px;
}

.page-home .section--catalog .card--poster {
  min-height: 400px;
  border-radius: 28px;
}

.page-home .section--catalog .card--poster .card-image img {
  min-height: 400px;
}

.page-home .section--catalog .card--poster .card-tag {
  bottom: 76px;
  min-height: 42px;
  padding: 8px 15px;
  font-size: 14px;
}

.page-home .section--catalog .card--poster h3 {
  padding: 18px 18px 16px;
  border-radius: 0 0 28px 28px;
  font-size: 22px;
}

.page-home .hero-copy .fact-list,
.page-home .hero-copy .hero-prices {
  display: none;
}

.page-home .hero-subtitle,
.page-home .hero-note {
  max-width: 690px;
}

.page-home .hero-media::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0.18) 44%, rgba(0, 0, 0, 0.24) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(0, 0, 0, 0.08) 100%);
}

.page-home .hero-media img {
  object-position: center center;
  transform: scale(1.14);
  filter: brightness(0.84) contrast(0.86) saturate(0.76);
}

.page-ceny .hero-media img,
.page-korporativy .hero-media img,
.page-faq .hero-media img,
.page-otzyvy .hero-media img {
  object-position: center 62%;
}

.page-home .hero h1 {
  margin-bottom: 18px;
  font-size: clamp(48px, 4.45vw, 68px);
  line-height: 1.01;
}

.page-home .hero-subtitle {
  max-width: 640px;
  font-size: 18px;
}

.page-home .hero-note {
  max-width: 590px;
  margin-top: 14px;
  font-size: 16px;
}

.page-home .button-row {
  margin-top: 30px;
}

.page-home .button-row .button--primary {
  min-height: 54px;
  padding-inline: 28px;
  font-size: 15px;
}

body[class*="page-blog"] .hero-grid {
  min-height: 520px;
}

body[class*="page-blog"] .hero-copy {
  max-width: 860px;
  min-height: 520px;
  padding-top: 52px;
  padding-bottom: 52px;
}

body[class*="page-blog"] .hero-copy > * {
  max-width: 760px;
}

body[class*="page-blog"] .hero h1 {
  font-size: clamp(40px, 4vw, 60px);
  line-height: 1.02;
}

body[class*="page-blog"] .hero-subtitle {
  max-width: 720px;
  font-size: 19px;
  line-height: 1.6;
}

body[class*="page-blog"] .hero-note {
  max-width: 720px;
}

body[class*="page-blog"] .hero-meta {
  gap: 8px;
  margin-top: 20px;
}

body[class*="page-blog"] .hero-meta li {
  min-height: 34px;
  padding: 7px 12px;
  font-size: 12px;
}

body[class*="page-blog"] .section {
  padding: 48px 0;
}

body[class*="page-blog"] .section .container.narrow {
  width: min(calc(100% - 52px), var(--content-max));
}

body[class*="page-blog"] .section h2 {
  font-size: clamp(32px, 3vw, 48px);
}

body[class*="page-blog"] .section-head {
  max-width: 860px;
  margin-bottom: 22px;
}

body[class*="page-blog"] .section-intro {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.62;
}

body[class*="page-blog"] .rich-text {
  max-width: 840px;
  font-size: 19px;
  line-height: 1.8;
}

body[class*="page-blog"] .hero-media img {
  object-position: center center;
  transform: scale(1.03);
  filter: brightness(0.9) contrast(0.82) saturate(0.76);
}

body[class*="page-blog"] .toc-nav {
  padding: 24px 28px;
}

body[class*="page-blog"] .toc-nav a {
  font-size: 17px;
  line-height: 1.56;
}

body[class*="page-blog"] .faq-item summary {
  font-size: clamp(24px, 2.5vw, 30px);
}

body[class*="page-blog"] .section--cta {
  padding-top: 18px;
}

@media (max-width: 1039px) {
  .header-row {
    grid-template-columns: 1fr auto;
    min-height: 68px;
    padding: 10px 0;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .header-desktop-meta,
  .header-cta {
    display: none;
  }

  .header-nav-wrap {
    display: none;
    border-top: none;
  }

  .hero {
    padding-bottom: 0;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy {
    min-height: auto;
    max-width: 680px;
    padding: 196px 24px 100px;
  }

  .page-home .section--catalog {
    padding-top: 14px;
  }

  .page-home .section--catalog .section-head {
    margin-bottom: 14px;
  }

  .page-home .section--catalog h2 {
    font-size: clamp(32px, 5vw, 44px);
  }

  .page-home .section--catalog .section-intro {
    font-size: 16px;
  }

  .page-home .section--catalog .card--poster {
    min-height: 320px;
  }

  .page-home .section--catalog .card--poster .card-image img {
    min-height: 320px;
  }

  .hero-subtitle {
    max-width: none;
    font-size: 17px;
    line-height: 1.5;
  }

  .hero-arrows {
    top: 0;
  }

  .hero-arrow {
    width: 38px;
    height: 38px;
    font-size: 28px;
  }

  .hero-arrow--prev {
    left: 12px;
  }

  .hero-arrow--next {
    right: 12px;
  }

  .section {
    padding: 44px 0;
  }

  .section h2 {
    font-size: clamp(30px, 7.4vw, 42px);
    line-height: 1.04;
  }

  .story-line {
    width: 120px;
    margin-bottom: 28px;
  }

  .story-text {
    font-size: 18px;
    line-height: 1.74;
  }

  .card-grid,
  .price-grid,
  .step-grid,
  .gallery-grid,
  .cta-grid,
  .faq-list {
    gap: 18px;
  }

  .card-grid--2,
  .card-grid--3,
  .price-grid,
  .step-grid,
  .gallery-grid,
  .cta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .page-home .hero-grid,
  .page-home .hero-copy {
    min-height: 620px;
  }

  .page-home .hero-copy {
    padding: 154px 24px 96px;
  }

  .card--poster {
    min-height: 340px;
  }

  .card--poster .card-image img {
    min-height: 340px;
  }

  .gallery-card img {
    height: 280px;
  }

  .card--poster .card-tag {
    bottom: 74px;
    left: 0;
    min-height: 44px;
    padding: 8px 14px;
    font-size: 14px;
  }

  .card--poster h3 {
    font-size: 22px;
    padding: 18px 16px 16px;
  }

  .faq-item summary {
    font-size: 22px;
  }

  body[class*="page-blog"] .hero-copy {
    max-width: 720px;
    padding: 178px 24px 94px;
  }

  body[class*="page-blog"] .hero-grid,
  body[class*="page-blog"] .hero-copy {
    min-height: 560px;
  }

  body[class*="page-blog"] .section {
    padding: 42px 0;
  }

  body[class*="page-blog"] .section .container.narrow {
    width: min(calc(100% - 48px), 100%);
  }

  body[class*="page-blog"] .section h2 {
    font-size: clamp(30px, 6vw, 42px);
  }

  body[class*="page-blog"] .section-intro,
  body[class*="page-blog"] .rich-text {
    font-size: 17px;
  }
}

@media (max-width: 719px) {
  .container,
  .narrow {
    width: min(calc(100% - 24px), 100%);
  }

  .header-row {
    min-height: 66px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    display: none;
  }

  .menu-toggle {
    width: 34px;
    height: 34px;
  }

  .menu-toggle span {
    width: 24px;
    height: 3px;
  }

  .hero-grid {
    min-height: calc(100svh - 66px);
  }

  .hero-copy {
    max-width: 100%;
    padding: 132px 16px 96px;
  }

  .hero-media img {
    filter: brightness(0.95) contrast(0.82) saturate(0.72);
  }

  .page-home .hero-grid {
    min-height: calc(100svh - 66px);
  }

  .page-home .hero-copy {
    min-height: calc(100svh - 66px);
    justify-content: flex-end;
    padding: 128px 16px 96px;
  }

  .page-home .section--catalog {
    padding-top: 8px;
  }

  .page-home .section--catalog .section-head {
    margin-bottom: 12px;
  }

  .page-home .section--catalog h2 {
    font-size: clamp(28px, 10vw, 38px);
    line-height: 1.04;
  }

  .page-home .section--catalog .section-intro {
    font-size: 15px;
    line-height: 1.52;
  }

  .page-home .section--catalog .card--poster {
    min-height: 280px;
  }

  .page-home .section--catalog .card--poster .card-image img {
    min-height: 280px;
  }

  .gallery-card img {
    height: 220px;
  }

  .page-home .section--catalog .card--poster h3 {
    font-size: 18px;
    padding: 16px 14px 14px;
  }

  .page-home .hero .button-row .button:nth-child(n + 2) {
    display: none;
  }

  .page-home .hero-media img {
    transform: scale(1.14);
    object-position: 60% center;
  }

  body[class*="page-blog"] .hero-grid {
    min-height: auto;
  }

  body[class*="page-blog"] .hero-copy {
    min-height: auto;
    padding: 124px 16px 88px;
  }

  body[class*="page-blog"] .hero h1 {
    font-size: clamp(30px, 8.6vw, 40px);
  }

  body[class*="page-blog"] .hero-subtitle {
    font-size: 15px;
    line-height: 1.56;
  }

  body[class*="page-blog"] .hero-note {
    font-size: 14px;
  }

  body[class*="page-blog"] .section {
    padding: 38px 0;
  }

  body[class*="page-blog"] .section .container.narrow {
    width: min(calc(100% - 24px), 100%);
  }

  body[class*="page-blog"] .section h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  body[class*="page-blog"] .section-intro,
  body[class*="page-blog"] .rich-text {
    font-size: 16px;
    line-height: 1.72;
  }

  body[class*="page-blog"] .rich-text h3 {
    margin-top: 26px;
    font-size: 22px;
  }

  body[class*="page-blog"] .hero-meta li {
    min-height: 32px;
    font-size: 11px;
  }

  body[class*="page-blog"] .hero-media img {
    object-position: center center;
    transform: scale(1.02);
  }

  .card--article .card-tag {
    margin: 18px 18px 0;
  }

  .card--article h3,
  .card--article p,
  .card--article .card-list,
  .card--article .card-meta,
  .card--article .card-link {
    padding-left: 18px;
    padding-right: 18px;
  }

  .card--article h3 {
    font-size: 22px;
  }

  .card--article .card-link {
    padding-bottom: 18px;
  }

  .hero h1 {
    font-size: clamp(31px, 8.8vw, 42px);
    line-height: 1.04;
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 1.52;
  }

  .hero-note {
    font-size: 14px;
    line-height: 1.56;
  }

  .hero-meta {
    gap: 8px;
    margin-top: 16px;
  }

  .hero-meta li {
    min-height: 34px;
    padding: 7px 12px;
    font-size: 12px;
  }

  .button-row .button {
    width: 100%;
  }

  .button {
    min-height: 58px;
    padding-inline: 20px;
    font-size: 16px;
  }

  .button-row {
    gap: 12px;
  }

  .fact-list {
    gap: 8px;
  }

  .fact-list li {
    font-size: 13px;
  }

  .hero-arrow {
    top: 62%;
    width: 36px;
    height: 36px;
    font-size: 24px;
  }

  .story-block .button-row {
    margin-top: 28px;
  }

  .card,
  .price-card,
  .step-card,
  .gallery-card,
  .lead-form,
  .faq-item,
  .cta-grid > div {
    padding: 22px;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .lead-form .button {
    width: 100%;
    justify-self: stretch;
  }

  .card {
    min-height: auto;
  }

  .card h3,
  .step-card h3 {
    font-size: 22px;
    line-height: 1.1;
  }

  .card p {
    font-size: 16px;
    line-height: 1.54;
  }

  .card-list {
    gap: 8px;
    margin-top: 6px;
  }

  .card-list li {
    font-size: 14px;
    line-height: 1.5;
  }

  .card-grid--4 {
    grid-template-columns: 1fr;
  }

  .price-card h3 {
    font-size: 40px;
  }

  .card--poster {
    min-height: 300px;
  }

  .card--poster .card-image img {
    min-height: 300px;
  }

  .card--poster h3 {
    font-size: 18px;
  }

  .site-footer {
    padding-bottom: 56px;
  }

  .toc-nav {
    padding: 20px 18px;
  }

  .chat-fab {
    display: none;
  }

}

@media (min-width: 1040px) {
  .menu-toggle {
    display: none;
  }

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

  .header-desktop-meta,
  .header-cta,
  .site-nav {
    display: block;
  }

  .header-desktop-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  .header-desktop-meta .header-address {
    margin: 0;
  }

  .header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .cta-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
  }

  .section--story .button-row .button {
    min-width: 320px;
  }

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

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

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

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

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

  .gallery-card img {
    height: 320px;
  }
}
