@font-face {
  font-family: "Coolvetica";
  src: url("https://media.uprock.school/fonts/Coolvetica/coolveticaRg.ttf")
    format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --orange: #ff4500;
  --black: #1a1a1a;
  --white: #ffffff;
  --gray-bg: #f5f5f5;
  --gray-text: #888888;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Geist",
    -apple-system,
    sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

.font-cool {
  font-family: "Coolvetica", sans-serif;
}

/* NAV */
.nav-header {
  background: transparent;
  transition:
    background 0.4s ease,
    box-shadow 0.3s ease;
}
.nav-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
}
/* Лого белое над фото, тёмное после скролла */
.nav-logo svg path {
  fill: white;
  transition: fill 0.4s ease;
}
.nav-header.scrolled .nav-logo svg path {
  fill: var(--black);
}
.nav-link {
  text-decoration: none;
  color: white;
  opacity: 0.85;
  transition:
    opacity 0.2s,
    color 0.4s ease;
}
.nav-link:hover {
  opacity: 1;
}
.nav-header.scrolled .nav-link {
  color: var(--black);
  opacity: 0.75;
}

/* BUTTONS */
.btn-primary {
  background: var(--orange);
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition:
    background 0.2s ease,
    transform 0.15s ease;
}
.btn-primary:hover {
  background: #e03d00;
  transform: scale(0.97);
}
.btn-primary:active {
  transform: scale(0.95);
}

.btn-ghost {
  border: 1.5px solid rgba(26, 26, 26, 0.2);
  color: var(--black);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.btn-ghost:hover {
  border-color: var(--black);
  background: rgba(0, 0, 0, 0.03);
}

/* HERO */
.hero-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
  height: calc(100vh - 52px);
  min-height: 500px;
}
.hero-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 38%,
    rgba(0, 0, 0, 0.65) 100%
  );
  z-index: 1;
}
.hero-side {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 10%;
  max-width: 160px;
  z-index: 2;
  pointer-events: none;
}
.hero-side-base {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hero-side-left {
  left: 0;
}
.hero-side-right {
  right: 0;
}
/* Пульсирующие волны от боков */
.hero-side-wave {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: sideWave 2.5s ease-out infinite;
}
.hero-side-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-side-left .hero-side-wave {
  transform-origin: left center;
}
.hero-side-right .hero-side-wave {
  transform-origin: right center;
}
@keyframes sideWave {
  0% {
    transform: scaleX(1);
    opacity: 0.55;
  }
  100% {
    transform: scaleX(1.8);
    opacity: 0;
  }
}
.hero-logo {
  display: block;
}
.hero-logo-svg {
  width: clamp(160px, 28vw, 440px);
  height: auto;
}
.nav-logo {
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.nav-logo--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 5rem 10% 4rem;
}
.hero-title {
  font-size: clamp(2rem, 3.8vw, 5rem);
  line-height: 1.05;
  color: white;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.75);
}
.hero-overlay .btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: white;
}
.hero-overlay .btn-ghost:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}
.hero-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}
.hero-socials-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.hero-socials-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-social-icon {
  width: 22px;
  height: 22px;
  fill: #ff4500;
  transition:
    fill 0.2s,
    transform 0.2s;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(255, 69, 0, 0.5));
}
.hero-social-icon:hover {
  fill: #ff6a33;
  transform: scale(1.15);
}
.hero-socials-more {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.03em;
}

