:root {
  --bg-main: #f5f1ea;
  --bg-card: rgba(255, 255, 255, 0.72);
  --ink: #111111;
  --sand: #d2aa58;
  --pine: #17342f;
  --line: rgba(17, 17, 17, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(210, 170, 88, 0.14), transparent 26%),
    radial-gradient(circle at top right, rgba(23, 52, 47, 0.1), transparent 24%),
    linear-gradient(180deg, #fbf8f2 0%, var(--bg-main) 100%);
}

.page-noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 100%);
}

.liquid-glass {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.18));
  box-shadow: 0 10px 35px rgba(17, 17, 17, 0.16);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
}

.liquid-glass::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.24);
  pointer-events: none;
}

.nav-link,
.mobile-nav-link {
  color: rgba(17, 17, 17, 0.76);
  font-weight: 600;
  transition: color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.mobile-nav-link:hover {
  color: #111111;
  transform: translateY(-1px);
}

.glass-chip,
.social-icon-link,
.mobile-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.4);
  color: rgba(17, 17, 17, 0.85);
  font-size: 0.875rem;
  font-weight: 700;
  backdrop-filter: blur(14px);
}

.social-icon-link {
  width: 42px;
  min-width: 42px;
  padding: 0 8px;
  border-radius: 12px;
  font-size: 1rem;
}

.social-icon-text {
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}

.mobile-social-row {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.phone-button,
.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.phone-button,
.primary-cta {
  color: #111111;
  background: linear-gradient(135deg, #e6c27c 0%, #d2aa58 100%);
  box-shadow: 0 16px 28px rgba(210, 170, 88, 0.28);
}

.phone-button:hover,
.primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 32px rgba(210, 170, 88, 0.32);
}

.secondary-cta {
  color: #111111;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(17, 17, 17, 0.1);
  backdrop-filter: blur(12px);
}

.secondary-cta:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.82);
}

.secondary-cta--dark {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.cta-submit,
.cta-telegram,
.cta-phone-link {
  white-space: nowrap;
}

.mobile-menu-button {
  width: 48px;
  height: 48px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.mobile-icon-link {
  width: 42px;
  min-width: 42px;
  padding: 0 8px;
  border-radius: 12px;
  font-size: 1rem;
}

.mobile-call-link {
  background: linear-gradient(135deg, #e6c27c 0%, #d2aa58 100%);
  color: #111111;
  box-shadow: 0 10px 18px rgba(210, 170, 88, 0.22);
}

.mobile-menu-button span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #111111;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-button.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-stage {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border-radius: 22px;
  background: #151515;
  box-shadow: 0 30px 80px rgba(17, 17, 17, 0.22);
}

.hero-copy {
  display: flex;
  flex-direction: column;
}

.hero-grid {
  align-items: end;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.18) 0%, rgba(17, 17, 17, 0.52) 100%),
    radial-gradient(circle at top right, rgba(210, 170, 88, 0.22), transparent 34%);
}

.hero-floating-card {
  position: absolute;
  z-index: 2;
  max-width: 320px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 18px;
  padding: 1rem;
}

.hero-floating-card--top {
  top: 22px;
  right: 22px;
  max-width: 300px;
}

.hero-floating-card--bottom {
  left: 22px;
  right: 22px;
  bottom: 22px;
  max-width: none;
}

.metric-card,
.service-card,
.case-card,
.stage-card,
.seo-card,
.seo-panel,
.format-card {
  border: 1px solid var(--line);
  background: var(--bg-card);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(17, 17, 17, 0.08);
}

.metric-card {
  border-radius: 18px;
  padding: 1rem;
}

