/*
 * Little Panda Tube — Main Stylesheet
 * File: wp-content/themes/twentysixteen-child/lpt-style.css
 *
 * Covers: Homepage, Login, Register
 * Font: DM Sans (headings) + Inter (body) via Google Fonts
 */

/* ── Google Fonts ──────────────────────────────────────────────────────── */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap");

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

:root {
  --yellow: #f5a800;
  --yellow-light: #fff8e1;
  --yellow-dark: #d48f00;
  --dark: #111827;
  --mid: #374151;
  --muted: #6b7280;
  --border: #e5e7eb;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
  --font-head: "DM Sans", sans-serif;
  --font-body: "Inter", sans-serif;
  --nav-h: 68px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Override Twenty Sixteen's content width constraints */
.lpt-page {
  max-width: 100% !important;
  width: 100% !important;
}
.site-content .site-main {
  width: 100%;
  float: none;
}
.site-content {
  display: block;
}
.site-header,
.site-footer {
  display: none;
} /* Hide default TwentySixteen header/footer */

a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}

/* ── Shared: buttons ─────────────────────────────────────────────────── */
.lpt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 24px;
  border-radius: 8px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  text-decoration: none;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.lpt-btn--primary {
  background: var(--yellow);
  color: #111;
}
.lpt-btn--primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(245, 168, 0, 0.4);
}
.lpt-btn--ghost {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--border);
}
.lpt-btn--ghost:hover {
  border-color: var(--dark);
  background: var(--bg-soft);
}
.lpt-btn--outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--border);
}
.lpt-btn--outline:hover {
  border-color: var(--yellow);
  color: var(--yellow-dark);
}
.lpt-btn--white {
  background: #fff;
  color: var(--dark);
}
.lpt-btn--white:hover {
  background: var(--yellow-light);
}
.lpt-btn--lg {
  height: 52px;
  padding: 0 32px;
  font-size: 16px;
  border-radius: 10px;
}
.lpt-btn--full {
  width: 100%;
}
.lpt-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* ── Shared: section layout ──────────────────────────────────────────── */
.lpt-section-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 24px;
}
.lpt-section-header {
  text-align: center;
  margin-bottom: 56px;
}
.lpt-section-tag {
  display: inline-block;
  background: var(--yellow-light);
  color: var(--yellow-dark);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.lpt-section-title {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}
.lpt-section-sub {
  font-size: 17px;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════════════════ */
.lpt-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  z-index: 200;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.lpt-nav.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.lpt-nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  gap: 24px;
}
.lpt-nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.lpt-nav__logo-panda {
  font-size: 24px;
  line-height: 1;
}
.lpt-nav__logo-text {
  font-family: var(--font-head);
  font-size: 18px;
  color: var(--dark);
}
.lpt-nav__logo-text strong {
  color: var(--yellow-dark);
}

.lpt-nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lpt-nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--mid);
  padding: 6px 14px;
  border-radius: 6px;
  transition:
    color 0.15s,
    background 0.15s;
}
.lpt-nav__link:hover {
  color: var(--dark);
  background: var(--bg-soft);
}

.lpt-nav__btn {
  height: 38px;
  padding: 8px 18px;
  font-size: 14px;
  border-radius: 8px;
}
.lpt-nav__btn--ghost {
  background: transparent;
  color: var(--mid);
}
.lpt-nav__btn--ghost:hover {
  background: var(--bg-soft);
  color: var(--dark);
}
.lpt-nav__btn--primary {
  background: var(--yellow);
  color: #111;
  font-weight: 700;
}
.lpt-nav__btn--primary:hover {
  background: var(--yellow-dark);
}

/* Hamburger */
.lpt-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.lpt-nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: 0.2s ease;
}
.lpt-nav__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.lpt-nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.lpt-nav__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.lpt-nav__mobile {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  gap: 4px;
}
.lpt-nav__mobile.open {
  display: flex;
}
.lpt-nav__mobile a {
  font-size: 15px;
  font-weight: 500;
  color: var(--mid);
  padding: 10px 12px;
  border-radius: 8px;
}
.lpt-nav__mobile a:hover {
  background: var(--bg-soft);
  color: var(--dark);
}
.lpt-mobile-cta {
  margin-top: 8px;
  background: var(--yellow) !important;
  color: #111 !important;
  font-weight: 700 !important;
  text-align: center;
}

/* ══════════════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════════════ */
.lpt-hero {
  padding-top: var(--nav-h);
  background: linear-gradient(160deg, #fff 0%, #fffbf0 60%, #fff8e1 100%);
  position: relative;
  overflow: hidden;
}
.lpt-hero__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 24px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.lpt-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--yellow-light);
  /* border: 1px solid #F5CL40; */
  color: var(--yellow-dark);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.lpt-hero__title {
  font-family: var(--font-head);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 20px;
}
.lpt-hero__title-accent {
  color: var(--yellow-dark);
}

.lpt-hero__sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.lpt-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.lpt-hero__note {
  font-size: 13px;
  color: var(--muted);
}

/* Browser mockup */
.lpt-mockup {
  background: var(--dark);
  border-radius: 16px;
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  animation: float 4s ease-in-out infinite;
  position: relative;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.lpt-mockup__screen {
  padding: 0;
}
.lpt-mockup__topbar {
  background: #1a1a1a;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lpt-mockup__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.lpt-mockup__dot--red {
  background: #ff5f57;
}
.lpt-mockup__dot--yellow {
  background: #febc2e;
}
.lpt-mockup__dot--green {
  background: #28c840;
}
.lpt-mockup__url {
  margin-left: 12px;
  background: #2d2d2d;
  color: #888;
  font-size: 11px;
  font-family: monospace;
  padding: 4px 12px;
  border-radius: 6px;
  flex: 1;
}
.lpt-mockup__content {
  background: #0f0f0f;
  padding: 12px;
}
.lpt-mockup__nav {
  padding: 8px 4px 12px;
  border-bottom: 1px solid #222;
  margin-bottom: 12px;
}
.lpt-mockup__logo-sm {
  color: #f5a800;
  font-size: 13px;
  font-weight: 700;
}

.lpt-mockup__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.lpt-mockup__card {
  background: #1a1a1a;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.15s;
}
.lpt-mockup__card:hover {
  background: #252525;
}
.lpt-mockup__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: #2d2d2d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.lpt-mockup__meta {
  padding: 6px 6px 2px;
}
.lpt-mockup__card-title {
  color: #ddd;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 2px;
}
.lpt-mockup__card-ch {
  color: #666;
  font-size: 8px;
}
.lpt-mockup__dur {
  float: right;
  margin: -14px 4px 0;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 8px;
  padding: 1px 4px;
  border-radius: 3px;
}

