/* ================================================
   MyPulso Landing — styles.css
   Dark theme, Coral accent, Mobile-first
   ================================================ */

/* === Reset & Base === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #F0F6FC;
  background: #0D1117;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

/* === Focus styles (accessibility) === */
:focus-visible {
  outline: 2px solid #FF6B5A;
  outline-offset: 2px;
}

/* === Container === */
.lp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .lp-container {
    padding: 0 40px;
  }
}

/* === Typography === */
.lp-h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #F0F6FC;
}

.lp-h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #F0F6FC;
  text-align: center;
  margin-bottom: 16px;
}

.lp-overline {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FF6B5A;
  margin-bottom: 16px;
}

.lp-section-sub {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #9CA3AF;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* === Scroll Reveal === */
.lp-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.lp-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================
   HEADER
   ================================================ */
.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #21262D;
}

.lp-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

@media (min-width: 768px) {
  .lp-nav {
    padding: 0 40px;
  }
}

/* Logo */
.lp-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.lp-logo-my {
  color: #FF6B5A;
}

.lp-logo-pulso {
  color: #F0F6FC;
}

.lp-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.lp-footer-brand .lp-logo-img {
  height: 32px;
}

/* Nav links */
.lp-nav-links {
  display: none;
  gap: 32px;
}

@media (min-width: 960px) {
  .lp-nav-links {
    display: flex;
  }
}

.lp-nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #9CA3AF;
  transition: color 0.15s ease;
  white-space: nowrap;
}

.lp-nav-links a:hover {
  color: #F0F6FC;
}

/* Nav actions */
.lp-nav-actions {
  display: none;
  align-items: center;
  gap: 16px;
}

@media (min-width: 960px) {
  .lp-nav-actions {
    display: flex;
  }
}

.lp-nav-login {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #9CA3AF;
  transition: color 0.15s ease;
}

.lp-nav-login:hover {
  color: #F0F6FC;
}

.lp-nav-btn {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #FF6B5A;
  border: 1.5px solid #FF6B5A;
  padding: 8px 20px;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.lp-nav-btn:hover {
  background: rgba(255, 107, 90, 0.1);
}

/* Burger */
.lp-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

@media (min-width: 960px) {
  .lp-burger {
    display: none;
  }
}

.lp-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #F0F6FC;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.lp-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.lp-burger.open span:nth-child(2) {
  opacity: 0;
}

.lp-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.lp-mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0D1117;
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 32px 20px;
  gap: 0;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.lp-mobile-menu.open {
  transform: translateX(0);
}

@media (min-width: 960px) {
  .lp-mobile-menu {
    display: none !important;
  }
}

.lp-mobile-menu a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #F0F6FC;
  padding: 16px 0;
  border-bottom: 1px solid #21262D;
}

.lp-mobile-menu-actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-mobile-menu-actions .lp-nav-login {
  font-size: 16px;
  text-align: center;
  padding: 12px;
}

.lp-mobile-menu-actions .lp-nav-btn {
  font-size: 16px;
  text-align: center;
  padding: 14px 24px;
}

/* ================================================
   HERO
   ================================================ */
.lp-hero {
  position: relative;
  padding: 140px 0 64px;
  text-align: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .lp-hero {
    padding: 160px 0 80px;
  }
}

.lp-hero-bg {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 107, 90, 0.15) 0%, rgba(255, 107, 90, 0.03) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.lp-hero .lp-container {
  position: relative;
  z-index: 1;
}

.lp-hero .lp-overline {
  text-align: center;
}

.lp-hero .lp-h1 {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 24px;
}

.lp-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  color: #9CA3AF;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
}

@media (min-width: 768px) {
  .lp-hero-sub {
    font-size: 20px;
  }
}

.lp-hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

@media (min-width: 520px) {
  .lp-hero-cta {
    flex-direction: row;
    justify-content: center;
  }
}