.metrics-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.metric-card--interactive {
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.metric-card--interactive::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(210, 170, 88, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.metric-card--interactive:hover {
  transform: translateY(-4px);
  border-color: rgba(210, 170, 88, 0.35);
  box-shadow: 0 24px 40px rgba(17, 17, 17, 0.1);
}

.metric-card--interactive:hover::before {
  opacity: 1;
}

.metric-value {
  font-family: "Unbounded", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
}

.metric-label {
  margin-top: 0.5rem;
  color: rgba(17, 17, 17, 0.66);
  line-height: 1.6;
}

.section-heading {
  max-width: 720px;
}

.section-kicker {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.46);
}

.section-title {
  margin-top: 0.8rem;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.7rem, 2.4vw, 2.8rem);
  line-height: 1.08;
}

.section-copy {
  margin-top: 1rem;
  color: rgba(17, 17, 17, 0.68);
  line-height: 1.7;
}

.text-highlight {
  color: var(--sand);
}

.service-card,
.stage-card,
.seo-card,
.format-card {
  border-radius: 18px;
  padding: 1.15rem;
}

.nav-card {
  position: relative;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.nav-card::before {
  content: "";
  position: absolute;
  inset: auto -12% -42% auto;
  width: 138px;
  height: 138px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(210, 170, 88, 0.16), transparent 70%);
  opacity: 0;
  transition: opacity 0.24s ease;
  pointer-events: none;
}

.nav-card:hover {
  transform: translateY(-4px);
  border-color: rgba(210, 170, 88, 0.34);
  box-shadow: 0 24px 42px rgba(17, 17, 17, 0.11);
}

.nav-card:hover::before {
  opacity: 1;
}

.nav-card-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  margin-top: 0.9rem;
  color: rgba(17, 17, 17, 0.58);
  font-size: 0.84rem;
  font-weight: 700;
  transition: color 0.24s ease, transform 0.24s ease;
}

.nav-card-meta i {
  font-size: 0.82rem;
  transition: transform 0.24s ease;
}

.nav-card:hover .nav-card-meta {
  color: #8f6a26;
}

.nav-card:hover .nav-card-meta i {
  transform: translateX(3px);
}

.nav-card--dark:hover {
  border-color: rgba(210, 170, 88, 0.28);
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.24);
}

.price-card {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--bg-card);
  box-shadow: 0 20px 60px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.price-image-wrap {
  aspect-ratio: 1 / 0.68;
  overflow: hidden;
  background: rgba(17, 17, 17, 0.06);
}

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

.price-body {
  padding: 1.1rem;
}

.price-arrow,
.format-arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(17, 17, 17, 0.05);
  color: rgba(17, 17, 17, 0.45);
  transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.format-arrow {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
}

.nav-card:hover .price-arrow,
.nav-card:hover .format-arrow,
.service-card:hover .service-arrow {
  transform: rotate(45deg);
}

.nav-card:hover .price-arrow {
  background: rgba(210, 170, 88, 0.16);
  color: #8f6a26;
}

.nav-card:hover .format-arrow {
  background: rgba(210, 170, 88, 0.18);
  color: #f2d48f;
}

.price-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.06);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card h3 {
  margin-top: 0.8rem;
  font-size: 1.04rem;
  font-weight: 800;
}

.price-value {
  margin-top: 0.7rem;
  font-family: "Unbounded", sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
  color: #8f6a26;
}

.price-card p {
  margin-top: 0.6rem;
  line-height: 1.65;
  color: rgba(17, 17, 17, 0.66);
}

.stage-card {
  overflow: hidden;
}

.stage-image-wrap {
  margin: -1.15rem -1.15rem 0.9rem;
  aspect-ratio: 1 / 0.52;
  overflow: hidden;
  background: rgba(17, 17, 17, 0.06);
}

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

.service-card {
  position: relative;
}

.service-card--dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(210, 170, 88, 0.14);
  color: #8f6a26;
  font-size: 1rem;
}

.service-card--dark .service-icon {
  background: rgba(210, 170, 88, 0.16);
  color: #f2d48f;
}

.service-arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(17, 17, 17, 0.05);
  color: rgba(17, 17, 17, 0.45);
  transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.service-card--dark .service-arrow {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
}