.lpt-mockup__timebar {
  background: #1a1a1a;
  border-radius: 6px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  color: #f5a800;
  font-weight: 600;
}
.lpt-mockup__progress {
  flex: 1;
  height: 4px;
  background: #2d2d2d;
  border-radius: 4px;
  overflow: hidden;
}
.lpt-mockup__progress-fill {
  height: 100%;
  background: #f5a800;
  border-radius: 4px;
}

/* Floating badges */
.lpt-badge-float {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  animation: float-badge 3s ease-in-out infinite;
}
@keyframes float-badge {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-6px) rotate(1deg);
  }
}
.lpt-badge-float--1 {
  top: 10%;
  right: -20px;
  animation-delay: 0s;
}
.lpt-badge-float--2 {
  top: 42%;
  right: -30px;
  animation-delay: 0.8s;
}
.lpt-badge-float--3 {
  bottom: 15%;
  right: -10px;
  animation-delay: 1.6s;
}

.lpt-hero__visual {
  position: relative;
  padding: 20px 40px 20px 0;
}

/* Wave */
.lpt-hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}
.lpt-hero__wave svg {
  width: 100%;
  height: 60px;
}

/* ══════════════════════════════════════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════════════════════════════════════ */
.lpt-trust {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.lpt-trust__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 36px 24px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.lpt-trust__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.lpt-trust__stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  flex: 1;
}
.lpt-trust__stat {
  padding: 0 32px;
  text-align: center;
}
.lpt-trust__stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
}
.lpt-trust__stat span {
  font-size: 13px;
  color: var(--muted);
}
.lpt-trust__divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ══════════════════════════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════════════════════════ */
.lpt-how {
  background: var(--bg);
}
.lpt-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}
.lpt-step {
  flex: 1;
  max-width: 300px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.lpt-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.lpt-step__number {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--yellow-dark);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.lpt-step__icon {
  font-size: 44px;
  margin-bottom: 16px;
}
.lpt-step__title {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
}
.lpt-step__text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.lpt-step__arrow {
  font-size: 28px;
  color: var(--yellow);
  padding: 0 16px;
  margin-top: 80px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════════════
   FEATURES
   ══════════════════════════════════════════════════════════════════════ */
.lpt-features {
  background: var(--bg-soft);
}
.lpt-feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.lpt-feat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition:
    box-shadow 0.2s,
    border-color 0.2s;
}
.lpt-feat:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--yellow);
}
.lpt-feat__icon {
  font-size: 32px;
  margin-bottom: 14px;
}
.lpt-feat__title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.lpt-feat__text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════════════════ */
.lpt-testimonials {
  background: var(--bg);
}
.lpt-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lpt-testi {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.lpt-testi__stars {
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--yellow);
}
.lpt-testi__text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--mid);
  margin-bottom: 24px;
  font-style: italic;
}
.lpt-testi__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lpt-testi__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: #111;
}
.lpt-testi__author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}
.lpt-testi__author span {
  font-size: 12px;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════════════════════════════ */
.lpt-pricing {
  background: var(--bg-soft);
}

.lpt-pricing__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 48px;
  font-size: 15px;
  font-weight: 600;
}
.lpt-pricing__toggle span {
  color: var(--muted);
  transition: color 0.2s;
}
.lpt-pricing__toggle span.active {
  color: var(--dark);
}

/* Toggle switch */
.lpt-toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
}
.lpt-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.lpt-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: 0.2s;
}
.lpt-toggle-slider::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.lpt-toggle-switch input:checked + .lpt-toggle-slider {
  background: var(--yellow);
}
.lpt-toggle-switch input:checked + .lpt-toggle-slider::before {
  transform: translateX(22px);
}

.lpt-save-badge {
  background: #d1fae5;
  color: #065f46;
  font-size: 11px;
  font-weight: 700;
  font-style: normal;
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 6px;
}

.lpt-plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.lpt-plan {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  transition: box-shadow 0.2s;
}
.lpt-plan:hover {
  box-shadow: var(--shadow-md);
}
.lpt-plan--featured {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(245, 168, 0, 0.12);
}
.lpt-plan--institution {
  background: var(--dark);
  border-color: var(--dark);
}
.lpt-plan--institution * {
  color: #fff !important;
}
.lpt-plan--institution .lpt-plan__features li {
  color: #ccc !important;
}
.lpt-plan--institution .lpt-btn--outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff !important;
}
.lpt-plan--institution .lpt-btn--outline:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

.lpt-plan__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: #111;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.lpt-plan__header {
  margin-bottom: 24px;
}
.lpt-plan__header h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.lpt-plan__price {
  display: flex;
  align-items: flex-end;
  gap: 2px;
}
.lpt-plan__currency {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}
.lpt-plan__amount {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}
.lpt-plan__period {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
}
.lpt-plan__yearly-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.lpt-plan__features {
  list-style: none;
  margin-bottom: 28px;
}
.lpt-plan__features li {
  font-size: 14px;
  color: var(--mid);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.lpt-plan__features li:last-child {
  border-bottom: none;
}

/* ══════════════════════════════════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════════════════════════════════ */
.lpt-cta {
  background: linear-gradient(135deg, var(--yellow) 0%, #ff9900 100%);
  padding: 80px 24px;
  text-align: center;
}
.lpt-cta__inner {
  max-width: 600px;
  margin: 0 auto;
}
.lpt-cta__emoji {
  font-size: 52px;
  display: block;
  margin-bottom: 20px;
}
.lpt-cta__title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: #111;
  margin-bottom: 14px;
  line-height: 1.2;
}
.lpt-cta__sub {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.65);
  margin-bottom: 36px;
}