/* === CTA Buttons === */
.lp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 17px;
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease, color 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.lp-cta-primary {
  background: #FF6B5A;
  color: #FFFFFF;
  padding: 18px 44px;
  border: none;
  box-shadow: 0 4px 24px rgba(255, 107, 90, 0.3);
}

.lp-cta-primary:hover {
  background: #E8594A;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(255, 107, 90, 0.4);
}

.lp-cta-secondary {
  background: transparent;
  color: #FF6B5A;
  padding: 16px 42px;
  border: 2px solid #FF6B5A;
}

.lp-cta-secondary:hover {
  background: rgba(255, 107, 90, 0.1);
  transform: translateY(-3px);
}

/* Micro copy */
.lp-cta-micro {
  color: #9CA3AF;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  margin-top: 12px;
  text-align: center;
}

/* === Value strip === */
.lp-value-strip {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.lp-value-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #9CA3AF;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
}

.lp-value-strip-item strong {
  color: #F0F6FC;
}

@media (max-width: 640px) {
  .lp-value-strip {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

/* ================================================
   SECTIONS (generic)
   ================================================ */
.lp-section {
  padding: 64px 0;
}

@media (min-width: 768px) {
  .lp-section {
    padding: 96px 0;
  }
}

/* ================================================
   SOCIAL PROOF (числа)
   ================================================ */
.lp-section-proof {
  padding: 48px 0;
  border-bottom: 1px solid #21262D;
}

@media (min-width: 768px) {
  .lp-section-proof {
    padding: 64px 0;
  }
}

.lp-social-proof {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}

@media (min-width: 768px) {
  .lp-social-proof {
    grid-template-columns: repeat(4, 1fr);
  }
}

.lp-proof-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #FF6B5A;
  line-height: 1;
}

@media (min-width: 768px) {
  .lp-proof-number {
    font-size: 48px;
  }
}

.lp-proof-label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #9CA3AF;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .lp-proof-label {
    font-size: 15px;
  }
}

/* ================================================
   STEPS (3 шага)
   ================================================ */
.lp-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .lp-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 64px;
  }
}

.lp-step {
  background: #161B22;
  border: 1px solid #21262D;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.lp-step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #FF6B5A;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.lp-step-icon {
  margin-bottom: 20px;
}

.lp-step-icon svg {
  margin: 0 auto;
}

.lp-step-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #F0F6FC;
  margin-bottom: 12px;
}

.lp-step-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #9CA3AF;
  line-height: 1.7;
}

/* ================================================
   TRAINERS SECTION
   ================================================ */
.lp-trainers-section {
  background: linear-gradient(135deg, rgba(255, 107, 90, 0.05) 0%, rgba(255, 107, 90, 0.02) 100%);
  border: 1px solid rgba(255, 107, 90, 0.1);
  border-radius: 16px;
  padding: 48px 20px;
}

@media (min-width: 768px) {
  .lp-trainers-section {
    border-radius: 24px;
    padding: 80px 40px;
  }
}

.lp-trainer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

@media (min-width: 640px) {
  .lp-trainer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .lp-trainer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lp-trainer-card {
  background: rgba(22, 27, 34, 0.7);
  border: 1px solid #21262D;
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-trainer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.lp-trainer-card-icon {
  margin-bottom: 16px;
}

.lp-trainer-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #F0F6FC;
  margin-bottom: 8px;
}

.lp-trainer-card p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #9CA3AF;
  line-height: 1.7;
}

.lp-trainer-cta {
  text-align: center;
  margin-top: 48px;
}

.lp-urgency {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #FF6B5A;
  margin-top: 16px;
}

/* ================================================
   WHY MYPULSO (6 карточек)
   ================================================ */
.lp-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}

@media (min-width: 640px) {
  .lp-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .lp-why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lp-why-card {
  background: #161B22;
  border: 1px solid #21262D;
  border-radius: 16px;
  padding: 28px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.lp-why-icon {
  margin-bottom: 16px;
}

.lp-why-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #F0F6FC;
  margin-bottom: 8px;
}

.lp-why-card p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #9CA3AF;
  line-height: 1.7;
}