.service-card:hover .service-arrow {
  background: rgba(210, 170, 88, 0.16);
  color: #8f6a26;
}

.service-card--dark:hover .service-arrow {
  background: rgba(210, 170, 88, 0.18);
  color: #f2d48f;
}

.service-card h3,
.stage-card h3,
.seo-card h3,
.format-card h3 {
  margin-top: 0.85rem;
  font-size: 1.02rem;
  font-weight: 800;
}

.service-card p,
.stage-card p,
.seo-card p,
.format-card p {
  margin-top: 0.55rem;
  line-height: 1.65;
  color: rgba(17, 17, 17, 0.66);
}

.service-card--dark h3 {
  color: white;
}

.service-card--dark p {
  color: rgba(255, 255, 255, 0.72);
}

.format-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.format-card h3 {
  color: white;
}

.format-card p {
  color: rgba(255, 255, 255, 0.72);
}

.nav-card-meta--dark {
  color: rgba(255, 255, 255, 0.66);
}

.nav-card:hover .nav-card-meta--dark {
  color: #f2d48f;
}

.case-card {
  overflow: hidden;
  border-radius: 18px;
}

.case-slider {
  position: relative;
  aspect-ratio: 1 / 0.78;
  background: #111111;
}

.case-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.case-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.case-slide.is-active {
  opacity: 1;
}

.case-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(17, 17, 17, 0.4);
  color: white;
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
}

.case-arrow--prev {
  left: 10px;
}

.case-arrow--next {
  right: 10px;
}

.case-dots {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  z-index: 2;
  display: flex;
  gap: 6px;
  justify-content: center;
}

.case-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.34);
  transition: transform 0.2s ease, background 0.2s ease;
}

.case-dot.is-active {
  background: #d2aa58;
  transform: scale(1.15);
}

.case-thumbs {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  gap: 6px;
  justify-content: center;
  pointer-events: auto;
}

.case-thumb {
  width: 34px;
  height: 34px;
  overflow: hidden;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(17, 17, 17, 0.28);
  padding: 0;
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

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

.case-thumb--video {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.85rem;
}

.case-thumb.is-active {
  transform: translateY(-1px);
  border-color: rgba(210, 170, 88, 0.85);
}

.case-body {
  padding: 1rem;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.case-meta span,
.stage-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.06);
  padding: 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-body h3 {
  margin-top: 0.75rem;
  font-size: 1.02rem;
  font-weight: 800;
}

.case-body p {
  margin-top: 0.55rem;
  line-height: 1.65;
  color: rgba(17, 17, 17, 0.66);
}

.seo-panel {
  border-radius: 18px;
  padding: 1.4rem;
}

.trust-band {
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(210, 170, 88, 0.16), transparent 26%),
    linear-gradient(135deg, #101010 0%, #1b1b1b 100%);
  padding: 1.55rem;
  box-shadow: 0 28px 80px rgba(17, 17, 17, 0.22);
}

.trust-copy {
  margin-top: 0.9rem;
  max-width: 58rem;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.trust-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.15rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.92rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(210, 170, 88, 0.16);
  color: #f2d48f;
  font-size: 1rem;
}

.trust-card h3 {
  margin-top: 0.7rem;
  color: white;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.35;
}

.trust-card p {
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.trust-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.15rem;
}

@media (min-width: 1200px) {
  .trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.06);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 800;
  color: #111111;
}

.faq-question i {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(17, 17, 17, 0.05);
  color: rgba(17, 17, 17, 0.58);
  transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 1.2rem 0;
  color: rgba(17, 17, 17, 0.68);
  line-height: 1.65;
}

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

.faq-item.is-open .faq-answer p {
  padding-bottom: 1.15rem;
}

.faq-item.is-open .faq-question i {
  transform: rotate(45deg);
  background: rgba(210, 170, 88, 0.16);
  color: #8f6a26;
}

