*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --cream: #F5F1EC;
  --warm-white: #FDFAF7;
  --sage: #7A9273;
  --sage-dark: #4E6B49;
  --sage-light: #C2D1BE;
  --terra: #B8603A;
  --terra-light: #E4C0AD;
  --charcoal: #262522;
  --gray: #79766F;
  --lgray: #CECAC3;
  --gold: #A0834A;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--cream); color: var(--charcoal); font-weight: 300; font-size: 15px; line-height: 1.6; overflow-x: hidden; }

.topbar { background: var(--sage-dark); color: white; text-align: center; padding: 10px 20px; font-size: 13px; letter-spacing: 0.12em; }
.topbar a { color: var(--sage-light); text-decoration: none; border-bottom: 1px solid rgba(194,209,190,0.4); transition: all 0.2s; }
.topbar a:hover { color: white; border-color: white; }

header { position: sticky; top: 0; z-index: 200; background: rgba(245,241,236,0.97); backdrop-filter: blur(10px); border-bottom: 1px solid var(--lgray); }
.header-inner { max-width: 1320px; margin: 0 auto; padding: 0 40px; height: 72px; display: flex; align-items: center; gap: 40px; }
.logo { font-family: var(--serif); font-size: 26px; font-weight: 500; color: var(--charcoal); text-decoration: none; letter-spacing: 0.02em; flex-shrink: 0; }
.logo span { color: var(--sage-dark); }
nav { display: flex; gap: 32px; flex: 1; }
.nav-menu { display: flex; gap: 32px; flex: 1; }
.nav-menu a { font-size: 13px; font-weight: 400; letter-spacing: 0.09em; text-transform: uppercase; color: var(--gray); text-decoration: none; transition: color 0.2s; position: relative; padding-bottom: 2px; }
.nav-menu a:hover { color: var(--charcoal); }
.nav-menu a.active { color: var(--charcoal); }
.nav-menu a.active::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 1.5px; background: var(--terra); }