/* TICKER */
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 24s linear infinite;
  will-change: transform;
}
.ticker-track:hover {
  animation-play-state: paused;
}
.ticker-item {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--black);
  opacity: 0.65;
  letter-spacing: 0.02em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
}
.ticker-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(33%) sepia(97%) saturate(4000%)
    hue-rotate(1deg) brightness(105%);
}
.ticker-divider {
  color: var(--orange);
  font-size: 1.2rem;
  opacity: 0.5;
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* MANIFESTO */
.manifesto-section {
  position: relative;
  overflow: hidden;
}
.manifesto-line {
  font-size: clamp(2rem, 5.5vw, 4.5rem);
  line-height: 1.1;
  color: var(--black);
  letter-spacing: -0.01em;
  margin-bottom: 0.1em;
}
.manifesto-logo {
  height: 0.72em;
  width: auto;
  vertical-align: 0.06em;
  display: inline-block;
}
.manifesto-sub {
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* КАК РАБОТАЕТ */
.how-section-py {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.how-tabs-mb {
  margin-bottom: 2rem;
}
.how-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
}
.how-tabs {
  display: flex;
  gap: 4px;
  background: rgba(0, 0, 0, 0.07);
  border-radius: 100px;
  padding: 4px;
  width: fit-content;
}
.how-tab {
  padding: 10px 26px;
  border-radius: 100px;
  font-size: 0.9375rem;
  font-weight: 500;
  border: none;
  background: transparent;
  color: rgba(26, 26, 26, 0.45);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: "Geist", sans-serif;
}
.how-tab.active {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
}
.how-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.how-step:last-child {
  border-bottom: none;
}
.how-step-num {
  font-family: "Coolvetica", sans-serif;
  font-size: 1.4rem;
  color: var(--orange);
  min-width: 36px;
  line-height: 1.2;
  padding-top: 1px;
}
.how-step-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  transform: rotate(-12deg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  flex-shrink: 0;
}
.how-icon {
  width: 22px;
  height: 22px;
  display: block;
}
.how-step-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.3;
}
.how-step-desc {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.55;
}

/* КАК РАБОТАЕТ — ПЛАТФОРМЫ */
.how-platforms {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.how-platforms-source {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.how-platforms-source::before,
.how-platforms-source::after {
  content: "";
  position: absolute;
  inset: -8px -16px;
  border-radius: 999px;
  background: rgba(255, 69, 0, 0.18);
  animation: platformRipple 3.2s ease-out infinite;
  pointer-events: none;
}
.how-platforms-source::after {
  animation-delay: 1.6s;
}
@keyframes platformRipple {
  0% {
    transform: scale(1);
    opacity: 0.55;
  }
  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}
.how-platforms-label {
  position: relative;
  font-size: 1rem;
  font-weight: 600;
  color: #ff4500;
  white-space: nowrap;
  z-index: 1;
}
.how-platforms-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.how-platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 69, 0, 0.08);
  color: #ff4500;
  border: 1px solid rgba(255, 69, 0, 0.2);
  letter-spacing: 0.01em;
}
.how-platform-icon {
  width: 13px;
  height: 13px;
  fill: currentColor;
  flex-shrink: 0;
}
.how-platform-pill-muted {
  background: transparent;
  color: var(--gray-text);
  border-color: rgba(0, 0, 0, 0.12);
  font-weight: 400;
}

/* КАК РАБОТАЕТ — CARD GRID */
.how-lead {
  font-size: 1.1rem;
  color: var(--gray-text);
  max-width: 500px;
}
.how-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 768px) {
  .how-steps-grid {
    grid-template-columns: 1fr;
  }
}
.how-step-card {
  background: white;
  border-radius: 28px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
  transition: transform 0.22s ease;
}
.how-step-card:hover {
  transform: translateY(-4px);
}
.how-step-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 4px;
}
.how-step-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 69, 0, 0.1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff4500;
  flex-shrink: 0;
}
.how-icon-lg {
  width: 30px;
  height: 30px;
  display: block;
}
.how-step-card-num {
  font-family: "Coolvetica", sans-serif;
  font-size: 5.5rem;
  line-height: 0.9;
  color: #ff4500;
  opacity: 0.12;
  user-select: none;
}
.how-step-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
}
.how-step-card-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #888;
  margin-top: auto;
}

/* Accent card — шаг 3, оранжевый */
.how-step-card.card-accent {
  background: #ff4500;
}
.how-step-card.card-accent .how-step-card-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
.how-step-card.card-accent .how-step-card-num {
  color: white;
  opacity: 0.18;
}
.how-step-card.card-accent .how-step-card-title {
  color: white;
}
.how-step-card.card-accent .how-step-card-desc {
  color: rgba(255, 255, 255, 0.75);
}

/* Dark card — шаг 4, тёмный */
.how-step-card.card-dark {
  background: #1a1a1a;
}
.how-step-card.card-dark .how-step-card-icon {
  background: rgba(255, 69, 0, 0.15);
  color: #ff4500;
}
.how-step-card.card-dark .how-step-card-num {
  color: white;
  opacity: 0.08;
}
.how-step-card.card-dark .how-step-card-title {
  color: white;
}
.how-step-card.card-dark .how-step-card-desc {
  color: rgba(255, 255, 255, 0.55);
}