.cta-band {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  justify-content: space-between;
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(210, 170, 88, 0.18), transparent 26%),
    linear-gradient(135deg, #101010 0%, #1a1a1a 100%);
  padding: 2rem;
  box-shadow: 0 28px 80px rgba(17, 17, 17, 0.25);
}

.cta-form-wrap {
  width: 100%;
  max-width: 460px;
}

.cta-form {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.85rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.cta-form-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 1fr;
}

.cta-field {
  display: grid;
  gap: 0.4rem;
}

.cta-field span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.cta-field input {
  width: 100%;
  min-height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.8rem 0.9rem;
  color: white;
  outline: none;
  font-size: 16px;
}

.cta-field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.8rem 0.9rem;
  color: white;
  outline: none;
  resize: vertical;
  min-height: 96px;
  font-size: 16px;
}

.cta-field input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.cta-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.cta-field input:focus {
  border-color: rgba(210, 170, 88, 0.65);
  background: rgba(255, 255, 255, 0.1);
}

.cta-field textarea:focus {
  border-color: rgba(210, 170, 88, 0.65);
  background: rgba(255, 255, 255, 0.1);
}

.cta-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.cta-phone-link {
  display: inline-block;
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.contact-modal.hidden {
  display: none;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.contact-modal__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 20px;
}

.contact-modal__content {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 40px);
  border-radius: 22px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(250, 247, 241, 0.96);
  padding: 1.1rem;
  padding-top: 3.4rem;
  box-shadow: 0 30px 60px rgba(17, 17, 17, 0.18);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.contact-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.8);
  color: rgba(17, 17, 17, 0.75);
}

.contact-modal__title {
  margin-top: 0.7rem;
  max-width: 18ch;
  font-family: "Unbounded", sans-serif;
  font-size: 1.45rem;
  line-height: 1.12;
}

.contact-modal__text {
  margin-top: 0.85rem;
  max-width: 44ch;
  color: rgba(17, 17, 17, 0.68);
  line-height: 1.58;
}

.contact-modal__form {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.95rem;
}

.contact-modal__form .cta-field span {
  color: rgba(17, 17, 17, 0.54);
}

.contact-modal__form .cta-field input,
.contact-modal__form .cta-field textarea {
  border-color: rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.88);
  color: #111111;
}

.contact-modal__form .cta-field input::placeholder,
.contact-modal__form .cta-field textarea::placeholder {
  color: rgba(17, 17, 17, 0.38);
}

.contact-modal__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.contact-link-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.75);
  color: rgba(17, 17, 17, 0.82);
  font-weight: 700;
  font-size: 0.94rem;
  white-space: nowrap;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  max-width: 460px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.88);
  padding: 0.85rem 0.95rem;
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner__text {
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(17, 17, 17, 0.72);
}

.cookie-banner__button {
  flex-shrink: 0;
  min-height: 40px;
  border: none;
  border-radius: 12px;
  background: #111111;
  padding: 0 0.95rem;
  color: white;
  font-size: 0.88rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .cta-band {
    flex-direction: row;
    align-items: end;
    padding: 2.4rem;
  }

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

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

  .cookie-banner {
    left: 24px;
    right: auto;
    bottom: 24px;
    margin: 0;
  }
}

@media (max-width: 1023px) {
  .hero-stage {
    min-height: 520px;
  }
}