/* ================================================
   DIRECTIONS (направления)
   ================================================ */
.lp-directions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.lp-dir-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #161B22;
  border: 1px solid #21262D;
  border-radius: 100px;
  padding: 12px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #F0F6FC;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  min-height: 44px;
}

.lp-dir-tag:hover {
  background: #1C2333;
  border-color: #FF6B5A;
  transform: translateY(-2px);
}

.lp-dir-emoji {
  font-size: 18px;
}

.lp-directions-sub {
  text-align: center;
  color: #9CA3AF;
  font-size: 15px;
  margin-top: 24px;
}

.lp-directions-sub a {
  color: #FF6B5A;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lp-directions-sub a:hover {
  color: #FF8474;
}

/* ================================================
   FAQ
   ================================================ */
.lp-faq {
  max-width: 800px;
  margin: 40px auto 0;
}

.lp-faq-item {
  border-bottom: 1px solid #21262D;
}

.lp-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  color: #F0F6FC;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  min-height: 48px;
  gap: 16px;
}

@media (min-width: 768px) {
  .lp-faq-question {
    font-size: 18px;
  }
}

.lp-faq-question::after {
  content: '+';
  font-size: 24px;
  color: #FF6B5A;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  line-height: 1;
}

.lp-faq-item.active .lp-faq-question::after {
  transform: rotate(45deg);
}

.lp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.lp-faq-item.active .lp-faq-answer {
  max-height: 400px;
  padding-bottom: 24px;
}

.lp-faq-answer p {
  color: #9CA3AF;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .lp-faq-answer p {
    font-size: 16px;
  }
}

/* ================================================
   FINAL CTA
   ================================================ */
.lp-final-cta {
  position: relative;
  overflow: hidden;
}

.lp-final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 90, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.lp-final-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .lp-final-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.lp-final-card {
  background: #161B22;
  border: 1px solid #21262D;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.lp-final-card--trainer {
  border-color: rgba(255, 107, 90, 0.2);
  background: linear-gradient(135deg, rgba(255, 107, 90, 0.05) 0%, #161B22 100%);
}

.lp-final-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #F0F6FC;
}

.lp-final-card p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #9CA3AF;
  line-height: 1.6;
  margin-bottom: 8px;
}

.lp-final-card .lp-cta {
  width: 100%;
}

.lp-final-card .lp-cta-micro {
  margin-top: 8px;
  font-size: 13px;
}

/* ================================================
   FOOTER
   ================================================ */
.lp-footer {
  background: #0A0E14;
  border-top: 1px solid #21262D;
  padding: 48px 20px 24px;
}

@media (min-width: 768px) {
  .lp-footer {
    padding: 64px 40px 32px;
  }
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .lp-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .lp-footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
  }
}