/* ══════════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════════ */
.lpt-footer {
  background: var(--dark);
}
.lpt-footer__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 60px 24px 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}
.lpt-footer__logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.lpt-footer__logo strong {
  color: var(--yellow);
}
.lpt-footer__tagline {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 16px;
}
.lpt-footer__credit {
  font-size: 13px;
  color: #6b7280;
}
.lpt-footer__credit a {
  color: var(--yellow);
}

.lpt-footer__links {
  display: flex;
  gap: 40px;
  justify-content: flex-end;
}
.lpt-footer__col h5 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lpt-footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lpt-footer__col a {
  font-size: 14px;
  color: #9ca3af;
  transition: color 0.15s;
}
.lpt-footer__col a:hover {
  color: #fff;
}

.lpt-footer__bottom {
  border-top: 1px solid #1f2937;
  padding: 20px 24px;
  text-align: center;
}
.lpt-footer__bottom p {
  font-size: 13px;
  color: #6b7280;
}

/* ══════════════════════════════════════════════════════════════════════
   AUTH PAGES (Login + Register)
   ══════════════════════════════════════════════════════════════════════ */
.lpt-auth-page {
  min-height: 100vh;
  background: var(--bg-soft);
}

.lpt-auth-back {
  position: fixed;
  top: 20px;
  left: 24px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
}
.lpt-auth-back strong {
  color: var(--yellow-dark);
}
.lpt-auth-back:hover {
  opacity: 0.75;
}

.lpt-auth-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

/* Left side */
.lpt-auth-side {
  background: linear-gradient(145deg, var(--dark) 0%, #1a1a2e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
}
.lpt-auth-side__inner {
  max-width: 360px;
}
.lpt-auth-side__logo {
  font-size: 64px;
  margin-bottom: 24px;
}
.lpt-auth-side__title {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.lpt-auth-side__sub {
  font-size: 16px;
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 36px;
}
.lpt-auth-side__bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lpt-auth-side__bullet {
  font-size: 14px;
  color: #d1d5db;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  border-left: 3px solid var(--yellow);
}

/* Right side — form */
.lpt-auth-form-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 48px 48px;
}
.lpt-auth-form {
  width: 100%;
  max-width: 400px;
}

.lpt-auth-form__title {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--dark);
}
.lpt-auth-form__sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 36px;
}

/* Form fields */
.lpt-field {
  margin-bottom: 20px;
}
.lpt-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
  margin-bottom: 8px;
}
.req {
  color: #ef4444;
}
.opt {
  color: var(--muted);
  font-weight: 400;
}

.lpt-field input,
.lpt-field select {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  background: var(--bg);
  outline: none;
  transition: border-color 0.15s;
  -webkit-appearance: none;
}
.lpt-field input:focus,
.lpt-field select:focus {
  border-color: var(--yellow);
}
.lpt-field input::placeholder {
  color: #c4c9d4;
}

/* Error */
.lpt-error {
  display: none;
  color: #ef4444;
  font-size: 13px;
  padding: 10px 14px;
  background: #fef2f2;
  border-radius: 8px;
  border-left: 3px solid #ef4444;
  margin-bottom: 16px;
}

/* OTP boxes */
.lpt-otp-boxes {
  display: flex;
  gap: 10px;
}
.lpt-otp-box {
  width: 52px !important;
  height: 60px !important;
  padding: 0 !important;
  text-align: center !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  border: 2px solid var(--border) !important;
  border-radius: 10px !important;
  transition: border-color 0.15s !important;
  caret-color: var(--yellow);
}
.lpt-otp-box:focus {
  border-color: var(--yellow) !important;
  outline: none !important;
}

.lpt-otp-sent-msg {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* Auth back button */
.lpt-auth-back-btn {
  background: none;
  border: none;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.lpt-auth-back-btn:hover {
  color: var(--dark);
}

/* Auth switch text */
.lpt-auth-form__switch {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin-top: 20px;
}
.lpt-auth-form__switch a {
  color: var(--yellow-dark);
  font-weight: 600;
}
.lpt-auth-form__terms {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
  line-height: 1.6;
}
.lpt-auth-form__terms a {
  color: var(--yellow-dark);
}

/* OTP resend */
.lpt-otp-resend {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}
.lpt-link-btn {
  background: none;
  border: none;
  color: var(--yellow-dark);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  margin-left: 6px;
}

/* Loading */
.lpt-auth-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px 0;
  color: var(--muted);
  font-size: 14px;
}
.lpt-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--yellow);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ══════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .lpt-feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lpt-plans {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .lpt-hero__inner {
    grid-template-columns: 1fr;
  }
  .lpt-hero__visual {
    display: none;
  }
  .lpt-steps {
    flex-direction: column;
    align-items: center;
  }
  .lpt-step__arrow {
    transform: rotate(90deg);
    margin: 0;
    padding: 8px 0;
  }
  .lpt-testi-grid {
    grid-template-columns: 1fr;
  }
  .lpt-footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .lpt-footer__links {
    justify-content: flex-start;
  }
  .lpt-auth-wrap {
    grid-template-columns: 1fr;
  }
  .lpt-auth-side {
    display: none;
  }
  .lpt-auth-form-wrap {
    padding: 80px 24px 40px;
  }
}

