/* ===== Variables ===== */
:root {
  --bg: #05080C;
  --surface: #0B1218;
  --surface-2: #101B22;
  --accent: #2BE8D0;
  --accent-dim: rgba(43, 232, 208, 0.14);
  --text: #F2F7F7;
  --muted: #8FA3A8;
  --line: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --header-h: 72px;
  --max-w: 1200px;
  --font-mono: 'JetBrains Mono', monospace;
  --font-body: 'Manrope', sans-serif;
  --font-head: 'Unbounded', sans-serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== Air Flows (signature element) ===== */
.air-flows {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.air-flows::before,
.air-flows::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: repeating-linear-gradient(
    -30deg,
    transparent,
    transparent 48px,
    rgba(43, 232, 208, 0.04) 48px,
    rgba(43, 232, 208, 0.04) 49px,
    transparent 49px,
    transparent 96px,
    rgba(43, 232, 208, 0.07) 96px,
    rgba(43, 232, 208, 0.07) 97px
  );
}

.air-flows::after {
  background: repeating-linear-gradient(
    -30deg,
    transparent,
    transparent 72px,
    rgba(43, 232, 208, 0.06) 72px,
    rgba(43, 232, 208, 0.06) 73px
  );
  animation: flow-drift 18s linear infinite;
}

@keyframes flow-drift {
  0% { transform: translate(0, 0); opacity: 0.6; }
  50% { transform: translate(30px, -20px); opacity: 1; }
  100% { transform: translate(0, 0); opacity: 0.6; }
}

.page-bg-flows {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.page-bg-flows::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -30deg,
    transparent,
    transparent 80px,
    rgba(43, 232, 208, 0.025) 80px,
    rgba(43, 232, 208, 0.025) 81px
  );
}

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

section { position: relative; z-index: 1; }

.section-pad { padding: 80px 0; }

/* ===== Typography ===== */
.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
  content: '▰▰▰';
  color: var(--accent);
  opacity: 0.5;
  font-size: 10px;
}

h1, h2, h3, .heading {
  font-family: var(--font-head);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h2 { font-size: clamp(28px, 5vw, 44px); margin-bottom: 40px; }

.text-muted { color: var(--muted); }
.text-accent { color: var(--accent); }

.mono {
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 28px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 24px rgba(43, 232, 208, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(43, 232, 208, 0.4);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.btn-sm { padding: 10px 20px; font-size: 14px; min-height: 44px; }

.nav__cta { flex-shrink: 0; }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(5, 8, 12, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo__img {
  width: 40px;
  height: 40px;
  transition: transform 0.6s ease;
}

.logo:hover .logo__img { transform: rotate(180deg); }

.logo__text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo__text span { color: var(--accent); }

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}

.nav__link:hover,
.nav__link.is-active { color: var(--text); }

.nav__link.is-active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.header__cta { display: none; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  padding: 8px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .burger { display: flex; }
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(5, 8, 12, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav__link { font-size: 15px; padding: 4px 0; }
  .nav__cta {
    width: 100%;
    margin-top: 8px;
    justify-content: center;
  }
}

@media (min-width: 901px) {
  .nav__cta { margin-left: 4px; }
}

/* ===== Hero ===== */
.hero {
  padding: 60px 0 80px;
  position: relative;
  overflow: visible;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--accent-dim);
  border: 1px solid rgba(43, 232, 208, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(36px, 7vw, 64px);
  margin-bottom: 20px;
}

.hero__title-accent {
  display: block;
}

.hero__subtitle {
  color: var(--muted);
  font-size: 17px;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.hero__trial {
  font-size: 13px;
  color: var(--muted);
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  overflow: visible;
}

.hero__visual > .air-flows {
  inset: -30% -55% -30% -15%;
}

.hero__visual-inner {
  position: relative;
  z-index: 1;
  transform: translateX(-10%);
}

.hero__mascot {
  width: min(448px, 92%);
  margin: 0 auto;
  filter: drop-shadow(0 0 48px rgba(43, 232, 208, 0.18));
}

.hero__glass {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: auto;
  padding: 12px 16px;
  background: rgba(11, 18, 24, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 12px;
  line-height: 1.5;
  max-width: 220px;
}

.hero__glass-dot {
  color: var(--accent);
  margin-right: 4px;
}

@media (min-width: 769px) {
  .hero__visual {
    justify-content: flex-start;
    margin-right: calc(-1 * max(0px, (100vw - var(--max-w)) / 2 - 20px));
    padding-left: 6%;
    min-height: 480px;
  }

  .hero__visual-inner {
    transform: translateX(-6%);
  }

  .hero__mascot {
    width: clamp(380px, 42vw, 448px);
  }
}

@media (max-width: 768px) {
  .hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .hero__visual { order: -1; }
}

/* ===== Cards ===== */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -30deg,
    transparent,
    transparent 40px,
    rgba(43, 232, 208, 0.02) 40px,
    rgba(43, 232, 208, 0.02) 41px
  );
  pointer-events: none;
}

.card:hover {
  border-color: rgba(43, 232, 208, 0.4);
  transform: translateY(-2px);
}

.card__icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.card__title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.card__text { color: var(--muted); font-size: 15px; }

/* ===== Grids ===== */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; gap: 16px; }
}

/* ===== Steps ===== */
.step-card {
  position: relative;
}

.step-card__num {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.step-card__title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.step-card__text { color: var(--muted); font-size: 15px; }

.steps-cta { text-align: center; margin-top: 40px; }

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  text-align: center;
}

.pricing-card--trial {
  opacity: 0.85;
  transform: scale(0.95);
}

.pricing-card--hit {
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(43, 232, 208, 0.12);
}

.pricing-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  padding: 4px 8px;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 6px;
}

.pricing-card__badge--hit {
  background: var(--accent);
  color: var(--bg);
}

.pricing-card__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
}