.lp-footer-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.lp-footer-slogan {
  color: #9CA3AF;
  font-size: 14px;
  margin-top: 8px;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

.lp-footer-heading {
  color: #F0F6FC;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.lp-footer-col a {
  color: #9CA3AF;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  display: block;
  padding: 4px 0;
  transition: color 0.15s ease;
}

.lp-footer-col a:hover {
  color: #FF6B5A;
}

.lp-footer-bottom {
  border-top: 1px solid #21262D;
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: #6E7681;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.lp-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.lp-footer-legal a {
  color: #6E7681;
  font-size: 13px;
  transition: color 0.15s ease;
}

.lp-footer-legal a:hover {
  color: #FF6B5A;
}

@media (max-width: 640px) {
  .lp-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .lp-footer-legal {
    justify-content: center;
  }
}

/* ================================================
   GRADIENT DIVIDERS
   ================================================ */
.lp-section + .lp-section {
  border-top: 1px solid transparent;
  background-image: linear-gradient(#0D1117, #0D1117), linear-gradient(90deg, transparent 0%, #30363D 50%, transparent 100%);
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
}

/* ================================================
   PREFERS REDUCED MOTION
   ================================================ */
/* ================================================
   BETA SIGNUP FORM
   ================================================ */
.lp-beta-form-wrap {
  max-width: 600px;
  margin: 40px auto 0;
  background: #161B22;
  border: 1px solid #21262D;
  border-radius: 16px;
  padding: 32px 24px;
}

@media (min-width: 768px) {
  .lp-beta-form-wrap {
    padding: 40px 36px;
  }
}

.lp-beta-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (min-width: 520px) {
  .lp-beta-row {
    grid-template-columns: 1fr 1fr;
  }
}

.lp-beta-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lp-beta-field label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #9CA3AF;
  letter-spacing: 0.01em;
}

.lp-beta-field input,
.lp-beta-field select {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #F0F6FC;
  background: #0D1117;
  border: 1px solid #30363D;
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  min-height: 44px;
  -webkit-appearance: none;
}

.lp-beta-field input::placeholder {
  color: #484F58;
}

.lp-beta-field input:focus,
.lp-beta-field select:focus {
  border-color: #FF6B5A;
  box-shadow: 0 0 0 3px rgba(255, 107, 90, 0.15);
  outline: none;
}

.lp-beta-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239CA3AF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.lp-beta-field--spec {
  margin-bottom: 16px;
}

.lp-beta-consent {
  margin-bottom: 20px;
}

.lp-beta-consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #9CA3AF;
  line-height: 1.5;
}

.lp-beta-consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: #FF6B5A;
  cursor: pointer;
}

.lp-beta-consent a {
  color: #FF6B5A;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lp-beta-consent a:hover {
  color: #FF8474;
}

.lp-beta-submit {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  border: none;
}

.lp-beta-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.lp-beta-status {
  margin-top: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  text-align: center;
  min-height: 20px;
}

.lp-beta-status--success {
  color: #3FB950;
}

.lp-beta-status--error {
  color: #F85149;
}

/* ================================================
   COOKIE CONSENT BANNER
   ================================================ */
.cc-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #161B22;
  border-top: 1px solid #21262D;
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.4);
}

.cc-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .cc-main {
    flex-direction: row;
    align-items: center;
    padding: 20px 40px;
  }
}

.cc-text {
  flex: 1;
}

.cc-text p {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #9CA3AF;
  line-height: 1.6;
  margin: 0;
}

.cc-text a {
  color: #FF6B5A;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cc-text a:hover {
  color: #FF8474;
}

.cc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex-shrink: 0;
}

.cc-btn {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
  min-height: 40px;
}

.cc-btn--accept {
  background: #FF6B5A;
  color: #FFFFFF;
}

.cc-btn--accept:hover {
  background: #E8594A;
}

.cc-btn--necessary {
  background: #21262D;
  color: #F0F6FC;
}

.cc-btn--necessary:hover {
  background: #30363D;
}

.cc-btn--settings {
  background: transparent;
  color: #9CA3AF;
  border: 1px solid #30363D;
}

.cc-btn--settings:hover {
  border-color: #484F58;
  color: #F0F6FC;
}

.cc-details {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 20px;
}

@media (min-width: 768px) {
  .cc-details {
    padding: 0 40px 20px;
  }
}

.cc-category {
  padding: 10px 0;
  border-bottom: 1px solid #21262D;
}

.cc-category:last-of-type {
  border-bottom: none;
}

.cc-category label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #9CA3AF;
  line-height: 1.6;
  cursor: pointer;
}

.cc-category input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: #FF6B5A;
  cursor: pointer;
}

.cc-category strong {
  color: #F0F6FC;
}

.cc-details-actions {
  padding-top: 12px;
}

/* ================================================
   PREFERS REDUCED MOTION
   ================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .lp-reveal {
    opacity: 1;
    transform: none;
  }
}
