/* =============================================
   MarktKurs — Global Stylesheet
   selromab.com
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── Variables ── */
:root {
  --cream:      #FDFAF3;
  --cream-dark: #F4EFE3;
  --parchment:  #EDE6D6;
  --ink:        #18160F;
  --ink-soft:   #4A4740;
  --ink-muted:  #8A8680;
  --red:        #C5222A;
  --red-dark:   #9E1B22;
  --red-light:  rgba(197,34,42,0.09);
  --gold:       #C9870C;
  --green:      #1A6B3A;
  --border:     #DDD7CA;
  --white:      #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --r:    8px;
  --r-lg: 16px;
  --r-xl: 24px;
  --ease: 0.24s cubic-bezier(.4,0,.2,1);
  --max:  1160px;
  --gap:  96px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

/* ════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(253,250,243,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  letter-spacing: -0.03em; color: var(--ink);
  display: flex; align-items: center; gap: 4px;
}
.nav-logo .accent { color: var(--red); }
.nav-logo .badge {
  font-family: var(--font-body);
  font-size: 0.62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  background: var(--red); color: #fff;
  padding: 2px 7px; border-radius: 100px;
  margin-left: 6px; vertical-align: middle;
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
}
.nav-links a {
  font-size: 0.875rem; font-weight: 500;
  color: var(--ink-soft);
  transition: color var(--ease);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px; background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--red); }
.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: all var(--ease) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--red-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(197,34,42,0.28) !important;
}
.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; font-size: 1.4rem; color: var(--ink);
  padding: 4px;
}

/* ════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 100px;
  font-weight: 600; font-size: 0.925rem;
  transition: all var(--ease); cursor: pointer;
  border: none; white-space: nowrap;
}
.btn-primary {
  background: var(--red); color: #fff;
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(197,34,42,0.3);
}
.btn-outline {
  background: transparent; color: var(--ink);
  border: 2px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--ink); background: var(--ink); color: #fff;
}
.btn-ghost {
  background: var(--cream-dark); color: var(--ink);
}
.btn-ghost:hover { background: var(--parchment); }

/* ════════════════════════════════════════════
   SECTION UTILITIES
   ════════════════════════════════════════════ */
.section-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--red); margin-bottom: 10px;
}
.section-tag i { font-size: 0.9rem; }
.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 700; margin-bottom: 14px;
}
.section-sub {
  font-size: 1.025rem; color: var(--ink-soft);
  max-width: 580px; line-height: 1.75;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-sub { margin: 0 auto; }

/* ════════════════════════════════════════════
   HOME — HERO
   ════════════════════════════════════════════ */
.hero {
  padding: 72px 0 60px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 56px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--red); background: var(--red-light);
  padding: 5px 13px; border-radius: 100px;
  margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700; margin-bottom: 22px;
  line-height: 1.08;
}
.hero-title em {
  font-style: italic; color: var(--red);
  display: block;
}
.hero-desc {
  font-size: 1.075rem; color: var(--ink-soft);
  line-height: 1.8; margin-bottom: 36px;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-note {
  margin-top: 20px;
  font-size: 0.82rem; color: var(--ink-muted);
  display: flex; align-items: center; gap: 6px;
}
.hero-media { position: relative; }
.hero-img {
  border-radius: var(--r-xl);
  width: 100%; height: 500px;
  object-fit: cover;
  display: block;
}
.hero-float {
  position: absolute;
  bottom: -22px; left: -22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  animation: floatCard 3s ease-in-out infinite alternate;
}
@keyframes floatCard {
  from { transform: translateY(0); }
  to   { transform: translateY(-5px); }
}
.hero-float-icon {
  width: 46px; height: 46px;
  background: var(--red-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 1.4rem;
  flex-shrink: 0;
}
.hero-float strong { display: block; font-size: 1.15rem; font-weight: 700; }
.hero-float span { font-size: 0.78rem; color: var(--ink-muted); }
.hero-float-2 {
  position: absolute;
  top: 20px; right: -22px;
  background: var(--ink); color: #fff;
  border-radius: var(--r);
  padding: 12px 16px;
  font-size: 0.82rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  animation: floatCard 3.5s ease-in-out infinite alternate-reverse;
}
.hero-float-2 strong { display: block; font-size: 1.4rem; font-weight: 800; color: var(--gold); }
.hero-float-2 span { color: rgba(255,255,255,0.65); }

/* ════════════════════════════════════════════
   STATS BAR
   ════════════════════════════════════════════ */
.stats-bar {
  background: var(--ink); margin: 72px 0 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid rgba(255,255,255,0.1);
}
.stat-item {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 700;
  color: var(--gold); line-height: 1; display: block;
}
.stat-label {
  font-size: 0.82rem; color: rgba(255,255,255,0.55);
  display: block; margin-top: 5px;
}

/* ════════════════════════════════════════════
   COURSES GRID (home preview)
   ════════════════════════════════════════════ */
.courses-preview {
  padding: var(--gap) 0;
}
.courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.course-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--ease);
}
.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.1);
  border-color: transparent;
}
.cc-img {
  height: 196px; overflow: hidden;
}
.cc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.course-card:hover .cc-img img { transform: scale(1.07); }
.cc-body { padding: 22px 24px; }
.cc-level {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 3px 10px; border-radius: 100px;
  margin-bottom: 10px;
}
.level-beg { background: rgba(22,163,74,0.1); color: #15803d; }
.level-int { background: rgba(217,119,6,0.1); color: #b45309; }
.level-adv { background: var(--red-light); color: var(--red); }
.cc-title { font-size: 1.075rem; font-weight: 700; margin-bottom: 8px; line-height: 1.3; }
.cc-desc { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.65; margin-bottom: 16px; }
.cc-meta {
  display: flex; gap: 14px; font-size: 0.8rem; color: var(--ink-muted);
  border-top: 1px solid var(--cream-dark); padding-top: 14px;
}
.cc-meta span { display: flex; align-items: center; gap: 5px; }

/* ════════════════════════════════════════════
   WHY SECTION
   ════════════════════════════════════════════ */
.why-section { padding: var(--gap) 0; background: var(--cream-dark); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.why-img-wrap { position: relative; }
.why-img {
  border-radius: var(--r-xl);
  width: 100%; height: 520px; object-fit: cover;
}
.why-list { display: flex; flex-direction: column; gap: 22px; margin-top: 30px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-ico {
  flex-shrink: 0; width: 42px; height: 42px;
  border-radius: 10px; background: var(--red-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 1.15rem;
}
.why-item h4 { font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; margin-bottom: 3px; }
.why-item p { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.65; }

/* ════════════════════════════════════════════
   PLATFORMS STRIP
   ════════════════════════════════════════════ */
.platforms-section { padding: var(--gap) 0; }
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.plat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all var(--ease);
}
.plat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.07);
}
.plat-ico {
  width: 50px; height: 50px;
  border-radius: 12px; background: var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 14px;
  color: var(--ink-soft);
}
.plat-card h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.plat-card p { font-size: 0.845rem; color: var(--ink-soft); line-height: 1.65; }
.plat-badge {
  display: inline-block; margin-top: 12px;
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  background: var(--cream-dark); padding: 3px 10px;
  border-radius: 100px; color: var(--ink-muted);
}

/* ════════════════════════════════════════════
   CTA BANNER
   ════════════════════════════════════════════ */
.cta-banner {
  background: var(--ink);
  border-radius: var(--r-xl);
  padding: 68px 60px;
  text-align: center;
  margin: 0 0 var(--gap);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(197,34,42,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner::after {
  content: ''; position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,135,12,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  color: #fff; margin-bottom: 14px;
  position: relative; z-index: 1;
}
.cta-banner h2 em { font-style: italic; color: var(--gold); }
.cta-banner p {
  color: rgba(255,255,255,0.6); max-width: 500px;
  margin: 0 auto 32px; line-height: 1.75;
  position: relative; z-index: 1;
}
.cta-banner .btn-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.btn-light {
  background: #fff; color: var(--ink);
}
.btn-light:hover { background: var(--cream-dark); }
.btn-border-light {
  background: transparent; color: rgba(255,255,255,0.75);
  border: 2px solid rgba(255,255,255,0.25); border-radius: 100px;
  padding: 11px 26px; font-weight: 600; font-size: 0.925rem;
  transition: all var(--ease); display: inline-flex; align-items: center; gap: 8px;
}
.btn-border-light:hover { border-color: rgba(255,255,255,0.6); color: #fff; }

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
.footer {
  background: #111009;
  color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}
.footer-brand .nav-logo { color: #fff; display: block; margin-bottom: 14px; }
.footer-brand p { font-size: 0.855rem; line-height: 1.75; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #fff; margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.87rem; transition: color var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; font-size: 0.78rem; flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: rgba(255,255,255,0.75); }
.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 24px; padding-top: 20px;
  font-size: 0.74rem; color: rgba(255,255,255,0.3);
  line-height: 1.7;
}

/* ════════════════════════════════════════════
   COOKIE BANNER
   ════════════════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(120px);
  width: calc(100% - 48px); max-width: 580px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.14);
  z-index: 999;
  transition: transform 0.45s cubic-bezier(.34,1.56,.64,1);
}
.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
}
.cookie-title {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; margin-bottom: 8px; font-size: 0.95rem;
}
.cookie-title i { color: var(--gold); }
.cookie-banner p {
  font-size: 0.84rem; color: var(--ink-soft); line-height: 1.65; margin-bottom: 18px;
}
.cookie-banner a { color: var(--red); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-accept {
  background: var(--red); color: #fff;
  border: none; padding: 9px 20px;
  border-radius: 100px; font-size: 0.84rem; font-weight: 600;
  cursor: pointer; transition: background var(--ease);
}
.cookie-accept:hover { background: var(--red-dark); }
.cookie-decline {
  background: transparent; color: var(--ink-soft);
  border: 1px solid var(--border);
  padding: 9px 20px; border-radius: 100px;
  font-size: 0.84rem; font-weight: 600;
  cursor: pointer; transition: all var(--ease);
}
.cookie-decline:hover { border-color: var(--ink); color: var(--ink); }

/* ════════════════════════════════════════════
   PAGE HERO (inner pages)
   ════════════════════════════════════════════ */
.page-hero {
  background: var(--cream-dark);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.breadcrumb {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.8rem; color: var(--ink-muted);
  margin-bottom: 24px;
}
.breadcrumb i { font-size: 0.75rem; }
.breadcrumb a:hover { color: var(--red); }
.page-hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  font-weight: 700; margin-bottom: 14px;
}
.page-hero p {
  font-size: 1.04rem; color: var(--ink-soft);
  max-width: 620px; line-height: 1.75;
}
.page-hero-meta {
  display: flex; gap: 24px; margin-top: 22px; flex-wrap: wrap;
}
.meta-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; color: var(--ink-soft);
  background: var(--white); border: 1px solid var(--border);
  padding: 5px 12px; border-radius: 100px;
}

/* ════════════════════════════════════════════
   COURSES PAGE — ACCORDION
   ════════════════════════════════════════════ */
.courses-full { padding: var(--gap) 0; }
.course-module {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden; margin-bottom: 20px;
  transition: box-shadow var(--ease);
}
.course-module:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.06); }
.cm-header {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 20px; padding: 26px 32px;
  align-items: center; cursor: pointer;
  transition: background var(--ease);
  user-select: none;
}
.cm-header:hover { background: var(--cream-dark); }
.cm-num {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 700;
  color: var(--parchment); line-height: 1;
}
.cm-title { font-family: var(--font-body); font-size: 1.1rem; font-weight: 700; margin-bottom: 5px; }
.cm-meta {
  display: flex; gap: 14px; font-size: 0.8rem; color: var(--ink-muted);
}
.cm-meta span { display: flex; align-items: center; gap: 4px; }
.cm-caret {
  color: var(--ink-muted); font-size: 1.1rem;
  transition: transform var(--ease);
}
.course-module.open .cm-caret { transform: rotate(180deg); }
.cm-body {
  display: none;
  border-top: 1px solid var(--cream-dark);
  animation: fadeIn 0.2s ease;
}
.course-module.open .cm-body { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.cm-desc {
  padding: 18px 32px;
  font-size: 0.9rem; color: var(--ink-soft);
  line-height: 1.7; background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
}
.lesson-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 32px; font-size: 0.88rem;
  border-bottom: 1px solid var(--cream-dark);
  transition: background var(--ease);
}
.lesson-item:last-child { border-bottom: none; }
.lesson-item:hover { background: var(--cream); }
.lesson-ico { color: var(--red); font-size: 0.95rem; flex-shrink: 0; }
.lesson-dur { margin-left: auto; font-size: 0.78rem; color: var(--ink-muted); }
.lesson-free-tag {
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  background: rgba(22,107,58,0.1); color: var(--green);
  padding: 2px 7px; border-radius: 100px;
}

/* ════════════════════════════════════════════
   GUIDE PAGE
   ════════════════════════════════════════════ */
.guide-intro {
  padding: 72px 0 0;
}
.guide-intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; margin-bottom: 72px;
}
.guide-intro-img {
  border-radius: var(--r-xl); overflow: hidden; height: 380px;
}
.guide-intro-img img { width: 100%; height: 100%; object-fit: cover; }
.platform-showcase { padding-bottom: var(--gap); }
.plat-showcase-card {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 52px; align-items: center;
  padding: 52px 0;
  border-bottom: 1px solid var(--border);
}
.plat-showcase-card:last-child { border-bottom: none; }
.plat-showcase-card.flip { direction: rtl; }
.plat-showcase-card.flip > * { direction: ltr; }
.plat-sc-img {
  border-radius: var(--r-xl); overflow: hidden; height: 300px;
}
.plat-sc-img img { width: 100%; height: 100%; object-fit: cover; }
.plat-sc-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cream-dark); border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 700;
  margin-bottom: 16px;
}
.plat-sc-content h2 {
  font-size: 1.75rem; font-weight: 700;
  margin-bottom: 12px;
}
.plat-sc-content p {
  font-size: 0.9rem; color: var(--ink-soft);
  line-height: 1.75; margin-bottom: 18px;
}
.plat-stats {
  display: flex; gap: 24px; margin-bottom: 18px;
}
.ps-stat strong {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 700;
  color: var(--red); display: block;
}
.ps-stat span { font-size: 0.75rem; color: var(--ink-muted); }
.plat-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.plat-tag {
  font-size: 0.75rem; background: var(--cream-dark);
  padding: 4px 12px; border-radius: 100px;
  color: var(--ink-soft); border: 1px solid var(--border);
}