/* HAMBURGER MENU */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 201; }
.hamburger-line { width: 24px; height: 2px; background: var(--charcoal); transition: all 0.3s ease; border-radius: 2px; }
.hamburger.active .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger.active .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
.header-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.search-box { display: flex; align-items: center; gap: 8px; background: white; border: 1px solid var(--lgray); padding: 8px 16px; font-family: var(--sans); font-size: 13px; color: var(--gray); cursor: text; border-radius: 6px; transition: all 0.2s; }
.search-box:hover { border-color: var(--sage); }
.search-box:focus-within { border-color: var(--sage); box-shadow: 0 0 0 3px rgba(78,107,73,0.1); }
.btn-sm { font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 10px 22px; cursor: pointer; border: 1px solid; transition: all 0.2s; border-radius: 6px; }
.btn-ghost { background: transparent; border-color: var(--lgray); color: var(--charcoal); }
.btn-ghost:hover { border-color: var(--charcoal); background: rgba(38,37,34,0.03); }
.btn-green { background: var(--sage-dark); border-color: var(--sage-dark); color: white; }
.btn-green:hover { background: var(--sage); border-color: var(--sage); }
.btn-terra { background: var(--terra); border-color: var(--terra); color: white; }
.btn-terra:hover { background: #a0542e; border-color: #a0542e; }
.notif { position: relative; cursor: pointer; }
.notif-dot { position: absolute; top: -2px; right: -2px; width: 10px; height: 10px; background: var(--terra); border-radius: 50%; border: 2px solid var(--cream); }

.hero { background: linear-gradient(135deg, #1a1a16 0%, #2d3a2a 50%, #3a4e35 100%); overflow: hidden; position: relative; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(122,146,115,0.15) 0%, transparent 40%), radial-gradient(circle at 20% 80%, rgba(184,96,58,0.1) 0%, transparent 35%); }
.hero-inner { max-width: 1320px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1fr 420px; min-height: 420px; align-items: center; position: relative; z-index: 2; }
.hero-text { padding: 60px 0; }
.hero-tag { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sage-light); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.hero-tag::before { content: ''; width: 32px; height: 1px; background: var(--sage-light); }
.hero h1 { font-family: var(--serif); font-size: 64px; font-weight: 300; line-height: 1.05; color: white; margin-bottom: 20px; letter-spacing: -0.02em; }
.hero h1 em { font-style: italic; color: var(--terra-light); }
.hero-sub { font-size: 15px; color: rgba(255,255,255,0.6); max-width: 420px; line-height: 1.8; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero { font-family: var(--sans); font-size: 13px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; padding: 16px 36px; cursor: pointer; transition: all 0.2s; border: 1px solid; border-radius: 8px; }
.btn-terra { background: var(--terra); color: white; border-color: var(--terra); }
.btn-terra:hover { background: #a0542e; border-color: #a0542e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,96,58,0.3); }
.btn-outline-w { background: transparent; color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.25); }
.btn-outline-w:hover { border-color: rgba(255,255,255,0.5); color: white; transform: translateY(-2px); }
.hero-stats { padding: 0 40px 0 50px; display: flex; flex-direction: column; gap: 32px; justify-content: center; }
.hero-stat-num { font-family: var(--serif); font-size: 48px; font-weight: 400; color: white; line-height: 1; }
.hero-stat-lbl { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.42); margin-top: 6px; }
.stat-line { width: 1px; height: 52px; background: rgba(255,255,255,0.12); align-self: center; }

.toolbar { background: var(--warm-white); border-bottom: 1px solid var(--lgray); }
.toolbar-inner { max-width: 1320px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; }
.breadcrumb { display: flex; align-items: center; gap: 8px; padding: 16px 0; font-size: 13px; color: var(--gray); }
.breadcrumb a { color: var(--gray); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--sage-dark); }
.breadcrumb span { opacity: 0.5; }

.filter-bar { background: white; border-bottom: 1px solid var(--lgray); }
.filter-bar-inner { max-width: 1320px; margin: 0 auto; padding: 0 40px; }
.filter-bar-inner > .filter-toggle { display: none; }
.filter-content { display: flex; align-items: stretch; min-width: max-content; }
.fsec { display: flex; align-items: center; gap: 6px; padding: 14px 22px 14px 0; margin-right: 24px; border-right: 1px solid var(--lgray); }
.fsec:last-child { border-right: none; margin-left: auto; }
.flbl { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray); margin-right: 10px; white-space: nowrap; font-weight: 500; }
.chip { font-family: var(--sans); font-size: 13px; padding: 6px 15px; border: 1px solid transparent; background: transparent; color: var(--gray); cursor: pointer; transition: all 0.15s; white-space: nowrap; border-radius: 20px; }
.chip:hover { color: var(--charcoal); border-color: var(--lgray); background: rgba(245,241,236,0.5); }
.chip.on { background: var(--sage-dark); color: white; border-color: var(--sage-dark); }
.sort-sel { font-family: var(--sans); font-size: 13px; border: 1px solid var(--lgray); padding: 6px 32px 6px 12px; appearance: none; background: white url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6'><path d='M0 0l5 6 5-6z' fill='%2379766F'/></svg>") no-repeat right 10px center; color: var(--charcoal); cursor: pointer; border-radius: 6px; }

/* FILTER TOGGLE MOBILE */
.filter-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--cream);
  border: 1px solid var(--lgray);
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-toggle:hover { background: var(--warm-white); border-color: var(--sage); }
.filter-toggle svg { width: 18px; height: 18px; }

.main-wrap { max-width: 1320px; margin: 0 auto; padding: 56px 40px; display: grid; grid-template-columns: 280px 1fr; gap: 48px; }

/* SIDEBAR */
.sidebar { display: flex; flex-direction: column; gap: 28px; }
.scard { background: white; border: 1px solid var(--lgray); padding: 24px; border-radius: 12px; }
.scard-title { font-family: var(--serif); font-size: 18px; font-weight: 400; margin-bottom: 18px; color: var(--charcoal); }
.frow { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; cursor: pointer; font-size: 14px; transition: color 0.2s; }
.frow:hover { color: var(--sage-dark); }
.frow input[type=checkbox] { appearance: none; width: 18px; height: 18px; border: 2px solid var(--lgray); cursor: pointer; position: relative; flex-shrink: 0; border-radius: 4px; transition: all 0.2s; }
.frow input[type=checkbox]:checked { background: var(--sage-dark); border-color: var(--sage-dark); }
.frow input[type=checkbox]:checked::after { content: '✓'; position: absolute; font-size: 11px; color: white; top: 1px; left: 3px; }
.fcnt { font-size: 12px; color: var(--gray); }
.range-track { height: 4px; background: var(--lgray); position: relative; margin: 18px 0 8px; border-radius: 2px; }
.range-fill { position: absolute; left: 0; right: 30%; height: 100%; background: var(--sage-dark); border-radius: 2px; }
.range-h { position: absolute; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; background: white; border: 2px solid var(--sage-dark); border-radius: 50%; cursor: pointer; transition: all 0.2s; }
.range-h:hover { transform: translateY(-50%) scale(1.1); }
.range-h.l { left: 0; }
.range-h.r { right: 30%; }
.range-labs { display: flex; justify-content: space-between; font-size: 12px; color: var(--gray); }
.av { display: flex; align-items: center; justify-content: center; border-radius: 50%; font-family: var(--serif); font-weight: 500; }
.av-g { background: #C2D1BE; color: var(--sage-dark); }
.av-t { background: #E4C0AD; color: var(--terra); }
.av-b { background: #D4D1C8; color: #5C5A54; }
.av-p { background: #D4C8E4; color: #6B559E; }
.instr-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; cursor: pointer; transition: all 0.2s; border-radius: 8px; }
.instr-item:hover { background: rgba(245,241,236,0.5); }
.in-name { font-size: 14px; font-weight: 400; color: var(--charcoal); }
.in-sub { font-size: 12px; color: var(--gray); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { font-size: 12px; padding: 5px 12px; border: 1px solid var(--lgray); color: var(--gray); cursor: pointer; transition: all 0.15s; border-radius: 20px; }
.tag:hover { border-color: var(--sage-dark); color: var(--sage-dark); background: rgba(122,146,115,0.05); }
.banner-mini { background: linear-gradient(135deg, var(--sage-dark), #3a4e35); padding: 24px; color: white; border-radius: 12px; }
.banner-mini h4 { font-family: var(--serif); font-size: 20px; font-weight: 300; margin-bottom: 8px; }
.banner-mini p { font-size: 13px; color: rgba(255,255,255,0.62); margin-bottom: 16px; line-height: 1.65; }
.btn-bm { font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 10px 20px; background: white; color: var(--sage-dark); border: none; cursor: pointer; border-radius: 6px; transition: all 0.2s; }
.btn-bm:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.prog-wrap { background: white; border: 1px solid var(--lgray); padding: 24px; border-radius: 12px; }
.prog-title { font-family: var(--serif); font-size: 18px; font-weight: 400; margin-bottom: 6px; color: var(--charcoal); }
.prog-sub { font-size: 13px; color: var(--gray); margin-bottom: 16px; }
.pbar-bg { height: 6px; background: var(--lgray); margin-bottom: 8px; border-radius: 3px; overflow: hidden; }
.pbar-fill { height: 100%; background: var(--sage-dark); border-radius: 3px; transition: width 0.5s ease; }
.plabs { display: flex; justify-content: space-between; font-size: 11px; color: var(--gray); margin-bottom: 14px; }
.prow { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-top: 1px solid var(--lgray); font-size: 13px; }
.prow:first-child { border-top: none; }
.pc { width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 500; }
.pc-done { background: var(--sage-dark); color: white; }
.pc-cur { background: var(--terra); color: white; }
.pc-todo { background: var(--lgray); color: var(--gray); }

/* CONTENT */
.content { min-width: 0; }
.sec-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 26px; }
.sec-head:not(:first-child) { margin-top: 52px; }
.sec-title { font-family: var(--serif); font-size: 32px; font-weight: 400; color: var(--charcoal); }
.sec-link { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage-dark); text-decoration: none; border-bottom: 2px solid var(--sage-light); padding-bottom: 2px; transition: all 0.2s; }
.sec-link:hover { border-color: var(--sage-dark); color: var(--charcoal); }

/* FEATURED CARD */
.featured-card { display: grid; grid-template-columns: 1.5fr 1fr; background: white; border: 1px solid var(--lgray); overflow: hidden; transition: all 0.3s; border-radius: 16px; }
.featured-card:hover { box-shadow: 0 12px 40px rgba(38,37,34,0.12); transform: translateY(-3px); }
.ft { background: linear-gradient(140deg, #6a8f63 0%, #3a4e35 100%); min-height: 420px; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.ft-svg { position: absolute; inset: 0; opacity: 0.12; }
.play-btn { width: 64px; height: 64px; border: 2px solid rgba(255,255,255,0.7); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s; position: relative; z-index: 2; background: rgba(255,255,255,0.1); backdrop-filter: blur(4px); }
.play-btn:hover { background: rgba(255,255,255,0.2); transform: scale(1.1); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.play-tri { width: 0; height: 0; border-top: 11px solid transparent; border-bottom: 11px solid transparent; border-left: 18px solid white; margin-left: 5px; }
.ft-meta { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 24px; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); display: flex; justify-content: space-between; align-items: flex-end; z-index: 2; }
.tbadge { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 12px; background: rgba(184,96,58,0.95); color: white; border-radius: 4px; }
.tdur { font-size: 13px; color: rgba(255,255,255,0.85); font-weight: 500; }
.fi { padding: 36px; display: flex; flex-direction: column; }
.new-b { display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; padding: 4px 10px; background: #EAF3DE; color: #3B6D11; margin-bottom: 14px; width: fit-content; border-radius: 4px; }
.lvl { display: inline-block; font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 12px; margin-bottom: 14px; width: fit-content; border-radius: 4px; }
.lvl-b { background: #EAF3DE; color: #3B6D11; }
.lvl-m { background: #FAEEDA; color: #7A4F0A; }
.lvl-a { background: #FAECE7; color: #893320; }
.card-title { font-family: var(--serif); font-size: 28px; font-weight: 400; line-height: 1.25; margin-bottom: 12px; color: var(--charcoal); }
.card-desc { font-size: 14px; color: var(--gray); line-height: 1.75; margin-bottom: 20px; flex: 1; }
.meta-row { display: flex; gap: 18px; flex-wrap: wrap; margin-bottom: 20px; }
.mi { font-size: 13px; color: var(--gray); display: flex; align-items: center; gap: 6px; }
.mi svg { color: var(--sage); }
.il { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--lgray); margin-top: auto; }
.il-texts { flex: 1; }
.il-name { font-size: 14px; font-weight: 400; color: var(--charcoal); }
.il-role { font-size: 12px; color: var(--gray); }
.fav-btn { width: 36px; height: 36px; border: 1px solid var(--lgray); background: white; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; flex-shrink: 0; font-size: 16px; color: var(--lgray); border-radius: 8px; }
.fav-btn:hover { border-color: var(--terra); color: var(--terra); background: rgba(255,235,230,0.3); }
.fav-btn.faved { color: var(--terra); border-color: var(--terra); background: rgba(255,235,230,0.3); }
.btn-start { font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 12px 28px; background: var(--sage-dark); color: white; border: none; cursor: pointer; transition: all 0.2s; border-radius: 8px; }
.btn-start:hover { background: var(--sage); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(78,107,73,0.25); }

/* GRID */
.g3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.g4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* LESSON CARD */
.lcard { background: white; border: 1px solid var(--lgray); overflow: hidden; cursor: pointer; transition: all 0.3s; display: flex; flex-direction: column; border-radius: 12px; }
.lcard:hover { box-shadow: 0 8px 28px rgba(38,37,34,0.1); transform: translateY(-4px); border-color: var(--sage-light); }
.lcard-thumb { height: 190px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.lcard-thumb:hover .lcard-overlay { opacity: 1; }
.lcard-overlay { position: absolute; inset: 0; background: rgba(38,37,34,0.32); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; }
.mini-play { width: 44px; height: 44px; border: 2px solid rgba(255,255,255,0.9); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.mini-play:hover { transform: scale(1.1); }
.mini-tri { width: 0; height: 0; border-top: 8px solid transparent; border-bottom: 8px solid transparent; border-left: 14px solid white; margin-left: 4px; }
.lcard-badges { position: absolute; top: 10px; left: 10px; display: flex; gap: 6px; }
.lcard-dur { position: absolute; bottom: 8px; right: 8px; font-size: 11px; color: white; background: rgba(0,0,0,0.5); padding: 3px 9px; border-radius: 4px; }
.lcard-body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; }
.lcard-meta { font-size: 12px; color: var(--gray); margin-bottom: 6px; display: flex; gap: 10px; flex-wrap: wrap; }
.lcard-title { font-family: var(--serif); font-size: 18px; font-weight: 400; line-height: 1.35; margin-bottom: 8px; color: var(--charcoal); transition: color 0.2s; }
.lcard:hover .lcard-title { color: var(--sage-dark); }
.lcard-sub { font-size: 13px; color: var(--gray); line-height: 1.65; flex: 1; }
.lcard-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--lgray); }
.lcard-instr { display: flex; align-items: center; gap: 8px; font-size: 13px; }
.av-sm { width: 26px; height: 26px; flex-shrink: 0; font-size: 10px; }
.stars { font-size: 12px; color: var(--gold); }
.cnt { font-size: 11px; color: var(--gray); }
.save-btn { border: none; background: none; cursor: pointer; color: var(--lgray); font-size: 16px; padding: 2px; transition: all 0.2s; }
.save-btn:hover { color: var(--terra); transform: scale(1.1); }
.save-btn.faved { color: var(--terra); }

.tc1 { background: linear-gradient(140deg, #8ab088 0%, #4E6B49 100%); }
.tc2 { background: linear-gradient(140deg, #c4956b 0%, #8a5030 100%); }
.tc3 { background: linear-gradient(140deg, #8fa8c4 0%, #4a6a8a 100%); }
.tc4 { background: linear-gradient(140deg, #b89ac4 0%, #7a5a8a 100%); }
.tc5 { background: linear-gradient(140deg, #c4b07a 0%, #8a7040 100%); }
.tc6 { background: linear-gradient(140deg, #a0c4b8 0%, #507060 100%); }
.tc7 { background: linear-gradient(140deg, #c4a0a0 0%, #8a4848 100%); }
.tc8 { background: linear-gradient(140deg, #a8b890 0%, #5a6a44 100%); }

/* SCHEDULE */
.sched-wrap { background: white; border: 1px solid var(--lgray); overflow: hidden; border-radius: 12px; }
.sched-head { padding: 24px 28px; border-bottom: 1px solid var(--lgray); display: flex; align-items: center; justify-content: space-between; }
.sched-title { font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--charcoal); }
.week-nav { display: flex; align-items: center; gap: 16px; font-size: 14px; }
.week-nav button { border: 1px solid var(--lgray); background: white; width: 32px; height: 32px; cursor: pointer; font-size: 14px; color: var(--gray); border-radius: 6px; transition: all 0.2s; }
.week-nav button:hover { border-color: var(--sage-dark); color: var(--sage-dark); }
table.sched { width: 100%; border-collapse: collapse; }
.sched thead th { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; color: var(--gray); padding: 10px 16px; text-align: left; border-bottom: 1px solid var(--lgray); background: var(--cream); }
.sched tbody td { padding: 0; border-bottom: 1px solid var(--lgray); border-right: 1px solid var(--lgray); vertical-align: top; min-width: 110px; }
.sched tbody td:first-child { min-width: 80px; }
.sched tbody td:last-child { border-right: none; }
.time-cell { padding: 14px 16px; font-size: 13px; color: var(--gray); white-space: nowrap; font-weight: 500; }
.si { padding: 10px 12px; margin: 4px; cursor: pointer; border-left: 4px solid; border-radius: 6px; transition: all 0.2s; }
.si:hover { opacity: 0.88; transform: translateX(2px); }
.si-g { background: #EAF3DE; border-color: var(--sage-dark); }
.si-t { background: #FAECE7; border-color: var(--terra); }
.si-b { background: #E6F1FB; border-color: #185FA5; }
.si-o { background: #FAEEDA; border-color: var(--gold); }
.si-name { font-size: 12px; font-weight: 500; color: var(--charcoal); margin-bottom: 3px; }
.si-instr { font-size: 11px; color: var(--gray); }
.si-dur { font-size: 10px; color: var(--gray); margin-top: 2px; }
.si-rutube { display: block; margin-top: 8px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; text-decoration: none; color: var(--sage-dark); font-weight: 500; }
.si-rutube:hover { text-decoration: underline; }

/* INSTRUCTORS */
.instr-section { background: linear-gradient(135deg, #1a1a16 0%, #2d3a2a 100%); padding: 60px 0; margin-top: 60px; }
.instr-inner { max-width: 1320px; margin: 0 auto; padding: 0 40px; }
.is-title { font-family: var(--serif); font-size: 36px; font-weight: 300; color: white; margin-bottom: 8px; }
.is-sub { font-size: 14px; color: rgba(255,255,255,0.48); margin-bottom: 32px; }
.icard-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.icard { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); padding: 26px; transition: all 0.3s; cursor: pointer; border-radius: 16px; }
.icard:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }
.icard-av { width: 64px; height: 64px; margin-bottom: 14px; font-size: 20px; }
.icard-name { font-family: var(--serif); font-size: 18px; font-weight: 400; color: white; margin-bottom: 4px; }
.icard-spec { font-size: 12px; letter-spacing: 0.06em; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.icard-stats { display: flex; gap: 16px; }
.ist { font-size: 11px; color: rgba(255,255,255,0.5); }
.ist strong { color: white; font-weight: 600; display: block; font-size: 14px; }

/* INSTRUCTOR MODAL */
.instructor-modal { position: fixed; inset: 0; z-index: 500; display: none; }
.instructor-modal.active { display: block; }
.instructor-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(4px); }
.instructor-modal-content { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.9); width: 90%; max-width: 600px; background: white; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); opacity: 0; transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1); overflow: hidden; }
.instructor-modal.active .instructor-modal-content { transform: translate(-50%, -50%) scale(1); opacity: 1; }
.modal-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border: none; background: rgba(0,0,0,0.05); color: var(--gray); font-size: 20px; cursor: pointer; border-radius: 8px; transition: all 0.2s; z-index: 10; }
.modal-close:hover { background: rgba(0,0,0,0.1); color: var(--charcoal); }
.instructor-modal-body { padding: 32px; }
.im-header { display: flex; align-items: center; gap: 20px; margin-bottom: 24px; }
.im-avatar { width: 80px; height: 80px; font-size: 24px; flex-shrink: 0; }
.im-info { flex: 1; }
.im-name { font-family: var(--serif); font-size: 28px; font-weight: 400; color: var(--charcoal); margin-bottom: 4px; }
.im-spec { font-size: 13px; color: var(--gray); margin-bottom: 16px; }
.im-stats { display: flex; gap: 24px; }
.im-stat { font-size: 12px; color: var(--gray); }
.im-stat strong { color: var(--charcoal); font-weight: 600; display: block; font-size: 16px; }
.im-bio { font-size: 14px; color: var(--gray); line-height: 1.75; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--lgray); }
.im-certificates h4, .im-lessons h4 { font-size: 14px; font-weight: 600; color: var(--charcoal); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }
.im-certs { font-size: 13px; color: var(--gray); line-height: 1.65; }
.im-lessons-list { display: flex; flex-direction: column; gap: 8px; }
.im-lesson-item { display: flex; align-items: center; gap: 12px; padding: 10px 14px; background: var(--cream); border-radius: 8px; cursor: pointer; transition: all 0.2s; }
.im-lesson-item:hover { background: var(--sage-light); }
.im-lesson-item .av-sm { flex-shrink: 0; }
.im-lesson-info { flex: 1; }
.im-lesson-title { font-size: 13px; font-weight: 500; color: var(--charcoal); }
.im-lesson-meta { font-size: 11px; color: var(--gray); }
.im-btn { width: 100%; margin-top: 16px; }

/* REVIEWS */
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rev-card { background: white; border: 1px solid var(--lgray); padding: 26px; border-radius: 16px; transition: all 0.2s; }
.rev-card:hover { box-shadow: 0 8px 24px rgba(38,37,34,0.08); transform: translateY(-2px); }
.rev-top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.rev-name { font-size: 15px; font-weight: 400; color: var(--charcoal); }
.rev-date { font-size: 12px; color: var(--gray); margin-top: 1px; }
.rev-stars { font-size: 13px; color: var(--gold); margin-bottom: 10px; }
.rev-text { font-size: 14px; color: var(--gray); line-height: 1.75; margin-bottom: 12px; }
.rev-lesson { font-size: 12px; color: var(--sage-dark); margin-top: 12px; font-weight: 500; }

/* NEWSLETTER */
.newsletter { background: linear-gradient(135deg, var(--charcoal) 0%, #3a4e35 100%); padding: 60px 40px; max-width: 1320px; margin: 60px auto 0; display: flex; align-items: center; justify-content: space-between; gap: 48px; border-radius: 16px; }
.nl-title { font-family: var(--serif); font-size: 32px; font-weight: 300; color: white; margin-bottom: 8px; }
.nl-sub { font-size: 14px; color: rgba(255,255,255,0.52); max-width: 400px; }
.nl-form { display: flex; flex-shrink: 0; gap: 12px; }
.nl-input { font-family: var(--sans); font-size: 14px; padding: 14px 20px; border: none; background: rgba(255,255,255,0.12); color: white; width: 300px; outline: none; border-radius: 8px; transition: all 0.2s; }
.nl-input::placeholder { color: rgba(255,255,255,0.42); }
.nl-input:focus { background: rgba(255,255,255,0.18); }
.nl-btn { font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 14px 28px; background: var(--terra); color: white; border: none; cursor: pointer; transition: all 0.2s; border-radius: 8px; }
.nl-btn:hover { background: #a0542e; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(184,96,58,0.3); }

/* FOOTER */
footer { background: var(--charcoal); padding: 52px 0 28px; }
.footer-inner { max-width: 1320px; margin: 0 auto; padding: 0 40px; }
.fg { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-logo { font-family: var(--serif); font-size: 24px; color: white; margin-bottom: 14px; }
.footer-logo span { color: var(--sage-light); }
.f-tagline { font-size: 14px; color: rgba(255,255,255,0.42); line-height: 1.75; margin-bottom: 18px; }
.f-social { display: flex; gap: 10px; }
.soc { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; font-size: 12px; color: rgba(255,255,255,0.42); cursor: pointer; transition: all 0.2s; border-radius: 8px; }
.soc:hover { border-color: rgba(255,255,255,0.3); color: white; background: rgba(255,255,255,0.05); }
.f-col-title { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 16px; font-weight: 500; }
.f-links { display: flex; flex-direction: column; gap: 8px; }
.f-links a { font-size: 14px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.f-links a:hover { color: white; padding-left: 4px; }
.f-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.32); flex-wrap: wrap; gap: 12px; }

/* PAGINATION */
.pager { display: flex; gap: 4px; justify-content: center; margin-top: 40px; }
.pgb { width: 40px; height: 40px; border: 1px solid var(--lgray); background: white; display: flex; align-items: center; justify-content: center; font-size: 14px; cursor: pointer; color: var(--gray); transition: all 0.2s; border-radius: 8px; }
.pgb:hover { border-color: var(--charcoal); color: var(--charcoal); background: rgba(245,241,236,0.5); }
.pgb.cur { background: var(--sage-dark); border-color: var(--sage-dark); color: white; }
.pgb:disabled { opacity: 0.4; cursor: not-allowed; }

/* PLAYER */
.player-bar { position: fixed; bottom: 0; left: 0; right: 0; background: var(--charcoal); border-top: 1px solid rgba(255,255,255,0.08); padding: 0 40px; height: 72px; display: flex; align-items: center; gap: 24px; z-index: 300; transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.player-bar.hidden { transform: translateY(100%); }
.pl-thumb { width: 50px; height: 50px; flex-shrink: 0; border-radius: 8px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.pl-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pl-info { flex: 1; min-width: 0; }
.pl-title { font-size: 14px; font-weight: 500; color: white; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pl-instr { font-size: 12px; color: rgba(255,255,255,0.42); }
.pl-ctrl { display: flex; align-items: center; gap: 16px; }
.plbtn { border: none; background: none; cursor: pointer; color: rgba(255,255,255,0.48); font-size: 18px; transition: all 0.2s; padding: 6px; border-radius: 6px; }
.plbtn:hover { color: white; background: rgba(255,255,255,0.08); }
.pl-play { width: 44px; height: 44px; border: 1.5px solid rgba(255,255,255,0.5); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; color: white; transition: all 0.2s; }
.pl-play:hover { border-color: white; background: rgba(255,255,255,0.12); transform: scale(1.08); }
.pl-tri { width: 0; height: 0; border-top: 9px solid transparent; border-bottom: 9px solid transparent; border-left: 16px solid white; margin-left: 4px; }
.pl-prog { flex: 1; max-width: 320px; }
.pp-track { height: 4px; background: rgba(255,255,255,0.15); cursor: pointer; border-radius: 2px; position: relative; }
.pp-track:hover .pp-fill { background: var(--sage); }
.pp-fill { height: 100%; background: var(--sage); width: 35%; border-radius: 2px; position: relative; }
.pp-fill::after { content: ''; position: absolute; right: -6px; top: -4px; width: 12px; height: 12px; background: white; border-radius: 50%; box-shadow: 0 0 4px rgba(0,0,0,0.3); opacity: 0; transition: opacity 0.2s; }
.pp-track:hover .pp-fill::after { opacity: 1; }
.pp-times { display: flex; justify-content: space-between; font-size: 11px; color: rgba(255,255,255,0.38); margin-top: 6px; }
.pl-close { border: none; background: none; cursor: pointer; color: rgba(255,255,255,0.32); font-size: 18px; transition: all 0.2s; padding: 4px; border-radius: 6px; }
.pl-close:hover { color: white; background: rgba(255,255,255,0.08); }
.pl-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 8px; }
.pl-body iframe { width: 100%; aspect-ratio: 16/9; border: none; border-radius: 8px; }

/* RUTUBE PATCH */
.rutube-link-btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; padding: 10px 16px; border: 1px solid var(--lgray); color: var(--charcoal); background: #fff; transition: all 0.2s; cursor: pointer; border-radius: 6px; }
.rutube-link-btn:hover { border-color: var(--terra); color: var(--terra); background: rgba(255,235,230,0.3); }
.rutube-badge-link { display: inline-flex; align-items: center; justify-content: center; margin-top: 10px; font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; padding: 7px 12px; border: 1px solid var(--terra-light); color: var(--terra); background: #fff; width: fit-content; transition: all 0.2s; border-radius: 6px; }
.rutube-badge-link:hover { border-color: var(--terra); background: var(--terra); color: #fff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(184,96,58,0.2); }

/* RUTUBE PLAYER IN CARD */
.lcard-player { width: 100%; aspect-ratio: 16/9; border: none; border-radius: 8px; margin-top: 12px; }
.lcard-player-container { position: relative; overflow: hidden; border-radius: 8px; margin-top: 12px; }
.lcard-player-container iframe { width: 100%; height: 100%; display: block; }
.lcard-player-placeholder { position: relative; overflow: hidden; border-radius: 8px; margin-top: 12px; }
.lcard-player-placeholder::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, #6a8f63 0%, #3a4e35 100%); opacity: 0.8; }
.lcard-player-placeholder .play-icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.lcard-player-placeholder .play-icon::before { content: ''; width: 48px; height: 48px; border: 2px solid rgba(255,255,255,0.8); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.lcard-player-placeholder .play-icon::after { content: ''; width: 0; height: 0; border-top: 10px solid transparent; border-bottom: 10px solid transparent; border-left: 16px solid white; margin-left: 4px; }
.lcard-player-placeholder:hover .play-icon::before { transform: scale(1.1); background: rgba(255,255,255,0.15); }

/* RUTUBE MODAL */
.rutube-preview {
  position: relative;
  margin-top: 14px;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #6a8f63 0%, #3a4e35 100%);
  cursor: pointer;
}

.rutube-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.5), transparent);
}

.rutube-preview-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rutube-preview-play::before {
  content: '';
  width: 64px;
  height: 64px;
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: 50%;
}

.rutube-preview-play::after {
  content: '';
  position: absolute;
  margin-left: 6px;
  border-left: 18px solid white;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}

.rutube-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.rutube-modal.active {
  display: block;
}

.rutube-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.7);
}

.rutube-modal-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(1000px, 95vw);
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.rutube-modal-head {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  color: white;
}

.rutube-modal-body {
  aspect-ratio: 16/9;
}

.rutube-modal-body iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* RESPONSIVE */
@media (max-width: 1200px) { .hero-inner { grid-template-columns: 1fr; text-align: center; } .hero-text { padding: 40px 0; } .hero h1 { font-size: 48px; } .hero-sub { margin-left: auto; margin-right: auto; } .hero-stats { padding: 40px 0; flex-direction: row; gap: 40px; } .hero-stats .stat-line { width: 1px; height: 40px; } .g4 { grid-template-columns: repeat(3, 1fr); } }

@media (max-width: 992px) {
  .hero h1 { font-size: 40px; }
  .g4 { grid-template-columns: repeat(2, 1fr); }
  .sched-wrap { overflow-x: auto; }
  .sched thead th:first-child { min-width: 80px; }
  .sched tbody td:first-child { min-width: 70px; }
  .icard-grid { grid-template-columns: repeat(2, 1fr); }
  .nl-form { flex-direction: column; }
  .nl-input { width: 100%; }
  .fg { grid-template-columns: 1fr 1fr; }
  .header-inner { gap: 20px; }
  .header-right { margin-left: auto; }
  .nav-menu { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  .header-inner { padding: 0 16px; height: 60px; }
  .logo { font-size: 20px; }
  .nav-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--lgray);
    display: none;
  }
  .nav-menu.active { display: flex; }
  .nav-menu a { padding: 12px 0; border-bottom: 1px solid var(--lgray); }
  .nav-menu a:last-child { border-bottom: none; }
  .search-box { display: none; }
  .hero h1 { font-size: 28px; }
  .hero-sub { font-size: 14px; margin-left: auto; margin-right: auto; }
  .hero-text { padding: 30px 0; }
  .hero h1 br { display: none; }
  .hero-actions { flex-direction: column; }
  .btn-hero { width: 100%; }
  .hero-inner { padding: 0 20px; }
  .hero-stats { flex-wrap: wrap; justify-content: center; }
  .toolbar-inner { padding: 0 16px; }
  .g3, .g4 { grid-template-columns: 1fr; }
  .rev-grid { grid-template-columns: 1fr; }
  .icard-grid { grid-template-columns: 1fr; }
  .newsletter { flex-direction: column; text-align: center; }
  .nl-form { width: 100%; }
  .fg { grid-template-columns: 1fr; }
  .f-bottom { flex-direction: column; text-align: center; }
  .player-bar { padding: 0 16px; height: 56px; }
  .pl-thumb { width: 40px; height: 40px; }
  .pl-play { width: 36px; height: 36px; }
  .pl-tri { border-left-width: 12px; margin-left: 2px; }
  .main-wrap { padding: 32px 16px; grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .content { min-width: 0; }
  .sec-title { font-size: 24px; }
  .featured-card { grid-template-columns: 1fr; }
  .ft { min-height: 280px; }
  .fi { padding: 24px; }
  .lcard-thumb { height: 160px; }
  .lcard-title { font-size: 16px; }
  .card-title { font-size: 24px; }
  .filter-bar-inner { padding: 0 16px; }
  .fsec { padding: 10px 16px 10px 0; }
  .chip { padding: 5px 12px; font-size: 12px; }
  .scard { padding: 20px; }
  .prog-wrap { padding: 20px; }
  .instructor-modal-content { width: 95%; max-width: 400px; }
  .im-header { flex-direction: column; text-align: center; }
  .im-avatar { width: 64px; height: 64px; font-size: 18px; }
  .im-name { font-size: 24px; }
  .im-stats { flex-direction: column; gap: 12px; }
  .sched-head { flex-direction: column; gap: 12px; align-items: flex-start; }
  .sched-title { font-size: 20px; }
  .week-nav { width: 100%; justify-content: space-between; }
  .sched tbody td { min-width: 90px; }
  .sched tbody td:first-child { min-width: 60px; }
  .time-cell { padding: 10px 8px; font-size: 11px; }
  .si { padding: 8px 10px; margin: 2px; }
  .si-name { font-size: 11px; }
  .si-instr { font-size: 10px; }
  .si-dur { font-size: 9px; }
  .icard { padding: 20px; }
  .icard-av { width: 56px; height: 56px; font-size: 18px; }
  .icard-name { font-size: 16px; }
  .icard-spec { font-size: 11px; }
  .icard-stats { gap: 12px; }
  .ist { font-size: 10px; }
  .ist strong { font-size: 12px; }
  .rev-card { padding: 20px; }
  .rev-text { font-size: 13px; }
  .newsletter { padding: 40px 20px; }
  .nl-title { font-size: 26px; }
  .nl-sub { font-size: 13px; }
  .nl-input { width: 100%; padding: 12px 16px; }
  .nl-btn { padding: 12px 24px; }
  .footer-inner { padding: 0 16px; }
  .footer-logo { font-size: 20px; }
  .f-tagline { font-size: 13px; }
  .f-col-title { font-size: 11px; }
  .f-links a { font-size: 13px; }
  .player-bar.hidden { transform: translateY(100%); }
}

@media (max-width: 480px) {
  .topbar { font-size: 11px; padding: 6px 12px; }
  .btn-sm { padding: 8px 16px; font-size: 11px; }
  .btn-hero { padding: 14px 28px; font-size: 12px; }
  .hero-tag { font-size: 10px; }
  .hero h1 { font-size: 24px; }
  .hero-stats { gap: 24px; }
  .hero-stat-num { font-size: 36px; }
  .hero-stat-lbl { font-size: 11px; }
  .stat-line { height: 40px; }
  .sec-title { font-size: 22px; }
  .sec-head:not(:first-child) { margin-top: 36px; }
  .featured-card { border-radius: 12px; }
  .fi { padding: 20px; }
  .card-title { font-size: 22px; }
  .card-desc { font-size: 13px; }
  .meta-row { flex-direction: column; gap: 8px; }
  .mi { font-size: 12px; }
  .il { flex-direction: column; align-items: flex-start; gap: 10px; }
  .fav-btn { width: 32px; height: 32px; font-size: 14px; }
  .btn-start { width: 100%; }
  .lcard-thumb { height: 140px; }
  .lcard-title { font-size: 15px; }
  .lcard-sub { font-size: 12px; }
  .lcard-instr { font-size: 12px; }
  .av-sm { width: 24px; height: 24px; font-size: 9px; }
  .stars { font-size: 11px; }
  .cnt { font-size: 10px; }
  .sched-wrap { overflow-x: auto; }
  .sched thead th { padding: 8px 12px; font-size: 10px; }
  .sched tbody td { min-width: 70px; }
  .sched tbody td:first-child { min-width: 50px; }
  .time-cell { padding: 8px 6px; font-size: 10px; }
  .si { padding: 6px 8px; margin: 2px; }
  .si-name { font-size: 10px; }
  .si-instr { font-size: 9px; }
  .si-dur { font-size: 8px; }
  .icard { padding: 16px; }
  .icard-av { width: 48px; height: 48px; font-size: 16px; }
  .icard-name { font-size: 15px; }
  .icard-spec { font-size: 10px; }
  .rev-card { padding: 16px; }
  .rev-name { font-size: 14px; }
  .rev-text { font-size: 12px; }
  .rev-lesson { font-size: 11px; }
  .newsletter { padding: 32px 16px; }
  .nl-title { font-size: 22px; }
  .nl-sub { font-size: 12px; }
  .nl-input { padding: 10px 14px; font-size: 13px; }
  .nl-btn { padding: 10px 20px; font-size: 11px; }
  .footer-inner { padding: 0 12px; }
  .footer-logo { font-size: 18px; }
  .f-tagline { font-size: 12px; }
  .f-col-title { font-size: 10px; }
  .f-links a { font-size: 12px; }
  .f-bottom { font-size: 11px; }
  .player-bar { padding: 0 12px; height: 52px; }
  .pl-thumb { width: 36px; height: 36px; }
  .pl-title { font-size: 12px; }
  .pl-instr { font-size: 11px; }
  .pl-play { width: 32px; height: 32px; }
  .pl-tri { border-left-width: 10px; margin-left: 2px; }
  .pl-prog { max-width: 200px; }
  .pp-track { height: 3px; }
  .pp-fill::after { width: 10px; height: 10px; top: -3px; }
  .pp-times { font-size: 10px; }
  .rutube-modal-dialog { width: 95%; }
  .rutube-modal-body { aspect-ratio: 16/9; }
  .calendar { gap: 12px; }
  .calendar-day { padding: 12px; }
  .calendar-day__title { font-size: 13px; }
  .calendar-event { padding: 6px 10px; gap: 8px; }
  .calendar-event__time { font-size: 12px; min-width: 40px; }
  .calendar-event__title { font-size: 13px; }
}

/* FILTER MOBILE STYLES */
@media (max-width: 768px) {
  .filter-bar-inner { padding: 0 16px; }
  .filter-bar-inner > .filter-toggle { display: flex; }
  .filter-content { display: none; }
  .filter-content.active { display: flex; flex-direction: column; gap: 16px; padding: 16px 0; }
  .fsec {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 0;
    margin-right: 0;
    border-right: none;
    border-bottom: 1px solid var(--lgray);
  }
  .fsec:last-child { border-bottom: none; }
  .fsec .flbl { margin-right: 0; margin-bottom: 4px; }
  .chip { padding: 6px 12px; font-size: 12px; }
  .sort-sel { width: 100%; padding: 8px 12px; }
}

@media (max-width: 480px) {
  .filter-bar-inner { padding: 0 12px; }
  .filter-toggle { padding: 10px 12px; font-size: 12px; }
  .filter-content { padding: 12px 0; }
  .fsec { padding: 10px 0; }
  .fsec .flbl { font-size: 10px; }
  .chip { padding: 5px 10px; font-size: 11px; }
  .sort-sel { padding: 6px 10px; font-size: 12px; }
}

/* CALENDAR */
.calendar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.calendar-day {
  background: white;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.calendar-day__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--sage-dark);
  margin-bottom: 12px;
}

.calendar-day__events {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calendar-event {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: var(--warm-white);
  border-radius: 6px;
  border-left: 3px solid var(--sage);
}

.calendar-event--demo {
  border-left-color: var(--gold);
  opacity: 0.8;
}

.calendar-event__time {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  min-width: 50px;
}

.calendar-event__title {
  font-size: 14px;
  color: var(--gray);
}

.calendar-empty {
  font-size: 13px;
  color: var(--gray);
  font-style: italic;
  padding: 8px 0;
}
@media (max-width: 480px) { .hero-actions { flex-direction: column; } .btn-hero { width: 100%; } .topbar { font-size: 12px; padding: 8px 16px; } .scard { padding: 20px; } .sec-title { font-size: 26px; } .sched-head { flex-direction: column; gap: 12px; align-items: flex-start; } .sched-title { font-size: 20px; } .week-nav { width: 100%; justify-content: space-between; } }

/* ============================================================
   УЛУЧШЕНИЯ: анимации, живость, мобильные фиксы
   ============================================================ */

/* --- Fade-in sections --- */
.fade-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.fade-section.in-view {
  opacity: 1;
  transform: none;
}

/* --- Skeleton shimmer --- */
@keyframes skeleton-shimmer {
  0% { background-position: -400px 0; }
  100% { background-position: calc(400px + 100%) 0; }
}
.skel {
  background: linear-gradient(90deg, #ede9e2 25%, #f5f1eb 50%, #ede9e2 75%);
  background-size: 400px 100%;
  animation: skeleton-shimmer 1.4s infinite;
  border-radius: 8px;
}
.skel-hero {
  min-height: 420px;
  background: linear-gradient(135deg, #1a1a16 0%, #2d3a2a 50%, #3a4e35 100%);
}
.skel-bar {
  height: 56px;
  background: rgba(245,241,236,0.97);
  border-bottom: 1px solid #CECAC3;
}

/* --- Toast notification --- */
.toast-notification {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--sage-dark);
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--sans);
  font-weight: 400;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s, transform 0.28s cubic-bezier(0.16,1,0.3,1);
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(78,107,73,0.35);
}
.toast-notification.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast-notification.toast-error {
  background: #b84e3a;
}

/* --- Subscribe button pulse --- */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(78,107,73,0.45); }
  60% { box-shadow: 0 0 0 7px rgba(78,107,73,0); }
}
.btn-green { animation: pulse-glow 2.8s ease-in-out infinite; }
.btn-green:hover { animation: none; }

/* --- Trust block --- */
.trust-block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: white;
  border: 1px solid var(--lgray);
  border-radius: 12px;
  margin-bottom: 36px;
  overflow: hidden;
}
.trust-item {
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid var(--lgray);
}
.trust-item:last-child { border-right: none; }
.trust-num {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  color: var(--sage-dark);
  line-height: 1;
  letter-spacing: -0.01em;
}
.trust-lbl {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--gray);
  margin-top: 6px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .trust-block { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom: 1px solid var(--lgray); }
  .trust-item:last-child { border-right: none; }
}
@media (max-width: 480px) {
  .trust-num { font-size: 30px; }
  .trust-lbl { font-size: 11px; }
  .trust-item { padding: 18px 12px; }
}

/* --- Review improvements --- */
.rev-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(122,146,115,0.1);
  color: var(--sage-dark);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .rev-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
  }
  .rev-card {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }
}
@media (max-width: 480px) {
  .rev-card { flex: 0 0 92%; }
}

/* --- No-results state --- */
.no-results {
  text-align: center;
  padding: 48px 24px;
  color: var(--gray);
}
.no-results-icon { font-size: 32px; margin-bottom: 12px; }
.no-results-text { font-size: 15px; }

/* --- Lesson card hover lift --- */
.lcard {
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), box-shadow 0.25s ease;
}
.lcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(38,37,34,0.11);
}
.lcard[data-hidden="true"] { display: none; }

/* --- Video thumbnail image in cards --- */
.lcard-thumb { position: relative; overflow: hidden; }
.lcard-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.4s ease;
}
.lcard:hover .lcard-thumb-img { transform: scale(1.06); }
.lcard-overlay, .lcard-badges, .lcard-dur { position: relative; z-index: 1; }

/* --- Schedule table scroll shadow --- */
@media (max-width: 992px) {
  .sched-wrap {
    position: relative;
  }
  .sched-wrap::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 28px;
    background: linear-gradient(to left, rgba(253,250,247,0.85), transparent);
    pointer-events: none;
    z-index: 2;
  }
}

/* --- Mobile 360px nav fix --- */
@media (max-width: 380px) {
  .btn-ghost { display: none; }
  .header-inner { gap: 8px; padding: 0 12px; }
  .logo { font-size: 18px; }
}

/* --- Hero min-width fix (prevents text overflow) --- */
.hero-text { min-width: 0; }
.hero h1 { word-break: break-word; }
@media (max-width: 480px) {
  .hero-inner { padding: 0 16px; }
  .hero-stats { padding: 20px 0; gap: 20px; }
}

/* --- Footer mobile gap fix --- */
@media (max-width: 768px) {
  .fg { display: flex; flex-direction: column; gap: 28px; }
  .f-links { display: flex; flex-direction: column; gap: 8px; }
}

/* --- Search highlight --- */
.search-highlight { background: rgba(184,96,58,0.15); border-radius: 2px; }

/* --- Smooth scroll for nav --- */
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

/* --- Lcard hidden by filter --- */
.lcard-hidden {
  display: none !important;
}

/* --- Featured card thumbnail --- */
.ft { position: relative; overflow: hidden; }
.ft-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.4s ease;
}
.featured-card:hover .ft-thumb-img { transform: scale(1.04); }
.ft-svg, .play-btn, .ft-meta { position: relative; z-index: 1; }

/* --- Cookie Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--charcoal);
  color: rgba(255,255,255,0.85);
  padding: 20px 40px;
  display: none;
  align-items: center;
  gap: 24px;
  z-index: 9998;
  font-size: 13px;
  line-height: 1.6;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.cookie-banner.cookie-hiding {
  transform: translateY(100%);
  opacity: 0;
}
.cookie-text { flex: 1; }
.cookie-text a { color: var(--sage-light); text-decoration: underline; }
.cookie-text a:hover { color: white; }
.cookie-btns { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-accept {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 24px;
  background: var(--sage-dark);
  color: white;
  border: 1px solid var(--sage-dark);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-accept:hover { background: var(--sage); border-color: var(--sage); }
.cookie-settings {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 24px;
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}
.cookie-settings:hover { border-color: rgba(255,255,255,0.5); color: white; }
@media (max-width: 768px) {
  .cookie-banner { flex-direction: column; padding: 16px 20px; gap: 14px; text-align: center; }
  .cookie-btns { width: 100%; justify-content: center; }
}

/* --- How It Works --- */
.hiw-section {
  background: var(--warm-white);
  padding: 80px 40px;
}
.hiw-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.hiw-title {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 8px;
}
.hiw-sub {
  font-size: 15px;
  color: var(--gray);
  text-align: center;
  margin-bottom: 48px;
}
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.hiw-step {
  background: white;
  border-radius: 12px;
  padding: 32px;
  border-top: 3px solid var(--sage);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hiw-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(38,37,34,0.08);
}
.hiw-step-icon {
  width: 48px;
  height: 48px;
  background: rgba(122,146,115,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--sage-dark);
}
.hiw-step-num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  color: var(--sage-light);
  line-height: 1;
  margin-bottom: 12px;
}
.hiw-step-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 10px;
}
.hiw-step-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .hiw-section { padding: 48px 20px; }
  .hiw-title { font-size: 28px; }
  .hiw-grid { grid-template-columns: 1fr; gap: 20px; }
  .hiw-step { padding: 24px; }
  .hiw-step-num { font-size: 40px; }
}

/* --- FAQ --- */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 40px;
}
.faq-title {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--charcoal);
  text-align: center;
  margin-bottom: 40px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--lgray);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--charcoal);
  text-align: left;
  line-height: 1.5;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--sage-dark); }
.faq-q-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(122,146,115,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--sage-dark);
  margin-left: 16px;
  transition: transform 0.3s ease, background 0.2s;
}
.faq-item--open .faq-q-icon {
  transform: rotate(45deg);
  background: var(--sage-dark);
  color: white;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16,1,0.3,1), padding 0.35s;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  padding: 0 0 0 0;
}
.faq-item--open .faq-a {
  max-height: 300px;
  padding: 0 0 20px 0;
}
@media (max-width: 768px) {
  .faq-section { padding: 48px 20px; }
  .faq-title { font-size: 28px; }
  .faq-q { font-size: 15px; padding: 16px 0; }
  .faq-a { font-size: 13px; }
}

/* --- Pricing --- */
.pricing-section {
  background: linear-gradient(135deg, #1a1a16 0%, #2d3a2a 50%, #3a4e35 100%);
  padding: 80px 40px;
  position: relative;
}
.pricing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(122,146,115,0.12) 0%, transparent 50%);
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.pricing-title {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  color: white;
  text-align: center;
  margin-bottom: 8px;
}
.pricing-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  margin-bottom: 48px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 36px 28px;
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card--featured {
  background: rgba(255,255,255,0.12);
  border-color: var(--sage);
  position: relative;
  transform: scale(1.04);
}
.pricing-card--featured:hover { transform: scale(1.04) translateY(-4px); }
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--terra);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
}
.pricing-plan {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.pricing-price {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-period {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing-features li {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pricing-features li::before {
  content: '\2713';
  color: var(--sage-light);
  font-weight: 600;
  flex-shrink: 0;
}
.pricing-btn {
  display: block;
  width: 100%;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  border: 1px solid;
}
.pricing-btn--outline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.2);
}
.pricing-btn--outline:hover { border-color: rgba(255,255,255,0.5); color: white; }
.pricing-btn--terra {
  background: var(--terra);
  color: white;
  border-color: var(--terra);
}
.pricing-btn--terra:hover { background: #a0542e; border-color: #a0542e; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,96,58,0.3); }
.pricing-btn--green {
  background: var(--sage-dark);
  color: white;
  border-color: var(--sage-dark);
}
.pricing-btn--green:hover { background: var(--sage); border-color: var(--sage); }
@media (max-width: 992px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }
}
@media (max-width: 768px) {
  .pricing-section { padding: 48px 20px; }
  .pricing-title { font-size: 28px; }
  .pricing-price { font-size: 36px; }
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--sage-dark);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  pointer-events: none;
  box-shadow: 0 4px 16px rgba(78,107,73,0.3);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover { background: var(--sage); }

/* --- Online Indicator --- */
.online-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gray);
  white-space: nowrap;
}
.online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4CAF50;
  animation: online-pulse 2s ease-in-out infinite;
}
@keyframes online-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(76,175,80,0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 4px rgba(76,175,80,0); }
}
.online-count { font-weight: 500; color: var(--charcoal); }
@media (max-width: 768px) {
  .online-indicator { display: none; }
  .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
}

/* --- Social icons in footer --- */
.soc {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.2s;
  text-decoration: none;
}
.soc:hover {
  color: white;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08);
}

