/* ==========================================================================
   Собесник 1С — landing.css
   Неоновая палитра, взятая из фото LED-стены на фоне ментора.
   Тёмная база + розовый/фиолетовый градиент, glow-эффекты,
   LED-точки в hero.
   ========================================================================== */

:root{
  /* Тёмная база */
  --bg:            #0a0a0f;
  --bg-elevated:   #14141c;
  --bg-card:       #1a1a24;
  --bg-hover:      #22222e;

  /* Неоновые акценты */
  --neon-pink:     #ff0066;
  --neon-magenta:  #e0005b;
  --neon-purple:   #7209b7;
  --neon-violet:   #c81d77;
  --neon-red:      #ff4365;

  /* Градиенты */
  --gradient-hero:    linear-gradient(135deg, rgba(255,0,102,.25) 0%, rgba(114,9,183,.2) 50%, transparent 100%);
  --gradient-btn:     linear-gradient(135deg, #ff0066, #ff4365);
  --gradient-btn-hover: linear-gradient(135deg, #ff1a7a, #ff5577);
  --gradient-text:    linear-gradient(135deg, #ff0066, #c81d77);

  /* Свечение */
  --glow-pink:    0 0 40px rgba(255, 0, 102, 0.4);
  --glow-purple:  0 0 40px rgba(114, 9, 183, 0.4);
  --glow-card:    0 0 24px rgba(255, 0, 102, 0.12);

  /* Текст */
  --text:         #ffffff;
  --text-muted:   #a0a0b0;
  --text-dim:     #6a6a7a;

  /* Бордеры */
  --border:       rgba(255, 0, 102, 0.2);
  --border-hi:    rgba(255, 0, 102, 0.5);
  --border-subtle:rgba(255, 255, 255, 0.08);

  /* Размеры */
  --radius:       16px;
  --radius-sm:    10px;
  --radius-lg:    24px;
  --maxw:         1120px;
  --maxw-narrow:  960px;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before{
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(ellipse at 20% 0%, rgba(255, 0, 102, 0.18), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(114, 9, 183, 0.18), transparent 50%);
}

a { color: var(--neon-pink); text-decoration: none; transition: color .15s; }
a:hover { color: var(--neon-red); }

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

/* ==========================================================================
   Top nav
   ========================================================================== */

.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border-subtle);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 17px; color: var(--text);
}
.nav-brand-emoji { font-size: 22px; }
.nav-badge {
  font-size: 9px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 10px;
  background: var(--gradient-btn);
  color: #fff;
  letter-spacing: 0.08em;
  box-shadow: 0 0 10px rgba(255,0,102,0.5);
}
.nav-links {
  display: flex; gap: 24px; margin-left: auto; align-items: center;
}
.nav-links a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  padding: 10px 20px;
  background: var(--gradient-btn);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 16px rgba(255,0,102,0.35);
  transition: transform .15s, box-shadow .15s;
}
.nav-cta:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(255,0,102,0.5);
}

/* Burger (мобильное меню чекбокс-хак) */
.nav-burger { display: none; }
.nav-burger-checkbox { display: none; }

/* ==========================================================================
   Секции общие
   ========================================================================== */

section { position: relative; z-index: 1; }

.section-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 96px 24px;
}
.section-inner.narrow { max-width: var(--maxw-narrow); }

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--neon-pink);
  padding: 6px 14px;
  border: 1px solid var(--border-hi);
  border-radius: 20px;
  margin-bottom: 18px;
  background: rgba(255,0,102,0.05);
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}

.section-sub {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.section-center { text-align: center; }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: calc(100vh - 65px);
  display: flex;
  align-items: center;
  padding: 40px 24px 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 0, 102, 0.35) 1px, transparent 1.5px),
    radial-gradient(circle, rgba(114, 9, 183, 0.3) 1px, transparent 1.5px);
  background-size: 28px 28px, 42px 42px;
  background-position: 0 0, 14px 14px;
  opacity: 0.5;
  animation: led-pulse 6s ease-in-out infinite;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