/* Comparison Table */
.comparison-wrap { padding: var(--gap) 0; background: var(--cream-dark); }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.comparison-table th {
  background: var(--ink); color: #fff;
  padding: 14px 16px; text-align: left;
  font-weight: 600; font-family: var(--font-body);
}
.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--ink-soft);
}
.comparison-table tr:nth-child(even) td { background: rgba(0,0,0,0.02); }
.comparison-table tr:hover td { background: var(--white); }
.yes-icon { color: #16a34a; font-size: 1.1rem; }
.no-icon { color: #dc2626; font-size: 1.1rem; }
.part-text { font-size: 0.8rem; color: #b45309; font-weight: 600; }

/* ════════════════════════════════════════════
   TIPS PAGE
   ════════════════════════════════════════════ */
.tips-section { padding: var(--gap) 0; }
.tips-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 22px; margin-bottom: 60px;
}
.tip-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all var(--ease);
}
.tip-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.07);
}
.tip-num {
  font-family: var(--font-display);
  font-size: 3.2rem; font-weight: 700;
  color: var(--parchment); line-height: 1; margin-bottom: 8px;
}
.tip-card h3 { font-family: var(--font-body); font-size: 1.025rem; font-weight: 700; margin-bottom: 10px; }
.tip-card p { font-size: 0.87rem; color: var(--ink-soft); line-height: 1.7; }
.tip-ico { font-size: 1.2rem; color: var(--red); margin-bottom: 6px; display: block; }
.mistakes-box {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 44px 52px;
  margin-bottom: 60px;
}
.mistakes-box h2 { font-size: 1.9rem; margin-bottom: 8px; }
.mistakes-box > p { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 28px; }
.mistake-item {
  display: flex; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--border);
}
.mistake-item:last-child { border-bottom: none; }
.mistake-item i { color: var(--red); font-size: 1.15rem; flex-shrink: 0; margin-top: 2px; }
.mistake-item h4 { font-family: var(--font-body); font-size: 0.92rem; font-weight: 700; margin-bottom: 4px; }
.mistake-item p { font-size: 0.84rem; color: var(--ink-soft); line-height: 1.65; }
.seasonal-section { margin-bottom: var(--gap); }
.seasons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.season-card {
  border-radius: var(--r-lg); padding: 24px;
  border: 1px solid var(--border);
}
.season-winter { background: #EEF2FF; }
.season-spring { background: #F0FDF4; }
.season-summer { background: #FFFBEB; }
.season-fall   { background: #FFF7ED; }
.season-ico { font-size: 2rem; margin-bottom: 12px; display: block; }
.season-card h3 { font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.season-card ul { list-style: none; }
.season-card ul li {
  font-size: 0.83rem; color: var(--ink-soft);
  padding: 3px 0; display: flex; align-items: flex-start; gap: 6px;
}
.season-card ul li::before {
  content: '→'; color: var(--ink-muted); flex-shrink: 0;
}

/* ════════════════════════════════════════════
   LEGAL PAGES
   ════════════════════════════════════════════ */
.legal-wrap {
  max-width: 780px; margin: 0 auto;
  padding: var(--gap) 28px;
}
.legal-meta-box {
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px 18px;
  font-size: 0.83rem; color: var(--ink-muted);
  margin-bottom: 36px;
  display: flex; align-items: center; gap: 8px;
}
.legal-wrap h2 {
  font-size: 1.5rem; margin: 40px 0 12px;
  padding-top: 8px; border-top: 1px solid var(--border);
}
.legal-wrap h2:first-of-type { border-top: none; margin-top: 0; }
.legal-wrap h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; margin: 20px 0 8px; }
.legal-wrap p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.8; margin-bottom: 14px; }
.legal-wrap ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.legal-wrap ul li { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.75; margin-bottom: 5px; }
.legal-wrap a { color: var(--red); text-decoration: underline; }

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .courses-grid { grid-template-columns: repeat(2, 1fr); }
  .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .seasons-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --gap: 64px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 70px; left: 0; right: 0;
    background: var(--cream); padding: 20px 28px;
    border-bottom: 1px solid var(--border);
    gap: 18px; z-index: 199;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero-img { height: 300px; }
  .hero-float { left: 12px; bottom: -14px; }
  .hero-float-2 { right: 12px; top: 12px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .courses-grid { grid-template-columns: 1fr; }
  .platforms-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-img { height: 300px; }
  .cta-banner { padding: 44px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .plat-showcase-card { grid-template-columns: 1fr; }
  .plat-showcase-card.flip { direction: ltr; }
  .guide-intro-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .seasons-grid { grid-template-columns: 1fr; }
  .mistakes-box { padding: 28px 24px; }
  .cm-header { grid-template-columns: 40px 1fr auto; padding: 20px 20px; }
  .cm-desc, .lesson-item { padding-left: 20px; padding-right: 20px; }
  .cookie-banner { width: calc(100% - 32px); }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .stats-inner { grid-template-columns: 1fr; }
  .plat-stats { gap: 16px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── Page load fade-in ── */
body { animation: pageFade 0.4s ease; }
@keyframes pageFade { from { opacity: 0; } to { opacity: 1; } }