@media (max-width: 768px) {
  .lpt-nav__links {
    display: none;
  }
  .lpt-nav__hamburger {
    display: flex;
  }
  .lpt-trust__stats {
    gap: 0;
  }
  .lpt-trust__stat {
    padding: 0 16px;
  }
  .lpt-plans {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
  .lpt-feat-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .lpt-section-title {
    font-size: 26px;
  }
  .lpt-hero__title {
    font-size: 32px;
  }
  .lpt-hero__actions {
    flex-direction: column;
  }
  .lpt-feat-grid {
    grid-template-columns: 1fr;
  }
  .lpt-trust__stats {
    flex-wrap: wrap;
    justify-content: center;
  }
  .lpt-trust__divider {
    display: none;
  }
  .lpt-otp-boxes {
    gap: 6px;
  }
  .lpt-otp-box {
    width: 44px !important;
    height: 52px !important;
    font-size: 20px !important;
  }
}

/*
 * lpt-inner.css
 * Styles for: Help, Contact, Privacy Policy, Dashboard
 * File: wp-content/themes/twentysixteen-child/css/lpt-inner.css
 */

/* ══════════════════════════════════════════════════════════════════════
   INNER PAGE SHARED
   ══════════════════════════════════════════════════════════════════════ */
.lpt-inner-page {
  padding-top: var(--nav-h);
}

.lpt-inner-hero {
  background: linear-gradient(135deg, #fff 0%, #fffbf0 100%);
  border-bottom: 1px solid var(--border);
  padding: 64px 24px 56px;
  text-align: center;
}
.lpt-inner-hero--yellow {
  background: linear-gradient(135deg, var(--yellow-light) 0%, #fff8e1 100%);
}
.lpt-inner-hero__inner {
  max-width: 640px;
  margin: 0 auto;
}
.lpt-inner-hero__title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--dark);
  margin: 12px 0 10px;
  line-height: 1.2;
}
.lpt-inner-hero__sub {
  font-size: 17px;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════════════════════
   PROSE (Privacy Policy)
   ══════════════════════════════════════════════════════════════════════ */
.lpt-prose-wrap {
  max-width: 740px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.lpt-prose__lead {
  font-size: 18px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 2px solid var(--border);
}
.lpt-prose h2 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin: 40px 0 14px;
}
.lpt-prose h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--mid);
  margin: 24px 0 10px;
}
.lpt-prose p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.lpt-prose ul {
  margin: 0 0 20px 0;
  padding-left: 24px;
}
.lpt-prose li {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 8px;
}
.lpt-prose a {
  color: var(--yellow-dark);
  text-decoration: underline;
}
.lpt-prose code {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2px 7px;
  font-size: 13px;
}
.lpt-prose__callout {
  background: var(--yellow-light);
  border-left: 4px solid var(--yellow);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin: 24px 0;
  font-size: 15px;
  color: var(--dark);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════════════
   HELP CENTRE
   ══════════════════════════════════════════════════════════════════════ */
.lpt-help-search {
  display: flex;
  gap: 0;
  margin-top: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.lpt-help-search input {
  flex: 1;
  height: 50px;
  padding: 0 20px;
  border: 2px solid var(--border);
  border-right: none;
  border-radius: 10px 0 0 10px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--dark);
  background: #fff;
  outline: none;
}
.lpt-help-search input:focus {
  border-color: var(--yellow);
}
.lpt-help-search button {
  height: 50px;
  padding: 0 24px;
  background: var(--yellow);
  color: #111;
  border: none;
  border-radius: 0 10px 10px 0;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}
.lpt-help-search button:hover {
  background: var(--yellow-dark);
}

.lpt-help-categories {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 56px;
}
.lpt-help-cat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 12px;
  text-align: center;
  text-decoration: none;
  transition: all 0.18s ease;
}
.lpt-help-cat:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.lpt-help-cat__icon {
  font-size: 28px;
  display: block;
  margin-bottom: 8px;
}
.lpt-help-cat__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
}

.lpt-help-section {
  margin-bottom: 52px;
  scroll-margin-top: 90px;
}
.lpt-help-section__title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.lpt-faq {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  overflow: hidden;
}
.lpt-faq__q {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  background: var(--bg);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background 0.15s;
}
.lpt-faq__q:hover {
  background: var(--bg-soft);
}
.lpt-faq.open .lpt-faq__q {
  background: var(--yellow-light);
  color: var(--dark);
}
.lpt-faq__chevron {
  flex-shrink: 0;
  font-size: 16px;
  transition: transform 0.2s;
  color: var(--muted);
}
.lpt-faq.open .lpt-faq__chevron {
  transform: rotate(180deg);
}
.lpt-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
  background: var(--bg-soft);
}
.lpt-faq__a p {
  padding: 16px 20px 20px;
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
  margin: 0;
}

.lpt-help-cta {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin: 48px 0;
}
.lpt-help-cta__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.lpt-help-cta__emoji {
  font-size: 40px;
  flex-shrink: 0;
}
.lpt-help-cta__inner > div {
  flex: 1;
}
.lpt-help-cta__inner h3 {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.lpt-help-cta__inner p {
  font-size: 14px;
  color: #9ca3af;
}

/* ══════════════════════════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════════════════════════ */
.lpt-contact-wrap {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}
.lpt-contact-form-col {
}
.lpt-contact-form__title {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--dark);
}
.lpt-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  background: var(--bg);
  resize: vertical;
  outline: none;
  transition: border-color 0.15s;
}
.lpt-field textarea:focus {
  border-color: var(--yellow);
}

.lpt-contact-success {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}
.lpt-contact-success span {
  font-size: 28px;
  flex-shrink: 0;
}
.lpt-contact-success strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #166534;
  margin-bottom: 4px;
}
.lpt-contact-success p {
  font-size: 14px;
  color: #166534;
  margin: 0;
}

.lpt-contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lpt-contact-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.lpt-contact-card--yellow {
  background: var(--yellow-light);
  border-color: #f5d060;
}
.lpt-contact-card__icon {
  font-size: 28px;
  flex-shrink: 0;
}
.lpt-contact-card h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.lpt-contact-card a {
  color: var(--yellow-dark);
  font-weight: 600;
  font-size: 14px;
}
.lpt-contact-card p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════════════════
   DASHBOARD / APP PAGES
   ══════════════════════════════════════════════════════════════════════ */
.lpt-app-page {
  min-height: 100vh;
  background: var(--bg-soft);
}

