/* ══════════════════════════════════════════════
   Clickflame Learn — style.css
   learn.clickflame.com
   ══════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:       #F5820A;
  --orange-hot:   #FF9F2E;
  --orange-dim:   rgba(245,130,10,0.10);
  --black:        #080808;
  --surface:      #111111;
  --surface2:     #1A1A1A;
  --surface3:     #222222;
  --border:       #252525;
  --border-light: #2E2E2E;
  --white:        #F0EDE8;
  --muted:        #666666;
  --muted2:       #444444;
  --success:      #22C55E;
  --radius:       12px;
  --radius-sm:    8px;
}

html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: 'Inter', sans-serif; font-weight: 400; min-height: 100vh; overflow-x: hidden; }

/* ── NAV ─────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  padding: 0 32px; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(8,8,8,0.93); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo-text { font-size: 1.2rem; color: rgba(240,237,232,0.5); letter-spacing: 0.01em; }
.nav-logo-text strong { color: var(--white); font-weight: 700; }
.nav-learn-tag { font-style: normal; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange); background: var(--orange-dim); border: 1px solid rgba(245,130,10,0.25); padding: 2px 7px; border-radius: 100px; margin-left: 4px; }

.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links > a { font-size: 0.82rem; font-weight: 500; text-decoration: none; color: var(--muted); transition: color 0.2s; }
.nav-links > a:hover { color: var(--white); }

.nav-signin { font-size: 0.82rem; font-weight: 500; text-decoration: none; color: var(--muted); transition: color 0.2s; }
.nav-signin:hover { color: var(--white); }
.nav-cta { background: var(--orange); color: var(--black) !important; font-weight: 700 !important; font-size: 0.8rem; padding: 8px 20px; border-radius: var(--radius-sm); text-decoration: none; transition: background 0.2s; white-space: nowrap; }
.nav-cta:hover { background: var(--orange-hot) !important; }

.nav-dashboard { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 500; text-decoration: none; color: var(--muted); transition: color 0.2s; }
.nav-dashboard:hover { color: var(--white); }
.nav-logout { background: none; border: 1px solid var(--border-light); color: var(--muted); font-family: 'Inter', sans-serif; font-size: 0.78rem; padding: 6px 14px; border-radius: var(--radius-sm); cursor: pointer; transition: all 0.2s; }
.nav-logout:hover { border-color: var(--orange); color: var(--orange); }

#navAuthArea, #navUserArea { display: flex; align-items: center; gap: 12px; }

.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--muted); border-radius: 2px; }
.mobile-menu { display: none; position: fixed; top: 60px; left: 0; right: 0; z-index: 299; background: var(--surface); border-bottom: 1px solid var(--border); flex-direction: column; padding: 16px 24px; gap: 4px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 0.9rem; font-weight: 500; color: var(--muted); text-decoration: none; padding: 10px 0; border-bottom: 1px solid var(--border); transition: color 0.2s; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--white); }

/* ── AUTH MODAL ──────────────────────────────── */
#authOverlay {
  position: fixed; inset: 0; z-index: 600;
  background: rgba(8,8,8,0.88); backdrop-filter: blur(14px);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
#authOverlay.open { display: flex; }
#authModal {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); width: 100%; max-width: 420px;
  padding: 40px 36px; position: relative;
  max-height: 92vh; overflow-y: auto;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: 1px solid var(--border); color: var(--muted);
  width: 28px; height: 28px; border-radius: 50%; cursor: pointer;
  font-size: 0.85rem; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover { border-color: var(--orange); color: var(--orange); }

.auth-view { display: none; }
.auth-view.active { display: block; }

.auth-flame { text-align: center; margin-bottom: 20px; }
.auth-h2 { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 6px; text-align: center; }
.auth-p { font-size: 0.88rem; color: var(--muted); text-align: center; margin-bottom: 28px; line-height: 1.5; }

.auth-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.auth-field { margin-bottom: 16px; }
.auth-field label { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; font-weight: 600; color: rgba(240,237,232,0.7); margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.04em; }
.auth-field input {
  width: 100%; background: var(--surface2); border: 1px solid var(--border-light);
  color: var(--white); padding: 11px 14px; font-family: 'Inter', sans-serif;
  font-size: 0.9rem; border-radius: var(--radius-sm); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.auth-field input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(245,130,10,0.1); }
