:root {
  color-scheme: dark;
  --bg: #0f1115;
  --bg-elevated: #171a21;
  --border: #2a2f3a;
  --text: #e8eaed;
  --muted: #9aa0a6;
  --accent: #6c8cff;
  --accent-hover: #8aa4ff;
  --max: 1080px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--border);
  background: rgba(15, 17, 21, 0.92);
  backdrop-filter: blur(8px);
}

.site-header-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.header-login-btn {
  padding: 8px 16px !important;
  font-size: 0.85rem !important;
  border-radius: 8px !important;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
}

.site-brand img {
  width: 36px;
  height: 36px;
}

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

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

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

.site-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Мобильное меню (раскладка как в референсе, стиль — наш) */
.site-nav-toggle {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.site-nav-toggle:not(.site-nav-toggle--close) {
  flex-direction: column;
  gap: 4px;
}

.site-nav-toggle:hover {
  border-color: #46506a;
  background: rgba(255, 255, 255, 0.04);
}

.site-nav-toggle-line {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav-toggle--close .site-nav-toggle-line {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1px 0 0 -8px;
}

.site-nav-toggle--close .site-nav-toggle-line:nth-child(1) {
  transform: rotate(45deg);
}

.site-nav-toggle--close .site-nav-toggle-line:nth-child(2) {
  transform: rotate(-45deg);
}

.site-nav-panel {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  background-color: #0f1115;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0.22s ease;
}

body.site-nav-open .site-nav-panel {
  visibility: visible;
  pointer-events: auto;
}

body.site-nav-open {
  overflow: hidden;
}

body.site-nav-open .site-header {
  z-index: 1001;
}

.site-nav-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  background-color: #0f1115;
}

.site-brand--panel {
  font-size: 0.98rem;
}

.site-mobile-nav {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 8px 0;
  background-color: #0f1115;
}

.site-mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  background-color: #0f1115;
}

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

.site-mobile-nav-footer {
  margin-top: auto;
  padding: 20px 16px calc(20px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--border);
  background-color: #0f1115;
}

.site-mobile-nav-cta {
  width: 100%;
  padding: 14px 18px !important;
  font-size: 0.98rem !important;
  border-radius: 999px !important;
}