.pricing-card__badges .pricing-card__badge {
  position: static;
}

.pricing-card:has(> .pricing-card__badge) {
  padding-top: 44px;
}

.pricing-card__name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 12px;
}

.pricing-card__price {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.pricing-card__period {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}

.pricing-card__note {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 16px;
  min-height: 32px;
}

.pricing-card__per-month {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  margin-bottom: 16px;
}

.pricing-card .btn { width: 100%; margin-top: auto; }

.pricing-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pricing-card--trial { transform: none; }
}

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 12px; }
  .pricing-card--trial { opacity: 1; transform: none; }
}

/* ===== Bonus cards ===== */
.bonus-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px;
}

.bonus-card__icon {
  font-size: 36px;
  flex-shrink: 0;
}

.bonus-card__title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.bonus-card__text { color: var(--muted); font-size: 15px; }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; }

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:first-child { border-top: 1px solid var(--line); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  transition: color 0.2s;
}

.faq-question:hover { color: var(--accent); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent);
  transition: transform 0.3s;
}

.faq-item.is-open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-answer p {
  color: var(--muted);
  font-size: 15px;
  padding-right: 40px;
}

/* ===== CTA Section ===== */
.cta-section {
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section h2 { margin-bottom: 32px; }

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 32px;
  position: relative;
  z-index: 1;
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}

.footer__logo .logo__text { font-size: 13px; }

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__links a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--accent); }

.footer__bottom {
  font-size: 12px;
  color: var(--muted);
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* ===== Fade-in animation ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Setup page ===== */
.page-hero {
  padding: 60px 0 40px;
  text-align: center;
}

.page-hero h1 { font-size: clamp(32px, 6vw, 52px); }

.tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tab-btn {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 10px;
  border: 1px solid var(--line);
  color: var(--muted);
  transition: all 0.2s;
}

.tab-btn:hover { border-color: var(--accent); color: var(--text); }

.tab-btn.is-active {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
}

.tab-panel { display: none; }
.tab-panel.is-active { display: block; }

.setup-steps { max-width: 720px; margin: 0 auto; }

.setup-step {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.setup-step:last-of-type { border-bottom: none; }

.setup-step__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
}

.setup-step__content h3 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.setup-step__content p { color: var(--muted); font-size: 15px; }

.setup-screenshots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 32px 0;
}

.setup-screenshot {
  text-align: center;
}

.setup-screenshot img {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 8px;
}

.setup-screenshot figcaption {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.alt-block {
  max-width: 720px;
  margin: 48px auto 0;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.alt-block h3 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--muted);
}

.alt-block ol {
  list-style: decimal;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14px;
}