.auth-field input::placeholder { color: rgba(240,237,232,0.2); }
.auth-link-sm { font-size: 0.75rem; font-weight: 400; color: var(--orange); text-decoration: none; text-transform: none; letter-spacing: 0; }
.auth-link-sm:hover { text-decoration: underline; }

/* Password strength */
.pw-bars { display: flex; gap: 4px; margin-top: 8px; }
.pw-bars div { flex: 1; height: 3px; background: var(--border); border-radius: 2px; transition: background 0.3s; }
.pw-label { font-size: 0.72rem; margin-top: 4px; font-weight: 600; transition: color 0.3s; }

.auth-err { font-size: 0.82rem; color: #EF4444; background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.2); border-radius: var(--radius-sm); padding: 10px 14px; margin-bottom: 14px; display: none; }
.auth-err:not(:empty) { display: block; }
.auth-success-msg { font-size: 0.84rem; color: var(--success); background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.2); border-radius: var(--radius-sm); padding: 10px 14px; margin-bottom: 14px; }

.auth-btn-primary {
  width: 100%; background: var(--orange); color: var(--black); border: none;
  padding: 13px; border-radius: var(--radius-sm); cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 0.92rem; font-weight: 700;
  transition: background 0.2s; letter-spacing: 0.02em; margin-bottom: 14px;
}
.auth-btn-primary:hover { background: var(--orange-hot); }

.auth-or { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.auth-or::before, .auth-or::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.auth-or span { font-size: 0.75rem; color: var(--muted2); }

.auth-btn-google {
  width: 100%; background: var(--surface2); border: 1px solid var(--border-light);
  color: var(--white); padding: 11px; border-radius: var(--radius-sm); cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 0.88rem; font-weight: 500;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: border-color 0.2s, background 0.2s; margin-bottom: 20px;
}
.auth-btn-google:hover { border-color: rgba(245,130,10,0.3); background: var(--surface3); }

.auth-swap { font-size: 0.82rem; color: var(--muted); text-align: center; }
.auth-swap a { color: var(--orange); text-decoration: none; font-weight: 600; }
.auth-swap a:hover { text-decoration: underline; }

.auth-success-icon { font-size: 3rem; text-align: center; margin-bottom: 16px; }

/* ── HERO ────────────────────────────────────── */
#heroSection { padding: 120px 24px 80px; text-align: center; max-width: 760px; margin: 0 auto; }
.hero-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--orange-dim); border: 1px solid rgba(245,130,10,0.25); color: var(--orange); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 16px; border-radius: 100px; margin-bottom: 28px; }
.hero-pill::before { content: ''; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.6)} }
#heroSection h1 { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 20px; }
#heroSection h1 em { color: var(--orange); font-style: normal; }
.hero-sub { font-size: 1.05rem; color: rgba(240,237,232,0.55); line-height: 1.75; max-width: 520px; margin: 0 auto 48px; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ─────────────────────────────────── */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: var(--black); font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.95rem; padding: 14px 36px; border: none; border-radius: var(--radius-sm); cursor: pointer; text-decoration: none; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; box-shadow: 0 4px 24px rgba(245,130,10,0.25); }
.btn-primary:hover { background: var(--orange-hot); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(245,130,10,0.35); }
.btn-primary.btn-full { width: 100%; justify-content: center; font-size: 1rem; padding: 16px; }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: rgba(240,237,232,0.65); font-family: 'Inter', sans-serif; font-weight: 500; font-size: 0.95rem; padding: 14px 32px; border: 1px solid var(--border-light); border-radius: var(--radius-sm); cursor: pointer; text-decoration: none; transition: color 0.2s, border-color 0.2s; }
.btn-ghost:hover { color: var(--white); border-color: rgba(245,130,10,0.4); }

/* ── STATS BAR ───────────────────────────────── */
.stats-bar { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-item { padding: 32px 24px; text-align: center; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.6rem; color: var(--orange); line-height: 1; margin-bottom: 4px; letter-spacing: 0.03em; }
.stat-label { font-size: 0.78rem; font-weight: 500; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; }

/* ── SECTIONS ────────────────────────────────── */
.section { padding: 80px 24px; max-width: 1100px; margin: 0 auto; }
.section-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 12px; }
.section-title em { color: var(--orange); font-style: normal; }
.section-sub { font-size: 0.95rem; color: rgba(240,237,232,0.5); line-height: 1.7; max-width: 520px; margin-bottom: 48px; }