/* СЦЕНАРИИ / ПАРТНЁРЫ */
.scenarios-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.scenarios-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}
/* 3 источника, 2 волны каждый — hero-стиль: большой блоб из точки */
.sw-ring {
  position: absolute;
  width: 320px;
  height: 250px;
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
}
.sw-ring::before,
.sw-ring::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 69, 0, 0.18);
  animation: swExpand 5s ease-out infinite;
}
.sw-a {
  top: 32%;
  left: 22%;
}
.sw-a::before {
  border-radius: 60% 40% 55% 45% / 45% 60% 40% 55%;
  animation-delay: 0s;
}
.sw-a::after {
  border-radius: 65% 35% 50% 50% / 50% 65% 35% 50%;
  animation-delay: 2.5s;
}

.sw-b {
  top: 68%;
  left: 75%;
}
.sw-b::before {
  border-radius: 40% 60% 70% 30% / 60% 40% 60% 40%;
  animation-delay: 0.9s;
}
.sw-b::after {
  border-radius: 50% 50% 42% 58% / 40% 60% 52% 48%;
  animation-delay: 3.4s;
}

.sw-c {
  top: 50%;
  left: 50%;
}
.sw-c::before {
  border-radius: 70% 30% 45% 55% / 55% 45% 65% 35%;
  animation-delay: 1.8s;
}
.sw-c::after {
  border-radius: 35% 65% 60% 40% / 45% 55% 45% 55%;
  animation-delay: 4.3s;
}

@keyframes swExpand {
  0% {
    transform: scale(0.02);
    opacity: 0.78;
  }
  40% {
    opacity: 0.38;
  }
  100% {
    transform: scale(8);
    opacity: 0;
  }
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  position: relative;
  z-index: 1;
}
@media (max-width: 700px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 390px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }
}
.partner-card {
  position: relative;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 18px;
  aspect-ratio: 2 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  cursor: default;
  text-decoration: none;
  border: 1px solid rgba(255, 69, 0, 0.15);
}
a.partner-card {
  cursor: pointer;
}
.partner-card:hover {
  background: rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
  box-shadow: 0 4px 32px rgba(255, 69, 0, 0.15);
  border-color: rgba(255, 69, 0, 0.4);
}
.partner-card-soon {
  background: transparent;
  border: 1.5px dashed rgba(255, 69, 0, 0.3);
}
.partner-card-soon:hover {
  background: transparent;
  transform: none;
}
.partner-logo {
  max-width: 90%;
  max-height: 75%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.partner-logo-multiply {
  mix-blend-mode: multiply;
}
.partner-card-lg-logo {
  padding: 0.5rem;
}
.partner-card-lg-logo .partner-logo {
  max-height: 92%;
  max-width: 92%;
}
.partner-card-dark {
  background: #1a1a1a;
  border-color: transparent;
}
.partner-card-dark:hover {
  background: #2a2a2a;
}
.partner-card-blue {
  background: #2b31bd;
  border-color: transparent;
}
.partner-card-blue:hover {
  background: #3540d4;
}
.partner-card-red {
  background: #dc3022;
  border-color: transparent;
}
.partner-card-red:hover {
  background: #e84433;
}
.partner-card-brown {
  background: #1a0800;
  border-color: transparent;
}
.partner-card-brown:hover {
  background: #2a1200;
}
.partner-card-crimson {
  background: #b01020;
  border-color: transparent;
  padding: 0.5rem;
}
.partner-card-crimson:hover {
  background: #c4162a;
}
.partner-card-crimson .partner-logo {
  max-height: 88%;
  max-width: 88%;
}
.partner-card-light {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
}
.partner-card-light:hover {
  background: #f5f5f5;
}
.partner-card-fullbg {
  padding: 0;
  overflow: hidden;
  border-radius: 18px;
}
.partner-card-fullbg .partner-logo {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}
.partner-soon {
  font-size: 1.15rem;
  color: #ff4500;
  font-weight: 800;
  letter-spacing: 0.03em;
}

/* ТАРИФЫ */
.pricing-section {
  background: #f7f7f7;
}
.pricing-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.pricing-blogger-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 69, 0, 0.1);
  color: var(--orange);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
}
.pricing-meta-sep {
  color: rgba(26, 26, 26, 0.25);
}
.pricing-business-note {
  font-size: 0.9375rem;
  color: rgba(26, 26, 26, 0.5);
  font-weight: 500;
}
.pricing-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}
.pricing-card {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}
.pricing-card-pro {
  background: var(--black);
  color: white;
}
.pricing-card-agency {
  background: white;
  border: 1.5px solid rgba(255, 69, 0, 0.2);
}
.pricing-plan {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.02em;
}
.pricing-price {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
}
.pricing-card-pro .pricing-price {
  color: white;
}
.pricing-price-query {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--black);
}
.pricing-currency {
  font-size: 0.65em;
  font-weight: 400;
  opacity: 0.55;
}
.pricing-annual {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}
.pricing-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: #f0f0f0;
  color: rgba(0, 0, 0, 0.5);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  margin-top: 4px;
}
.pricing-badge-pro {
  background: var(--orange);
  color: white;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pricing-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.pricing-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  object-fit: contain;
}
.pricing-card-pro .pricing-icon {
  filter: brightness(0) invert(1);
}
.pricing-feature strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
}
.pricing-card-pro .pricing-feature strong {
  color: white;
}
.pricing-feature p {
  font-size: 0.82rem;
  color: rgba(0, 0, 0, 0.45);
  line-height: 1.4;
  margin-top: 1px;
}
.pricing-card-pro .pricing-feature p {
  color: rgba(255, 255, 255, 0.45);
}
.pricing-unlimited {
  color: var(--orange);
  font-weight: 600;
}
.pricing-btn {
  display: block;
  text-align: center;
}