/* App Navbar */
.lpt-app-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: #fff;
  border-bottom: 1px solid var(--border);
  z-index: 200;
  box-shadow: var(--shadow-sm);
}
.lpt-app-nav__inner {
  max-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  gap: 16px;
}
.lpt-app-nav__logo {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  text-decoration: none;
}
.lpt-app-nav__logo strong {
  color: var(--yellow-dark);
}
.lpt-app-nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.lpt-app-nav__greeting {
  font-size: 14px;
  color: var(--muted);
}
.lpt-app-nav__user {
  cursor: pointer;
}
.lpt-app-nav__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--yellow);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
}
.lpt-app-nav__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  min-width: 180px;
  padding: 8px;
  z-index: 300;
}
.lpt-app-nav__dropdown a,
.lpt-app-nav__dropdown button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  font-size: 14px;
  color: var(--mid);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  text-align: left;
}
.lpt-app-nav__dropdown a:hover,
.lpt-app-nav__dropdown button:hover {
  background: var(--bg-soft);
  color: var(--dark);
}
.lpt-app-nav__dropdown hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 6px 0;
}

/* App body layout */
.lpt-app-body {
  display: flex;
  min-height: calc(100vh - var(--nav-h));
  margin-top: var(--nav-h);
}

/* App Sidebar */
.lpt-app-sidebar {
  width: 240px;
  flex-shrink: 0;
  background: #fff;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 20px 12px;
  position: sticky;
  top: var(--nav-h);
  height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.lpt-app-sidebar__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lpt-app-sidebar__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.15s;
}
.lpt-app-sidebar__item:hover {
  background: var(--bg-soft);
  color: var(--dark);
}
.lpt-app-sidebar__item--active {
  background: var(--yellow-light);
  color: var(--dark);
  font-weight: 700;
}
.lpt-app-sidebar__label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lpt-app-sidebar__plan {
  border-top: 1px solid var(--border);
  padding: 16px 4px 4px;
  margin-top: 16px;
}
.lpt-app-sidebar__plan-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 4px;
}
.lpt-app-sidebar__plan-days {
  font-size: 13px;
  color: var(--dark);
}

/* App main */
.lpt-app-main {
  flex: 1;
  padding: 32px;
  overflow-y: auto;
}

/* Welcome banner */
.lpt-welcome-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a2e 100%);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 32px;
}
.lpt-welcome-banner__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.lpt-welcome-banner__emoji {
  font-size: 36px;
  flex-shrink: 0;
}
.lpt-welcome-banner__inner > div {
  flex: 1;
  min-width: 200px;
}
.lpt-welcome-banner__inner h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.lpt-welcome-banner__inner p {
  font-size: 14px;
  color: #9ca3af;
}
.lpt-welcome-banner__close {
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

/* Dashboard heading */
.lpt-dash-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.lpt-dash-heading h2 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
}

/* Profile grid */
.lpt-profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.lpt-profile-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
.lpt-profile-card:hover {
  border-color: var(--yellow);
  box-shadow: 0 4px 20px rgba(245, 168, 0, 0.2);
  transform: translateY(-3px);
}
.lpt-profile-card__avatar {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}
.lpt-profile-card__avatar--add {
  width: 56px;
  height: 56px;
  background: var(--bg-soft);
  border: 2px dashed var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--muted);
  margin: 0 auto 12px;
}
.lpt-profile-card--add {
  border-style: dashed;
}
.lpt-profile-card--add:hover {
  border-color: var(--yellow);
}
.lpt-profile-card__name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.lpt-profile-card__meta {
  font-size: 12px;
  color: var(--muted);
}
.lpt-profile-card__actions {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  gap: 4px;
  opacity: 0;
  transition: opacity 0.15s;
}
.lpt-profile-card:hover .lpt-profile-card__actions {
  opacity: 1;
}
.lpt-profile-card__btn {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lpt-profile-card__btn:hover {
  background: var(--yellow-light);
  border-color: var(--yellow);
}

/* Quick stats */
.lpt-dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.lpt-dash-stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.lpt-dash-stat__icon {
  font-size: 28px;
  flex-shrink: 0;
}
.lpt-dash-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
}
.lpt-dash-stat span {
  font-size: 13px;
  color: var(--muted);
}
.lpt-dash-stat--cta {
  background: var(--yellow-light);
  border-color: #f5d060;
}

/* Modal */
.lpt-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 400;
  padding: 20px;
}
.lpt-modal {
  background: #fff;
  border-radius: var(--radius);
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.lpt-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.lpt-modal__header h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
}
.lpt-modal__header button {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}
.lpt-modal__body {
  padding: 24px;
}
.lpt-modal__footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
}

/* Avatar picker */
.lpt-avatar-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.lpt-avatar-option {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--bg-soft);
  border: 2px solid var(--border);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}
.lpt-avatar-option:hover {
  border-color: var(--yellow);
  background: var(--yellow-light);
}
.lpt-avatar-option.selected {
  border-color: var(--yellow);
  background: var(--yellow-light);
  box-shadow: 0 0 0 3px rgba(245, 168, 0, 0.25);
}

/* ══════════════════════════════════════════════════════════════════════
   RESPONSIVE — INNER PAGES
   ══════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .lpt-help-categories {
    grid-template-columns: repeat(3, 1fr);
  }
  .lpt-contact-wrap {
    grid-template-columns: 1fr;
  }
  .lpt-contact-info-col {
    grid-template-columns: 1fr 1fr;
    display: grid;
  }
  .lpt-dash-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .lpt-help-categories {
    grid-template-columns: repeat(2, 1fr);
  }
  .lpt-app-sidebar {
    display: none;
  }
  .lpt-app-main {
    padding: 20px 16px;
  }
  .lpt-dash-stats {
    grid-template-columns: 1fr 1fr;
  }
  .lpt-contact-info-col {
    grid-template-columns: 1fr;
    display: flex;
  }
  .lpt-welcome-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .lpt-help-categories {
    grid-template-columns: repeat(2, 1fr);
  }
  .lpt-dash-stats {
    grid-template-columns: 1fr;
  }
  .lpt-profile-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*
 * Little Panda Tube — Main Stylesheet
 * File: wp-content/themes/twentysixteen-child/lpt-style.css
 *
 * Covers: Homepage, Login, Register
 * Font: DM Sans (headings) + Inter (body) via Google Fonts
 */

/* ── Google Fonts ──────────────────────────────────────────────────────── */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap");

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