/* ── MODULE CARDS ────────────────────────────── */
#modulesGrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.module-card { background: var(--surface); padding: 28px; transition: background 0.2s; position: relative; overflow: hidden; cursor: pointer; display: flex; flex-direction: column; }
.module-card:hover { background: var(--surface2); }
.module-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--orange), var(--orange-hot)); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.module-card:hover::before { transform: scaleX(1); }
.module-num { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.module-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; line-height: 1.3; }
.module-desc { font-size: 0.84rem; color: rgba(240,237,232,0.5); line-height: 1.65; margin-bottom: 20px; flex: 1; }
.module-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.module-tag { font-size: 0.72rem; font-weight: 500; background: var(--surface2); border: 1px solid var(--border-light); color: rgba(240,237,232,0.5); padding: 4px 10px; border-radius: 100px; }

/* Module progress footer */
.module-footer { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border); }
.mod-prog-track { height: 3px; background: var(--surface2); border-radius: 2px; margin-bottom: 8px; overflow: hidden; }
.mod-prog-fill { height: 100%; background: linear-gradient(90deg, var(--orange), var(--orange-hot)); border-radius: 2px; transition: width 0.4s ease; }
.mod-prog-label { display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; color: var(--muted); }
.mod-open-btn { color: var(--orange); font-weight: 600; font-size: 0.75rem; }

/* ── LESSON MODAL ────────────────────────────── */
#lessonOverlay {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(8,8,8,0.95); backdrop-filter: blur(12px);
  display: none; align-items: stretch; justify-content: center;
}
#lessonOverlay.open { display: flex; }
#lessonModal {
  background: var(--surface); width: 100%; max-width: 1100px;
  margin: 60px auto 0; display: flex; flex-direction: column;
  border-left: 1px solid var(--border); border-right: 1px solid var(--border);
  height: calc(100vh - 60px);
}