.alt-block ol li { margin-bottom: 8px; }

.setup-support {
  text-align: center;
  padding: 60px 0 80px;
}

/* ===== Legal pages ===== */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 0 80px;
}

.legal-content h1 {
  font-size: clamp(28px, 5vw, 40px);
  margin-bottom: 32px;
}

.legal-content h2 {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 12px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal-placeholder {
  padding: 40px;
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  text-align: center;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.05em;
}

/* ===== 404 ===== */
.error-page {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.error-page h1 {
  font-size: clamp(64px, 15vw, 120px);
  color: var(--accent);
  margin-bottom: 16px;
}

.error-page p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 32px;
}

/* ===== Mobile polish (≤768px) ===== */
@media (max-width: 768px) {
  body { font-size: 15px; }

  .container { padding: 0 16px; }

  .section-pad { padding: 56px 0; }

  h2 {
    margin-bottom: 28px;
    font-size: clamp(24px, 6.5vw, 32px);
  }

  .section-label {
    font-size: 11px;
    gap: 8px;
  }

  .section-label::before,
  .section-label::after { font-size: 9px; }

  .btn-sm { font-size: 15px; }

  /* Hero */
  .hero {
    padding: 28px 0 56px;
    overflow: hidden;
  }

  .hero > .air-flows {
    overflow: hidden;
    inset: 0;
  }

  .hero__badge {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .hero__title {
    font-size: clamp(28px, 8.5vw, 38px);
  }

  .hero__title-accent {
    font-size: clamp(20px, 6.1vw, 28px);
    white-space: nowrap;
    letter-spacing: -0.03em;
  }

  .hero__subtitle {
    font-size: 15px;
    max-width: none;
    margin-bottom: 24px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero__actions .btn {
    width: 100%;
    white-space: normal;
  }

  .hero__visual {
    min-height: auto;
    margin-right: 0;
    padding: 0;
    overflow: hidden;
  }

  .hero__visual-inner { transform: none; }

  .hero__mascot {
    width: min(280px, 76vw);
    margin: 0 auto;
  }

  .hero__visual > .air-flows { inset: 0; }

  .hero__glass {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 16px auto 0;
    max-width: 100%;
  }

  /* Pricing */
  .pricing-card {
    padding: 24px 20px 20px;
  }

  .pricing-card__price { font-size: 32px; }

  .pricing-card__badge {
    top: 14px;
    right: 14px;
  }

  .pricing-card__badges { margin-bottom: 8px; }

  .pricing-card .btn { min-height: 44px; }

  .card { padding: 24px; }

  .step-card__num { font-size: 40px; margin-bottom: 12px; }

  .steps-cta { margin-top: 32px; }
  .steps-cta .btn { width: 100%; }

  .bonus-card {
    flex-direction: column;
    gap: 12px;
    padding: 24px;
  }

  .faq-question { font-size: 15px; padding: 18px 0; }

  .faq-answer p {
    font-size: 15px;
    padding-right: 0;
  }

  .cta-section { padding: 64px 0; }

  .cta-section .btn { width: 100%; max-width: 360px; }

  .footer { padding: 40px 0 24px; }

  .footer__top { gap: 24px; margin-bottom: 28px; }

  .footer__links { gap: 14px 20px; }

  /* Setup */
  .page-hero { padding: 36px 0 24px; }

  .page-hero h1 { font-size: clamp(26px, 7vw, 36px); }

  .tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .tab-btn {
    width: 100%;
    min-height: 44px;
    padding: 10px 8px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .setup-step {
    margin-bottom: 24px;
    padding-bottom: 24px;
  }

  .setup-step__content p { font-size: 15px; }

  .setup-screenshots {
    grid-template-columns: 1fr;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
  }

  .alt-block {
    padding: 20px;
    margin-top: 32px;
  }

  .alt-block ol { font-size: 15px; }

  .setup-support { padding: 48px 0 64px; }

  .setup-support .btn {
    width: 100%;
    max-width: 360px;
  }
}

@media (max-width: 400px) {
  .logo__text { font-size: 11px; }

  .logo__img { width: 36px; height: 36px; }

  .hero__title-accent {
    font-size: clamp(18px, 5.6vw, 24px);
  }
}