:root {
  --yellow: #f5a800;
  --yellow-light: #fff8e1;
  --yellow-dark: #d48f00;
  --dark: #111827;
  --mid: #374151;
  --muted: #6b7280;
  --border: #e5e7eb;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
  --font-head: "DM Sans", sans-serif;
  --font-body: "Inter", sans-serif;
  --nav-h: 68px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Override Twenty Sixteen's content width constraints */
.lpt-page {
  max-width: 100% !important;
  width: 100% !important;
}
.site-content .site-main {
  width: 100%;
  float: none;
}
.site-content {
  display: block;
}
.site-header,
.site-footer {
  display: none;
} /* Hide default TwentySixteen header/footer */

a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}

/* ── Shared: buttons ─────────────────────────────────────────────────── */
.lpt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 24px;
  border-radius: 8px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  text-decoration: none;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.lpt-btn--primary {
  background: var(--yellow);
  color: #111;
}
.lpt-btn--primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(245, 168, 0, 0.4);
}
.lpt-btn--ghost {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--border);
}
.lpt-btn--ghost:hover {
  border-color: var(--dark);
  background: var(--bg-soft);
}
.lpt-btn--outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--border);
}
.lpt-btn--outline:hover {
  border-color: var(--yellow);
  color: var(--yellow-dark);
}
.lpt-btn--white {
  background: #fff;
  color: var(--dark);
}
.lpt-btn--white:hover {
  background: var(--yellow-light);
}
.lpt-btn--lg {
  height: 52px;
  padding: 0 32px;
  font-size: 16px;
  border-radius: 10px;
}
.lpt-btn--full {
  width: 100%;
}
.lpt-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* ── Shared: section layout ──────────────────────────────────────────── */
.lpt-section-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 24px;
}
.lpt-section-header {
  text-align: center;
  margin-bottom: 56px;
}
.lpt-section-tag {
  display: inline-block;
  background: var(--yellow-light);
  color: var(--yellow-dark);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.lpt-section-title {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}
.lpt-section-sub {
  font-size: 17px;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════════════════ */
.lpt-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  z-index: 200;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.lpt-nav.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.lpt-nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  gap: 24px;
}
.lpt-nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.lpt-nav__logo-panda {
  font-size: 24px;
  line-height: 1;
}
.lpt-nav__logo-text {
  font-family: var(--font-head);
  font-size: 18px;
  color: var(--dark);
}
.lpt-nav__logo-text strong {
  color: var(--yellow-dark);
}

.lpt-nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lpt-nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--mid);
  padding: 6px 14px;
  border-radius: 6px;
  transition:
    color 0.15s,
    background 0.15s;
}
.lpt-nav__link:hover {
  color: var(--dark);
  background: var(--bg-soft);
}

.lpt-nav__btn {
  height: 38px;
  padding: 8px 18px;
  font-size: 14px;
  border-radius: 8px;
}
.lpt-nav__btn--ghost {
  background: transparent;
  color: var(--mid);
}
.lpt-nav__btn--ghost:hover {
  background: var(--bg-soft);
  color: var(--dark);
}
.lpt-nav__btn--primary {
  background: var(--yellow);
  color: #111;
  font-weight: 700;
}
.lpt-nav__btn--primary:hover {
  background: var(--yellow-dark);
}

/* Hamburger */
.lpt-nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.lpt-nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: 0.2s ease;
}
.lpt-nav__hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.lpt-nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.lpt-nav__hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.lpt-nav__mobile {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  gap: 4px;
}
.lpt-nav__mobile.open {
  display: flex;
}
.lpt-nav__mobile a {
  font-size: 15px;
  font-weight: 500;
  color: var(--mid);
  padding: 10px 12px;
  border-radius: 8px;
}
.lpt-nav__mobile a:hover {
  background: var(--bg-soft);
  color: var(--dark);
}
.lpt-mobile-cta {
  margin-top: 8px;
  background: var(--yellow) !important;
  color: #111 !important;
  font-weight: 700 !important;
  text-align: center;
}

/* ══════════════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════════════ */
.lpt-hero {
  padding-top: var(--nav-h);
  background: linear-gradient(160deg, #fff 0%, #fffbf0 60%, #fff8e1 100%);
  position: relative;
  overflow: hidden;
}
.lpt-hero__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 24px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.lpt-hero__title {
  font-family: var(--font-head);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 20px;
}
.lpt-hero__title-accent {
  color: var(--yellow-dark);
}

.lpt-hero__sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.lpt-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.lpt-hero__note {
  font-size: 13px;
  color: var(--muted);
}

/* Browser mockup */
.lpt-mockup {
  background: var(--dark);
  border-radius: 16px;
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  animation: float 4s ease-in-out infinite;
  position: relative;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.lpt-mockup__screen {
  padding: 0;
}
.lpt-mockup__topbar {
  background: #1a1a1a;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lpt-mockup__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.lpt-mockup__dot--red {
  background: #ff5f57;
}
.lpt-mockup__dot--yellow {
  background: #febc2e;
}
.lpt-mockup__dot--green {
  background: #28c840;
}
.lpt-mockup__url {
  margin-left: 12px;
  background: #2d2d2d;
  color: #888;
  font-size: 11px;
  font-family: monospace;
  padding: 4px 12px;
  border-radius: 6px;
  flex: 1;
}
.lpt-mockup__content {
  background: #0f0f0f;
  padding: 12px;
}
.lpt-mockup__nav {
  padding: 8px 4px 12px;
  border-bottom: 1px solid #222;
  margin-bottom: 12px;
}
.lpt-mockup__logo-sm {
  color: #f5a800;
  font-size: 13px;
  font-weight: 700;
}

.lpt-mockup__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.lpt-mockup__card {
  background: #1a1a1a;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.15s;
}
.lpt-mockup__card:hover {
  background: #252525;
}
.lpt-mockup__thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: #2d2d2d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.lpt-mockup__meta {
  padding: 6px 6px 2px;
}
.lpt-mockup__card-title {
  color: #ddd;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 2px;
}
.lpt-mockup__card-ch {
  color: #666;
  font-size: 8px;
}
.lpt-mockup__dur {
  float: right;
  margin: -14px 4px 0;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 8px;
  padding: 1px 4px;
  border-radius: 3px;
}

.lpt-mockup__timebar {
  background: #1a1a1a;
  border-radius: 6px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  color: #f5a800;
  font-weight: 600;
}
.lpt-mockup__progress {
  flex: 1;
  height: 4px;
  background: #2d2d2d;
  border-radius: 4px;
  overflow: hidden;
}
.lpt-mockup__progress-fill {
  height: 100%;
  background: #f5a800;
  border-radius: 4px;
}

/* Floating badges */
.lpt-badge-float {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  animation: float-badge 3s ease-in-out infinite;
}
@keyframes float-badge {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-6px) rotate(1deg);
  }
}
.lpt-badge-float--1 {
  top: 10%;
  right: -20px;
  animation-delay: 0s;
}
.lpt-badge-float--2 {
  top: 42%;
  right: -30px;
  animation-delay: 0.8s;
}
.lpt-badge-float--3 {
  bottom: 15%;
  right: -10px;
  animation-delay: 1.6s;
}