/* Lesson modal header */
.lm-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; border-bottom: 1px solid var(--border);
  flex-shrink: 0; gap: 16px; flex-wrap: wrap;
}
.lm-header-left { display: flex; align-items: center; gap: 12px; min-width: 0; }
.lm-module-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); background: var(--orange-dim); border: 1px solid rgba(245,130,10,0.25); padding: 3px 10px; border-radius: 100px; white-space: nowrap; }
.lm-title { font-size: 0.92rem; font-weight: 600; color: var(--white); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lm-header-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.lm-prog-wrap { display: flex; align-items: center; gap: 10px; }
.lm-prog-track { width: 120px; height: 4px; background: var(--surface2); border-radius: 2px; overflow: hidden; }
.lm-prog-fill { height: 100%; background: linear-gradient(90deg, var(--orange), var(--orange-hot)); border-radius: 2px; transition: width 0.4s ease; }
.lm-prog-txt { font-size: 0.75rem; color: var(--muted); white-space: nowrap; }

/* Lesson modal body */
.lm-body { display: flex; flex: 1; overflow: hidden; }

/* Sidebar */
.lm-sidebar { width: 260px; flex-shrink: 0; border-right: 1px solid var(--border); overflow-y: auto; }
.lm-lesson-item { display: flex; align-items: flex-start; gap: 10px; padding: 14px 16px; cursor: pointer; border-bottom: 1px solid var(--border); transition: background 0.15s; }
.lm-lesson-item:hover { background: var(--surface2); }
.lm-lesson-item.active { background: var(--surface2); border-left: 2px solid var(--orange); }
.lm-lesson-item.done .lm-lesson-check { color: var(--success); }
.lm-lesson-check { font-size: 0.75rem; color: var(--muted2); flex-shrink: 0; margin-top: 2px; width: 14px; }
.lm-lesson-item.active .lm-lesson-check { color: var(--orange); }
.lm-lesson-info { min-width: 0; }
.lm-lesson-name { font-size: 0.82rem; font-weight: 500; color: var(--white); line-height: 1.35; margin-bottom: 3px; }
.lm-lesson-item.done .lm-lesson-name { color: rgba(240,237,232,0.5); }
.lm-lesson-dur { font-size: 0.72rem; color: var(--muted); }

/* Content area */
.lm-content { flex: 1; overflow-y: auto; display: flex; flex-direction: column; }
.lm-content-inner { padding: 36px 40px; flex: 1; max-width: 760px; }

/* Lesson body typography */
.lesson-body-text h3 { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 16px; color: var(--white); }
.lesson-body-text h4 { font-size: 1rem; font-weight: 700; color: var(--orange); margin: 28px 0 10px; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.78rem; }
.lesson-body-text p { font-size: 0.93rem; color: rgba(240,237,232,0.75); line-height: 1.8; margin-bottom: 16px; }
.lesson-body-text ul { padding-left: 20px; margin-bottom: 16px; }
.lesson-body-text li { font-size: 0.93rem; color: rgba(240,237,232,0.75); line-height: 1.75; margin-bottom: 8px; }
.lesson-body-text li strong { color: var(--white); }
.lesson-body-text blockquote { border-left: 3px solid var(--orange); padding: 14px 20px; background: var(--surface2); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 20px 0; font-style: italic; color: rgba(240,237,232,0.7); font-size: 0.93rem; }
.lesson-body-text code { background: var(--surface2); border: 1px solid var(--border-light); color: var(--orange); padding: 2px 7px; border-radius: 4px; font-size: 0.85em; font-family: 'Courier New', monospace; }

/* Lesson checklist */
.lesson-checklist { background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-top: 32px; }
.lesson-checklist-header { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); margin-bottom: 18px; }
.cl-count { margin-left: auto; background: var(--orange-dim); border: 1px solid rgba(245,130,10,0.25); color: var(--orange); font-size: 0.72rem; padding: 2px 10px; border-radius: 100px; }
.cl-items { display: flex; flex-direction: column; gap: 10px; }
.cl-item { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; padding: 10px 12px; border-radius: var(--radius-sm); transition: background 0.15s; border: 1px solid transparent; }
.cl-item:hover { background: rgba(245,130,10,0.04); border-color: rgba(245,130,10,0.1); }
.cl-item.checked .cl-text { color: rgba(240,237,232,0.35); text-decoration: line-through; }
.cl-box { width: 18px; height: 18px; border: 2px solid var(--border-light); border-radius: 4px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; color: var(--success); transition: all 0.15s; margin-top: 1px; }
.cl-item.checked .cl-box { background: rgba(34,197,94,0.15); border-color: var(--success); }
.cl-text { font-size: 0.88rem; color: rgba(240,237,232,0.8); line-height: 1.5; }
.cl-complete-banner { margin-top: 18px; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25); border-radius: var(--radius-sm); padding: 12px 16px; font-size: 0.85rem; color: var(--success); font-weight: 600; text-align: center; }

/* Lesson nav buttons */
.lm-nav { display: flex; justify-content: space-between; align-items: center; padding: 20px 40px 32px; border-top: 1px solid var(--border); flex-shrink: 0; }
.lm-prev, .lm-next { background: var(--surface2); border: 1px solid var(--border-light); color: var(--white); font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 600; padding: 10px 22px; border-radius: var(--radius-sm); cursor: pointer; transition: all 0.2s; }
.lm-prev:hover:not(:disabled) { border-color: rgba(245,130,10,0.4); color: var(--orange); }
.lm-prev:disabled { opacity: 0.3; cursor: not-allowed; }
.lm-next { background: var(--orange); color: var(--black); border-color: var(--orange); }
.lm-next:hover { background: var(--orange-hot); border-color: var(--orange-hot); }