/* WAITLIST */
.waitlist-section {
  background: var(--white);
}
.waitlist-title {
  font-size: clamp(2rem, 6vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--black);
}
.waitlist-sub {
  font-size: 0.9375rem;
  line-height: 1.65;
}
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-row {
  width: 100%;
}
.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(0, 0, 0, 0.11);
  border-radius: 14px;
  font-family: "Geist", sans-serif;
  font-size: 0.9375rem;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus {
  border-color: var(--orange);
}
.form-input::placeholder {
  color: rgba(0, 0, 0, 0.3);
}
.role-toggle {
  display: flex;
  gap: 6px;
  background: var(--gray-bg);
  border-radius: 14px;
  padding: 5px;
}
.role-label {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(26, 26, 26, 0.4);
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
  font-family: "Geist", sans-serif;
}
input[type="radio"]:checked + .role-label {
  background: var(--white);
  color: var(--black);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.09);
}
.form-success {
  text-align: center;
}

/* ROLE-SPECIFIC FIELDS */
.business-field,
.blogger-field {
  display: none;
}
.business-field.active,
.blogger-field.active {
  display: block;
  animation: tariffFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* CAPTCHA */
.captcha-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.captcha-label {
  font-size: 0.9rem;
  color: #555;
  white-space: nowrap;
  font-weight: 500;
}
.captcha-input {
  max-width: 100px;
}
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  pointer-events: none;
}

/* TARIFF SELECTOR */
.tariff-row {
  display: none;
}
.tariff-row.active {
  display: block;
  animation: tariffFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes tariffFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.tariff-row-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 8px;
}
.tariff-toggle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.tariff-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 12px 8px;
  border-radius: 14px;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  background: var(--gray-bg);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}
.tariff-label:hover {
  border-color: rgba(255, 69, 0, 0.35);
}
.tariff-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
}
.tariff-price {
  font-size: 0.72rem;
  color: var(--gray-text);
}
input[type="radio"]:checked + .tariff-label {
  background: var(--white);
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange);
}
input[type="radio"]:checked + .tariff-label .tariff-name {
  color: var(--orange);
}
input[type="radio"]:checked + .tariff-label .tariff-price {
  color: rgba(255, 69, 0, 0.65);
}

/* FOOTER */
.footer-section {
  background: var(--white);
}

/* SCROLL ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* APP SCREENSHOT в how-секции */
.how-screenshot-img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  display: block;
  transition: opacity 0.3s ease;
}

/* STAGGER HOW-STEPS */
#tab-blogger .how-step:nth-child(2),
#tab-business .how-step:nth-child(2) {
  transition-delay: 0.1s;
}
#tab-blogger .how-step:nth-child(3),
#tab-business .how-step:nth-child(3) {
  transition-delay: 0.2s;
}
#tab-blogger .how-step:nth-child(4),
#tab-business .how-step:nth-child(4) {
  transition-delay: 0.3s;
}