/* ============================================================
   SKELETON LOADING
   ============================================================ */
.skeleton-header {
  height: 72px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 0;
}

.skeleton-hero {
  height: 420px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 0;
}

.skeleton-toolbar {
  height: 40px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 0;
}

.skeleton-filter-bar {
  height: 50px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 0;
}

.skeleton-sidebar {
  height: 600px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 12px;
}

.skeleton-content {
  height: 800px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 16px;
}

.skeleton-instructors {
  height: 400px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 16px;
}

.skeleton-how-it-works {
  height: 300px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 16px;
}

.skeleton-pricing {
  height: 400px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 16px;
}

.skeleton-newsletter {
  height: 200px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 16px;
}

.skeleton-faq {
  height: 300px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 16px;
}

.skeleton-footer {
  height: 300px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 0;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================================
   THEME SWITCHER
   ============================================================ */
:root {
  --bg: #F5F1EC;
  --text: #262522;
  --card-bg: #FFFFFF;
  --skeleton-bg: #f0f0f0;
  --skeleton-highlight: #e0e0e0;
}

[data-theme="dark"] {
  --bg: #1a1a16;
  --text: #F5F1EC;
  --card-bg: #2d2d28;
  --skeleton-bg: #3a3a36;
  --skeleton-highlight: #4a4a46;
}

[data-theme="dark"] .skeleton-header,
[data-theme="dark"] .skeleton-hero,
[data-theme="dark"] .skeleton-toolbar,
[data-theme="dark"] .skeleton-filter-bar,
[data-theme="dark"] .skeleton-sidebar,
[data-theme="dark"] .skeleton-content,
[data-theme="dark"] .skeleton-instructors,
[data-theme="dark"] .skeleton-how-it-works,
[data-theme="dark"] .skeleton-pricing,
[data-theme="dark"] .skeleton-newsletter,
[data-theme="dark"] .skeleton-faq,
[data-theme="dark"] .skeleton-footer {
  background: linear-gradient(90deg, var(--skeleton-bg) 25%, var(--skeleton-highlight) 50%, var(--skeleton-bg) 75%);
  background-size: 200% 100%;
}