/* ── BLOG ────────────────────────────────────── */
#blogGrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 16px; }
.blog-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color 0.2s, transform 0.2s; cursor: pointer; text-decoration: none; display: block; color: inherit; }
.blog-card:hover { border-color: rgba(245,130,10,0.35); transform: translateY(-3px); }
.blog-thumb { height: 160px; display: flex; align-items: center; justify-content: center; font-size: 3rem; background: var(--surface2); border-bottom: 1px solid var(--border); }
.blog-body { padding: 24px; }
.blog-cat { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.blog-title { font-size: 0.98rem; font-weight: 700; color: var(--white); margin-bottom: 8px; line-height: 1.4; }
.blog-excerpt { font-size: 0.83rem; color: rgba(240,237,232,0.45); line-height: 1.65; margin-bottom: 18px; }
.blog-meta { display: flex; justify-content: space-between; align-items: center; }
.blog-author { font-size: 0.78rem; color: var(--muted); font-weight: 500; }
.blog-date { font-size: 0.75rem; color: var(--muted2); }

/* ── TESTIMONIALS ────────────────────────────── */
#testimonialsGrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.testi-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.testi-stars { color: var(--orange); font-size: 0.85rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-quote { font-size: 0.88rem; color: rgba(240,237,232,0.7); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--orange-dim); border: 1px solid rgba(245,130,10,0.25); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; }
.testi-name { font-size: 0.84rem; font-weight: 600; color: var(--white); }
.testi-role { font-size: 0.75rem; color: var(--muted); }

/* ── INFO NOTICE ─────────────────────────────── */
.info-notice { background: var(--surface); border: 1px solid var(--border); border-left: 3px solid var(--orange); border-radius: var(--radius); padding: 20px 24px; display: flex; gap: 14px; align-items: flex-start; margin-bottom: 28px; }
.info-notice-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.info-notice p { font-size: 0.9rem; color: rgba(240,237,232,0.65); line-height: 1.65; }
.info-notice strong { color: var(--white); font-weight: 600; }

/* ── PRICING ─────────────────────────────────── */
.pricing-wrap { max-width: 680px; margin: 0 auto; }
.pricing-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.pricing-top { background: linear-gradient(135deg, rgba(245,130,10,0.12), rgba(245,130,10,0.04)); border-bottom: 1px solid var(--border); padding: 40px; text-align: center; }
.pricing-badge { display: inline-block; background: var(--orange-dim); border: 1px solid rgba(245,130,10,0.3); color: var(--orange); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; margin-bottom: 24px; }
.pricing-amount { font-family: 'Bebas Neue', sans-serif; font-size: 5rem; color: var(--white); line-height: 1; letter-spacing: 0.02em; }
.pricing-amount span { font-family: 'Inter', sans-serif; font-size: 1.8rem; font-weight: 700; vertical-align: top; margin-top: 14px; display: inline-block; }
.pricing-period { font-size: 0.85rem; color: var(--muted); margin-top: 6px; }
.pricing-body { padding: 40px; }
.pricing-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 14px; }
.pricing-features li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; color: rgba(240,237,232,0.8); line-height: 1.5; }
.pricing-features li::before { content: '✓'; color: var(--success); font-weight: 700; font-size: 0.85rem; flex-shrink: 0; margin-top: 2px; }
.pricing-note { font-size: 0.8rem; color: var(--muted); text-align: center; margin-top: 16px; line-height: 1.6; }

