/* ============================================
   LMS PERKS — COMPONENTS CSS
   ============================================ */

/* ── NAVBAR ── */
.lp-nav {
  background: var(--bg-nav);
  border-bottom: 1px solid var(--border-dark);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.lp-nav .navbar-brand {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text-light) !important;
  letter-spacing: -0.3px;
  padding: 0;
}

.lp-nav .navbar-brand span {
  font-style: italic;
  color: var(--text-subtle);
}

.lp-nav .navbar-toggler {
  border: 1px solid var(--border-dark);
  padding: 0.4rem 0.6rem;
}

.lp-nav .navbar-toggler-icon {
  filter: invert(1);
}

.lp-nav .nav-link {
  font-size: 18px;
  color: var(--text-muted) !important;
  font-weight: 400;
  padding: 0.5rem 0.75rem !important;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.lp-nav .nav-link:hover,
.lp-nav .nav-link.active {
  color: var(--text-light) !important;
  background: rgba(245,240,240,0.06);
}

.lp-nav .nav-link.active {
  color: var(--text-light) !important;
}

.lp-nav .dropdown-toggle::after {
  margin-left: 0.45rem;
  vertical-align: 0.15em;
}

.lp-nav .navbar-nav {
  gap: 0.2rem;
}

.lp-nav-inner {
  padding: 1.05rem 0;
}

.lp-nav .navbar-collapse {
  align-items: center;
}

.lp-nav .nav-cta {
  margin-left: 2rem;
}

.lp-help-menu {
  min-width: 360px;
  background: #141417;
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 0.6rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.lp-help-item {
  display: block;
  border-radius: 8px;
  padding: 0.85rem 0.9rem;
  color: var(--text-light);
}

.lp-help-item + .lp-help-item {
  margin-top: 0.35rem;
}

.lp-help-item:hover,
.lp-help-item:focus {
  background: #1a1a1f;
  color: var(--text-light);
}

.lp-help-title {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

.lp-help-copy {
  display: block;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-subtle);
}

/* ── HERO SECTION ── */
.lp-hero {
  background: var(--bg-page);
  border-bottom: 1px solid var(--border-dark);
  padding: 5rem 0 4rem;
}

.lp-hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 1.25rem;
  display: block;
}

.lp-hero .hero-meta {
  font-size: 16px;
  color: var(--text-subtle);
  margin-top: 1rem;
}

.lp-hero .hero-sub {
  font-size: 20px !important;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.lp-hero .hero-sub-note {
  font-size: 18px !important;
  color: var(--text-subtle);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* ── CAROUSEL ── */
.lp-carousel-outer {
  overflow: hidden;
  position: relative;
}

.lp-carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.lp-carousel-card {
  min-width: calc(50% - 0.5rem);
  flex-shrink: 0;
  background: var(--bg-dark-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

@media (max-width: 576px) {
  .lp-carousel-card {
    min-width: 84%;
  }
}

.lp-carousel-card .car-num {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-subtle);
  margin-bottom: 0.75rem;
  display: block;
  letter-spacing: 0.05em;
}

.lp-carousel-card .car-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1.35;
  margin-bottom: 0.6rem;
}

.lp-carousel-card .car-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

.lp-carousel-controls {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.car-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-darker);
  background: var(--bg-dark-surface);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.car-btn:hover {
  border-color: var(--text-subtle);
  background: var(--bg-dark-raised);
}

.car-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.car-dots {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.car-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-darker);
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  padding: 0;
}

.car-dot.active {
  width: 24px;
  border-radius: 3px;
  background: var(--red);
}

/* ── FOOTER ── */
.footer-support {
  background: #111113;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 4rem 0;
}

.footer-support-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.footer-support-card {
  background: #16161a;
  border: 1px solid #24242a;
  border-radius: 8px;
  padding: 2rem 2.1rem;
}

.footer-support-card .section-label {
  color: #ddcdd1;
}

.footer-support-card h3 {
  font-size: 2rem;
  color: var(--text-light);
  margin-bottom: 0.65rem;
}

.footer-support-card p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  max-width: 38rem;
}

.footer-support-card .btn {
  min-width: 220px;
  justify-content: center;
}

.lp-footer {
  background: var(--bg-nav);
  border-top: 1px solid var(--border-dark);
  padding: 3rem 0 1.5rem;
}

.lp-footer .footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text-light);
  letter-spacing: -0.3px;
  margin-bottom: 0.5rem;
  display: block;
}

.lp-footer .footer-logo span {
  font-style: italic;
  color: var(--text-subtle);
}

.lp-footer .footer-tagline {
  font-size: 16px;
  color: var(--text-subtle);
  margin-bottom: 0;
}

.lp-footer .footer-col-title {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-subtle);
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.lp-footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.lp-footer .footer-links a {
  font-size: 16px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.lp-footer .footer-links a:hover {
  color: var(--text-light);
}

.lp-footer .footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 1.25rem;
  margin-top: 2.5rem;
}

.lp-footer .footer-copy {
  font-size: 13px;
  color: var(--text-subtle);
}

.lp-footer .footer-lms-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.lp-footer .footer-lms-pill {
  font-size: 12px;
  color: var(--text-subtle);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-pill);
  padding: 0.15rem 0.6rem;
}

/* ── CONTENT STUDIO ── */
.content-type-card {
  background: var(--bg-dark-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 1.65rem;
  height: 100%;
  transition: var(--transition);
}

.content-type-card:hover {
  border-color: var(--border-darker);
  background: var(--bg-dark-raised);
}

.content-type-card .ct-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--red-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.content-type-card .ct-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.5;
}