@keyframes led-pulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.7; }
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--maxw-narrow);
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,0,102,0.1);
  border: 1px solid var(--border-hi);
  border-radius: 30px;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 28px;
  animation: badge-glow 3s ease-in-out infinite;
}

@keyframes badge-glow {
  0%, 100% { box-shadow: 0 0 16px rgba(255,0,102,0.3); }
  50% { box-shadow: 0 0 28px rgba(255,0,102,0.6); }
}

.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--neon-pink);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-pink);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}

.hero h1 .gradient {
  background: linear-gradient(135deg, #ff0066 0%, #ff4365 40%, #c81d77 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 14px;
  line-height: 1.55;
}

.hero-social {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 38px;
}
.hero-social strong { color: var(--text); }

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s, background .15s, border-color .15s;
  cursor: pointer;
  font-family: inherit;
  border: 0;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-btn);
  color: #fff;
  box-shadow: 0 6px 24px rgba(255,0,102,0.4);
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255,0,102,0.55);
  background: var(--gradient-btn-hover);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-hi);
}
.btn-outline:hover {
  color: var(--text);
  background: rgba(255,0,102,0.08);
  border-color: var(--neon-pink);
}

.btn-lg { padding: 18px 36px; font-size: 16px; }

.hero-fineprint {
  font-size: 13px;
  color: var(--text-dim);
}

/* ==========================================================================
   Problem section (карточки проблемы)
   ========================================================================== */

.problem {
  background: var(--bg);
  border-top: 1px solid var(--border-subtle);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.problem-card {
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.problem-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hi);
  box-shadow: var(--glow-card);
}
.problem-card-icon {
  font-size: 40px;
  margin-bottom: 16px;
  line-height: 1;
}
.problem-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 10px;
}
.problem-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}
.problem-card.accent { border-color: var(--border-hi); }
.problem-card.accent h3 { color: var(--neon-pink); }

/* ==========================================================================
   How it works (шаги)
   ========================================================================== */

.how {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-subtle);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.step {
  position: relative;
  padding: 28px 20px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  text-align: center;
}

.step-num {
  display: inline-block;
  width: 44px; height: 44px;
  line-height: 44px;
  border-radius: 50%;
  background: var(--gradient-btn);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(255,0,102,0.4);
}
.step h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
}
.step p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================================
   Features grid
   ========================================================================== */

.features {
  background: var(--bg);
  border-top: 1px solid var(--border-subtle);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.feature {
  padding: 28px 24px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border-subtle);
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.feature:hover {
  transform: translateY(-4px);
  border-color: var(--border-hi);
  box-shadow: var(--glow-card);
}
.feature-icon {
  font-size: 36px;
  margin-bottom: 14px;
  line-height: 1;
}
.feature h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
}
.feature p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ==========================================================================
   About mentor
   ========================================================================== */

.about {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 30%, rgba(255,0,102,0.15), transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(114,9,183,0.15), transparent 50%);
  pointer-events: none;
}

.about-inner {
  position: relative;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: center;
}

.mentor-photo-wrap {
  position: relative;
}
.mentor-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 0 60px rgba(255,0,102,0.35),
              0 0 120px rgba(114,9,183,0.25);
  border: 2px solid rgba(255,0,102,0.3);
}

/* SVG-placeholder если реального фото ещё нет */
.mentor-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 30% 20%, #ff0066, transparent 60%),
    radial-gradient(circle at 70% 80%, #7209b7, transparent 60%),
    #1a1a24;
  border: 2px solid var(--border-hi);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  font-weight: 900;
  color: rgba(255,255,255,0.9);
  box-shadow: 0 0 60px rgba(255,0,102,0.35);
  text-shadow: 0 0 40px rgba(255,0,102,0.8);
}

.about-content h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  margin: 0 0 18px;
  font-weight: 800;
  line-height: 1.2;
}

.about-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 16px;
}