/* ── FOOTER ──────────────────────────────────── */
footer { border-top: 1px solid var(--border); padding: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.footer-logo-text { font-size: 1.1rem; letter-spacing: 0.01em; color: rgba(240,237,232,0.5); }
.footer-logo-text strong { color: var(--white); font-weight: 700; }
footer > p { font-size: 0.8rem; color: var(--muted); }

/* ── ADMIN BUTTON ────────────────────────────── */
#adminBtn { position: fixed; bottom: 24px; right: 24px; z-index: 400; width: 48px; height: 48px; border-radius: 50%; background: var(--orange); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; box-shadow: 0 4px 20px rgba(245,130,10,0.4); transition: background 0.2s, transform 0.15s; }
#adminBtn:hover { background: var(--orange-hot); transform: scale(1.08); }

/* ── ADMIN OVERLAY ───────────────────────────── */
#adminOverlay { position: fixed; inset: 0; z-index: 700; background: rgba(8,8,8,0.9); backdrop-filter: blur(12px); display: none; align-items: center; justify-content: center; padding: 20px; }
#adminOverlay.open { display: flex; }
#adminPanel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); width: 100%; max-width: 760px; max-height: 88vh; overflow-y: auto; display: flex; flex-direction: column; }
.admin-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--border); position: sticky; top: 0; background: var(--surface); z-index: 10; }
.admin-header-title { font-size: 0.95rem; font-weight: 700; color: var(--white); }
.admin-header-title span { color: var(--orange); }
#adminClose { background: none; border: 1px solid var(--border); color: var(--muted); width: 30px; height: 30px; border-radius: 50%; cursor: pointer; font-size: 0.9rem; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
#adminClose:hover { border-color: var(--orange); color: var(--orange); }
.admin-tabs { display: flex; gap: 4px; padding: 14px 24px; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.admin-tab { background: none; border: 1px solid var(--border-light); color: var(--muted); padding: 7px 16px; border-radius: var(--radius-sm); cursor: pointer; font-family: 'Inter', sans-serif; font-size: 0.8rem; font-weight: 500; transition: all 0.2s; }
.admin-tab.active { background: var(--orange-dim); border-color: rgba(245,130,10,0.4); color: var(--orange); }
.admin-body { padding: 24px; }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

.afield { margin-bottom: 18px; }
.afield label { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(240,237,232,0.6); margin-bottom: 7px; }
.afield input, .afield textarea { width: 100%; background: var(--surface2); border: 1px solid var(--border-light); color: var(--white); padding: 11px 14px; font-family: 'Inter', sans-serif; font-size: 0.88rem; border-radius: var(--radius-sm); outline: none; transition: border-color 0.2s, box-shadow 0.2s; resize: vertical; }
.afield input:focus, .afield textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(245,130,10,0.1); }
.afield textarea { min-height: 80px; line-height: 1.6; }
.arow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.asection-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--orange); margin: 24px 0 14px; display: flex; align-items: center; gap: 8px; }
.asection-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.card-editor { background: var(--surface2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 18px; margin-bottom: 12px; }
.card-editor-hd { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.card-editor-hd span { font-size: 0.82rem; font-weight: 600; color: rgba(240,237,232,0.7); }
.rm-btn { background: none; border: none; color: var(--muted2); cursor: pointer; font-size: 1rem; padding: 2px 6px; border-radius: 4px; transition: color 0.2s; }
.rm-btn:hover { color: #EF4444; }
.add-card-btn { width: 100%; background: none; border: 1px dashed rgba(245,130,10,0.3); border-radius: var(--radius-sm); padding: 12px; color: rgba(245,130,10,0.7); cursor: pointer; font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 600; transition: all 0.2s; margin-bottom: 20px; }
.add-card-btn:hover { background: var(--orange-dim); border-color: rgba(245,130,10,0.5); color: var(--orange); }
.feat-row { display: flex; gap: 8px; margin-bottom: 8px; }
.feat-input { flex: 1; background: var(--surface2); border: 1px solid var(--border-light); color: var(--white); padding: 9px 12px; border-radius: var(--radius-sm); font-family: 'Inter', sans-serif; font-size: 0.85rem; outline: none; transition: border-color 0.2s; }
.feat-input:focus { border-color: var(--orange); }
.feat-rm { flex-shrink: 0; background: var(--surface2); border: 1px solid var(--border-light); border-radius: var(--radius-sm); padding: 0 12px; color: var(--muted); cursor: pointer; transition: color 0.2s; }
.feat-rm:hover { color: #EF4444; }
.save-btn { width: 100%; background: var(--orange); color: var(--black); border: none; padding: 14px; border-radius: var(--radius-sm); cursor: pointer; font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 700; transition: background 0.2s; }
.save-btn:hover { background: var(--orange-hot); }

/* ── TOAST ───────────────────────────────────── */
#savedToast { position: fixed; bottom: 80px; right: 24px; z-index: 800; background: #14532d; border: 1px solid #16a34a; color: #86efac; padding: 11px 20px; border-radius: var(--radius-sm); font-size: 0.84rem; font-weight: 600; opacity: 0; transform: translateY(8px); transition: all 0.3s; pointer-events: none; }
#savedToast.show { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 900px) {
  .lm-sidebar { width: 200px; }
}
@media (max-width: 700px) {
  nav { padding: 0 16px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .stats-bar { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .hero-actions { flex-direction: column; align-items: center; }
  .arow { grid-template-columns: 1fr; }
  .auth-row { grid-template-columns: 1fr; }
  #authModal { padding: 32px 24px; }
  .lm-sidebar { display: none; }
  .lm-content-inner { padding: 24px 20px; }
  .lm-nav { padding: 16px 20px 24px; }
  .lm-prog-track { width: 80px; }
  footer { flex-direction: column; text-align: center; padding: 24px 16px; }
}