@media (min-width: 769px) {
  .site-nav-panel {
    display: none !important;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-secondary {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.btn-secondary:hover {
  border-color: #46506a;
}

.site-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.hero {
  display: grid;
  gap: 24px;
  padding: 32px 0 16px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero p {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.1rem;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.feature-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
}

.feature-card h2 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.page-title {
  margin: 0 0 12px;
  font-size: 2rem;
}

.page-lead {
  margin: 0 0 28px;
  color: var(--muted);
  max-width: 720px;
}

.content-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

.content-card p {
  margin: 0 0 12px;
  color: var(--muted);
}

.content-card p:last-child {
  margin-bottom: 0;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.auth-wrap {
  min-height: calc(100vh - 73px);
  display: grid;
  place-items: center;
  padding: 24px;
}

.auth-box {
  width: min(420px, 100%);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 24px;
}

.auth-box h1 {
  margin: 0 0 6px;
  font-size: 1.5rem;
  text-align: center;
}

.auth-box .subtitle {
  margin: 0 0 20px;
  text-align: center;
  color: var(--muted);
}

.auth-box input {
  width: 100%;
  margin-bottom: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #0c0e12;
  color: var(--text);
  font: inherit;
}

.auth-box .hint {
  color: var(--muted);
  font-size: 0.9rem;
}

.auth-box .switch-link {
  margin: 12px 0 0;
  text-align: center;
  font-size: 0.9rem;
}

.auth-box .switch-link a {
  color: var(--accent);
}

.auth-status {
  min-height: 1.2em;
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}

.auth-status.is-error {
  color: #ff8a8a;
}

.hidden {
  display: none !important;
}

/* ==========================================================================
   LANDING REVAMP STYLES (NEW)
   ========================================================================== */

.site-main--landing {
  max-width: 1140px;
  padding: 40px 20px 100px;
  display: flex;
  flex-direction: column;
  gap: 100px; /* Большие отступы между секциями для воздуха */
}

/* Общие элементы секций */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
  text-wrap: balance;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* Бейджи */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(108, 140, 255, 0.1);
  border: 1px solid rgba(108, 140, 255, 0.2);
  color: var(--accent-hover);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.badge-section-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(108, 140, 255, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  color: var(--accent-hover);
  border: 1px solid rgba(108, 140, 255, 0.2);
  margin-bottom: 16px;
  display: inline-block;
}

/* Блок 1. Hero Section */
.hero-section {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 40px 0;
}

@media (max-width: 768px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

@media (max-width: 768px) {
  .hero-content {
    align-items: center;
  }
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

.hero-actions-container {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
}

@media (max-width: 768px) {
  .hero-actions-container {
    justify-content: center;
  }
}

.btn-hero-cta {
  background: linear-gradient(135deg, #4f70f6 0%, #3050d7 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 32px;
  border-radius: 14px;
  font-size: 1.1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(79, 112, 246, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.btn-hero-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 30%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-25deg);
  transition: 0.75s;
}

.btn-hero-cta:hover {
  background: linear-gradient(135deg, #6282ff 0%, #3d5ee5 100%);
  box-shadow: 0 12px 40px rgba(79, 112, 246, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.btn-hero-cta:hover::before {
  left: 150%;
}

.cta-arrow-icon {
  transition: transform 0.2s ease;
}

.btn-hero-cta:hover .cta-arrow-icon {
  transform: translateX(4px);
}

/* Инструменты в Hero */
.hero-tools {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
}

@media (max-width: 768px) {
  .hero-tools {
    align-items: center;
  }
}

.tools-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tools-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .tools-list {
    justify-content: center;
  }
}

.tool-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #141721;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #b9bec6;
  transition: all 0.25s ease;
  user-select: none;
}

.tool-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease, color 0.25s ease;
  color: var(--muted);
}

/* Брендовые стили наведения */
.tool-tag.brand-claude:hover {
  border-color: #f17a5c;
  background: rgba(241, 122, 92, 0.05);
  color: #ff9d84;
  box-shadow: 0 4px 15px rgba(241, 122, 92, 0.15);
}
.tool-tag.brand-claude:hover .tool-icon {
  color: #f17a5c;
  transform: rotate(15deg) scale(1.1);
}

.tool-tag.brand-chatgpt:hover {
  border-color: #10a37f;
  background: rgba(16, 163, 127, 0.05);
  color: #3dd6ab;
  box-shadow: 0 4px 15px rgba(16, 163, 127, 0.15);
}
.tool-tag.brand-chatgpt:hover .tool-icon {
  color: #10a37f;
  transform: rotate(45deg) scale(1.1);
}

.tool-tag.brand-codex:hover {
  border-color: #a855f7;
  background: rgba(168, 85, 247, 0.05);
  color: #c084fc;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.15);
}
.tool-tag.brand-codex:hover .tool-icon {
  color: #a855f7;
  transform: scale(1.1);
}

.tool-tag.brand-cursor:hover {
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.05);
  color: #60a5fa;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15);
}
.tool-tag.brand-cursor:hover .tool-icon {
  color: #3b82f6;
  transform: translate(1px, -1px) scale(1.1);
}

.tool-tag.brand-higgsfield:hover {
  border-color: #ec4899;
  background: rgba(236, 72, 153, 0.05);
  color: #f472b6;
  box-shadow: 0 4px 15px rgba(236, 72, 153, 0.15);
}
.tool-tag.brand-higgsfield:hover .tool-icon {
  color: #ec4899;
  transform: scale(1.1) rotate(90deg);
}

.tool-tag-more {
  border-style: dashed;
  background: transparent;
  color: var(--muted);
}

.tool-tag-more:hover {
  border-color: #4b5563;
  color: #fff;
  transform: translateY(-1px);
}

/* Изображения-заглушки */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-width: 360px;
  background: linear-gradient(135deg, #171c26 0%, #0d0f14 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.photo-placeholder::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--accent) 0%, transparent 60%);
  border-radius: 26px;
  z-index: -1;
  opacity: 0.4;
}

.photo-placeholder-inner {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--muted);
  text-align: center;
  padding: 20px;
}

.photo-placeholder-inner svg {
  color: var(--accent);
  opacity: 0.8;
  filter: drop-shadow(0 0 10px rgba(108, 140, 255, 0.2));
}

.photo-placeholder-inner span {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
}

.photo-placeholder-inner small {
  font-size: 0.8rem;
  max-width: 200px;
}

.photo-placeholder--image {
  padding: 0;
  background: linear-gradient(135deg, #151925 0%, #0d0f14 100%);
}

.photo-placeholder-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 22px;
}

/* 4 тезиса под Hero */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: transparent;
  padding: 12px 0 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding-top: 8px;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 24px;
}

.stat-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
  .stat-item {
    padding: 0 12px;
  }
  .stat-item:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 480px) {
  .stat-item {
    border-right: none !important;
    padding: 10px 0;
    align-items: center;
    text-align: center;
  }
  .stat-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
}

.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  background: linear-gradient(135deg, #fff 0%, #a4b4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-text {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Блок 2. Шаги первой недели */
.timeline-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  position: relative;
}

.step-card {
  background: #141721;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: #3f4758;
}

.step-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: rgba(108, 140, 255, 0.15);
  font-family: monospace;
  line-height: 1;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.step-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Блок 3. Что в клубе? */
.contents-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .contents-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .contents-grid {
    grid-template-columns: 1fr;
  }
}

.content-card-v2 {
  background: #141721;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.25s ease;
}

.content-card-v2:hover {
  background: #181d2a;
  border-color: rgba(108, 140, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-icon {
  width: 44px;
  height: 44px;
  background: rgba(108, 140, 255, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.content-card-v2 h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
}

.content-card-v2 p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Блок 4. Сервис аналитики конкурентов */
.service-spotlight-section {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  background: linear-gradient(180deg, #12151e 0%, #0d0f15 100%);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 48px;
}

@media (max-width: 768px) {
  .service-spotlight-section {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 28px 18px;
  }

  .spotlight-content {
    text-align: left;
    align-items: stretch;
  }

  .spotlight-visual {
    order: 2;
  }
}

.spotlight-visual {
  min-width: 0;
  width: 100%;
}

.browser-mockup-v3 {
  max-width: 100%;
}

.spotlight-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.spotlight-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(108, 140, 255, 0.1);
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--accent-hover);
  border: 1px solid rgba(108, 140, 255, 0.18);
}

.service-spotlight-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.01em;
}

.spotlight-lead {
  font-size: 1.05rem;
  color: #b8bec8;
  margin: 0;
  line-height: 1.5;
}

.spotlight-footer-hint {
  margin: 0;
  font-size: 0.9rem;
  color: #7d8494;
  line-height: 1.45;
}

.spotlight-visual-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  text-align: center;
}

.spotlight-visual-stat {
  margin: 0;
  font-size: 0.84rem;
  color: #8b919e;
  line-height: 1.4;
}

.spotlight-visual-stat strong {
  color: #e8eaed;
  font-weight: 700;
}

.spotlight-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.spotlight-features li {
  position: relative;
  padding-left: 28px;
}

.spotlight-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--accent-hover);
  font-weight: 900;
  font-size: 1.1rem;
}

.spotlight-features li strong {
  display: block;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 2px;
}

.spotlight-features li span {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.4;
  display: block;
}

.spotlight-footer {
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: 8px;
}

.spotlight-note {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.4;
  color: #b1b9d2;
}

/* Мокап MacOS/ноутбука */
.browser-mockup {
  width: 100%;
  background: #141721;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.browser-header {
  height: 40px;
  background: #0f111a;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  align-items: center;
  padding: 0 16px;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.browser-address {
  background: #191d29;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 4px 16px;
  font-size: 0.8rem;
  color: #8c93a0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 320px;
  margin: 0 auto;
  width: 100%;
  font-family: monospace;
}

.lock-icon {
  color: #10a37f;
}

.browser-actions-mock {
  display: flex;
  justify-content: flex-end;
}

.mock-btn-reload {
  width: 12px;
  height: 12px;
  border: 1.5px solid #4b5563;
  border-top-color: transparent;
  border-radius: 50%;
  display: inline-block;
}

.browser-body {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #0b0d12;
  width: 100%;
  display: flex;
  overflow: hidden;
}

.mockup-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Нативный UI дашборда на CSS для супер крутого вида */
.browser-mockup-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 0;
}

.fallback-dashboard-ui {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  opacity: 0.15;
  filter: blur(1.5px);
  pointer-events: none;
}

.ui-sidebar {
  width: 60px;
  background: #0d0f15;
  border-right: 1px solid var(--border);
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.sidebar-logo {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--accent);
}

.sidebar-item {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: #1e293b;
}
.sidebar-item.active {
  background: var(--accent);
}

.ui-main {
  flex-grow: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ui-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ui-search {
  width: 140px;
  height: 28px;
  background: #1e293b;
  border-radius: 6px;
  font-size: 0.75rem;
  color: #64748b;
  padding: 0 10px;
  display: flex;
  align-items: center;
}

.ui-sync-badge {
  height: 24px;
  width: 100px;
  background: rgba(108, 140, 255, 0.1);
  border: 1px solid rgba(108, 140, 255, 0.2);
  border-radius: 12px;
}

.ui-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  flex-grow: 1;
}

.ui-card {
  background: #0f131c;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ui-card-thumb {
  aspect-ratio: 1;
  background: #1e293b;
  border-radius: 8px;
  width: 100%;
}

.ui-card-line {
  height: 8px;
  background: #1e293b;
  border-radius: 4px;
  width: 80%;
}
.ui-card-line.short {
  width: 50%;
}

.mockup-overlay-text {
  z-index: 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #8c93a0;
  padding: 24px;
}

.mockup-overlay-text svg {
  color: var(--accent);
  opacity: 0.8;
  filter: drop-shadow(0 0 15px rgba(108, 140, 255, 0.3));
  animation: floatMock 3s ease-in-out infinite;
}

.mockup-overlay-text span {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}

.mockup-overlay-text small {
  font-size: 0.8rem;
  color: var(--muted);
  background: #131722;
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  font-family: monospace;
}

@keyframes floatMock {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Блок 5. Мини-курсы внутри */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .courses-grid {
    grid-template-columns: 1fr;
  }
}

.course-card {
  background: #141721;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}

.course-card:hover {
  transform: translateY(-3px);
  border-color: #3f4758;
}

.course-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.course-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.course-img-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
  transition: transform 0.3s ease;
}

.course-card:hover .course-img-fallback {
  transform: scale(1.05);
}

.course-img-fallback svg {
  opacity: 0.8;
  color: #fff;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.2));
}

/* Градиенты для обложек курсов */
.grad-carousel {
  background: linear-gradient(135deg, #1d152f 0%, #0d0614 100%);
  border-bottom: 1px solid rgba(168, 85, 247, 0.15);
}
.grad-carousel svg { color: #c084fc; filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.4)); }

.grad-claude {
  background: linear-gradient(135deg, #271a21 0%, #0f0a0d 100%);
  border-bottom: 1px solid rgba(241, 122, 92, 0.15);
}
.grad-claude svg { color: #f17a5c; filter: drop-shadow(0 0 10px rgba(241, 122, 92, 0.4)); }

.grad-hermes {
  background: linear-gradient(135deg, #11202e 0%, #050d15 100%);
  border-bottom: 1px solid rgba(14, 165, 233, 0.15);
}
.grad-hermes svg { color: #38bdf8; filter: drop-shadow(0 0 10px rgba(14, 165, 233, 0.4)); }

.grad-blog {
  background: linear-gradient(135deg, #1e1b29 0%, #08060d 100%);
  border-bottom: 1px solid rgba(139, 92, 246, 0.15);
}
.grad-blog svg { color: #a78bfa; filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.4)); }

.grad-base {
  background: linear-gradient(135deg, #101c2c 0%, #040810 100%);
  border-bottom: 1px solid rgba(59, 130, 246, 0.15);
}
.grad-base svg { color: #60a5fa; filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.4)); }

.grad-updates {
  background: linear-gradient(135deg, #10211a 0%, #040d0a 100%);
  border-bottom: 1px solid rgba(16, 185, 129, 0.15);
}
.grad-updates svg { color: #34d399; filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.4)); }

.course-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.course-meta {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-hover);
  letter-spacing: 0.05em;
}

.course-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.course-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.4;
}

.course-card--dynamic {
  background: linear-gradient(135deg, rgba(20, 23, 33, 1) 0%, rgba(15, 23, 42, 1) 100%);
  border-color: rgba(108, 140, 255, 0.2);
}

/* Блок 6. Почему Саша */
.founder-section {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 768px) {
  .founder-section {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .founder-visual {
    order: -1;
  }
  .founder-content {
    text-align: center;
    align-items: center;
  }
  .founder-kicker {
    align-self: center;
  }
}

.founder-visual {
  display: flex;
  justify-content: center;
}

.founder-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.founder-kicker {
  display: inline-flex;
  align-self: flex-start;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.founder-lead {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  margin: 0;
}

.founder-text-blocks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.founder-text-blocks p {
  margin: 0;
}

/* Блок 8. Для кого этот клуб */
.club-audience-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.club-audience-section .section-header {
  margin-bottom: 36px;
}

.club-audience-section .section-header h2 {
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.club-audience-accent {
  color: var(--accent-hover);
}

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

.club-audience-card {
  background: #141721;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 32px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.club-audience-card:hover {
  border-color: rgba(108, 140, 255, 0.22);
  background: #181c29;
}

.club-audience-num {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--accent);
  opacity: 0.72;
}

.club-audience-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #d2d6de;
}

@media (max-width: 768px) {
  .club-audience-section .section-header {
    margin-bottom: 28px;
  }

  .club-audience-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .club-audience-card {
    padding: 26px 22px 24px;
    gap: 14px;
  }

  .club-audience-card p {
    font-size: 0.94rem;
  }
}

@media (min-width: 769px) and (max-width: 959px) {
  .club-audience-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (min-width: 960px) and (max-width: 1280px) {
  .club-audience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .club-audience-card {
    padding: 26px 20px 24px;
  }

  .club-audience-card p {
    font-size: 0.9rem;
  }
}

/* Блок 9. Что внутри подписки */
.club-program-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.club-program-intro {
  display: flex;
  flex-direction: column;
}

.club-program-intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px 48px;
  align-items: start;
}

@media (max-width: 959px) {
  .club-program-intro-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.club-program-intro-grid h2 {
  margin: 0;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.club-program-lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--muted);
}

.club-program-lead strong {
  color: #fff;
  font-weight: 600;
}

.club-program-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 48px;
}

.club-program-grid > * {
  min-width: 0;
}

.club-program-module {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px 20px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
}

.club-program-module:nth-last-child(-n + 2) {
  border-bottom: 1px solid var(--border);
}

.club-program-num {
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  font-weight: 700;
  line-height: 1;
  color: #5f6675;
  letter-spacing: -0.02em;
  padding-top: 2px;
}

.club-program-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.club-program-content h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

.club-program-desc {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--muted);
}

@media (max-width: 768px) {
  .club-program-section {
    gap: 28px;
  }

  .club-program-grid {
    grid-template-columns: 1fr;
  }

  .club-program-module:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .club-program-module:last-child {
    border-bottom: 1px solid var(--border);
  }

  .club-program-module {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px 16px;
    padding: 22px 0;
  }
}

/* Блок 7. Для кого этот клуб */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }
}

.audience-card {
  background: #141721;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.2s ease;
}

.audience-card:hover {
  border-color: rgba(108, 140, 255, 0.25);
  background: #181c29;
}

.audience-icon {
  font-size: 1.8rem;
  margin-bottom: 4px;
}

.audience-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.audience-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Блок 8. Кому НЕ подойдет */
.filter-section {
  display: flex;
  justify-content: center;
}

.filter-box {
  background: linear-gradient(135deg, #1b161c 0%, #110e13 100%);
  border: 1px solid #3c1e28;
  border-radius: 24px;
  padding: 40px;
  max-width: 800px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.filter-icon {
  font-size: 2.2rem;
  color: #ff6c6c;
}

.filter-box h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0;
  color: #ff9e9e;
}

.filter-box p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #e5ccd3;
}

.filter-highlight {
  font-weight: 600;
  color: #fff !important;
  background: rgba(255, 108, 108, 0.05);
  border-radius: 12px;
  padding: 16px;
  border: 1px dashed rgba(255, 108, 108, 0.15);
}

/* Блок 9. Отзывы / результаты */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: #141721;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.testimonial-header {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-author {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--muted);
}

.testimonial-body {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #cfd4dc;
  font-style: italic;
}

.testimonial-card--placeholder {
  background: rgba(108, 140, 255, 0.03);
  border-style: dashed;
  border-color: rgba(108, 140, 255, 0.15);
  justify-content: center;
  align-items: center;
  text-align: center;
}

.testimonial-card--placeholder .testimonial-body {
  font-style: normal;
  color: var(--muted);
}

/* Блок 10. Тарифы */
.tariffs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .tariffs-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto 32px;
  }
}

.tariff-card {
  background: #141721;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s ease;
}

.tariff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.tariff-card--popular {
  background: linear-gradient(180deg, #171c2a 0%, #11141d 100%);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(108, 140, 255, 0.1);
}

.tariff-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 4px 14px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tariff-header {
  margin-bottom: 24px;
  text-align: center;
}

.tariff-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 0 4px;
}

.tariff-desc {
  font-size: 0.95rem;
  color: #7b8cff; /* Делаем текст описания подписки контрастным и красивым */
  font-weight: 600;
  margin-top: 8px;
}

.tariff-price {
  text-align: center;
  margin-bottom: 12px;
}

.price-val {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
}

.price-period {
  font-size: 0.9rem;
  color: var(--muted);
}

.price-savings {
  align-self: center;
  background: rgba(74, 222, 128, 0.1);
  color: #4ade80;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 24px;
}

.tariff-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.tariff-features li {
  font-size: 0.9rem;
  color: #b1b9d2;
  position: relative;
  padding-left: 20px;
}

.tariff-features li::before {
  content: "•";
  color: var(--accent);
  position: absolute;
  left: 4px;
  font-size: 1.1rem;
  line-height: 1;
}

.tariff-btn {
  width: 100%;
  min-height: 52px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.tariff-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
}

.tariff-btn--starter {
  background: rgba(255, 255, 255, 0.03);
  color: #eef2ff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tariff-btn--starter:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(108, 140, 255, 0.28);
}

.tariff-btn--popular {
  background: linear-gradient(135deg, #5f7cff 0%, #3f5fff 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 32px rgba(79, 112, 246, 0.35);
}

.tariff-btn--popular:hover {
  background: linear-gradient(135deg, #6d88ff 0%, #4b69ff 100%);
  box-shadow: 0 18px 36px rgba(79, 112, 246, 0.45);
}

.tariff-btn--pro {
  background: linear-gradient(135deg, rgba(108, 140, 255, 0.16) 0%, rgba(108, 140, 255, 0.06) 100%);
  color: #fff;
  border: 1px solid rgba(108, 140, 255, 0.35);
}

.tariff-btn--pro:hover {
  background: linear-gradient(135deg, rgba(108, 140, 255, 0.22) 0%, rgba(108, 140, 255, 0.1) 100%);
  border-color: rgba(108, 140, 255, 0.48);
}

.tariffs-alert {
  background: rgba(108, 140, 255, 0.04);
  border: 1px solid rgba(108, 140, 255, 0.1);
  border-radius: 16px;
  padding: 16px 24px;
}

.alert-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #cfd6e4;
  text-align: center;
}

/* Блок 11. FAQ */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #141721;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(108, 140, 255, 0.25);
  background: #171b28;
}

.faq-summary {
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

/* Скрываем стандартный маркер details */
.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--muted);
  transition: transform 0.25s ease;
}

/* Горизонтальная черта */
.faq-icon::before {
  top: 9px;
  left: 2px;
  width: 16px;
  height: 2px;
}

/* Вертикальная черта */
.faq-icon::after {
  top: 2px;
  left: 9px;
  width: 2px;
  height: 16px;
}

.faq-item[open] .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item[open] .faq-icon::before {
  transform: rotate(180deg);
  background: var(--accent-hover);
}

.faq-content {
  padding: 0 24px 20px;
  border-top: none;
}

.faq-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
}

/* Блок 12. Финальный CTA */
.final-cta-section {
  padding-bottom: 20px;
}

.final-cta-box {
  background: linear-gradient(135deg, #171a28 0%, #0d0f15 100%);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 48px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.final-cta-box::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(108, 140, 255, 0.15) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.final-cta-box h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.15;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.01em;
  z-index: 2;
  max-width: 720px;
}

.final-cta-lead {
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
  max-width: 680px;
  z-index: 2;
}

.final-cta-action {
  z-index: 2;
}

.final-cta-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  z-index: 2;
}

/* Redesigned SaaS Elements in style of getvamos.ai */

.site-main--landing {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px 100px;
  display: flex;
  flex-direction: column;
  gap: 120px; /* Generous spacing / "air" between blocks */
}

/* Subpages Container */
.site-main--subpage {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px 120px;
}

.subpage-header {
  text-align: center;
  margin-bottom: 60px;
}

.subpage-header .badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(108, 140, 255, 0.1);
  color: var(--accent-hover);
  border: 1px solid rgba(108, 140, 255, 0.2);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.page-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.page-lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

/* 1. Redesigned Hero Block v3 */
.hero-section-v3 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 40px 0;
}

@media (max-width: 991px) {
  .hero-section-v3 {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
}

.hero-text-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 991px) {
  .hero-text-side {
    align-items: center;
  }
}

.hero-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 14px;
  background: rgba(108, 140, 255, 0.08);
  border: 1px solid rgba(108, 140, 255, 0.15);
  color: var(--accent-hover);
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (max-width: 991px) {
  .hero-badge {
    align-self: center;
  }
}

.hero-main-title {
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0;
}

.hero-main-subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  max-width: 580px;
}

.hero-button-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .hero-button-group {
    justify-content: center;
  }
}