.content-type-card .ct-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.content-type-card .ct-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.75;
}

.content-type-card .ct-list {
  list-style: none;
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.content-type-card .ct-list li {
  font-size: 15px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.content-type-card .ct-list li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ── HOW IT WORKS STEPS ── */
.how-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  position: relative;
}

.how-step .step-num {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-light);
  border: 1px solid var(--border-darker);
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.55rem;
  flex-shrink: 0;
  line-height: 1;
  width: auto;
}

.how-step .step-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.2rem;
  color: var(--text-subtle);
  font-size: 18px;
  line-height: 1;
}

.how-step .step-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.25rem;
}

.how-step .step-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
}

.how-actions {
  display: flex;
  width: 100%;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  text-align: center;
}

.how-actions .btn {
  min-width: 250px;
  justify-content: center;
}

.consult-how-actions-wrap {
  padding-top: 1rem;
  text-align: center;
}

.consult-how-actions {
  width: fit-content;
  max-width: 100%;
  margin: 3rem auto 0;
  padding-top: 0.5rem;
  column-gap: 1.25rem;
  row-gap: 0.9rem;
  justify-content: center !important;
}

/* ── CONSULT FORM ── */
.consult-card {
  background: #141519;
  border: 1px solid #2e2f36;
  border-radius: var(--radius-xl);
  padding: 1.95rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.panel-card {
  background: var(--bg-dark-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  height: 100%;
}

.panel-card p:last-child {
  margin-bottom: 0;
}

.panel-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin: 1rem 0 0;
}

.panel-list li {
  position: relative;
  padding-left: 1rem;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
}

.panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}

.compare-card {
  background: var(--bg-dark-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  height: 100%;
}

.compare-card.featured {
  background: var(--bg-card);
  border: 2px solid var(--red);
  color: var(--text-dark);
}

.compare-card .compare-title {
  display: block;
  font-size: 19px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.9rem;
}

.compare-card.featured .compare-title {
  color: var(--text-dark);
}

.compare-card .compare-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0;
}

.compare-card .compare-list li {
  position: relative;
  padding-left: 1rem;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-muted);
}

.compare-card .compare-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #6b6b73;
}

.compare-card.featured .compare-list li {
  color: var(--text-dark-body);
}

.compare-card.featured .compare-list li::before {
  background: var(--red);
}

.call-card-actions {
  margin-top: 1.4rem;
}

.inline-note {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

.form-top-note {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ded0d3;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.form-helper-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.form-helper-card {
  background: #101114;
  border: 1px solid #2b2c33;
  border-radius: 8px;
  padding: 0.95rem 1rem;
}

.form-helper-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

.form-helper-copy {
  display: block;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
}

.form-submit-row {
  padding-top: 0.25rem;
  border-top: 1px solid #2c2d34;
}

.issue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.issue-card {
  background: var(--bg-dark-surface);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 1.45rem;
}

.issue-card.issue-card-light {
  background: var(--bg-card);
  border-color: var(--border-card);
  color: var(--text-dark);
}

.issue-card .issue-kicker {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.issue-card.issue-card-light .issue-kicker {
  color: var(--text-dark-muted);
}

.issue-card .issue-title {
  font-size: 20px;
  line-height: 1.35;
  color: var(--text-light);
  margin-bottom: 0.7rem;
  font-weight: 600;
}

.issue-card.issue-card-light .issue-title {
  color: var(--text-dark);
}

.issue-card .issue-copy {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
}

.issue-card.issue-card-light .issue-copy {
  color: var(--text-dark-body);
}

.issue-card .issue-fix {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-dark);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
}

.issue-card.issue-card-light .issue-fix {
  border-top-color: var(--border-card);
  color: var(--text-dark);
}

.issue-card .issue-fix strong {
  color: var(--red);
}

.coming-perk-card .perk-desc {
  min-height: 5.4rem;
}

/* ── EMAIL NOTIFY (coming soon) ── */
.notify-form {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  max-width: 420px;
}

.notify-form input {
  flex: 1;
  min-width: 200px;
}

/* ── ACTIVE NAV STATE ── */
.lp-nav .nav-link[data-page].active-page {
  color: var(--text-light) !important;
  font-weight: 500;
}

/* ── SECTION HEADERS ── */
.section-header {
  margin-bottom: 2.5rem;
}

.section-header .section-label {
  margin-bottom: 0.5rem;
}

.section-header h2 {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .lp-nav .navbar-collapse {
    padding-top: 1rem;
  }

  .lp-nav .navbar-nav {
    gap: 0.35rem;
  }

  .lp-help-menu {
    min-width: 100%;
    margin-top: 0.4rem;
  }

  .footer-support-row {
    grid-template-columns: 1fr;
  }

  .issue-grid {
    grid-template-columns: 1fr;
  }

  .form-helper-grid {
    grid-template-columns: 1fr;
  }

  .lp-nav .nav-cta {
    margin-left: 0;
  }

  .how-actions {
    justify-content: center;
    gap: 0.9rem;
    margin-top: 1.75rem;
  }

  .how-actions .btn {
    min-width: 220px;
  }

  .consult-how-actions {
    width: 100%;
    margin-top: 2.35rem;
  }

  .consult-how-actions-wrap {
    padding-top: 0.65rem;
  }
}