@media (min-width: 1024px) {
  .hero-copy {
    min-height: 590px;
    justify-content: end;
    padding-bottom: 10px;
  }

  .hero-grid {
    align-items: end;
  }

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

@media (max-width: 767px) {
  .page-noise {
    opacity: 0.1;
  }

  .liquid-glass {
    backdrop-filter: blur(16px) saturate(145%);
    -webkit-backdrop-filter: blur(16px) saturate(145%);
  }

  .mobile-top-secondary {
    display: none;
  }

  .phone-button,
  .primary-cta,
  .secondary-cta {
    width: 100%;
    min-height: 48px;
    padding: 0.85rem 1rem;
  }

  .section-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }

  .section-title {
    margin-top: 0.65rem;
    font-size: 1.48rem;
    line-height: 1.14;
  }

  .section-copy {
    margin-top: 0.8rem;
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .hero-stage {
    min-height: 420px;
    border-radius: 18px;
  }

  .hero-grid {
    gap: 1.15rem;
  }

  .hero-floating-card--top {
    top: 12px;
    right: 12px;
    left: 12px;
    max-width: none;
  }

  .hero-floating-card--bottom {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .hero-floating-card {
    padding: 0.8rem;
    border-radius: 14px;
  }

  .hero-floating-card .text-xl {
    font-size: 1rem;
    line-height: 1.3;
  }

  .metric-card,
  .service-card,
  .stage-card,
  .seo-card,
  .seo-panel,
  .format-card,
  .case-card,
  .price-card {
    border-radius: 16px;
  }

  .metric-card {
    padding: 0.85rem;
  }

  .metric-value {
    font-size: 1.12rem;
  }

  .metric-label,
  .service-card p,
  .stage-card p,
  .seo-card p,
  .format-card p,
  .case-body p,
  .price-card p {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .service-card h3,
  .stage-card h3,
  .seo-card h3,
  .format-card h3,
  .case-body h3,
  .price-card h3 {
    font-size: 0.98rem;
  }

  .price-value {
    font-size: 1.08rem;
  }

  .service-arrow,
  .case-arrow,
  .price-arrow,
  .format-arrow {
    width: 30px;
    height: 30px;
  }

  .nav-card-meta {
    font-size: 0.8rem;
  }

  .stage-image-wrap {
    margin: -1.15rem -1.15rem 0.8rem;
    aspect-ratio: 1 / 0.6;
  }

  .case-slider {
    aspect-ratio: 1 / 0.9;
  }

  .case-thumbs {
    left: 8px;
    right: 8px;
    bottom: 24px;
    gap: 5px;
  }

  .case-thumb {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .cta-band {
    border-radius: 20px;
    padding: 1.25rem;
  }

  .trust-band {
    border-radius: 20px;
    padding: 1.25rem;
  }

  .trust-copy {
    margin-top: 0.8rem;
    line-height: 1.58;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-top: 1.1rem;
  }

  .trust-card {
    border-radius: 16px;
    padding: 0.95rem;
  }

  .trust-card h3 {
    font-size: 0.98rem;
  }

  .trust-card p {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .trust-actions {
    margin-top: 1.1rem;
  }

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

  .faq-question {
    padding: 1rem;
    font-size: 0.96rem;
    line-height: 1.45;
  }

  .faq-question i {
    width: 28px;
    height: 28px;
  }

  .faq-answer p {
    padding: 0 1rem 0;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .faq-item.is-open .faq-answer p {
    padding-bottom: 1rem;
  }

  .cta-form {
    border-radius: 16px;
    padding: 0.85rem;
  }

  .cta-field input {
    min-height: 46px;
  }

  .cta-phone-link {
    white-space: normal;
    line-height: 1.5;
  }

  .cookie-banner {
    gap: 0.7rem;
    align-items: flex-start;
    flex-direction: column;
    padding: 0.8rem;
  }

  .cookie-banner__button {
    width: 100%;
  }

  .contact-modal__dialog {
    padding: 12px;
    min-height: 100dvh;
    align-items: end;
  }

  .contact-modal__content {
    border-radius: 20px;
    padding: 1rem;
    padding-top: 3.2rem;
    max-height: calc(100dvh - 24px);
  }

  .contact-modal__title {
    max-width: none;
    font-size: 1.35rem;
  }

  .contact-modal__links {
    gap: 0.6rem;
  }

  .contact-link-chip {
    min-height: 42px;
    padding: 0 0.8rem;
    font-size: 0.9rem;
  }

  footer .mx-auto {
    gap: 1rem;
  }
}