.lpt-hero__visual {
  position: relative;
  padding: 20px 40px 20px 0;
}

/* Wave */
.lpt-hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}
.lpt-hero__wave svg {
  width: 100%;
  height: 60px;
}

/* ══════════════════════════════════════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════════════════════════════════════ */
.lpt-trust {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.lpt-trust__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 36px 24px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.lpt-trust__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.lpt-trust__stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  flex: 1;
}
.lpt-trust__stat {
  padding: 0 32px;
  text-align: center;
}
.lpt-trust__stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
}
.lpt-trust__stat span {
  font-size: 13px;
  color: var(--muted);
}
.lpt-trust__divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ══════════════════════════════════════════════════════════════════════
   HOW IT WORKS
   ══════════════════════════════════════════════════════════════════════ */
.lpt-how {
  background: var(--bg);
}
.lpt-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}
.lpt-step {
  flex: 1;
  max-width: 300px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.lpt-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.lpt-step__number {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--yellow-dark);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.lpt-step__icon {
  font-size: 44px;
  margin-bottom: 16px;
}
.lpt-step__title {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
}
.lpt-step__text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.lpt-step__arrow {
  font-size: 28px;
  color: var(--yellow);
  padding: 0 16px;
  margin-top: 80px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════════════
   FEATURES
   ══════════════════════════════════════════════════════════════════════ */
.lpt-features {
  background: var(--bg-soft);
}
.lpt-feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.lpt-feat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition:
    box-shadow 0.2s,
    border-color 0.2s;
}
.lpt-feat:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--yellow);
}
.lpt-feat__icon {
  font-size: 32px;
  margin-bottom: 14px;
}
.lpt-feat__title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.lpt-feat__text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════════════════ */
.lpt-testimonials {
  background: var(--bg);
}
.lpt-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lpt-testi {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.lpt-testi__stars {
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--yellow);
}
.lpt-testi__text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--mid);
  margin-bottom: 24px;
  font-style: italic;
}
.lpt-testi__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lpt-testi__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: #111;
}
.lpt-testi__author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}
.lpt-testi__author span {
  font-size: 12px;
  color: var(--muted);
}

/* ══════════════════════════════════════════════════════════════════════
   PRICING
   ══════════════════════════════════════════════════════════════════════ */
.lpt-pricing {
  background: var(--bg-soft);
}

.lpt-pricing__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 48px;
  font-size: 15px;
  font-weight: 600;
}
.lpt-pricing__toggle span {
  color: var(--muted);
  transition: color 0.2s;
}
.lpt-pricing__toggle span.active {
  color: var(--dark);
}

/* Toggle switch */
.lpt-toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
}
.lpt-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.lpt-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: 0.2s;
}
.lpt-toggle-slider::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.lpt-toggle-switch input:checked + .lpt-toggle-slider {
  background: var(--yellow);
}
.lpt-toggle-switch input:checked + .lpt-toggle-slider::before {
  transform: translateX(22px);
}

.lpt-save-badge {
  background: #d1fae5;
  color: #065f46;
  font-size: 11px;
  font-weight: 700;
  font-style: normal;
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 6px;
}

.lpt-plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.lpt-plan {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  transition: box-shadow 0.2s;
}
.lpt-plan:hover {
  box-shadow: var(--shadow-md);
}
.lpt-plan--featured {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(245, 168, 0, 0.12);
}
.lpt-plan--institution {
  background: var(--dark);
  border-color: var(--dark);
}
.lpt-plan--institution * {
  color: #fff !important;
}
.lpt-plan--institution .lpt-plan__features li {
  color: #ccc !important;
}
.lpt-plan--institution .lpt-btn--outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff !important;
}
.lpt-plan--institution .lpt-btn--outline:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

.lpt-plan__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: #111;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.lpt-plan__header {
  margin-bottom: 24px;
}
.lpt-plan__header h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.lpt-plan__price {
  display: flex;
  align-items: flex-end;
  gap: 2px;
}
.lpt-plan__currency {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}
.lpt-plan__amount {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}
.lpt-plan__period {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
}
.lpt-plan__yearly-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.lpt-plan__features {
  list-style: none;
  margin-bottom: 28px;
}
.lpt-plan__features li {
  font-size: 14px;
  color: var(--mid);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.lpt-plan__features li:last-child {
  border-bottom: none;
}

/* ══════════════════════════════════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════════════════════════════════ */
.lpt-cta {
  background: linear-gradient(135deg, var(--yellow) 0%, #ff9900 100%);
  padding: 80px 24px;
  text-align: center;
}
.lpt-cta__inner {
  max-width: 600px;
  margin: 0 auto;
}
.lpt-cta__emoji {
  font-size: 52px;
  display: block;
  margin-bottom: 20px;
}
.lpt-cta__title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: #111;
  margin-bottom: 14px;
  line-height: 1.2;
}
.lpt-cta__sub {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.65);
  margin-bottom: 36px;
}