/* TAB SLIDE ANIMATION */
@keyframes tabSlideIn {
  from {
    opacity: 0;
    transform: translateX(22px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.how-content.tab-enter {
  animation: tabSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* HERO TABLET — волны поменьше */
@media (min-width: 769px) and (max-width: 1200px) {
  .hero-side {
    width: 13%;
    max-width: 140px;
  }
}

/* HERO MOBILE */
@media (max-width: 768px) {
  .hero-section {
    height: 85vh;
    min-height: 560px;
    max-height: none;
  }
  /* Волны узкие на мобилке */
  .hero-side {
    width: 7%;
  }
  .hero-overlay {
    padding: 4rem 1.5rem 2.5rem;
  }
  /* Усиливаем градиент — текст по центру экрана, фото яркое */
  .hero-gradient {
    background:
      linear-gradient(to right, rgba(0, 0, 0, 0.45) 0%, transparent 70%),
      linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.15) 0%,
        transparent 25%,
        rgba(0, 0, 0, 0.55) 60%,
        rgba(0, 0, 0, 0.8) 100%
      );
  }
  .hero-title {
    text-shadow:
      0 2px 24px rgba(0, 0, 0, 0.7),
      0 0 48px rgba(0, 0, 0, 0.4);
  }
  .hero-sub {
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.7);
  }
}

/* HOW SECTION — адаптивные отступы и размеры */
/* Ноутбук (1024–1280px) */
@media (max-width: 1200px) {
  .how-section-py {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .how-tabs-mb {
    margin-bottom: 2rem;
  }
  .how-step-card {
    padding: 28px 28px 24px;
    min-height: 240px;
    gap: 12px;
  }
  .how-step-card-title {
    font-size: 1.3rem;
  }
  .how-step-card-num {
    font-size: 4.5rem;
  }
}

/* Маленький ноутбук / планшет горизонтально (900–1024px) */
@media (max-width: 1024px) {
  .how-section-py {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .how-steps-grid {
    gap: 12px;
  }
  .how-step-card {
    padding: 24px 24px 20px;
    min-height: 220px;
    border-radius: 22px;
    gap: 10px;
  }
  .how-step-card-title {
    font-size: 1.2rem;
  }
  .how-step-card-num {
    font-size: 4rem;
  }
  .how-step-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
  }
  .how-icon-lg {
    width: 26px;
    height: 26px;
  }
}

/* Планшет / большой мобильный (768px) — переключается на 1 колонку */
@media (max-width: 768px) {
  .how-section-py {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .how-tabs-mb {
    margin-bottom: 1.5rem;
  }
  .how-step-card {
    padding: 22px 22px 18px;
    min-height: unset;
    border-radius: 20px;
    gap: 10px;
  }
  .how-step-card-title {
    font-size: 1.15rem;
  }
  .how-step-card-num {
    font-size: 3.5rem;
  }
  .how-step-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }
  .how-icon-lg {
    width: 22px;
    height: 22px;
  }
  .how-step-card-desc {
    font-size: 0.88rem;
  }
  .how-lead {
    font-size: 0.9375rem;
  }
  .how-tab {
    padding: 9px 18px;
    font-size: 0.875rem;
  }
}

/* Мобильный (480px) */
@media (max-width: 480px) {
  .how-section-py {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .how-steps-grid {
    gap: 10px;
  }
  .how-step-card {
    padding: 18px 18px 16px;
    border-radius: 18px;
    gap: 8px;
  }
  .how-step-card-title {
    font-size: 1.05rem;
  }
  .how-step-card-num {
    font-size: 3rem;
    line-height: 1;
  }
  .how-step-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
  }
  .how-icon-lg {
    width: 20px;
    height: 20px;
  }
}

.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;
}

/* FAQ */
.faq-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--black);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-item:first-child {
  border-top: 1px solid #e0e0e0;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  font-family: "Geist", sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--black);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

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

.faq-question::marker {
  content: "";
}

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--gray-text);
}

details[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 0 1.25rem;
  color: var(--gray-text);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 90%;
}

.faq-answer p {
  margin: 0;
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  .fade-up {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .hero-side-wave {
    animation: none;
    opacity: 0;
  }
  .ticker-track {
    animation: none;
  }
  .how-content.tab-enter {
    animation: none;
  }
  .sw-ring::before,
  .sw-ring::after {
    animation: none !important;
    opacity: 0 !important;
  }
}