.btn-hero-primary {
  padding: 16px 28px;
  font-size: 1.05rem;
  background: linear-gradient(135deg, var(--accent) 0%, #4f68ff 100%);
  box-shadow: 0 8px 30px rgba(108, 140, 255, 0.35);
  color: #fff;
  border-radius: 12px;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(108, 140, 255, 0.5);
}

.btn-hero-primary .arrow-svg {
  transition: transform 0.2s ease;
}

.btn-hero-primary:hover .arrow-svg {
  transform: translateX(4px);
}

.btn-hero-secondary {
  padding: 16px 28px;
  font-size: 1.05rem;
  border-radius: 12px;
}

.hero-tools-mini {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  text-align: left;
}

@media (max-width: 991px) {
  .hero-tools-mini {
    align-items: center;
    text-align: center;
  }
}

.tools-mini-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #5d657b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tools-mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 991px) {
  .tools-mini-tags {
    justify-content: center;
  }
}

.tools-mini-tags span {
  font-size: 0.85rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4px 12px;
  border-radius: 6px;
}

/* Premium Browser Mockup v3 */
.browser-mockup-v3 {
  background: #12141c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 100px rgba(108, 140, 255, 0.08);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}

.browser-mockup-v3:hover {
  transform: scale(1.01) translateY(-5px);
}

.mockup-bar {
  background: #181b24;
  height: 44px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.m-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.m-red { background: #ff5f56; }
.m-yellow { background: #ffbd2e; }
.m-green { background: #27c93f; }

.mockup-addr {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 4px 16px;
  font-size: 0.8rem;
  color: var(--muted);
  flex-grow: 1;
  max-width: 300px;
  text-align: center;
  letter-spacing: 0.02em;
}

.mockup-screen {
  position: relative;
  min-height: 280px;
  background: #0d0f14;
}

.mockup-main-image {
  width: 100%;
  height: auto;
  display: block;
}

.mockup-fallback-ui {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0d0f14;
}

.mock-nav-side {
  width: 50px;
  background: #11131a;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0;
  gap: 20px;
}

.m-logo {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--accent);
}

.m-nav-i {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
}

.m-nav-i.active {
  background: rgba(108, 140, 255, 0.3);
}

.mock-main-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 16px;
}

.mock-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.m-search-field {
  background: #161822;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.8rem;
  color: #fff;
  font-weight: 500;
  flex-grow: 1;
  max-width: 180px;
}

.m-btn-sync {
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 600;
}

.mock-data-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.m-data-card {
  background: #141620;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.m-card-image {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  height: 110px;
}

.m-card-title-line {
  background: rgba(255, 255, 255, 0.08);
  height: 8px;
  border-radius: 4px;
  width: 70%;
}

.m-card-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.m-meta-pill {
  font-size: 0.65rem;
  background: rgba(108, 140, 255, 0.15);
  color: var(--accent-hover);
  padding: 2px 8px;
  border-radius: 4px;
}

.m-meta-text {
  font-size: 0.65rem;
  color: var(--muted);
}

.mockup-badge-overlay {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(13, 15, 20, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(39, 201, 63, 0.3);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #27c93f;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.overlay-glow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #27c93f;
  box-shadow: 0 0 8px #27c93f;
  animation: glowPulse 2s infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* 2. Platform Logos */
.trusted-logos-section {
  text-align: center;
  padding: 0 0 10px;
}

.trusted-title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5d657b;
  margin-bottom: 24px;
}

.logos-track {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.logo-item {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  transition: all 0.2s ease;
}

.logo-item:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.icon-logo {
  font-size: 1.15rem;
}

/* Shared Headers V3 */
.section-header-v3 {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 54px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.section-badge-v3 {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(108, 140, 255, 0.08);
  border: 1px solid rgba(108, 140, 255, 0.15);
  color: var(--accent-hover);
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.section-header-v3 h2 {
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}

.section-subtitle-v3 {
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
}

/* 3. Market Pains Section */
.market-pains-section {
  background: radial-gradient(circle at top, rgba(255, 95, 86, 0.02) 0%, transparent 60%);
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  padding-top: 40px;
}

.pains-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.pain-card {
  background: rgba(23, 26, 33, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.2s ease;
}

.pain-card:hover {
  border-color: rgba(255, 95, 86, 0.15);
  background: rgba(23, 26, 33, 0.6);
  transform: translateY(-2px);
}

.pain-icon-wrapper {
  font-size: 1.5rem;
  background: rgba(255, 95, 86, 0.1);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pain-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.pain-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* 4. How Works Steps */
.how-it-works-section {
  padding-top: 20px;
}

.steps-flow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  position: relative;
}

.flow-step {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.flow-num-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(108, 140, 255, 0.3);
}

.flow-step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.flow-step p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* 5. What's Inside Ecosystem Section */
.club-ecosystem-section {
  background: radial-gradient(circle at bottom, rgba(108, 140, 255, 0.03) 0%, transparent 60%);
}

.ecosystem-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 991px) {
  .ecosystem-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.ecosystem-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ecosystem-text h2 {
  font-size: clamp(1.8rem, 4.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}

.ecosystem-lead {
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0 0 10px;
}

.ecosystem-perks-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.perk-item {
  display: flex;
  gap: 16px;
}

.perk-check {
  font-size: 1.1rem;
  color: #27c93f;
  font-weight: 700;
  background: rgba(39, 201, 63, 0.1);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.perk-item strong {
  display: block;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 4px;
}

.perk-item p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
}

.ecosystem-visual {
  display: flex;
  justify-content: center;
}

.ecosystem-card-visual {
  background: linear-gradient(135deg, #161822 0%, #0d0e14 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  width: 100%;
  max-width: 380px;
  height: 320px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.eco-circle-glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(108, 140, 255, 0.2) 0%, transparent 70%);
  filter: blur(20px);
}

.eco-ui-element {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 16px;
  position: absolute;
  top: 50px;
  left: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.eco-ui-element.block-2 {
  top: 170px;
}

.eco-label {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.eco-label-green {
  font-size: 0.75rem;
  color: #27c93f;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.eco-line {
  background: rgba(255, 255, 255, 0.1);
  height: 8px;
  border-radius: 4px;
  width: 100%;
}

.eco-line-short {
  background: rgba(255, 255, 255, 0.1);
  height: 8px;
  border-radius: 4px;
  width: 60%;
}

/* 6. Detailed Blocks */
.detailed-blocks-section {
  padding-top: 10px;
}

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

@media (max-width: 767px) {
  .detailed-grid {
    grid-template-columns: 1fr;
  }
}

.detail-block-card {
  background: #141720;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.2s ease;
}

.detail-block-card:hover {
  border-color: rgba(108, 140, 255, 0.15);
  background: #171a25;
  transform: translateY(-2px);
}

.detail-block-card--wide {
  grid-column: span 2;
  background: linear-gradient(135deg, #141720 0%, #10121a 100%);
}

@media (max-width: 767px) {
  .detail-block-card--wide {
    grid-column: span 1;
  }
}

.detail-icon {
  font-size: 1.8rem;
  margin-bottom: 4px;
}

.detail-block-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.detail-block-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* 7. Onboarding Block */
.onboarding-section {
  padding-top: 10px;
}

.onboarding-timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.onboarding-timeline::before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 20px;
  width: 2px;
  background: rgba(108, 140, 255, 0.1);
}

.onboarding-step {
  display: flex;
  gap: 24px;
  position: relative;
  align-items: flex-start;
}

.onboarding-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #171a22;
  border: 2px solid var(--accent);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 0 0 10px rgba(108, 140, 255, 0.2);
}

.onboarding-content {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 20px 24px;
  border-radius: 14px;
  flex-grow: 1;
}

.onboarding-content h4 {
  font-size: 1.1rem;
  color: #fff;
  margin: 0 0 8px;
  font-weight: 700;
}

.onboarding-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
}

/* 8. Social Proof V3 */
.social-proof-section {
  padding-top: 10px;
}

.reviews-grid-v3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.review-card-v3 {
  background: #141620;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.2s ease;
}

.review-card-v3:hover {
  border-color: rgba(108, 140, 255, 0.1);
  transform: translateY(-2px);
}

.review-card-future {
  background: linear-gradient(135deg, rgba(108, 140, 255, 0.03) 0%, rgba(108, 140, 255, 0) 100%);
  border: 1px dashed rgba(108, 140, 255, 0.15);
}

.review-header-v3 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.review-author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-author-info strong {
  font-size: 1rem;
  color: #fff;
}

.review-author-info span {
  font-size: 0.8rem;
  color: var(--muted);
}

.review-metric {
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(39, 201, 63, 0.1);
  color: #27c93f;
  padding: 4px 10px;
  border-radius: 30px;
  flex-shrink: 0;
}

.review-card-future .review-metric {
  background: rgba(108, 140, 255, 0.15);
  color: var(--accent-hover);
}

.review-card-v3 p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* 10. Subpage Promo Grids & Article Styling */
.club-promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

@media (max-width: 767px) {
  .club-promo-grid {
    grid-template-columns: 1fr;
  }
}

.promo-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.promo-icon {
  font-size: 1.8rem;
}

.promo-card h3 {
  font-size: 1.2rem;
  color: #fff;
  margin: 0;
  font-weight: 700;
}

.promo-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
}

.club-access-banner {
  background: linear-gradient(135deg, #171a28 0%, #0d0f15 100%);
  border: 1px solid rgba(108, 140, 255, 0.15);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.club-access-banner h2 {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
}

.club-access-banner p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.access-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Articles */
.articles-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 60px;
}

.article-card-v3 {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  padding: 32px;
  transition: all 0.2s ease;
}

.article-card-v3:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(108, 140, 255, 0.15);
}

.article-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 12px;
  font-weight: 500;
}

.article-card-v3 h3 {
  font-size: 1.4rem;
  margin: 0 0 12px;
  font-weight: 700;
}

.article-link {
  color: #fff;
  transition: color 0.15s ease;
}

.article-link:hover {
  color: var(--accent-hover);
}

.article-card-v3 p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0 0 20px;
}

.article-more {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-hover);
}

.guides-footer {
  text-align: center;
  max-width: 600px;
  margin: 40px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 30px;
}

.guides-footer p {
  margin: 0 0 10px;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Epoch Shift Section Styles */
.epoch-shift-section {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
}

.epoch-pairs-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.epoch-pair-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.epoch-card {
  flex: 1;
  min-width: 0;
  background: #141721;
  border-radius: 18px;
  padding: 24px 28px;
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.epoch-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.epoch-card-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  align-self: flex-start;
  margin-bottom: 12px;
}

.epoch-card-badge.present {
  background: rgba(108, 140, 255, 0.15);
  color: var(--accent-hover);
}

.epoch-card-past {
  background: #0d0f15;
  border: 1px solid rgba(255, 255, 255, 0.02);
  color: var(--muted);
}

.epoch-card-present {
  border: 1px solid transparent;
  background: linear-gradient(#141721, #141721) padding-box,
              linear-gradient(135deg, var(--accent) 0%, rgba(108, 140, 255, 0.1) 100%) border-box;
  color: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.epoch-card-present:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(108, 140, 255, 0.2);
  background: linear-gradient(#171a25, #171a25) padding-box,
              linear-gradient(135deg, var(--accent-hover) 0%, rgba(108, 140, 255, 0.25) 100%) border-box;
}

.epoch-arrow-col {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.epoch-arrow-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #4f68ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(108, 140, 255, 0.3);
}

.epoch-arrow-wrapper svg {
  width: 20px;
  height: 20px;
  color: #fff;
}

.epoch-footer-text {
  text-align: center;
  max-width: 720px;
  margin: 16px auto 0;
}

.epoch-footer-text p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text);
  font-weight: 500;
}

/* Animations transition state configuration */
.epoch-card-past {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.epoch-card-present {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, background 0.25s ease;
}

.epoch-arrow-wrapper {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* When active */
.epoch-pair-row.is-visible .epoch-card-past {
  opacity: 0.85;
  transform: translateX(0);
}

.epoch-pair-row.is-visible .epoch-card-present {
  opacity: 1;
  transform: translateX(0);
}

.epoch-pair-row.is-visible .epoch-arrow-wrapper {
  opacity: 1;
  transform: scale(1);
}

/* Row elements delay sync */
.epoch-pair-row.is-visible .epoch-card-past {
  transition-delay: 0ms;
}
.epoch-pair-row.is-visible .epoch-card-present {
  transition-delay: 120ms;
}
.epoch-pair-row.is-visible .epoch-arrow-wrapper {
  transition-delay: 300ms;
}

@media (max-width: 768px) {
  .epoch-pair-row {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  
  .epoch-card {
    min-height: auto;
  }

  .epoch-card-past {
    transform: translateY(-16px);
  }

  .epoch-card-present {
    transform: translateY(16px);
  }

  .epoch-pair-row.is-visible .epoch-card-past,
  .epoch-pair-row.is-visible .epoch-card-present {
    transform: translateY(0);
  }

  .epoch-arrow-wrapper {
    transform: rotate(90deg) scale(0.8);
  }

  .epoch-pair-row.is-visible .epoch-arrow-wrapper {
    transform: rotate(90deg) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .epoch-card-past,
  .epoch-card-present,
  .epoch-arrow-wrapper {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ===== Публичный сайт: мобильная адаптация ===== */
@media (max-width: 768px) {
  html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  body {
    overflow-x: clip;
  }

  .site-header-container {
    flex-wrap: nowrap;
    padding: 8px 14px;
    gap: 12px;
  }

  .site-brand {
    flex: 1;
    min-width: 0;
    font-size: 0.98rem;
  }

  .site-brand img {
    width: 32px;
    height: 32px;
  }

  .site-nav--desktop,
  .site-actions--desktop {
    display: none;
  }

  .site-nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-main--landing {
    padding: 32px 16px 88px;
    gap: 88px;
  }

  .site-main--subpage {
    padding: 36px 16px 80px;
  }

  .section-header,
  .section-header-v3 {
    margin-bottom: 40px;
    gap: 12px;
  }

  .section-header h2,
  .section-header-v3 h2 {
    font-size: clamp(1.45rem, 5.5vw, 2rem);
  }

  .section-subtitle,
  .section-subtitle-v3 {
    font-size: 0.95rem;
  }

  .hero-section {
    gap: 28px;
    padding: 8px 0 0;
    margin-bottom: 0;
  }

  .hero-content {
    gap: 18px;
  }

  .hero-title,
  .hero-content h1 {
    font-size: clamp(1.65rem, 7vw, 2.25rem);
    line-height: 1.15;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions-container {
    justify-content: stretch;
  }

  .btn-hero-cta {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
    font-size: 0.98rem;
    border-radius: 12px;
  }

  .photo-placeholder {
    max-width: min(100%, 260px);
    border-radius: 20px;
  }

  .photo-placeholder-img {
    border-radius: 18px;
  }

  .club-audience-section .section-header {
    margin-bottom: 36px;
  }

  .club-audience-section .section-header h2 {
    font-size: clamp(1.45rem, 5.5vw, 2rem);
  }

  .club-program-section {
    gap: 36px;
  }

  .club-program-intro-grid h2 {
    font-size: clamp(1.35rem, 5.2vw, 1.85rem);
    line-height: 1.2;
  }

  .club-program-lead {
    font-size: 0.95rem;
  }

  .club-program-content h3 {
    font-size: 1rem;
  }

  .club-program-desc {
    font-size: 0.88rem;
  }

  .founder-section h2 {
    font-size: clamp(1.45rem, 5.5vw, 2rem);
    line-height: 1.2;
  }

  .service-spotlight-section {
    border-radius: 20px;
    padding: 24px 16px;
  }

  .service-spotlight-section h2 {
    font-size: clamp(1.35rem, 5.2vw, 1.85rem);
  }

  .spotlight-lead {
    font-size: 0.98rem;
  }

  .spotlight-features {
    gap: 14px;
  }

  .spotlight-features li {
    padding-left: 24px;
  }

  .spotlight-features li strong {
    font-size: 0.92rem;
  }

  .spotlight-features li span {
    font-size: 0.86rem;
  }

  .browser-mockup-v3 {
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
  }

  .browser-mockup-v3:hover {
    transform: none;
  }

  .mockup-bar {
    height: 36px;
    padding: 0 10px;
    gap: 8px;
  }

  .mockup-addr {
    font-size: 0.68rem;
    padding: 3px 8px;
    max-width: none;
  }

  .m-dot {
    width: 8px;
    height: 8px;
  }

  .courses-grid {
    gap: 16px;
  }

  .course-card h3 {
    font-size: 1.05rem;
  }

  .course-card p {
    font-size: 0.86rem;
  }

  .founder-lead {
    font-size: 1.05rem;
  }

  .founder-text-blocks {
    font-size: 0.95rem;
    gap: 14px;
  }

  .tariffs-grid {
    max-width: none;
    gap: 20px;
  }

  .tariff-card {
    padding: 28px 20px;
  }

  .price-val {
    font-size: 1.9rem;
  }

  .faq-summary {
    padding: 16px 18px;
    font-size: 0.95rem;
    align-items: flex-start;
  }

  .faq-content {
    padding: 0 18px 16px;
  }

  .faq-content p {
    font-size: 0.92rem;
  }

  .site-footer {
    padding: 20px 16px;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .course-card:hover,
  .tariff-card:hover {
    transform: none;
  }
}

@media (max-width: 480px) {
  .site-main--landing {
    padding-left: 14px;
    padding-right: 14px;
    gap: 80px;
  }

  .hero-title,
  .hero-content h1 {
    font-size: clamp(1.5rem, 8vw, 1.95rem);
  }

  .service-spotlight-section {
    padding: 22px 14px;
  }

  .spotlight-visual-meta {
    margin-top: 10px;
    gap: 6px;
  }

  .spotlight-badge {
    font-size: 0.68rem;
    padding: 4px 10px;
  }

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

  .tariff-header h3 {
    font-size: 1.25rem;
  }

  .tariff-features li {
    font-size: 0.86rem;
  }
}

@media (hover: none) and (pointer: coarse) {
  .browser-mockup-v3:hover,
  .course-card:hover,
  .tariff-card:hover,
  .btn-hero-cta:hover,
  .club-audience-card:hover {
    transform: none;
  }

  .club-audience-card:hover {
    background: #141721;
    border-color: var(--border);
  }
}

/* ===== Публичный сайт: ноутбук (769px — 1280px) ===== */
@media (min-width: 769px) and (max-width: 1280px) {
  .site-header-container {
    padding: 10px 24px;
  }

  .site-nav {
    gap: 14px;
  }

  .site-nav a {
    font-size: 0.9rem;
  }

  .header-login-btn {
    padding: 8px 14px !important;
    font-size: 0.84rem !important;
  }

  .site-main--landing {
    padding: 48px 28px 88px;
    gap: 88px;
  }

  .site-main--subpage {
    padding: 48px 28px 96px;
  }

  .section-header,
  .section-header-v3 {
    margin-bottom: 40px;
  }

  .hero-section {
    grid-template-columns: 1.12fr 0.88fr;
    gap: 32px;
    padding: 20px 0 8px;
  }

  .hero-content {
    gap: 20px;
  }

  .hero-title,
  .hero-content h1 {
    font-size: clamp(2rem, 3.1vw, 2.65rem);
    line-height: 1.12;
  }

  .hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.55;
  }

  .btn-hero-cta {
    padding: 14px 26px;
    font-size: 1rem;
  }

  .photo-placeholder {
    max-width: 300px;
  }

  .service-spotlight-section {
    gap: 32px;
    padding: 36px 32px;
    border-radius: 24px;
  }

  .service-spotlight-section h2 {
    font-size: clamp(1.55rem, 2.4vw, 2rem);
  }

  .spotlight-lead {
    font-size: 1rem;
  }

  .spotlight-features {
    gap: 14px;
  }

  .spotlight-features li span {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .browser-mockup-v3 {
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.5);
  }

  .founder-section {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 36px;
  }

  .founder-visual .photo-placeholder {
    max-width: 280px;
  }

  .founder-lead {
    font-size: 1.08rem;
  }

  .founder-text-blocks {
    font-size: 0.96rem;
  }

  .club-audience-section .section-header {
    margin-bottom: 32px;
  }

  .club-audience-section .section-header h2 {
    font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  }

  .club-program-section {
    gap: 36px;
  }

  .club-program-intro-grid h2 {
    font-size: clamp(1.5rem, 2.2vw, 2rem);
  }

  .club-program-lead {
    font-size: 0.96rem;
  }

  .club-program-grid {
    column-gap: 32px;
  }

  .club-program-module {
    padding: 24px 0;
  }

  .club-program-desc {
    font-size: 0.9rem;
  }

  .tariffs-grid {
    gap: 18px;
  }

  .tariff-card {
    padding: 28px 20px;
  }

  .price-val {
    font-size: 2rem;
  }

  .tariff-header h3 {
    font-size: 1.3rem;
  }

  .tariff-features li {
    font-size: 0.88rem;
  }

  .faq-summary {
    padding: 18px 22px;
    font-size: 1rem;
  }

  .faq-content p {
    font-size: 0.94rem;
  }
}

@media (min-width: 769px) and (max-width: 899px) {
  .club-program-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) and (max-width: 1100px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .course-card h3 {
    font-size: 1.08rem;
  }

  .course-card p {
    font-size: 0.88rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .tariffs-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
}