/* ══════════════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════════════ */
.lpt-footer {
  background: var(--dark);
}
.lpt-footer__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 60px 24px 40px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
}
.lpt-footer__logo {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.lpt-footer__logo strong {
  color: var(--yellow);
}
.lpt-footer__tagline {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 16px;
}
.lpt-footer__credit {
  font-size: 13px;
  color: #6b7280;
}
.lpt-footer__credit a {
  color: var(--yellow);
}

.lpt-footer__links {
  display: flex;
  gap: 40px;
  justify-content: flex-end;
}
.lpt-footer__col h5 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.lpt-footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lpt-footer__col a {
  font-size: 14px;
  color: #9ca3af;
  transition: color 0.15s;
}
.lpt-footer__col a:hover {
  color: #fff;
}

.lpt-footer__bottom {
  border-top: 1px solid #1f2937;
  padding: 20px 24px;
  text-align: center;
}
.lpt-footer__bottom p {
  font-size: 13px;
  color: #6b7280;
}

/* ══════════════════════════════════════════════════════════════════════
   AUTH PAGES (Login + Register)
   ══════════════════════════════════════════════════════════════════════ */
.lpt-auth-page {
  min-height: 100vh;
  background: var(--bg-soft);
}

.lpt-auth-back {
  position: fixed;
  top: 20px;
  left: 24px;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
}
.lpt-auth-back strong {
  color: var(--yellow-dark);
}
.lpt-auth-back:hover {
  opacity: 0.75;
}

.lpt-auth-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

/* Left side */
.lpt-auth-side {
  background: linear-gradient(145deg, var(--dark) 0%, #1a1a2e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
}
.lpt-auth-side__inner {
  max-width: 360px;
}
.lpt-auth-side__logo {
  font-size: 64px;
  margin-bottom: 24px;
}
.lpt-auth-side__title {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.lpt-auth-side__sub {
  font-size: 16px;
  color: #9ca3af;
  line-height: 1.6;
  margin-bottom: 36px;
}
.lpt-auth-side__bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lpt-auth-side__bullet {
  font-size: 14px;
  color: #d1d5db;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  border-left: 3px solid var(--yellow);
}

/* Right side — form */
.lpt-auth-form-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 48px 48px;
}
.lpt-auth-form {
  width: 100%;
  max-width: 400px;
}

.lpt-auth-form__title {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--dark);
}
.lpt-auth-form__sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 36px;
}

/* Form fields */
.lpt-field {
  margin-bottom: 20px;
}
.lpt-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
  margin-bottom: 8px;
}
.req {
  color: #ef4444;
}
.opt {
  color: var(--muted);
  font-weight: 400;
}

.lpt-field input,
.lpt-field select {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
  background: var(--bg);
  outline: none;
  transition: border-color 0.15s;
  -webkit-appearance: none;
}
.lpt-field input:focus,
.lpt-field select:focus {
  border-color: var(--yellow);
}
.lpt-field input::placeholder {
  color: #c4c9d4;
}

/* Error */
.lpt-error {
  display: none;
  color: #ef4444;
  font-size: 13px;
  padding: 10px 14px;
  background: #fef2f2;
  border-radius: 8px;
  border-left: 3px solid #ef4444;
  margin-bottom: 16px;
}

/* OTP boxes */
.lpt-otp-boxes {
  display: flex;
  gap: 10px;
}
.lpt-otp-box {
  width: 52px !important;
  height: 60px !important;
  padding: 0 !important;
  text-align: center !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  border: 2px solid var(--border) !important;
  border-radius: 10px !important;
  transition: border-color 0.15s !important;
  caret-color: var(--yellow);
}
.lpt-otp-box:focus {
  border-color: var(--yellow) !important;
  outline: none !important;
}

.lpt-otp-sent-msg {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* Auth back button */
.lpt-auth-back-btn {
  background: none;
  border: none;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.lpt-auth-back-btn:hover {
  color: var(--dark);
}

/* Auth switch text */
.lpt-auth-form__switch {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin-top: 20px;
}
.lpt-auth-form__switch a {
  color: var(--yellow-dark);
  font-weight: 600;
}
.lpt-auth-form__terms {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
  line-height: 1.6;
}
.lpt-auth-form__terms a {
  color: var(--yellow-dark);
}

/* OTP resend */
.lpt-otp-resend {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}
.lpt-link-btn {
  background: none;
  border: none;
  color: var(--yellow-dark);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  margin-left: 6px;
}

/* Loading */
.lpt-auth-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px 0;
  color: var(--muted);
  font-size: 14px;
}
.lpt-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--yellow);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ══════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .lpt-feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lpt-plans {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .lpt-hero__inner {
    grid-template-columns: 1fr;
  }
  .lpt-hero__visual {
    display: none;
  }
  .lpt-steps {
    flex-direction: column;
    align-items: center;
  }
  .lpt-step__arrow {
    transform: rotate(90deg);
    margin: 0;
    padding: 8px 0;
  }
  .lpt-testi-grid {
    grid-template-columns: 1fr;
  }
  .lpt-footer__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .lpt-footer__links {
    justify-content: flex-start;
  }
  .lpt-auth-wrap {
    grid-template-columns: 1fr;
  }
  .lpt-auth-side {
    display: none;
  }
  .lpt-auth-form-wrap {
    padding: 80px 24px 40px;
  }
}

@media (max-width: 768px) {
  .lpt-nav__links {
    display: none;
  }
  .lpt-nav__hamburger {
    display: flex;
  }
  .lpt-trust__stats {
    gap: 0;
  }
  .lpt-trust__stat {
    padding: 0 16px;
  }
  .lpt-plans {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
  .lpt-feat-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .lpt-section-title {
    font-size: 26px;
  }
  .lpt-hero__title {
    font-size: 32px;
  }
  .lpt-hero__actions {
    flex-direction: column;
  }
  .lpt-feat-grid {
    grid-template-columns: 1fr;
  }
  .lpt-trust__stats {
    flex-wrap: wrap;
    justify-content: center;
  }
  .lpt-trust__divider {
    display: none;
  }
  .lpt-otp-boxes {
    gap: 6px;
  }
  .lpt-otp-box {
    width: 44px !important;
    height: 52px !important;
    font-size: 20px !important;
  }
}