.about-content p strong { color: var(--text); }

.about-stats {
  display: flex;
  gap: 32px;
  margin: 24px 0;
}
.about-stat b {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--neon-pink);
  line-height: 1;
}
.about-stat span {
  font-size: 13px;
  color: var(--text-muted);
}

.about-content .btn { margin-top: 12px; }

/* ==========================================================================
   Final CTA
   ========================================================================== */

.final-cta {
  background: var(--bg);
  border-top: 1px solid var(--border-subtle);
}

.cta-card {
  background:
    radial-gradient(circle at 0% 0%, rgba(255,0,102,0.2), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(114,9,183,0.2), transparent 50%),
    var(--bg-card);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-lg);
  padding: 64px 32px;
  text-align: center;
  max-width: var(--maxw-narrow);
  margin: 0 auto;
  box-shadow: 0 0 60px rgba(255,0,102,0.15);
}

.cta-card h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  margin: 0 0 14px;
  line-height: 1.15;
}
.cta-card p {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0 0 32px;
  line-height: 1.6;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding: 60px 24px 32px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand-wrap {
  max-width: 320px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.footer-brand-emoji { font-size: 24px; }
.footer-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 16px;
}
.footer-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 12px;
  background: var(--gradient-btn);
  color: #fff;
  letter-spacing: 0.08em;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin: 0 0 16px;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-col li {
  margin-bottom: 10px;
}
.footer-col a {
  color: var(--text-muted);
  font-size: 14px;
  text-decoration: none;
}
.footer-col a:hover { color: var(--neon-pink); }

.footer-legal {
  border-top: 1px solid var(--border-subtle);
  padding-top: 24px;
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.7;
}
.footer-legal p { margin: 4px 0; }
.footer-legal strong { color: var(--text-muted); }

/* ==========================================================================
   Адаптив (мобильный)
   ========================================================================== */

/* Планшет: показываем всё меню но чуть плотнее */
@media (max-width: 1000px) and (min-width: 761px) {
  .problem-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav-inner { padding: 14px 18px; }
  .nav-links {
    position: fixed;
    inset: 65px 0 auto 0;
    background: rgba(10, 10, 15, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    transform: translateY(-120%);
    transition: transform .25s;
    align-items: flex-start;
    border-bottom: 1px solid var(--border);
    margin-left: 0;
  }
  .nav-burger-checkbox:checked ~ .nav-links {
    transform: translateY(0);
  }
  .nav-burger {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    margin-left: auto;
    padding: 8px;
  }
  .nav-burger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--text);
    border-radius: 2px;
  }
  .nav-cta { width: 100%; justify-content: center; }

  .section-inner { padding: 64px 20px; }
  .hero { padding: 30px 20px 60px; min-height: auto; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .hero-buttons .btn { justify-content: center; }

  .problem-grid,
  .steps,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .mentor-photo-wrap { max-width: 280px; margin: 0 auto; }
  .mentor-placeholder { font-size: 96px; }

  .about-stats { gap: 20px; justify-content: center; flex-wrap: wrap; }

  .cta-card { padding: 44px 24px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand-wrap { grid-column: 1 / -1; }
}

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

/* ============================ Nav highlight — Подписка PRO ============================ */
.nav-highlight{
  background:linear-gradient(135deg,rgba(253,195,0,.18),rgba(245,166,35,.08));
  border:1px solid rgba(253,195,0,.45);
  border-radius:10px;
  padding:8px 14px!important;
  color:#fdc300!important;
  font-weight:700;
  transition:all .2s;
}
.nav-highlight:hover{
  background:linear-gradient(135deg,rgba(253,195,0,.3),rgba(245,166,35,.15));
  border-color:rgba(253,195,0,.7);
  box-shadow:0 0 14px rgba(253,195,0,.3);
}

/* ============================ Pricing section on landing ============================ */
.pricing-section{
  padding:32px 0 20px;
  background:var(--bg);
  border-top:1px solid var(--border-subtle);
}
.pricing-hero{text-align:center;max-width:720px;margin:0 auto 16px;padding:0 16px}
.pricing-hero h2{font-size:clamp(26px,3.2vw,36px);font-weight:800;margin-bottom:8px;margin-top:0}
.pro-highlight-text{background:linear-gradient(135deg,#fdc300,#f5a623);-webkit-background-clip:text;background-clip:text;color:transparent}
.pricing-lead{color:var(--text-muted);font-size:1.05rem;line-height:1.5}

.pricing-trial-card{
  background:linear-gradient(135deg,rgba(253,195,0,.15),rgba(245,166,35,.05));
  border:1px solid #fdc300;
  border-radius:14px;
  padding:14px 18px;
  max-width:600px;
  margin:16px auto;
  text-align:center;
}
.pricing-trial-title{font-size:1.15rem;font-weight:700;margin-bottom:6px;color:#fdc300}
.pricing-trial-card p{color:var(--text-muted);font-size:.95rem;line-height:1.5}

.pricing-features-grid{
  max-width:720px;margin:20px auto;padding:0 16px;
  display:flex;flex-direction:column;gap:8px;
}
.pricing-feat{
  display:flex;align-items:flex-start;gap:12px;
  padding:14px 16px;
  background:var(--bg-card);
  border:1px solid var(--border);
  border-radius:14px;
}
.pricing-feat strong{display:block;color:var(--text);margin-bottom:2px;font-size:.95rem}
.pricing-feat .sub{color:var(--text-muted);font-size:.85rem}
.pricing-feat .ic{font-size:1.4rem;flex-shrink:0}

.pricing-cards-grid{
  max-width:980px;margin:20px auto;padding:0 16px;
  display:grid;grid-template-columns:1fr;gap:14px;
}
@media(min-width:700px){.pricing-cards-grid{grid-template-columns:1fr 1fr 1fr}}
.pcard{
  background:var(--bg-card);
  border:2px solid var(--border);
  border-radius:16px;
  padding:24px;text-align:center;position:relative;
}
.pcard.popular{
  border-color:#fdc300;
  background:linear-gradient(135deg,rgba(253,195,0,.05),transparent);
}
.pcard.popular::before{
  content:'Популярный';
  position:absolute;top:-11px;left:50%;transform:translateX(-50%);
  background:#fdc300;color:#000;
  font-size:11px;font-weight:700;
  padding:3px 12px;border-radius:8px;
}
.pcard-name{font-size:1.1rem;font-weight:700;color:var(--text);margin-bottom:8px}
.pcard-price{font-size:1.6rem;font-weight:800;color:var(--text)}
.pcard-price .sbp-label{font-size:.7rem;color:#fdc300;margin-left:4px;text-transform:uppercase;font-weight:700}
.pcard-price-card{font-size:.85rem;color:var(--text-muted);margin:4px 0 10px}
.pcard-period{color:var(--text-muted);font-size:.9rem}

.pricing-offer-block{
  background:linear-gradient(135deg,rgba(114,9,183,.12),rgba(255,0,102,.08));
  border:1px solid rgba(114,9,183,.35);
  border-radius:14px;
  padding:16px 20px;
  max-width:720px;margin:20px auto;
  text-align:center;
}
.pricing-offer-block p{color:var(--text);margin-bottom:10px;font-size:.95rem}
.pricing-offer-link{
  display:inline-block;padding:10px 20px;
  background:linear-gradient(135deg,#7209b7,#ff0066);
  color:#fff;text-decoration:none;border-radius:10px;font-weight:600;margin-top:6px;
}
.pricing-offer-link:hover{filter:brightness(1.08)}

.pricing-cta-block{
  max-width:720px;margin:16px auto 0;padding:0 16px;text-align:center;
}
.pricing-note{
  color:var(--text-dim);font-size:.82rem;
  max-width:720px;margin:12px auto 0;line-height:1.5;
}
.pricing-note .link{color:#fdc300;text-decoration:underline}
