/**
 * Susana Toth Theme - Custom Styles
 * All design-critical CSS for pixel-perfect rendering
 *
 * @package susanatoth
 */

/* ========== RESET & VARIABLES ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }
img:not([class]) { max-width: 100%; height: auto; }

:root {
  --bg: #f2efe8;
  --surface: #e8e4db;
  --card: #faf8f4;
  --text: #12121e;
  --text-muted: #6e6878;
  --gold: #96791c;
  --gold-soft: rgba(150,121,28,0.12);
  --red: #c4243b;
  --border: #cdc5b5;
  --pulse: #2ecc71;
}

[data-theme="dark"] {
  --bg: #08080c;
  --surface: #0f0f15;
  --card: #14141c;
  --text: #f0f0f0;
  --text-muted: #7a7a90;
  --gold: #c8a45e;
  --gold-soft: rgba(200,164,94,0.10);
  --red: #e63946;
  --border: #252530;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  transition: background-color 0.4s, color 0.4s;
  line-height: 1.6;
}

h1, h2, h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; }
.serif { font-family: 'Cormorant Garamond', serif; font-style: italic; }
.mono { font-family: 'JetBrains Mono', monospace; font-size: 0.85rem; letter-spacing: 0.05em; }

/* ========== NAVBAR ========== */
.st-nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 2rem;
  border-bottom: 1px solid var(--border);
  background-color: var(--bg);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(10px);
}

.monogram {
  text-decoration: none; display: flex; flex-direction: column; line-height: 1.1;
}
.monogram-name {
  font-family: 'Bodoni Moda', serif;
  font-size: 2.2rem; font-weight: 400; font-style: normal;
  color: var(--text); letter-spacing: 0.02em;
}
.monogram-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem; font-weight: 400;
  color: var(--text-muted); letter-spacing: 0.15em; text-transform: uppercase;
}

.nav-links {
  display: flex; flex-direction: column; list-style: none; margin: 0;
  position: absolute; top: 100%; right: 1rem;
  background-color: var(--bg); z-index: 200;
  align-items: stretch; gap: 0; padding: 0.5rem 0;
  border: 1px solid var(--border); border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  min-width: 200px;
}
.nav-links.open {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateY(0);
}
.nav-links li { list-style: none; }
.nav-links a {
  color: var(--text); text-decoration: none; font-size: 0.95rem;
  font-family: 'Space Grotesk', sans-serif; font-weight: 500; transition: all 0.2s;
  display: block; padding: 0.7rem 1.5rem;
}
.nav-links a:hover { color: var(--gold); background-color: var(--gold-soft); }
.nav-close { display: none; }

.nav-right { display: flex; align-items: center; gap: 1rem; }

.nav-icon {
  background: none; border: none; color: var(--text-muted); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%; transition: all 0.3s;
  text-decoration: none;
}
.nav-icon:hover { color: var(--gold); background-color: var(--gold-soft); }
.nav-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.hamburger {
  background: none; border: 1px solid var(--border); color: var(--text);
  width: 40px; height: 40px; border-radius: 6px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all 0.3s;
}
.hamburger:hover { border-color: var(--gold); color: var(--gold); }
.hamburger svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }

.theme-toggle {
  background: none; border: 1px solid var(--border); color: var(--text);
  padding: 0.4rem 0.9rem; border-radius: 50px; cursor: pointer;
  font-family: 'JetBrains Mono', monospace; font-size: 0.85rem; transition: all 0.3s;
}
.theme-toggle:hover { border-color: var(--gold); color: var(--gold); }

/* ========== CTA BUTTON (Global) ========== */
.cta-button {
  background-color: var(--gold); color: white; border: none;
  padding: 0.7rem 1.5rem; border-radius: 4px; cursor: pointer;
  font-family: 'Inter', sans-serif; font-weight: 500; transition: all 0.3s;
  text-decoration: none; display: inline-block; font-size: 0.95rem;
}
.cta-button:hover { opacity: 0.9; transform: translateY(-2px); }
.cta-button.outlined {
  background-color: transparent; border: 1px solid var(--gold); color: var(--gold);
}
.cta-button.outlined:hover { background-color: var(--gold-soft); }

/* ========== HERO ========== */
.hero {
  display: grid; grid-template-columns: 42% 58%; gap: 0;
  align-items: stretch; height: calc(100vh - 60px); position: relative;
  background-color: var(--bg);
}

.hero-photo-wrapper {
  position: relative; height: 100%; overflow: hidden;
}

.hero-photo {
  width: 100%; height: 100%; object-fit: cover; object-position: center 15%;
  clip-path: polygon(0 0, 95% 0, 75% 100%, 0 100%);
  display: block; transition: filter 0.6s;
}

.hero-diagonal-line {
  position: absolute; right: 0; top: 0; width: 100%; height: 100%; pointer-events: none;
}
.hero-diagonal-line::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 141%; height: 100%; border-left: 2px solid var(--gold);
  transform: skewX(-20deg); transform-origin: top left;
}

.hero-content {
  padding: 1.5rem 3rem; display: flex; flex-direction: column;
  justify-content: center; height: 100%; background-color: var(--bg);
  position: relative; overflow: hidden;
}
.hero-workflow-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
  opacity: 0.22;
}
[data-theme="dark"] .hero-workflow-bg {
  opacity: 0.18;
}
.hero-workflow-bg .wf-node { fill: none; stroke: var(--gold); stroke-width: 1.5; }
.hero-workflow-bg .wf-node-inner { fill: var(--gold); opacity: 0.08; }
.hero-workflow-bg .wf-conn { fill: none; stroke: var(--gold); stroke-width: 1; opacity: 0.35; }
.hero-workflow-bg .wf-router { fill: none; stroke: var(--gold); stroke-width: 1.5; }
.hero-workflow-bg .wf-router-inner { fill: var(--gold); opacity: 0.06; }
.hero-workflow-bg .wf-dot { fill: var(--gold); }
.hero-workflow-bg .wf-icon { stroke: var(--gold); stroke-width: 1; fill: none; opacity: 0.45; }
.hero-content > *:not(.hero-workflow-bg) { position: relative; z-index: 1; }

/* Hero badge — kurzus oldal specifikus pozíció */
.kurzus-hero .hero-badge-diagonal {
  top: 25%;
}

.hero-badge-diagonal {
  position: absolute;
  left: 36%; top: 50%; transform: translate(-50%, -50%);
  z-index: 10;
}
.hero-badge-diagonal img {
  width: 110px; height: 110px; object-fit: contain;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.4));
}

.hero-content h1 {
  font-size: 2.8rem; line-height: 1.08; margin-bottom: 0.8rem;
  color: var(--text); max-width: 500px;
}
.hero-content h1 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 400; color: var(--gold);
}

.hero-content .subtitle {
  font-size: 0.95rem; color: var(--text-muted); margin-bottom: 1.2rem;
  max-width: 440px; line-height: 1.75;
}

.hero-ctas { display: flex; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.hero-ctas .cta-button { padding: 0.9rem 2rem; }

.availability {
  display: flex; align-items: center; gap: 0.7rem;
  font-size: 0.85rem; color: var(--text-muted);
}
.pulse-dot {
  width: 8px; height: 8px; background-color: var(--pulse);
  border-radius: 50%; display: inline-block;
  animation: pulse-animation 2s ease-in-out infinite;
}
@keyframes pulse-animation {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ========== PAIN POINT STRIP ========== */
.pain-strip {
  background-color: var(--surface); padding: 1.8rem 0; overflow: hidden;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.pain-scroll {
  display: flex; gap: 3rem;
  white-space: nowrap; padding: 0 2rem;
  animation: scroll-left 45s linear infinite;
}
.pain-scroll:hover { animation-play-state: paused; }
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.pain-item { font-size: 0.95rem; color: var(--text); font-weight: 500; }
.pain-item::after { content: ' \00b7 '; margin: 0 1rem; opacity: 0.3; color: var(--gold); }

/* ========== SECTIONS (Global) ========== */
.section {
  padding: 6rem 2rem; max-width: 1200px; margin: 0 auto;
}
.section-label {
  font-family: 'JetBrains Mono', monospace; font-size: 0.75rem;
  color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 0.8rem; font-weight: 600;
}
.section h2 {
  font-size: 2.4rem; margin-bottom: 0.8rem; color: var(--text); line-height: 1.15;
}
.section-intro {
  font-size: 1.05rem; color: var(--text-muted); max-width: 600px;
  margin-bottom: 3rem; line-height: 1.75;
}

/* ========== PROBLEM SECTION ========== */
.problems-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.problem-card {
  background-color: var(--card); padding: 2rem 1.8rem;
  border-left: 3px solid var(--gold); border-radius: 4px; transition: all 0.3s;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.problem-card .problem-icon {
  font-size: 1.8rem; margin-bottom: 0.8rem; line-height: 1;
}
.problem-card .problem-icon svg {
  width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.problem-card h3 {
  font-size: 1.15rem; margin-bottom: 0.6rem; color: var(--text);
}
.problem-card p {
  color: var(--text-muted); font-size: 0.9rem; line-height: 1.7;
}

.problem-insight {
  margin-top: 2.5rem; padding: 2rem 2.5rem;
  background: linear-gradient(135deg, var(--gold), color-mix(in srgb, var(--gold) 80%, black));
  border-radius: 8px;
  display: flex; align-items: center; gap: 2rem;
  box-shadow: 0 8px 32px rgba(150,121,28,0.25);
}
.problem-insight .insight-number {
  font-family: 'Cormorant Garamond', serif; font-size: 3.2rem;
  font-weight: 700; color: white; line-height: 1;
}
.problem-insight .insight-text {
  color: white; font-size: 1rem;
}
.problem-insight .insight-text strong {
  color: white;
}

/* ========== SERVICES ========== */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.service-card {
  background-color: var(--card); padding: 2.2rem;
  border-left: 3px solid var(--gold); border-radius: 4px; transition: all 0.3s;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.service-card .service-tag {
  font-family: 'JetBrains Mono', monospace; font-size: 0.7rem;
  color: var(--gold); letter-spacing: 0.08em; margin-bottom: 0.8rem;
}
.service-card h3 { font-size: 1.25rem; margin-bottom: 0.8rem; color: var(--text); }
.service-card p { color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.8; font-size: 0.92rem; flex-grow: 1; }
.service-price {
  font-family: 'Cormorant Garamond', serif; font-size: 1.6rem;
  font-weight: 700; color: var(--gold);
}

/* ========== COURSE ========== */
.course-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start;
}
.course-photo-wrapper {
  position: relative; width: 100%; aspect-ratio: 1; margin-bottom: 2rem;
  border-radius: 8px; overflow: visible;
}
.course-photo {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: filter 0.6s; border-radius: 8px;
}
.course-content h2 { font-size: 2.4rem; margin-bottom: 0.8rem; }
.course-content h3 {
  font-size: 1.15rem; color: var(--text-muted); margin-bottom: 1.2rem; font-weight: 400;
}
.course-intro {
  font-size: 0.95rem; color: var(--text-muted); margin-bottom: 2rem; line-height: 1.8;
}

.modules-container { margin: 2rem 0; }
.module {
  background-color: var(--card); margin-bottom: 0.8rem;
  border-radius: 4px; border-left: 3px solid var(--gold); overflow: hidden;
}
.module-header {
  padding: 1.2rem 1.5rem; cursor: pointer; display: flex;
  justify-content: space-between; align-items: center;
  background-color: var(--card); transition: background-color 0.3s; user-select: none;
}
.module-header:hover { background-color: var(--surface); }
.module-title { font-weight: 600; color: var(--text); font-size: 0.95rem; }
.module-toggle { color: var(--gold); font-weight: bold; font-size: 1.2rem; }
.module-lessons {
  max-height: 1000px; overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 1.5rem 1.5rem; background-color: var(--surface);
}
.module-lessons.collapsed { max-height: 0; padding: 0 1.5rem; }
.lesson {
  padding: 0.7rem 0; border-bottom: 1px solid var(--border);
  color: var(--text-muted); font-size: 0.85rem;
  display: flex; justify-content: space-between; align-items: center;
}
.lesson:last-child { border-bottom: none; }
.lesson-time {
  color: var(--gold); font-family: 'JetBrains Mono', monospace; font-size: 0.75rem;
}

.course-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin: 2rem 0; padding: 1.2rem; background-color: var(--surface);
  border-radius: 4px; text-align: center;
}
.stat { color: var(--text-muted); font-size: 0.85rem; }
.stat strong { color: var(--text); display: block; font-size: 1.1rem; }

.course-price {
  font-family: 'Cormorant Garamond', serif; font-size: 2.8rem;
  color: var(--gold); margin: 1.5rem 0 0.3rem; font-style: italic;
}
.course-monthly { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 1.5rem; }
.course-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.course-ctas .cta-button { padding: 0.9rem 2rem; }

/* ========== BLOG ========== */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.blog-card {
  background-color: var(--card); border-radius: 4px; overflow: hidden;
  transition: all 0.3s; border: 1px solid var(--border);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.blog-card-image {
  width: 100%; height: 200px; object-fit: cover; display: block;
  transition: filter 0.6s;
}
.blog-card-content { padding: 1.8rem; }
.blog-card-tag {
  font-family: 'JetBrains Mono', monospace; font-size: 0.7rem;
  color: var(--gold); letter-spacing: 0.06em; margin-bottom: 0.6rem;
  text-transform: uppercase;
}
.blog-card-content h3,
.blog-card-content h3 a {
  font-size: 1.1rem; margin-bottom: 0.6rem; color: var(--text); line-height: 1.4;
  text-decoration: none;
}
.blog-card-content p {
  color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; margin-bottom: 1rem;
}
.blog-card-link {
  color: var(--gold); text-decoration: none; font-size: 0.85rem;
  font-weight: 500; transition: opacity 0.3s;
}
.blog-card-link:hover { opacity: 0.7; }

.blog-cta {
  text-align: center; margin-top: 3rem;
}

/* ========== BLOG PAGE - Additional Styles ========== */
.blog-hero .section-label {
  margin-bottom: 1.2rem;
}

.blog-hero h1 {
  font-size: 2.8rem;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.blog-hero h1 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.blog-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.blog-search-icon {
  position: absolute;
  left: calc(2rem + 12px);
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--text-muted);
  pointer-events: none;
}

.category-filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 2rem 3rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.category-btn {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.category-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.category-btn.active {
  background-color: var(--gold);
  border-color: var(--gold);
  color: white;
}

.featured-post {
  max-width: 1200px;
  margin: 0 auto 4rem;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.featured-card {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.featured-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.featured-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.featured-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.featured-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text-muted);
}

.featured-content h2 {
  font-size: 1.7rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.featured-content p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.featured-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.featured-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.featured-read {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.2s;
}

.featured-read:hover {
  opacity: 0.7;
}

.posts-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.post-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.post-card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: opacity 0.5s;
}

.post-card-body {
  padding: 1.5rem;
}

.post-card-tags {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
}

.post-card-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text-muted);
}

.post-card-tag.cat-ai {
  border-color: var(--gold);
  color: var(--gold);
}

.post-card-tag.cat-business {
  border-color: var(--pulse);
  color: var(--pulse);
}

.post-card-tag.cat-neuro {
  border-color: #9b59b6;
  color: #9b59b6;
}

.post-card-tag.cat-auto {
  border-color: var(--red);
  color: var(--red);
}

[data-theme="dark"] .post-card-tag.cat-neuro {
  border-color: #bb86fc;
  color: #bb86fc;
}

.post-card-body h3 {
  font-size: 1.1rem;
  line-height: 1.35;
  margin-bottom: 0.7rem;
}

.post-card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.post-card-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.post-card-link {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.2s;
}

.post-card-link:hover {
  opacity: 0.7;
}

.newsletter-inner {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-section p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.newsletter-section h2 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.newsletter-input::placeholder {
  color: var(--text-muted);
}

.explore-header {
  text-align: center;
  margin-bottom: 3rem;
}

.explore-header h2 {
  font-size: 1.8rem;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.explore-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}

.explore-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.explore-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  display: block;
  color: var(--gold);
}

.explore-icon svg {
  width: 40px;
  height: 40px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.explore-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.explore-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.explore-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--gold);
  margin-top: 0.8rem;
  display: block;
}

/* ========== FLOW GRID BG (V4 - About) ========== */
.flow-grid-section {
  position: relative; overflow: hidden;
}
.flow-grid-section > *:not(.flow-grid-canvas) {
  position: relative; z-index: 1;
}
.flow-grid-canvas {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
  opacity: 0.22;
}
[data-theme="dark"] .flow-grid-canvas {
  opacity: 0.16;
}

/* ========== ABOUT ========== */
.about-section {
  display: grid; grid-template-columns: 38% 62%; gap: 3rem; align-items: center;
}
.about-photo-wrapper {
  position: relative; width: 100%; aspect-ratio: 0.75; border-radius: 8px; overflow: visible;
}
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem; z-index: 5;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.35));
}
.about-badge img {
  width: 110px; height: 110px; object-fit: contain;
  animation: badgeFloat 4s ease-in-out infinite;
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.about-photo {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  display: block; transition: filter 0.6s; border-radius: 8px;
}
.about-content h2 { font-size: 2.4rem; margin-bottom: 1.5rem; }

.about-text {
  color: var(--text-muted); font-size: 0.95rem; line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-milestones {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  margin: 2rem 0;
}
.milestone {
  background-color: var(--card); padding: 1.2rem 1.5rem;
  border-left: 3px solid var(--gold); border-radius: 4px;
}
.milestone-number {
  font-family: 'Cormorant Garamond', serif; font-size: 1.8rem;
  font-weight: 700; color: var(--gold); line-height: 1;
}
.milestone-label { color: var(--text-muted); font-size: 0.85rem; margin-top: 0.3rem; }

.about-quote {
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem;
  font-style: italic; color: var(--text); margin-top: 2rem;
  padding: 1.5rem; border-left: 3px solid var(--gold);
  background-color: var(--surface); border-radius: 4px;
}

/* ========== FINAL CTA ========== */
.final-cta { text-align: center; padding: 5rem 2rem; }
.final-cta h2 { font-size: 2.4rem; margin-bottom: 1rem; }
.final-cta .subtitle { color: var(--text-muted); margin-bottom: 3rem; font-size: 1.05rem; }
.cta-options {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  max-width: 1000px; margin: 0 auto;
}
.cta-option {
  background-color: var(--card); padding: 2.5rem 2rem; border-radius: 4px;
  border-top: 3px solid var(--gold); transition: all 0.3s;
}
.cta-option:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.08); }
.cta-option h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--text); }
.cta-option-price {
  font-family: 'Cormorant Garamond', serif; font-size: 1.8rem;
  color: var(--gold); margin-bottom: 0.8rem; font-weight: 700;
}
.cta-option p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.88rem; line-height: 1.7; }
.cta-option .cta-button { width: 100%; text-align: center; }

/* ========== FOOTER ========== */
.st-footer {
  border-top: 1px solid var(--gold); padding: 2.5rem 2rem;
  background-color: var(--surface); text-align: center;
  color: var(--text-muted); font-size: 0.85rem;
}
.st-footer p { margin: 0.4rem 0; }
.footer-links {
  margin-top: 1rem; display: flex; justify-content: center; gap: 1.5rem;
}
.footer-links a {
  color: var(--text-muted); text-decoration: none; transition: color 0.3s;
  font-family: 'JetBrains Mono', monospace; font-size: 0.8rem;
}
.footer-links a:hover { color: var(--gold); }

/* ========== BLOG LIST PAGE ========== */
.blog-hero {
  padding: 5rem 2rem 3rem; max-width: 800px; margin: 0 auto; text-align: center;
}
.blog-filter-bar {
  display: flex; gap: 0.5rem; margin: 2rem 0; flex-wrap: wrap;
}
.blog-filter-btn {
  background: none; border: 1px solid var(--border); color: var(--text);
  padding: 0.4rem 1rem; border-radius: 50px; cursor: pointer;
  font-family: 'JetBrains Mono', monospace; font-size: 0.75rem;
  transition: all 0.3s; letter-spacing: 0.03em;
}
.blog-filter-btn:hover, .blog-filter-btn.active {
  border-color: var(--gold); color: var(--gold); background-color: var(--gold-soft);
}
.blog-search {
  position: relative; max-width: 520px; margin: 0 auto 3rem; padding: 0 2rem;
}
.blog-search-input {
  width: 100%; padding: 0.75rem 1.2rem 0.75rem 2.8rem;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 50px; color: var(--text); font-family: 'Inter', sans-serif;
  font-size: 0.95rem; outline: none; transition: border-color 0.3s, box-shadow 0.3s;
}
.blog-search-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); outline: none; }
.blog-search-input::placeholder { color: var(--text-muted); }
.blog-search-clear {
  position: absolute; right: calc(2rem + 12px); top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--text-muted); cursor: pointer;
  font-size: 1.1rem; line-height: 1; padding: 0.2rem; display: none; transition: color 0.2s;
}
.blog-search-clear:hover { color: var(--gold); }
.search-no-results { display: none; text-align: center; padding: 3rem 2rem; color: var(--text-muted); font-size: 0.95rem; }
.search-no-results strong { color: var(--text); font-weight: 600; }

.blog-main-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  padding: 0 2rem; max-width: 1200px; margin: 0 auto;
}

.newsletter-section {
  max-width: 600px; margin: 4rem auto; padding: 3rem 2rem; text-align: center;
}
.newsletter-form {
  display: flex; gap: 0.8rem; max-width: 400px; margin: 1.5rem auto 0;
}
.newsletter-input {
  flex: 1; padding: 0.7rem 1rem; background: var(--card);
  border: 1px solid var(--border); border-radius: 4px;
  color: var(--text); font-family: 'Inter', sans-serif; font-size: 0.9rem;
}

.explore-section {
  max-width: 1200px; margin: 0 auto; padding: 4rem 2rem;
}
.explore-topics {
  display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.5rem;
}
.explore-tag {
  background: var(--card); border: 1px solid var(--border);
  padding: 0.5rem 1.2rem; border-radius: 50px; font-size: 0.85rem;
  color: var(--text); text-decoration: none; transition: all 0.3s;
}
.explore-tag:hover {
  border-color: var(--gold); color: var(--gold); background-color: var(--gold-soft);
}

/* ========== POST (Single) ========== */
.reading-progress {
  position: fixed; top: 0; left: 0; width: 0; height: 3px;
  background: var(--gold); z-index: 1000; transition: width 0.1s;
}

.post-hero {
  max-width: 800px; margin: 0 auto; padding: 3rem 2rem; padding-top: calc(3rem + 60px);
}
.post-featured-image {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  border-radius: 8px; margin: 2rem 0;
}
.post-content {
  max-width: 700px; margin: 0 auto; padding: 0 2rem 3rem;
  font-size: 1.05rem; line-height: 1.85; color: var(--text);
}
.post-content h2 { margin: 2.5rem 0 1rem; font-size: 1.8rem; }
.post-content h3 { margin: 2rem 0 0.8rem; font-size: 1.3rem; }
.post-content p { margin-bottom: 1.5rem; }
.post-content blockquote {
  border-left: 3px solid var(--gold); padding: 1rem 1.5rem;
  margin: 2rem 0; background: var(--surface); border-radius: 4px;
  font-family: 'Cormorant Garamond', serif; font-size: 1.2rem;
  font-style: italic;
}
.post-content ul, .post-content ol {
  padding-left: 1.5rem; margin-bottom: 1.5rem;
}
.post-content li { margin-bottom: 0.5rem; }
.post-content code {
  background: var(--surface); padding: 0.2rem 0.5rem; border-radius: 3px;
  font-family: 'JetBrains Mono', monospace; font-size: 0.85em;
}
.post-content pre {
  background: var(--surface); padding: 1.5rem; border-radius: 8px;
  overflow-x: auto; margin: 1.5rem 0;
}
.post-content pre code { background: none; padding: 0; }

.related-section {
  max-width: 1200px; margin: 0 auto; padding: 4rem 2rem;
  border-top: 1px solid var(--border);
}

/* ========== PAGE (Generic) ========== */
.page-content {
  max-width: 800px; margin: 0 auto; padding: 4rem 2rem;
}
.page-content h1 {
  font-size: 2.4rem; margin-bottom: 2rem; color: var(--text);
}
.page-content h2 {
  font-size: 1.6rem; margin: 2rem 0 1rem; color: var(--text);
}
.page-content p {
  margin-bottom: 1.2rem; color: var(--text-muted); line-height: 1.8;
}

/* ========== ROLAM (About Page) ========== */
.rolam-hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  max-width: 1200px; margin: 0 auto; padding: 4rem 2rem;
  align-items: center;
}
.rolam-hero-photo {
  width: 100%; aspect-ratio: 0.85; object-fit: cover;
  border-radius: 8px; display: block;
}

.focus-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.focus-card {
  background: var(--card); padding: 2rem; border-radius: 4px;
  border-left: 3px solid var(--gold); transition: all 0.3s;
}
.focus-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.focus-card h3 { font-size: 1.1rem; margin-bottom: 0.6rem; color: var(--text); }
.focus-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

.timeline {
  position: relative; padding-left: 3rem;
}
.timeline::before {
  content: ''; position: absolute; left: 12px; top: 0; bottom: 0;
  width: 2px; background: var(--gold); opacity: 0.3;
}
.timeline-item {
  position: relative; margin-bottom: 2rem; padding-left: 1rem;
}
.timeline-item::before {
  content: ''; position: absolute; left: -2.25rem; top: 0.4rem;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold); border: 2px solid var(--bg);
}
.timeline-year {
  font-family: 'JetBrains Mono', monospace; font-size: 0.75rem;
  color: var(--gold); margin-bottom: 0.3rem;
}

.values-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}
.value-card {
  background: var(--card); padding: 1.8rem; border-radius: 4px;
  border-top: 3px solid var(--gold);
}
.value-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--text); }
.value-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ========== ROLAM (About) PAGE - Additional Styles ========== */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.about-hero-text h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.about-hero-text h1 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.about-hero-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about-hero-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  gap: 2rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.expertise-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s;
}

.expertise-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.expertise-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 1rem;
}

.expertise-icon svg {
  width: 40px;
  height: 40px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.expertise-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.expertise-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.cert-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
}

.cert-card:hover {
  border-color: var(--gold);
}

.cert-badge {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: var(--gold-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.cert-badge svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cert-card h4 {
  font-size: 0.88rem;
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.cert-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.values-list {
  list-style: none;
  padding: 0;
}

.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.values-list li:last-child {
  border-bottom: none;
}

.value-check {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 0.1rem;
}

.value-check svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-text strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.value-text span {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.values-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-soft);
}

.social-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.about-cta h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.about-cta p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.switchable-img {
  transition: opacity 0.3s;
}

/* ========== KURZUS PAGE (Dedicated) ========== */
.kurzus-hero {
  display: grid; grid-template-columns: 42% 58%; gap: 0;
  min-height: 80vh; align-items: stretch;
  position: relative;
}
.kurzus-hero-photo {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.kurzus-hero-content {
  padding: 4rem 3rem; display: flex; flex-direction: column;
  justify-content: center; background: var(--bg);
}

.accordion-header {
  padding: 1.2rem 1.5rem; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  background: var(--card); border-left: 3px solid var(--gold);
  border-radius: 4px; margin-bottom: 0.5rem; transition: all 0.3s;
}
.accordion-header:hover { background: var(--surface); }
.accordion-content {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out;
  padding: 0 1.5rem; background: var(--surface); border-radius: 0 0 4px 4px;
}
.accordion-content.open { max-height: 2000px; padding: 1rem 1.5rem; }

.section-cta {
  text-align: center; padding: 2rem 0 4rem;
}

/* ========== KURZUS PAGE - Additional Styles ========== */
.tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.price-inline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; color: var(--gold); font-weight: 700;
  margin: 0.5rem 0 0.2rem 0;
}

.price-inline-small {
  font-size: 0.85rem; color: var(--text-muted); margin: 0 0 1rem 0;
}

.pain-points-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.pain-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 2rem;
  border-radius: 4px;
}

.pain-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  margin: 0 0 1rem 0;
  color: var(--text);
}

.pain-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.solution-card {
  background: var(--card);
  padding: 0;
  border-radius: 4px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.solution-card .video-preview {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: var(--surface);
  overflow: hidden;
}

.solution-card .video-preview .video-placeholder {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s;
}

.solution-card .video-preview .video-placeholder:hover {
  background: var(--gold-soft);
  color: var(--gold);
}

.solution-card .video-preview .play-icon {
  width: 48px; height: 48px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.solution-card .video-preview .video-placeholder:hover .play-icon {
  border-color: var(--gold);
  background: var(--gold-soft);
}

.solution-card .video-preview .play-icon svg {
  width: 20px; height: 20px;
  fill: currentColor;
  margin-left: 3px;
}

.solution-card .video-preview .video-duration {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

.solution-card-body {
  padding: 1.5rem;
  flex: 1;
}

.solution-card .tag {
  display: block;
  margin-bottom: 0.8rem;
}

.solution-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  margin: 0 0 0.5rem 0;
  color: var(--text);
}

.solution-intro {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 1rem 0 0 0;
}

.accordion {
  margin-top: 3rem;
}

.accordion-item {
  background: var(--card);
  border: 1px solid var(--border);
  margin-bottom: 1rem;
  border-radius: 4px;
  overflow: hidden;
}

.accordion-header h4 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  color: var(--text) !important;
}

[data-theme="dark"] .accordion-header h4 {
  color: #f0f0f0 !important;
}

[data-theme="dark"] .accordion-item {
  background: #14141c !important;
  border-color: #2a2a3a !important;
}

.accordion-toggle {
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.3s;
}

.accordion-toggle.open {
  transform: rotate(180deg);
}

.accordion-content.open {
  display: block;
  max-height: none;
  padding: 2rem;
  background: var(--card);
}

.lesson-list {
  list-style: none;
  padding: 0;
}

.lesson-item {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lesson-item:last-child {
  border-bottom: none;
}

.lesson-title {
  color: var(--text);
  font-weight: 500;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  text-align: center;
}

.stat-card {
  padding: 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.stats-summary {
  background: var(--gold-soft);
  padding: 2rem;
  border-radius: 4px;
  margin-top: 2rem;
  text-align: center;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.8;
}

.prereq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.prereq-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2rem;
  border-radius: 4px;
}

.prereq-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  margin: 0 0 1rem 0;
  color: var(--text);
}

.prereq-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.for-you-section {
  padding: 6rem 2rem;
  text-align: center;
}

.for-you-section h2 {
  margin-bottom: 0.5rem;
}

.for-you-section h2 em {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
}

.for-you-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 900px;
  margin: 3rem auto 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.for-you-col {
  padding: 2.5rem;
  text-align: left;
}

.for-you-yes {
  background: var(--card);
  border-right: 1px solid var(--border);
}

.for-you-no {
  background: var(--surface);
}

.for-you-col h3 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
}

.for-you-yes h3 {
  border-bottom-color: var(--pulse);
}

.for-you-no h3 {
  border-bottom-color: var(--red);
}

.for-you-col h3 .check-icon {
  color: var(--pulse);
  font-size: 1.2rem;
  font-weight: 700;
}

.for-you-col h3 .x-icon {
  color: var(--red);
  font-size: 1.2rem;
  font-weight: 700;
}

.for-you-col ul {
  list-style: none;
  padding: 0;
}

.for-you-col ul li {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  line-height: 1.5;
}

.for-you-col ul li:last-child {
  border-bottom: none;
}

.for-you-col ul li::before {
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 700;
  font-size: 0.85rem;
}

.for-you-yes ul li::before {
  content: '\2713';
  color: var(--pulse);
}

.for-you-no ul li::before {
  content: '\2717';
  color: var(--red);
}

.pricing-section {
  text-align: center;
  padding: 6rem 2rem;
  background: var(--surface);
}

.pricing-card {
  max-width: 520px;
  margin: 2rem auto 0;
  background: var(--card);
  border: 2px solid var(--gold);
  border-radius: 4px;
  padding: 3rem 2.5rem;
  position: relative;
}

.pricing-card-label {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 2px;
}

.pricing-content {
  max-width: 600px;
  margin: 0 auto;
}

.pricing-highlight {
  background: var(--gold-soft);
  border-left: 3px solid var(--gold);
  padding: 1.2rem 1.5rem;
  border-radius: 0 4px 4px 0;
  margin: 2rem 0;
  font-size: 0.95rem;
  color: var(--text);
  text-align: left;
  line-height: 1.6;
}

.pricing-includes {
  text-align: left;
  margin: 1.5rem 0;
  list-style: none;
  padding: 0;
}

.pricing-includes li {
  list-style: none;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pricing-includes li::before {
  content: '\2713';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.price-badge {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  color: var(--gold);
  font-weight: 700;
  margin: 0.5rem 0 0.3rem 0;
  line-height: 1;
}

.price-small {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.fomo-cta {
  text-align: center;
  padding: 5rem 2rem;
  background: var(--bg);
}

.fomo-cta h2 em {
  font-family: 'Cormorant Garamond', serif;
  color: var(--gold);
}

.fomo-cta-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; height: auto; min-height: auto; max-height: none; }
  .hero-photo-wrapper { min-height: 400px; }
  .hero-photo { clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%); }
  .hero-diagonal-line { display: none; }
  .hero-badge-diagonal { left: 50%; top: 410px; transform: translateX(-50%); }
  .hero-workflow-bg { display: none; }
  .hero-content h1 { font-size: 2.5rem; }
  .about-badge img { width: 80px; height: 80px; }
  .course-section, .about-section { grid-template-columns: 1fr; }
  .services-grid, .problems-grid, .blog-grid, .cta-options { grid-template-columns: 1fr; }
  .about-milestones { grid-template-columns: repeat(2, 1fr); }
  .rolam-hero { grid-template-columns: 1fr; }
  .focus-grid { grid-template-columns: 1fr; }
  .blog-main-grid { grid-template-columns: 1fr; }
  .kurzus-hero { grid-template-columns: 1fr; min-height: auto; height: auto; }
  .values-grid { grid-template-columns: 1fr; }
  .pain-points-grid, .solution-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .prereq-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .explore-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-card { grid-template-columns: 1fr; }
  .about-hero { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 1.2rem; }
  .section h2 { font-size: 1.8rem; }
  .pain-scroll { font-size: 0.85rem; gap: 2rem; }
  .course-stats { grid-template-columns: repeat(2, 1fr); }
  .about-milestones { grid-template-columns: 1fr; }
  .hero-content { padding: 1.5rem 1.5rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .for-you-grid { grid-template-columns: 1fr; gap: 0; }
  .for-you-yes { border-right: none; border-bottom: 1px solid var(--border); }
  .pricing-card { padding: 2rem 1.5rem; }
  .price-badge { font-size: 3.5rem; }
  .about-hero { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.2rem; }
  .about-hero-image { max-width: 400px; margin: 0 auto; }
  .about-hero-text h1 { font-size: 1.8rem; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; padding: 2rem 1.2rem; }
  .expertise-grid { grid-template-columns: 1fr; }
  .blog-hero .section-label {
  margin-bottom: 1.2rem;
}

.blog-hero h1 { font-size: 2rem; }
  .posts-grid { grid-template-columns: 1fr; }
  .explore-grid { grid-template-columns: 1fr 1fr; }
  .featured-content { padding: 2rem 1.5rem; }
  .featured-content h2 { font-size: 1.3rem; }
  .newsletter-form { flex-direction: column; align-items: center; }
  .newsletter-input { width: 100%; max-width: 340px; }
  .posts-section { padding: 0 1.2rem 4rem; }
  .explore-section { padding: 3rem 1.2rem 4rem; }
  .featured-post { padding: 0 1.2rem; margin-bottom: 3rem; }
  .blog-search { padding: 0 1.2rem; margin-bottom: 1.5rem; }
  .category-filters { gap: 0.4rem; padding: 0 1.2rem 2rem; }
  .category-btn { font-size: 0.72rem; padding: 0.4rem 0.9rem; }
}

/* ========== VIDEO EMBED (Vimeo / iframe a solution card-ban) ========== */
.solution-card .video-preview .video-embed {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.solution-card .video-preview .video-embed iframe {
  width: 100%; height: 100%;
  border: 0; display: block;
}

/* ========== CONTAINER FIX (kurzus szekciok) ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

#pain-points,
#solutions,
#course-structure,
#whats-included,
#prerequisites {
  padding: 6rem 0;
}

/* ========== RESPONSIVE — KURZUS ========== */
@media (max-width: 768px) {
  .container { padding: 0 1.2rem; }

  #pain-points,
  #solutions,
  #course-structure,
  #whats-included,
  #prerequisites {
    padding: 3rem 0;
  }

  .hero-ctas { flex-direction: column; gap: 0.8rem; margin-bottom: 1.5rem; }
  .hero-content h1 { font-size: 2rem; }
  .cta-button { width: 100%; text-align: center; justify-content: center; }
  .pain-card, .solution-card, .prereq-card { padding: 1.5rem; }
  .section-cta { padding: 1.5rem 1.2rem 3rem; }
  .price-inline { font-size: 1.6rem; }
  .accordion-header { padding: 1rem 1.2rem; }
  .accordion-header h4 { font-size: 0.95rem; }
  .lesson-item { padding: 0.8rem 0.5rem; }
  .lesson-title { font-size: 0.85rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.7rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .prereq-grid { grid-template-columns: 1fr; }
}
/* ========== AUDIT HERO ========== */
.audit-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 6rem 3rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
}

.audit-hero-content .section-label { margin-bottom: 1.2rem; }

.audit-hero-content h1 {
  font-size: 3.2rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.audit-hero-content h1 em {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
}

.audit-hero-content .subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}

.audit-hero-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.audit-hero-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.02em;
}

.audit-hero-note svg { flex-shrink: 0; }

/* ========== SCAN ANIMATION ========== */
.audit-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.audit-scan-animation {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scan-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  opacity: 0.15;
}

.ring-1 { width: 100%; height: 100%; animation: auditPulse 3s ease-in-out infinite; }
.ring-2 { width: 75%; height: 75%; animation: auditPulse 3s ease-in-out 0.6s infinite; }
.ring-3 { width: 50%; height: 50%; animation: auditPulse 3s ease-in-out 1.2s infinite; }

@keyframes auditPulse {
  0%, 100% { opacity: 0.1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(1.05); }
}

.scan-center {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 2px solid var(--gold);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--gold);
}

/* ========== WHY IT MATTERS ========== */
.audit-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.audit-why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
}

.audit-why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.audit-why-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.audit-why-icon svg { width: 100%; height: 100%; fill: none; }

.audit-why-card h3 { font-size: 1.15rem; margin-bottom: 0.8rem; }

.audit-why-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ========== AUDIT PILLARS ========== */
.audit-pillars-section {
  background: var(--surface);
  padding: 5rem 3rem;
}

.audit-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.audit-pillar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: left;
  position: relative;
}

.audit-pillar-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  line-height: 1;
}

.audit-pillar-card h3 { font-size: 1.2rem; margin-bottom: 0.8rem; }

.audit-pillar-card > p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.audit-pillar-list {
  list-style: none;
  padding: 0; margin: 0;
}

.audit-pillar-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 0.5rem 0 0.5rem 1.2rem;
  position: relative;
  border-top: 1px solid var(--border);
}

.audit-pillar-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

/* ========== WHAT YOU GET ========== */
.audit-report-preview {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
  text-align: left;
}

.audit-report-mockup {
  display: flex;
  gap: 0.8rem;
  transform: perspective(600px) rotateY(5deg);
}

.report-page {
  width: 120px; height: 170px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1rem 0.8rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.report-page-header {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.6rem; font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.report-page-header.small { font-size: 0.5rem; }

.report-page-line {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 0.4rem;
}
.report-page-line.short { width: 60%; }
.report-page-line.medium { width: 80%; }

.report-page-bar {
  height: 12px;
  background: var(--gold-soft);
  border-radius: 3px;
  margin-bottom: 0.4rem;
  border-left: 3px solid var(--gold);
}
.report-page-bar.short { width: 50%; }

.report-page-check {
  height: 10px;
  background: linear-gradient(90deg, var(--gold-soft) 20px, var(--border) 20px);
  border-radius: 3px;
  margin-bottom: 0.3rem;
}

.audit-report-contents h3 { font-size: 1.15rem; margin-bottom: 1.5rem; }

.audit-content-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.audit-content-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.audit-content-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-soft);
  border-radius: 50%;
}

.audit-content-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.audit-content-item span {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ========== HOW IT WORKS ========== */
.audit-steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 3rem;
}

.audit-step {
  text-align: center;
  max-width: 280px;
  padding: 0 1.5rem;
}

.audit-step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem; font-weight: 700;
  color: var(--gold);
  opacity: 0.25;
  margin-bottom: 0.5rem;
}

.audit-step-icon {
  width: 56px; height: 56px;
  margin: 0 auto 1.2rem;
  color: var(--gold);
}
.audit-step-icon svg { width: 100%; height: 100%; }

.audit-step h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }

.audit-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.audit-step-connector {
  margin-top: 3.5rem;
  flex-shrink: 0;
}

/* ========== BEHIND THE AUDIT ========== */
.audit-behind {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 3rem;
  align-items: center;
}

.audit-behind-photo-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 0.85;
  border-radius: 8px;
  overflow: visible;
}
.audit-behind-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 8px;
  transition: filter 0.6s;
}
.audit-behind-badge {
  position: absolute;
  bottom: -1.2rem;
  right: -1.2rem;
  z-index: 5;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.35));
}
.audit-behind-badge img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  animation: badgeFloat 4s ease-in-out infinite;
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.audit-behind-content h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  line-height: 1.25;
}
.audit-behind-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.audit-behind-text strong {
  color: var(--text);
  font-weight: 600;
}

.audit-behind-milestones {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin: 1.8rem 0;
}
.audit-milestone {
  background-color: var(--card);
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--gold);
  border-radius: 4px;
}
.audit-milestone-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.audit-milestone-label {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin-top: 0.25rem;
}

.audit-behind-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text);
  margin-top: 1.8rem;
  padding: 1.2rem 1.5rem;
  border-left: 3px solid var(--gold);
  background-color: var(--surface);
  border-radius: 4px;
  line-height: 1.5;
}

/* ========== FORM SECTION ========== */
.audit-form-section {
  background: var(--surface);
  padding: 5rem 3rem;
}

.audit-form-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.audit-form-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.audit-form-intro p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0.5rem auto 2rem;
}

.audit-form-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.audit-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.audit-trust-item svg { flex-shrink: 0; }

/* Form */
.audit-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 3rem;
}

.form-group-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.form-group-header:first-child { margin-top: 0; }

.form-group-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem; font-weight: 400;
  color: var(--gold);
  background: var(--gold-soft);
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.form-group label .required { color: var(--red); }

.form-group label .hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="url"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236e6878' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text);
  cursor: pointer;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg);
  transition: border-color 0.2s, background 0.2s;
}
.checkbox-item:hover { border-color: var(--gold); }

.checkbox-item input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
}

.checkbox-item:has(input:checked) {
  border-color: var(--gold);
  background: var(--gold-soft);
}

/* Form section desc */
.form-group-header > div {
  display: flex;
  flex-direction: column;
}
.form-section-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 0.15rem;
  line-height: 1.4;
  font-family: 'Inter', sans-serif;
}

/* Social chooser */
.social-chooser {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.social-chooser-row {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 0.8rem;
  align-items: center;
}

.social-platform-select,
.social-url-input {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.social-platform-select:focus,
.social-url-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
}
.social-platform-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236e6878' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  padding-right: 2.2rem;
}
.social-url-input::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

/* ROI teaser */
.roi-teaser {
  margin-top: 0.6rem;
  padding: 0.75rem 1rem;
  background: var(--gold-soft);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.5;
  animation: roiFadeIn 0.4s ease;
}
.roi-teaser strong {
  color: var(--gold);
  font-weight: 700;
}

@keyframes roiFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Form emoji accents */
.form-emoji {
  display: inline-block;
  font-size: 1rem;
  margin-right: 0.3rem;
  vertical-align: middle;
}

.form-submit-area {
  margin-top: 2rem;
  text-align: center;
}

.audit-submit-btn {
  font-size: 1rem;
  padding: 1rem 2.5rem;
}

.form-consent {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  text-align: left;
}
.consent-row input[type="checkbox"] {
  margin-top: 0.25rem;
  accent-color: var(--gold);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.consent-row label {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  cursor: pointer;
}
.consent-row label a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.consent-row label a:hover {
  opacity: 0.8;
}
.consent-row.consent-error label {
  color: var(--gold);
}

.form-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* Success state */
.audit-form-success {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.success-icon { margin-bottom: 1.5rem; }
.audit-form-success h3 { font-size: 1.3rem; margin-bottom: 1rem; }
.audit-form-success p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* ========== STATS BAR ========== */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

.stats-bar-inner {
  display: flex;
  justify-content: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.03em;
}

/* ========== FAQ ========== */
.faq-section { text-align: left; }
.faq-section h2, .faq-section .section-label { text-align: center; }

.faq-accordion {
  max-width: 720px;
  margin: 2rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}
.faq-header:hover { color: var(--gold); }

.faq-toggle {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-bottom: 1.2rem;
}

.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-item.active .faq-content { max-height: 800px; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .audit-hero {
    grid-template-columns: 1fr;
    padding: 4rem 2rem 3rem;
    gap: 3rem;
  }
  .audit-hero-visual { order: -1; }
  .audit-scan-animation { width: 240px; height: 240px; }
  .audit-hero-content h1 { font-size: 2.6rem; }
  .audit-why-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .audit-pillars-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .audit-report-preview { grid-template-columns: 1fr; gap: 2rem; }
  .audit-report-mockup { justify-content: center; transform: none; }
  .audit-steps-grid { flex-direction: column; align-items: center; gap: 1.5rem; }
  .audit-step-connector { transform: rotate(90deg); margin-top: 0; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .social-chooser-row { grid-template-columns: 140px 1fr; }
  .audit-form { padding: 2rem 1.5rem; }
  .audit-form-trust { flex-direction: column; align-items: center; gap: 0.8rem; }
  .audit-pillars-section { padding: 4rem 2rem; }
  .audit-form-section { padding: 4rem 2rem; }
  .stats-bar-inner { gap: 2rem; }
  .audit-behind { grid-template-columns: 1fr; gap: 2rem; padding: 4rem 1.2rem; }
  .audit-behind-photo-wrapper { max-width: 360px; margin: 0 auto; }
  .audit-behind-badge img { width: 75px; height: 75px; }
}

@media (max-width: 768px) {
  .audit-hero { padding: 3rem 1.2rem 2rem; }
  .audit-hero-content h1 { font-size: 2rem; }
  .audit-hero-ctas { flex-direction: column; }
  .audit-hero-ctas .cta-button { text-align: center; }
  .audit-scan-animation { width: 200px; height: 200px; }
  .scan-center { width: 64px; height: 64px; }
  .scan-center svg { width: 36px; height: 36px; }
  .audit-form { padding: 1.5rem 1rem; border-radius: 12px; }
  .social-chooser-row { grid-template-columns: 1fr; }
  .report-page { width: 90px; height: 130px; }
  .audit-step { padding: 0 0.5rem; }
  .audit-pillars-section { padding: 3rem 1.2rem; }
  .audit-form-section { padding: 3rem 1.2rem; }
  .stats-bar-inner { gap: 1.5rem; }
  .stat-number { font-size: 1.4rem; }
  .audit-behind { padding: 3rem 1.2rem; }
  .audit-behind-milestones { grid-template-columns: 1fr; }
  .audit-behind-content h2 { font-size: 1.6rem; }
}

/* ========== TUTOR LMS - SPACING & DARK MODE ========== */

/* Spacing between theme header/footer and Tutor content */
.tutor-wrap-parent {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.tutor-page-wrap {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

/* Dashboard spacing */
.tutor-dashboard-page-wrapper {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

/* Dark mode overrides for Tutor LMS */
[data-theme="dark"] .tutor-wrap-parent,
[data-theme="dark"] .tutor-page-wrap,
[data-theme="dark"] .tutor-dashboard-page-wrapper {
  background-color: var(--bg);
  color: var(--text);
}

/* Override Tutor's root CSS variables in dark mode */
[data-theme="dark"] {
  --tutor-color-white: var(--card);
  --tutor-color-gray: var(--border);
  --tutor-color-gray-10: var(--surface);
  --tutor-body-color: var(--text);
  --tutor-color-secondary: #d0d0dc;
  --tutor-color-subdued: #a8a8b8;
  --tutor-color-hints: #9898a8;
  --tutor-color-muted: #9898a8;
}

/* Dark mode: összes sötét szín class override (mind hardcoded Tutor CSS-ben) */
[data-theme="dark"] .tutor-color-black,
[data-theme="dark"] .tutor-color-black-fill {
  color: var(--text) !important;
}
[data-theme="dark"] .tutor-color-secondary,
[data-theme="dark"] .tutor-color-subdued,
[data-theme="dark"] .tutor-color-hints,
[data-theme="dark"] .tutor-color-muted,
[data-theme="dark"] .tutor-color-black-60 {
  color: var(--text-muted) !important;
}

/* Tutor LMS dark mode - proper dark styling */
[data-theme="dark"] .tutor-wrap-parent {
  background-color: var(--bg) !important;
  color: var(--text) !important;
}

[data-theme="dark"] .tutor-dashboard-page-wrapper {
  background-color: var(--bg) !important;
  color: var(--text) !important;
}

/* Accordion headers */
[data-theme="dark"] .tutor-course-single-sidebar-wrapper .tutor-accordion-item-header,
[data-theme="dark"] .tutor-course-single-sidebar-wrapper .tutor-accordion-item-header.is-active,
[data-theme="dark"] .tutor-course-single-sidebar-wrapper .tutor-accordion-item-header:hover {
  background-color: #0f0f15 !important;
  color: #f0f0f0 !important;
  border-color: #2a2a3a !important;
}
[data-theme="dark"] .tutor-course-single-sidebar-wrapper .tutor-accordion-item-header .tutor-course-topic-summary {
  color: #7a7a90 !important;
}
[data-theme="dark"] .tutor-course-single-sidebar-wrapper .tutor-accordion-item-body {
  background-color: #14141c !important;
}
[data-theme="dark"] .tutor-course-single-sidebar-wrapper .tutor-accordion-item {
  background-color: #14141c !important;
  border-color: #2a2a3a !important;
}

/* Lesson list items */
[data-theme="dark"] .tutor-course-content-list-item {
  background-color: var(--card) !important;
  border-color: var(--border) !important;
}
[data-theme="dark"] .tutor-course-content-list-item,
[data-theme="dark"] .tutor-course-content-list-item a,
[data-theme="dark"] .tutor-course-content-list-item span,
[data-theme="dark"] .tutor-course-content-list-item h5,
[data-theme="dark"] .tutor-course-content-list-item .tutor-course-lesson,
[data-theme="dark"] .tutor-course-content-list-item .tutor-course-lesson span {
  color: var(--text-muted) !important;
}
[data-theme="dark"] .tutor-course-content-list-item a:hover {
  color: var(--text) !important;
}

/* Sidebar purchase box */
[data-theme="dark"] .tutor-single-course-sidebar,
[data-theme="dark"] .tutor-single-course-sidebar .tutor-sidebar-card,
[data-theme="dark"] .tutor-single-course-sidebar .tutor-card-body,
[data-theme="dark"] .tutor-single-course-sidebar .tutor-sidebar-card .tutor-card-body,
[data-theme="dark"] .tutor-single-course-sidebar .tutor-course-single-info-card {
  background-color: var(--card) !important;
  color: var(--text) !important;
  border-color: var(--border) !important;
}
[data-theme="dark"] .tutor-single-course-sidebar *:not(.tutor-btn) {
  color: var(--text) !important;
  border-color: var(--border) !important;
}
[data-theme="dark"] .tutor-single-course-sidebar .tutor-meta-value,
[data-theme="dark"] .tutor-single-course-sidebar .tutor-course-price {
  color: var(--text) !important;
}

/* Tabs (Információk / Értékelések) */
[data-theme="dark"] .tutor-course-details-tab,
[data-theme="dark"] .tutor-course-single-tab-nav,
[data-theme="dark"] .tutor-nav,
[data-theme="dark"] .tutor-nav-tab-list,
[data-theme="dark"] .tutor-course-tabs-nav {
  background-color: var(--surface) !important;
  border-color: var(--border) !important;
}
[data-theme="dark"] .tutor-nav a,
[data-theme="dark"] .tutor-nav li a,
[data-theme="dark"] .tutor-course-details-tab a,
[data-theme="dark"] .tutor-course-tabs-nav a,
[data-theme="dark"] .tutor-nav-tab-list a {
  color: var(--text-muted) !important;
}
[data-theme="dark"] .tutor-nav a.is-active,
[data-theme="dark"] .tutor-nav li.is-active a {
  color: var(--text) !important;
  border-color: var(--gold) !important;
}

/* General Tutor cards and boxes */
[data-theme="dark"] .tutor-card,
[data-theme="dark"] .tutor-bg-white,
[data-theme="dark"] .tutor-course-single-content {
  background-color: var(--card) !important;
  color: var(--text) !important;
}

/* "A course by" instructor box in sidebar */
[data-theme="dark"] .tutor-single-course-sidebar .tutor-sidebar-card,
[data-theme="dark"] .tutor-single-course-sidebar .tutor-card,
[data-theme="dark"] .tutor-single-course-sidebar .tutor-card-body,
[data-theme="dark"] .tutor-single-course-sidebar .tutor-course-instructor-wrap,
[data-theme="dark"] .tutor-single-course-sidebar .tutor-course-author,
[data-theme="dark"] .tutor-course-details-instructors,
[data-theme="dark"] .tutor-course-details-instructors * {
  background-color: var(--card) !important;
  color: var(--text) !important;
  border-color: var(--border) !important;
}

/* Buttons - keep gold CTA even in forced-light tutor area */
[data-theme="dark"] .tutor-wrap-parent .tutor-btn-primary {
  background-color: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #fff !important;
}

/* Rating stars keep gold */
[data-theme="dark"] .tutor-wrap-parent .tutor-ratings .tutor-icon-star-bold,
[data-theme="dark"] .tutor-wrap-parent .tutor-ratings .tutor-icon-star-line {
  color: var(--gold) !important;
}

/* Dashboard sidebar menu items - tutor-color-black invisible on dark bg */
[data-theme="dark"] .tutor-dashboard-menu-item-link,
[data-theme="dark"] .tutor-dashboard-menu-item-text {
  color: var(--text) !important;
}
[data-theme="dark"] .tutor-dashboard-menu-item.active .tutor-dashboard-menu-item-link,
[data-theme="dark"] .tutor-dashboard-menu-item.active .tutor-dashboard-menu-item-text {
  color: #0a0a0a !important;
}
[data-theme="dark"] .tutor-dashboard-menu-item-link:hover,
[data-theme="dark"] .tutor-dashboard-menu-item-link:hover .tutor-dashboard-menu-item-text {
  color: var(--gold) !important;
}

/* Course card titles in dashboard (enrolled courses) */
[data-theme="dark"] .tutor-stretched-link {
  color: var(--text) !important;
}
[data-theme="dark"] .tutor-stretched-link:hover {
  color: var(--gold) !important;
}

/* Course detail page title */
[data-theme="dark"] .tutor-course-details-title,
[data-theme="dark"] .tutor-course-details-title span,
[data-theme="dark"] .tutor-color-black {
  color: var(--text) !important;
}

/* Dashboard enrolled course card titles */
[data-theme="dark"] .tutor-dashboard-page-wrapper .tutor-color-black,
[data-theme="dark"] .tutor-course-progress-item-title,
[data-theme="dark"] .tutor-course-progress-item .tutor-fw-medium {
  color: var(--text) !important;
}

/* Dashboard popular courses table */
[data-theme="dark"] .tutor-table-responsive {
  background-color: var(--card) !important;
}
[data-theme="dark"] .tutor-table,
[data-theme="dark"] .table-popular-courses {
  background-color: var(--card) !important;
  color: var(--text) !important;
}
[data-theme="dark"] .table-popular-courses th,
[data-theme="dark"] .table-popular-courses td {
  color: var(--text) !important;
  border-color: var(--border) !important;
  background-color: var(--card) !important;
}
[data-theme="dark"] .table-popular-courses thead th {
  background-color: var(--surface) !important;
  color: var(--text-muted) !important;
}
[data-theme="dark"] .table-popular-courses td a {
  color: var(--text) !important;
}
[data-theme="dark"] .table-popular-courses td a:hover {
  color: var(--gold) !important;
}

/* ========== SZOLGALTATASOK PAGE ========== */

/* ========== HERO ========== */
.svc-hero {
  padding-top: 7rem;
  padding-bottom: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-left: 2rem;
  padding-right: 2rem;
}
.svc-hero-content .section-label { text-align: left; }
.svc-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.svc-hero h1 em,
.svc-pyramid-intro h2 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}
.svc-hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.svc-hero-photo {
  position: relative;
  border-radius: 8px;
  overflow: visible;
  aspect-ratio: 0.85;
}
.svc-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 8px;
  transition: filter 0.6s;
}
.svc-hero-badge {
  position: absolute;
  bottom: -1.2rem;
  right: -1.2rem;
  z-index: 5;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.35));
}
.svc-hero-badge img { width: 90px; height: 90px; object-fit: contain; animation: badgeFloat 4s ease-in-out infinite; }
@keyframes badgeFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ========== PIRAMIS VIZUALIZACIO ========== */
.svc-pyramid {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}
.svc-pyramid-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.pyramid-levels {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.pyramid-level {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 0;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.pyramid-level:last-child {
  border-bottom: none;
}

.pyramid-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  position: relative;
}
.pyramid-indicator::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.pyramid-step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.pyramid-step-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
  text-align: center;
}

.pyramid-content {
  padding: 2rem 2rem;
}
.pyramid-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.pyramid-content .pyramid-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}
.pyramid-content .pyramid-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.pyramid-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}
.pyramid-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  background: var(--gold-soft);
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
}
.pyramid-link {
  font-size: 0.85rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}
.pyramid-link:hover {
  text-decoration: underline;
}

/* Involvement bar */
.svc-involvement {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}
.involvement-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.involvement-bar::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold-soft), var(--gold));
  z-index: 0;
}
.involvement-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  background: var(--bg);
  padding: 0.3rem 0.6rem;
  position: relative;
  z-index: 1;
}
.involvement-label:last-child {
  color: var(--gold);
  font-weight: 500;
}

/* ========== RESZLETES KARTYAK ========== */
.svc-details {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 2rem 5rem;
}

.svc-detail-card {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 3rem;
  align-items: start;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.svc-detail-card:last-child {
  border-bottom: none;
}
.svc-detail-card:nth-child(even) {
  grid-template-columns: 1fr 38%;
}
.svc-detail-card:nth-child(even) .svc-detail-photo {
  order: 2;
}

.svc-detail-photo {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 0.75;
  position: relative;
}
.svc-detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 8px;
  transition: filter 0.6s;
}
.svc-detail-photo .svc-photo-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: white;
  background: rgba(0,0,0,0.6);
  padding: 0.3rem 0.6rem;
  border-radius: 3px;
  letter-spacing: 0.06em;
  backdrop-filter: blur(4px);
}

.svc-detail-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.svc-detail-info .svc-detail-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}
.svc-detail-info h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.svc-detail-info p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.svc-detail-info p strong {
  color: var(--text);
  font-weight: 600;
}

.svc-detail-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
}

.svc-detail-features {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
}
.svc-detail-features h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.svc-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.5rem 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.svc-feature-item svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--gold);
}
.svc-feature-item strong {
  color: var(--text);
  font-weight: 600;
}

/* ========== VIDEO ========== */
.svc-video {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
  text-align: center;
}
.svc-video h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  margin-bottom: 0.6rem;
}
.svc-video .section-intro {
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.svc-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
}
.svc-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.svc-video-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: all 0.3s;
}
.svc-video-placeholder:hover { background: var(--gold-soft); }
.svc-video-placeholder svg {
  width: 64px;
  height: 64px;
  color: var(--gold);
  margin-bottom: 1rem;
}
.svc-video-placeholder span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

/* ========== NEM TUDOD MELYIK ========== */
.svc-help {
  max-width: 700px;
  margin: 0 auto;
  padding: 5rem 2rem;
  text-align: center;
}
.svc-help h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.svc-help p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.svc-help-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.svc-help-option {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: left;
  transition: all 0.3s;
}
.svc-help-option:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.svc-help-option h4 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}
.svc-help-option p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.8rem;
}
.svc-help-option a {
  font-size: 0.82rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}
.svc-help-option a:hover { text-decoration: underline; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .svc-hero { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .svc-hero-content .section-label { text-align: center; }
  .svc-hero-photo { max-width: 400px; margin: 0 auto; }
  .svc-detail-card { grid-template-columns: 1fr; gap: 2rem; }
  .svc-detail-card:nth-child(even) { grid-template-columns: 1fr; }
  .svc-detail-card:nth-child(even) .svc-detail-photo { order: 0; }
  .svc-detail-photo { max-width: 360px; aspect-ratio: 1; }
}

@media (max-width: 768px) {
  .svc-hero { padding-top: 6rem; gap: 1.5rem; }
  .svc-hero h1 { font-size: 2rem; }
  .svc-hero-photo { max-width: 300px; }
  .svc-hero-badge img { width: 60px; height: 60px; }
  .pyramid-level { grid-template-columns: 60px 1fr; }
  .pyramid-indicator { padding: 1.5rem 0.8rem; }
  .pyramid-step-number { font-size: 1.6rem; }
  .pyramid-content { padding: 1.5rem 1rem; }
  .pyramid-content h3 { font-size: 1.1rem; }
  .pyramid-content .pyramid-meta { gap: 0.8rem; }
  .svc-help-options { grid-template-columns: 1fr; }
  .svc-details { padding: 2rem 1.2rem 4rem; }
  .svc-detail-info h3 { font-size: 1.3rem; }
  .svc-detail-photo { max-width: 280px; }
  .svc-video-placeholder svg { width: 48px; height: 48px; }
}


/* ========== ARCHIVE / DYNAMIC QUERY LOOP ========== */

.blog-archive-page {
  padding: 0 2rem 4rem;
}

/* WP query loop post-template renders as <ul> */
.blog-archive-page .wp-block-post-template.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Post title link inside query loop */
.blog-archive-page .post-card h3,
.blog-archive-page .post-card h3 a,
.blog-archive-page .post-card .wp-block-post-title,
.blog-archive-page .post-card .wp-block-post-title a {
  font-size: 1.1rem;
  line-height: 1.35;
  margin-bottom: 0.7rem;
  color: var(--text);
  text-decoration: none;
}

/* Category tags from wp:post-terms */
.blog-archive-page .post-card .post-card-tags a {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  background: rgba(150,121,28,0.08);
  border: 1px solid rgba(150,121,28,0.2);
  border-radius: 2px;
  padding: 0.15rem 0.5rem;
  margin-right: 0.3rem;
}

/* Date inside post card */
.blog-archive-page .post-card .wp-block-post-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Read more link */
.blog-archive-page .post-card .post-card-link,
.blog-archive-page .post-card .wp-block-read-more {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
}

/* Excerpt */
.blog-archive-page .post-card .wp-block-post-excerpt p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Featured image */
.blog-archive-page .post-card .post-card-image img,
.blog-archive-page .post-card .wp-block-post-featured-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* Pagination */
.blog-archive-page .wp-block-query-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.blog-archive-page .wp-block-query-pagination a,
.blog-archive-page .wp-block-query-pagination span {
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--text);
  text-decoration: none;
}
.blog-archive-page .wp-block-query-pagination .current {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

@media (max-width: 900px) {
  .blog-archive-page .wp-block-post-template.posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .blog-archive-page .wp-block-post-template.posts-grid {
    grid-template-columns: 1fr;
  }
  .blog-archive-page {
    padding: 0 1rem 3rem;
  }
}

/* ========== SINGLE POST PAGE ========== */

.post-page {
  padding-top: 60px;
}

/* Article tags (categories) */
.post-article-tags {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}
.post-article-tags a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--wp--preset--color--gold);
  color: var(--wp--preset--color--gold);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
}
.post-article-tags a:hover {
  background: var(--wp--preset--color--gold-soft);
}

/* Post title */
.post-page .post-article-title {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* Author meta bar */
.post-article-meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--wp--preset--color--border);
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.post-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--wp--preset--color--gold-soft);
}
.post-author-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.post-author-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
}
.post-author-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  color: var(--wp--preset--color--muted);
  letter-spacing: 0.05em;
}
.post-meta-divider {
  width: 1px;
  height: 28px;
  background: var(--wp--preset--color--border);
}
.post-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--wp--preset--color--muted);
}
.post-meta-item svg {
  flex-shrink: 0;
}

/* Featured image */
.post-page .post-featured-img {
  margin-bottom: 2rem;
}
.post-page .post-featured-img img {
  border-radius: 8px;
  aspect-ratio: 1/1;
  object-fit: cover;
}

/* Article body - rich typography */
.post-page .post-article-body p,
.post-page .entry-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.post-page .post-article-body h2,
.post-page .entry-content h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.post-page .post-article-body h3,
.post-page .entry-content h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  line-height: 1.3;
}
.post-page .post-article-body a,
.post-page .entry-content a {
  color: var(--wp--preset--color--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.post-page .post-article-body a:hover,
.post-page .entry-content a:hover {
  opacity: 0.7;
}
.post-page .post-article-body strong,
.post-page .entry-content strong {
  font-weight: 600;
}
.post-page .post-article-body ul,
.post-page .entry-content ul,
.post-page .post-article-body ol,
.post-page .entry-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}
.post-page .post-article-body li,
.post-page .entry-content li {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}
.post-page .post-article-body li::marker,
.post-page .entry-content li::marker {
  color: var(--wp--preset--color--gold);
}

/* Blockquote */
.post-page .post-article-body blockquote,
.post-page .entry-content blockquote,
.post-page .wp-block-quote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--wp--preset--color--gold);
  background: var(--wp--preset--color--gold-soft);
  border-radius: 0 8px 8px 0;
}
.post-page .wp-block-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.6;
}
.post-page .wp-block-quote cite {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-style: normal;
  color: var(--wp--preset--color--muted);
  letter-spacing: 0.05em;
}

/* Images in content */
.post-page .wp-block-image {
  margin: 2rem 0;
}
.post-page .wp-block-image img {
  border-radius: 8px;
}
.post-page .wp-block-image figcaption {
  font-size: 0.78rem;
  color: var(--wp--preset--color--muted);
  font-style: italic;
  margin-top: 0.5rem;
  text-align: center;
}

/* Share bar */
.post-share-bar {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--wp--preset--color--border);
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.post-share-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--wp--preset--color--muted);
  letter-spacing: 0.08em;
}
.post-share-buttons {
  display: flex;
  gap: 0.5rem;
}
.post-share-btn {
  background: none;
  border: 1px solid var(--wp--preset--color--border);
  color: var(--wp--preset--color--muted);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s;
}
.post-share-btn:hover {
  border-color: var(--wp--preset--color--gold);
  color: var(--wp--preset--color--gold);
  background: var(--wp--preset--color--gold-soft);
}

/* Author box */
.post-author-box {
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
}
.post-author-box-inner {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--wp--preset--color--card);
  border: 1px solid var(--wp--preset--color--border);
  border-radius: 12px;
  align-items: flex-start;
}
.post-author-box-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--wp--preset--color--gold-soft);
}
.post-author-box-content {
  flex: 1;
}
.post-author-box-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  color: var(--wp--preset--color--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}
.post-author-box-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.post-author-box-role {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  color: var(--wp--preset--color--muted);
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
}
.post-author-box-bio {
  font-size: 0.9rem;
  color: var(--wp--preset--color--muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.post-author-box-links {
  display: flex;
  gap: 0.8rem;
}
.post-author-link {
  color: var(--wp--preset--color--muted);
  transition: color 0.2s;
  text-decoration: none;
}
.post-author-link:hover {
  color: var(--wp--preset--color--gold);
}

/* Post newsletter CTA */
.post-newsletter {
  max-width: 800px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
}
.post-newsletter-inner {
  background: var(--wp--preset--color--card);
  border: 1px solid var(--wp--preset--color--border);
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
}
.post-newsletter-inner .section-label {
  margin-bottom: 0.8rem;
}
.post-newsletter-inner h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}
.post-newsletter-inner p {
  color: var(--wp--preset--color--muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .post-page .post-article-title { font-size: 1.8rem; }
  .post-article-meta { gap: 0.8rem; }
  .post-meta-divider { display: none; }
  .post-author-box-inner { flex-direction: column; align-items: center; text-align: center; }
  .post-author-box-links { justify-content: center; }
  .post-share-bar { flex-direction: column; align-items: flex-start; }
  .post-share-buttons { flex-wrap: wrap; }
  .post-page .post-featured-img img { aspect-ratio: 1/1; }
}


/* ========== RESPONSIVE FIXES (2026-03-10) ========== */

/* --- NAV TOUCH TARGETS --- */
@media (max-width: 768px) {
  .nav-icon { width: 44px; height: 44px; min-width: 44px; min-height: 44px; }
  .hamburger { width: 44px; height: 44px; min-width: 44px; min-height: 44px; }
  .st-nav { padding: 1rem 1.2rem; }
  .monogram-name { font-size: 1.6rem; }
  .nav-right { gap: 0.6rem; }
  .nav-right .cta-button { font-size: 0.75rem; padding: 0.5rem 0.8rem; }
}

/* --- FRONTPAGE: HERO 480px --- */
@media (max-width: 480px) {
  .hero-content { padding: 1.2rem 1rem; }
  .hero-content h1 { font-size: 1.7rem; }
  .hero-content .subtitle { font-size: 0.85rem; }
  .hero-photo-wrapper { min-height: 250px; }
  .availability { font-size: 0.8rem; }
}

/* --- FRONTPAGE: SECTIONS 480px --- */
@media (max-width: 480px) {
  .section { padding: 3rem 1rem; }
  .section h2 { font-size: 1.6rem; }
  .section-intro { font-size: 0.95rem; margin-bottom: 2rem; }
}

/* --- FRONTPAGE: PROBLEMS --- */
@media (max-width: 768px) {
  .problem-card { padding: 1.5rem 1.2rem; }
  .problem-card h3 { font-size: 1rem; }
  .problem-insight { flex-direction: column; gap: 1rem; padding: 1.5rem; text-align: center; }
  .problem-insight .insight-number { font-size: 2.5rem; }
}
@media (max-width: 480px) {
  .problems-grid { grid-template-columns: 1fr; }
  .problem-card { padding: 1.2rem 1rem; }
  .problem-card h3 { font-size: 0.95rem; }
}

/* --- FRONTPAGE: SERVICES --- */
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 1.5rem 1.2rem; }
  .service-card h3 { font-size: 1.1rem; }
  .service-card p { font-size: 0.88rem; }
  .service-price { font-size: 1.3rem; }
}

/* --- FRONTPAGE: COURSE SECTION --- */
@media (max-width: 768px) {
  .course-price { font-size: 2.2rem; }
  .course-stats { grid-template-columns: repeat(2, 1fr); }
  .course-ctas { flex-direction: column; gap: 0.8rem; }
  .course-ctas .cta-button { width: 100%; text-align: center; }
}
@media (max-width: 480px) {
  .course-price { font-size: 1.8rem; }
  .course-stats { grid-template-columns: 1fr; }
}

/* --- FRONTPAGE: BLOG PREVIEW --- */
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-content { padding: 1.5rem 1.2rem; }
  .blog-card h3 { font-size: 0.95rem; }
}

/* --- FRONTPAGE: ABOUT SECTION --- */
@media (max-width: 480px) {
  .about-section { gap: 1.5rem; }
  .about-hero-image { max-width: 280px; }
  .about-content h2 { font-size: 1.8rem; }
  .about-milestones { gap: 0.8rem; }
  .about-quote { font-size: 1.1rem; padding: 1rem; }
  .milestone-number { font-size: 1.5rem; }
}

/* --- FRONTPAGE: FINAL CTA --- */
@media (max-width: 768px) {
  .cta-options { grid-template-columns: 1fr; }
  .cta-option { padding: 1.8rem 1.5rem; }
  .cta-option-price { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .cta-option { padding: 1.5rem 1.2rem; }
  .cta-option-price { font-size: 1.3rem; }
}

/* --- KURZUS: PAIN POINTS --- */
@media (max-width: 768px) {
  .pain-card h4 { font-size: 1rem; }
  .pain-card { padding: 1.5rem; }
}
@media (max-width: 480px) {
  .pain-points-grid { grid-template-columns: 1fr; }
  .pain-card h4 { font-size: 0.95rem; }
}

/* --- KURZUS: SOLUTIONS --- */
@media (max-width: 768px) {
  .solution-card h4 { font-size: 0.95rem; }
  .solution-card-body { padding: 1rem; }
}

/* --- KURZUS: STATS --- */
@media (max-width: 768px) {
  .stat-number { font-size: 1.8rem; }
  .stat-card { padding: 1.5rem; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-number { font-size: 1.5rem; }
  .stat-card { padding: 1.2rem; }
}

/* --- KURZUS: ACCORDION --- */
@media (max-width: 768px) {
  .accordion-header { padding: 1rem 1.2rem; }
  .accordion-header h4 { font-size: 1rem; }
  .accordion-content { padding: 1.5rem; }
  .lesson-item { padding: 0.75rem; }
}
@media (max-width: 480px) {
  .accordion-header { padding: 0.9rem 1rem; }
  .accordion-content { padding: 1rem; }
}

/* --- KURZUS: FOR-YOU SECTION --- */
@media (max-width: 768px) {
  .for-you-col { padding: 1.5rem; }
  .for-you-col h3 { font-size: 1rem; margin-bottom: 1rem; }
  .for-you-col ul li { padding: 0.6rem 0; font-size: 0.85rem; }
  .for-you-yes { border-right: none; border-bottom: 1px solid var(--border); }
}

/* --- KURZUS: PRICING --- */
@media (max-width: 768px) {
  .pricing-card { padding: 2rem 1.5rem; }
  .price-badge { font-size: 3.5rem; }
  .pricing-highlight { padding: 1rem 1.2rem; }
}
@media (max-width: 480px) {
  .pricing-card { padding: 1.5rem 1.2rem; }
  .price-badge { font-size: 2.8rem; }
  .pricing-section { padding: 3rem 1rem; }
}

/* --- KURZUS: FAQ --- */
@media (max-width: 768px) {
  .faq-header { padding: 1.2rem 1.5rem; }
  .faq-header h4 { font-size: 1rem; }
  .faq-content { padding: 1.5rem; }
  .faq-section { padding: 4rem 1.2rem; }
}
@media (max-width: 480px) {
  .faq-header { padding: 1rem 1rem; }
  .faq-content { padding: 1rem; }
  .faq-section { padding: 3rem 1rem; }
}

/* --- BLOG LIST: 480px --- */
@media (max-width: 480px) {
  .blog-hero h1 { font-size: 1.7rem; }
  .explore-grid { grid-template-columns: 1fr; }
  .blog-search-icon { left: calc(1rem + 12px); }
  .blog-search-clear { right: calc(1rem + 12px); }
  .blog-search { padding: 0 1rem; }
  .category-filters { gap: 0.3rem; padding: 0 1rem 1.5rem; }
  .category-btn { font-size: 0.65rem; padding: 0.3rem 0.7rem; }
  .posts-section { padding: 0 1rem 3rem; }
  .explore-section { padding: 2rem 1rem 3rem; }
  .featured-content { padding: 1.2rem 1rem; }
  .featured-content h2 { font-size: 1.2rem; }
  .post-card-body { padding: 1.2rem; }
  .post-card-body h3 { font-size: 1rem; }
  .newsletter-section { padding: 3rem 1rem; }
}

/* --- ROLAM: CERT GRID --- */
@media (max-width: 768px) {
  .cert-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .cert-card { padding: 1.5rem 1rem; }
}
@media (max-width: 480px) {
  .cert-card { padding: 1.2rem 1rem; }
}

/* --- ROLAM: VALUES --- */
@media (max-width: 768px) {
  .values-list li { gap: 1.2rem; padding: 1.5rem 0; }
  .values-image { max-height: 350px; object-fit: cover; }
}
@media (max-width: 480px) {
  .values-list li { gap: 1rem; padding: 1.2rem 0; }
  .values-image { max-height: 250px; }
}

/* --- ROLAM: TIMELINE --- */
@media (max-width: 768px) {
  .timeline { padding-left: 2rem; }
  .timeline-item { padding-left: 0.5rem; margin-bottom: 1.5rem; }
  .timeline-year { font-size: 0.7rem; }
}
@media (max-width: 480px) {
  .timeline { padding-left: 1.5rem; }
  .timeline-item { padding-left: 0; margin-bottom: 1rem; }
}

/* --- ROLAM: EXPERTISE --- */
@media (max-width: 768px) {
  .expertise-card { padding: 1.5rem 1.2rem; }
  .expertise-card h3 { font-size: 1.05rem; }
  .expertise-card p { font-size: 0.9rem; }
}

/* --- ROLAM: ABOUT HERO TEXT --- */
@media (max-width: 480px) {
  .about-hero { padding: 2rem 1rem; gap: 1.5rem; }
  .about-hero-text h1 { font-size: 1.5rem; }
  .about-hero-text p { font-size: 0.95rem; }
  .about-hero-image { max-width: 300px; }
  .social-links { gap: 0.8rem; }
}

/* --- ROLAM: STATS BAR --- */
@media (max-width: 480px) {
  .stats-bar-inner { grid-template-columns: 1fr 1fr; gap: 1rem; padding: 1.5rem 1rem; }
  .stat-label { font-size: 0.75rem; }
}

/* --- AUDIT: FAQ ACCORDION --- */
@media (max-width: 768px) {
  .audit-faq .faq-header { padding: 1.2rem 1.5rem; }
  .audit-faq .faq-content { padding: 1.2rem 1.5rem; }
}
@media (max-width: 480px) {
  .audit-scan-animation { width: 160px; height: 160px; }
  .scan-center { width: 48px; height: 48px; }
  .scan-center svg { width: 28px; height: 28px; }
  .audit-pillars-section { padding: 2rem 1rem; }
  .audit-behind { padding: 2rem 1rem; }
  .audit-behind-photo-wrapper { max-width: 280px; }
  .audit-behind-badge img { width: 60px; height: 60px; }
  .audit-behind-content h2 { font-size: 1.3rem; }
  .audit-behind-milestones { gap: 0.6rem; }
  .audit-form { padding: 1rem; }
  .audit-form-success { padding: 2rem 1rem; }
  .audit-form-success h3 { font-size: 1rem; }
}

/* --- POST: SHARE BAR --- */
@media (max-width: 768px) {
  .post-share-bar { flex-direction: column; align-items: flex-start; gap: 0.8rem; padding: 0 1.2rem; }
  .post-share-btn { padding: 0.4rem 0.8rem; }
  .post-share-buttons { flex-wrap: wrap; gap: 0.4rem; }
}

/* --- POST: AUTHOR BOX --- */
@media (max-width: 768px) {
  .post-author-box { padding: 0 1.2rem; }
  .post-author-box-inner { padding: 1.5rem; gap: 1.2rem; flex-direction: column; align-items: center; text-align: center; }
  .post-author-box-avatar { width: 60px; height: 60px; }
  .post-author-box-name { font-size: 1rem; }
  .post-author-box-links { justify-content: center; }
}
@media (max-width: 480px) {
  .post-author-box { padding: 0 0.8rem; }
  .post-author-box-inner { padding: 1rem; }
  .post-author-box-avatar { width: 50px; height: 50px; }
  .post-author-box-bio { font-size: 0.8rem; }
}

/* --- POST: NEWSLETTER CTA --- */
@media (max-width: 768px) {
  .post-newsletter { padding: 0 1.2rem; }
  .post-newsletter-inner { padding: 2.5rem 1.5rem; }
  .post-newsletter-inner h3 { font-size: 1.2rem; }
}
@media (max-width: 480px) {
  .post-newsletter { padding: 0 0.8rem; }
  .post-newsletter-inner { padding: 2rem 1rem; }
  .post-newsletter-inner h3 { font-size: 1.1rem; }
  .post-newsletter-inner p { font-size: 0.85rem; }
  .post-newsletter-inner .cta-button { width: 100%; text-align: center; }
}

/* --- POST: ARTICLE BODY --- */
@media (max-width: 768px) {
  .post-article-tags { padding: 1rem 1.2rem 0; }
  .post-article-title { font-size: 1.8rem !important; }
  .post-article-meta { flex-wrap: wrap; gap: 0.8rem; }
  .post-meta-divider { display: none; }
  .post-page .wp-block-post-featured-image { padding: 0; }
  .post-article-body h2 { font-size: 1.4rem; }
  .post-article-body h3 { font-size: 1.1rem; }
}
@media (max-width: 480px) {
  .post-article-title { font-size: 1.5rem !important; }
  .post-article-meta { gap: 0.6rem; }
  .post-author-avatar { width: 36px; height: 36px; }
  .post-author-name { font-size: 0.85rem; }
  .post-meta-item { font-size: 0.75rem; }
  .post-article-body h2 { font-size: 1.2rem; }
  .post-article-body h3 { font-size: 1rem; }
  .post-article-body p,
  .post-article-body li { font-size: 0.95rem; }
}

/* --- FOOTER --- */
@media (max-width: 480px) {
  .st-footer { padding: 2rem 1rem; font-size: 0.8rem; }
  .footer-links { gap: 1rem; flex-wrap: wrap; }
}

/* --- PAIN SCROLL --- */
@media (max-width: 480px) {
  .pain-scroll { font-size: 0.8rem; gap: 1.5rem; }
}


/* ========== RESPONSIVE ADDITIONS (2026-03-14) ========== */

/* 1. Prevent horizontal overflow globally */
html { overflow-x: hidden; }
body { overflow-x: hidden; }

/* 2. iOS Safari: inputs with font-size < 16px trigger auto-zoom — prevent it */
@media (max-width: 768px) {
  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="url"],
  .form-group select,
  .form-group textarea,
  .social-platform-select,
  .social-url-input,
  .blog-search-input,
  .newsletter-input {
    font-size: 1rem;
  }
}

/* 3. Kurzus hero content padding — missing mobile override */
@media (max-width: 768px) {
  .kurzus-hero-content { padding: 2.5rem 1.5rem; }
}
@media (max-width: 480px) {
  .kurzus-hero-content { padding: 2rem 1rem; }
}

/* 4. Services + Problems: 2-column intermediate at tablet before going 1-column */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid     { grid-template-columns: repeat(2, 1fr); }
  .cta-options   { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .problems-grid { grid-template-columns: 1fr; }
  .blog-grid     { grid-template-columns: 1fr; }
  .cta-options   { grid-template-columns: 1fr; }
}

/* 5. cert-grid 2-col at tablet */
@media (max-width: 640px) {
  .cert-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 380px) {
  .cert-grid { grid-template-columns: 1fr; }
}

/* 6. About/Hero badge — mobile reposition */
@media (max-width: 640px) {
  .about-badge { right: 50%; bottom: -3rem; transform: translateX(50%); }
  .svc-hero-badge { right: 0; }
  .audit-behind-badge { right: 0; }
}

/* 7. Fomo CTA padding on mobile */
@media (max-width: 768px) {
  .fomo-cta { padding: 3rem 1.2rem; }
}
@media (max-width: 480px) {
  .fomo-cta { padding: 2.5rem 1rem; }
  .fomo-cta h2 { font-size: 1.6rem; }
}


/* ========== SINGLE POST: mobile padding (2026-03-14) ========== */
/* Az FSE constrained layout nem ad vízszintes paddinget mobilon */
@media (max-width: 768px) {
  .post-page {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .post-share-bar,
  .post-author-box,
  .post-newsletter {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 480px) {
  .post-page {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}


/* ========== RESPONSIVE AUDIT FIX (2026-03-18) ========== */

/* --- Touch targets: minimum 44px (WCAG 2.1 AA) --- */
@media (max-width: 768px) {
  .theme-toggle {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .blog-search-clear {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .social-link {
    width: 44px;
    height: 44px;
  }
  .post-share-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .category-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

/* --- Font-size reductions at 768px --- */
@media (max-width: 768px) {
  .final-cta h2 { font-size: 1.8rem; }
  .course-content h2 { font-size: 1.8rem; }
  .about-content h2 { font-size: 2rem; }
}

/* --- Font-size reductions at 480px --- */
@media (max-width: 480px) {
  .final-cta h2 { font-size: 1.5rem; }
  .course-content h2 { font-size: 1.5rem; }
  .about-content h2 { font-size: 1.6rem; }
  .audit-hero-content h1 { font-size: 1.7rem; }
}

/* --- Szolgaltatasok (svc-) 480px breakpoint --- */
@media (max-width: 480px) {
  .svc-hero h1 { font-size: 1.7rem; }
  .svc-hero { padding-top: 4rem; }
  .svc-pyramid { padding: 2rem 1rem 3rem; }
  .svc-detail-section { padding: 1rem 1rem 3rem; }
  .svc-video { padding: 2rem 1rem 3rem; }
  .svc-help { padding: 3rem 1rem; }
  .svc-detail-info { padding: 1.5rem 1rem; }
  .svc-detail-info h3 { font-size: 1.1rem; }
  .svc-pyramid-tier { padding: 0.8rem 1rem; }
  .svc-help-card { padding: 1.5rem 1rem; }
}


/* ========== COURSE BADGES ROW (2026-03-18) ========== */
.course-badges-row {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 5;
}
.course-badge-item {
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.35));
}
.course-badge-item img {
  width: 100px;
  height: 100px;
  max-width: none;
  object-fit: contain;
  animation: badgeFloat 4s ease-in-out infinite;
}
.course-badge-item:nth-child(2) img {
  animation-delay: 0.5s;
}
.course-badge-item:nth-child(3) img {
  animation-delay: 1s;
}

@media (max-width: 1024px) {
  .course-badge-item img {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 768px) {
  .course-badges-row {
    gap: 0.6rem;
  }
  .course-badge-item img {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 480px) {
  .course-badges-row {
    gap: 0.5rem;
    bottom: 0.5rem;
  }
  .course-badge-item img {
    width: 80px;
    height: 80px;
  }
}


/* ========== ROLAM BADGES (2026-03-18) ========== */
.about-hero-image-wrapper {
  position: relative;
  overflow: visible;
}
.about-hero-image-wrapper .about-badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 5;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.35));
}
.about-hero-image-wrapper .about-badge img {
  width: 100px;
  height: 100px;
  max-width: none;
  object-fit: contain;
  animation: badgeFloat 4s ease-in-out infinite;
}
.values-image-wrapper {
  position: relative;
  overflow: visible;
}
.values-image-wrapper .course-badges-row {
  bottom: 1rem;
}

@media (max-width: 1024px) {
  .about-hero-image-wrapper .about-badge img {
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 768px) {
  .about-hero-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }
  .about-hero-image-wrapper .about-badge img {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 480px) {
  .about-hero-image-wrapper {
    max-width: 280px;
  }
  .about-hero-image-wrapper .about-badge img {
    width: 55px;
    height: 55px;
  }
}


/* ========== BADGES: grayscale in dark mode (2026-03-18) ========== */
[data-theme="dark"] .about-badge img,
[data-theme="dark"] .course-badge-item img,
[data-theme="dark"] .hero-badge-diagonal img,
[data-theme="dark"] .svc-hero-badge img,
[data-theme="dark"] .audit-behind-badge img {
  filter: grayscale(100%) brightness(0.9);
  transition: filter 0.4s;
}
[data-theme="dark"] .about-badge img:hover,
[data-theme="dark"] .course-badge-item img:hover {
  filter: grayscale(0%) brightness(1);
}

/* ========== EBOOK LANDING PAGE (2026-03-19) ========== */

/* --- Hero --- */
.ebook-hero {
  min-height: 85vh; display: flex; align-items: center;
  padding: 4rem 2rem;
  position: relative; overflow: hidden;
}
.ebook-hero-canvas {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none; opacity: 0.6;
}
.ebook-hero-inner {
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  position: relative; z-index: 1;
}
.ebook-hero-content h1 { font-size: 3rem; line-height: 1.1; margin-bottom: 1rem; }
.ebook-hero-content h1 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic; font-weight: 400; color: var(--gold);
}
.ebook-hero-subtitle {
  font-size: 1.05rem; color: var(--text-muted); line-height: 1.7;
  margin-bottom: 2rem; max-width: 480px;
}
.ebook-hero-ctas { display: flex; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.ebook-hero-meta { display: flex; gap: 2rem; margin-top: 1.5rem; flex-wrap: wrap; }
.ebook-hero-meta-item {
  font-size: 0.85rem; color: var(--text-muted);
  display: flex; align-items: center; gap: 0.5rem;
}
.ebook-hero-meta-item strong { color: var(--text); }
.ebook-hero-visual {
  position: relative; display: flex; justify-content: center; align-items: center;
  padding: 8px 0 0 0;
}

/* --- Ebook Mockup --- */
.ebook-mockup {
  width: 320px; min-height: 420px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 4px; box-shadow: 12px 12px 40px rgba(0,0,0,0.15);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 2.5rem 2rem; text-align: center;
  transform: perspective(800px) rotateY(-5deg);
  transition: transform 0.4s;
}
.ebook-mockup:hover { transform: perspective(800px) rotateY(0deg); }
.ebook-mockup-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
}
.ebook-mockup-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem; font-weight: 700; line-height: 1.25;
  color: var(--text); margin-bottom: 0.5rem;
}
.ebook-mockup-sub {
  font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.2rem; line-height: 1.5;
}
.ebook-mockup-divider {
  width: 40px; height: 2px; background: var(--gold); margin-bottom: 1.2rem;
}
.ebook-mockup-author {
  font-family: 'Bodoni Moda', serif; font-size: 1rem;
  color: var(--text); font-weight: 400; margin-bottom: 0.8rem;
}
.ebook-mockup-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.55rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold);
  padding: 0.3rem 0.8rem; border-radius: 3px; margin-top: auto;
}
.ebook-mockup-shadow {
  position: absolute; right: -8px; top: 8px;
  width: 320px; min-height: 420px; height: 100%;
  background: var(--gold-soft); border-radius: 4px; z-index: -1;
}

/* --- Section description --- */
.ebook-section-desc {
  color: var(--text-muted); max-width: 650px; margin-top: 0.5rem;
}

/* --- Surface section (alternating bg) --- */
.ebook-surface-section {
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* --- Pain Grid --- */
.ebook-pain-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem;
}
.ebook-pain-card {
  background: var(--card); border: 1px solid var(--border);
  border-left: 3px solid var(--red); padding: 1.5rem 1.8rem; border-radius: 0 8px 8px 0;
}
.ebook-pain-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.ebook-pain-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* --- Content Grid --- */
.ebook-content-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem;
}
.ebook-content-card {
  background: var(--card); border: 1px solid var(--border);
  padding: 1.8rem; border-radius: 8px; transition: all 0.3s;
}
.ebook-content-card:hover { border-color: var(--gold); }
.ebook-card-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700; color: var(--gold); margin-bottom: 0.3rem;
}
.ebook-content-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.ebook-content-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* --- Workflow Grid --- */
.ebook-workflow-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem;
}
.ebook-workflow-card {
  background: #12121e; color: white; border-radius: 8px;
  padding: 1.8rem; transition: transform 0.3s;
  border: 1px solid transparent;
}
[data-theme="dark"] .ebook-workflow-card {
  background: #0f0f15; border-color: #252530;
}
.ebook-workflow-card:hover { transform: translateY(-3px); }
.ebook-wf-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.8rem;
}
.ebook-workflow-card h3 { font-size: 1rem; color: white; margin-bottom: 0.6rem; }
.ebook-workflow-card p { font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.6; margin: 0; }
.ebook-wf-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem; color: var(--gold); margin-top: 0.8rem;
  display: inline-block;
}

/* --- Comparison --- */
.ebook-comparison-section {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 0;
  margin-top: 3rem; align-items: stretch;
}
.ebook-comparison-side { padding: 2rem; border-radius: 8px; }
.ebook-comparison-side.ebook-before {
  background: rgba(196,36,59,0.06); border: 1px solid rgba(196,36,59,0.2);
}
.ebook-comparison-side.ebook-after {
  background: rgba(46,204,113,0.06); border: 1px solid rgba(46,204,113,0.2);
}
[data-theme="dark"] .ebook-comparison-side.ebook-before {
  background: rgba(230,57,70,0.08); border-color: rgba(230,57,70,0.25);
}
[data-theme="dark"] .ebook-comparison-side.ebook-after {
  background: rgba(46,204,113,0.08); border-color: rgba(46,204,113,0.25);
}
.ebook-comparison-side h3 { font-size: 1rem; margin-bottom: 1rem; }
.ebook-comparison-side.ebook-before h3 { color: var(--red); }
.ebook-comparison-side.ebook-after h3 { color: #2ecc71; }
.ebook-comparison-side ul { list-style: none; padding: 0; margin: 0; }
.ebook-comparison-side li {
  font-size: 0.88rem; color: var(--text-muted); padding: 0.5rem 0;
  border-bottom: 1px solid var(--border); line-height: 1.5;
}
.ebook-comparison-side li:last-child { border-bottom: none; }
.ebook-comparison-divider {
  display: flex; align-items: center; justify-content: center;
  padding: 0 1.5rem; font-size: 2rem; color: var(--gold);
}
.ebook-comparison-cta { text-align: center; margin-top: 2.5rem; }

/* --- Stats Bar --- */
.ebook-stats-section { padding: 0 2rem; }
.ebook-stats-bar {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  margin: 3rem 0; padding: 2.5rem 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.ebook-stat-item { text-align: center; }
.ebook-stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem; font-weight: 700; color: var(--gold); display: block;
}
.ebook-stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.3rem; }

/* --- For Who --- */
.ebook-for-who-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem;
}
.ebook-for-who-card {
  background: var(--card); border: 1px solid var(--border);
  border-left: 3px solid var(--gold); padding: 1.8rem; border-radius: 0 8px 8px 0;
}
.ebook-for-who-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.ebook-for-who-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* --- Author --- */
.ebook-author-section {
  display: flex; gap: 3rem; align-items: center; margin-top: 2.5rem;
}
.ebook-author-photo {
  width: 200px; height: 200px; border-radius: 50%; object-fit: cover;
  flex-shrink: 0; border: 2px solid var(--gold);
}
.ebook-author-info h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.ebook-author-info p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 0.5rem; }
.ebook-author-milestones {
  display: flex; gap: 2rem; margin-top: 1rem; flex-wrap: wrap;
}
.ebook-milestone { text-align: center; }
.ebook-milestone-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem; font-weight: 700; color: var(--gold);
}
.ebook-milestone-number.ebook-milestone-text {
  font-size: 1rem; font-style: normal;
}
.ebook-milestone-label { font-size: 0.72rem; color: var(--text-muted); }

/* --- Download Box --- */
.ebook-download-section {
  background: var(--surface); padding: 5rem 2rem;
  border-top: 1px solid var(--border);
}
.ebook-download-box {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 280px 1fr; gap: 3rem;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 3rem; align-items: center;
}
.ebook-download-box-visual {
  display: flex; justify-content: center; align-items: center;
}
.ebook-download-mini {
  width: 220px; min-height: 280px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 4px; box-shadow: 8px 8px 24px rgba(0,0,0,0.1);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 1.5rem 1.2rem; text-align: center;
}
.ebook-download-mini .ebook-mockup-label { font-size: 0.5rem; margin-bottom: 1rem; }
.ebook-download-mini .ebook-mockup-title { font-size: 1.1rem; margin-bottom: 0.4rem; }
.ebook-download-mini .ebook-mockup-sub { font-size: 0.7rem; line-height: 1.4; margin-bottom: 1rem; }
.ebook-download-mini .ebook-mockup-divider { width: 30px; margin-bottom: 1rem; }
.ebook-download-mini .ebook-mockup-author { font-size: 0.85rem; }

.ebook-download-box-form h2 { font-size: 1.6rem; margin-bottom: 0.5rem; line-height: 1.25; }
.ebook-download-box-form > p {
  color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.5rem; line-height: 1.6;
}

/* --- Form --- */
.ebook-form-group { margin-bottom: 1rem; }
.ebook-form-group label {
  display: block; font-size: 0.82rem; font-weight: 500;
  margin-bottom: 0.3rem; color: var(--text);
}
.ebook-form-group input[type="text"],
.ebook-form-group input[type="email"] {
  width: 100%; padding: 0.7rem 1rem; border: 1px solid var(--border);
  border-radius: 4px; font-family: 'Inter', sans-serif; font-size: 0.9rem;
  background: var(--bg); color: var(--text); transition: border-color 0.3s;
}
.ebook-form-group input:focus { outline: none; border-color: var(--gold); }
.ebook-form-gdpr {
  display: flex; align-items: flex-start; gap: 0.6rem;
  margin: 1.2rem 0; font-size: 0.75rem; color: var(--text-muted); line-height: 1.5;
}
.ebook-form-gdpr input[type="checkbox"] {
  margin-top: 0.15rem; flex-shrink: 0; accent-color: var(--gold);
  width: 16px; height: 16px;
}
.ebook-form-gdpr a { color: var(--gold); text-decoration: underline; }
.ebook-form-submit {
  width: 100%; padding: 0.85rem; background: var(--gold); color: white;
  border: none; border-radius: 4px; font-family: 'Inter', sans-serif;
  font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: all 0.3s;
}
.ebook-form-submit:hover { opacity: 0.9; transform: translateY(-1px); }
.ebook-form-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.ebook-form-note {
  font-size: 0.7rem; color: var(--text-muted); margin-top: 0.8rem; line-height: 1.4;
}

/* --- Success message --- */
.ebook-form-success {
  max-width: 600px; margin: 0 auto; text-align: center; padding: 3rem 2rem;
}
.ebook-form-success .success-icon { margin-bottom: 1.5rem; }
.ebook-form-success h3 {
  font-size: 1.5rem; margin-bottom: 1rem; color: var(--text);
}
.ebook-form-success p {
  color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 2rem;
}

/* --- How It Works --- */
.ebook-how-it-works { text-align: center; padding: 4rem 2rem 2rem; }
.ebook-how-it-works h2 { max-width: 600px; margin: 0 auto; }
.ebook-how-steps {
  display: flex; justify-content: center; align-items: center;
  gap: 0; margin-top: 2.5rem; flex-wrap: wrap;
}
.ebook-how-step {
  display: flex; flex-direction: column; align-items: center; padding: 1rem 1.5rem;
}
.ebook-how-step-icon {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 0.8rem;
  border: 2px solid var(--border); background: var(--card);
  transition: all 0.3s;
}
.ebook-how-step:hover .ebook-how-step-icon {
  border-color: var(--gold); transform: scale(1.1);
}
.ebook-how-step-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 0.2rem;
}
.ebook-how-step-desc {
  font-size: 0.75rem; color: var(--text-muted); max-width: 130px;
}
.ebook-how-arrow {
  font-size: 1.5rem; color: var(--gold); padding: 0 0.3rem;
  margin-top: -1.5rem;
}

/* ========== EBOOK RESPONSIVE ========== */
@media (max-width: 1024px) {
  .ebook-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .ebook-hero-subtitle { max-width: 100%; margin-left: auto; margin-right: auto; }
  .ebook-hero-ctas { justify-content: center; }
  .ebook-hero-meta { justify-content: center; }
  .ebook-hero-visual { order: -1; }
  .ebook-mockup { width: 260px; min-height: auto; transform: none; padding: 2rem 1.5rem; }
  .ebook-mockup:hover { transform: none; }
  .ebook-mockup-title { font-size: 1.2rem; }
  .ebook-mockup-sub { font-size: 0.78rem; }
  .ebook-mockup-shadow { width: 260px; height: 100%; min-height: auto; }
  .ebook-download-box { grid-template-columns: 220px 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .ebook-hero { min-height: auto; padding: 2rem 1.2rem; }
  .ebook-hero-content h1 { font-size: 2rem; }
  .ebook-pain-grid,
  .ebook-content-grid,
  .ebook-workflow-grid { grid-template-columns: 1fr; }
  .ebook-for-who-grid { grid-template-columns: 1fr; }
  .ebook-stats-bar { grid-template-columns: 1fr 1fr; }
  .ebook-author-section { flex-direction: column; text-align: center; }
  .ebook-author-photo { width: 140px; height: 140px; }
  .ebook-author-milestones { justify-content: center; }
  .ebook-how-arrow { display: none; }
  .ebook-how-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .ebook-comparison-section { grid-template-columns: 1fr; gap: 1rem; }
  .ebook-comparison-divider { transform: rotate(90deg); padding: 0; }
  .ebook-download-box { grid-template-columns: 1fr; gap: 2rem; padding: 1.5rem; text-align: center; }
  .ebook-download-box-visual { justify-content: center; }
  .ebook-download-mini { width: 180px; min-height: auto; padding: 1.2rem 1rem; }
  .ebook-download-mini .ebook-mockup-title { font-size: 0.95rem; }
  .ebook-download-mini .ebook-mockup-sub { font-size: 0.65rem; margin-bottom: 0.7rem; }
  .ebook-download-mini .ebook-mockup-label { font-size: 0.45rem; margin-bottom: 0.7rem; }
  .ebook-download-box-form h2 { font-size: 1.3rem; }
  .ebook-download-box-form { text-align: left; }
  .ebook-mockup { width: 220px; min-height: auto; padding: 1.8rem 1.2rem; }
  .ebook-mockup-title { font-size: 1.05rem; }
  .ebook-mockup-sub { font-size: 0.72rem; margin-bottom: 0.8rem; }
  .ebook-mockup-label { font-size: 0.5rem; margin-bottom: 0.8rem; }
  .ebook-mockup-divider { margin-bottom: 0.8rem; }
  .ebook-mockup-author { font-size: 0.85rem; }
  .ebook-mockup-shadow { width: 220px; }
}

@media (max-width: 480px) {
  .ebook-hero-content h1 { font-size: 1.6rem; }
  .ebook-hero-subtitle { font-size: 0.9rem; }
  .ebook-hero-meta { gap: 1rem; }
  .ebook-hero-meta-item { font-size: 0.78rem; }
  .ebook-mockup { width: 190px; padding: 1.5rem 1rem; }
  .ebook-mockup-title { font-size: 0.95rem; }
  .ebook-mockup-sub { font-size: 0.65rem; }
  .ebook-mockup-badge { font-size: 0.45rem; padding: 0.2rem 0.6rem; }
  .ebook-mockup-shadow { width: 190px; }
  .ebook-how-steps { grid-template-columns: 1fr 1fr; }
  .ebook-how-step { padding: 0.5rem; }
  .ebook-how-step-icon { width: 50px; height: 50px; }
  .ebook-how-step-icon svg { width: 22px; height: 22px; }
  .ebook-stats-bar { gap: 0.8rem; }
  .ebook-stat-number { font-size: 1.6rem; }
  .ebook-download-box { padding: 1.2rem; }
  .ebook-download-mini { width: 160px; }
  .ebook-download-mini .ebook-mockup-title { font-size: 0.85rem; }
  .ebook-form-submit { font-size: 0.85rem; }
  .ebook-pain-card h3, .ebook-content-card h3, .ebook-workflow-card h3, .ebook-for-who-card h3 { font-size: 0.95rem; }
  .ebook-pain-card p, .ebook-content-card p, .ebook-workflow-card p, .ebook-for-who-card p { font-size: 0.82rem; }
}


/* ========== TUTOR LMS: ingyenes lecke badge (2026-03-19) ========== */
.tutor-course-content-list-item-status.tutor-icon-eye-line {
  position: relative;
  color: var(--gold) !important;
}
.tutor-course-content-list-item-status.tutor-icon-eye-line::after {
  content: 'INGYENES';
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  margin-left: 0.5rem;
  white-space: nowrap;
  vertical-align: middle;
}
@media (max-width: 480px) {
  .tutor-course-content-list-item-status.tutor-icon-eye-line::after {
    font-size: 0.45rem;
    padding: 0.1rem 0.35rem;
    margin-left: 0.3rem;
  }
}


/* ========== KURZUS: dinamikus leckelista badge (2026-03-19) ========== */
.lesson-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lesson-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.lesson-free-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  white-space: nowrap;
}
.lesson-item.lesson-preview .lesson-title {
  color: var(--gold);
}
@media (max-width: 480px) {
  .lesson-free-badge {
    font-size: 0.45rem;
    padding: 0.1rem 0.35rem;
  }
}


/* ========== TUTOR LMS: "Összes jelentkező" elrejtése (2026-03-19) ========== */
/* VISSZAKAPCSOLÁS: töröld vagy kommenteld ki ezt a blokkot ha már van elég eladás */
.tutor-card-footer li:has(.tutor-icon-mortarboard) {
  display: none !important;
}


/* ========== TUTOR LMS: Ft ar megjelenitese (2026-03-19) ========== */
.tutor-huf-price {
  margin-top: 0.4rem;
}
.tutor-huf-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
}
.tutor-huf-note {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 0.25rem;
  opacity: 0.7;
}

/* ========== TUTOR LMS: dark mode (2026-03-19) ========== */
/* Tutor CSS valtozok felulirasa dark modban */
[data-theme="dark"] :root,
[data-theme="dark"] body,
[data-theme="dark"] {
  --tutor-body-color: #f0f0f0;
  --tutor-body-color-rgb: 240, 240, 240;
  --tutor-color-white: var(--card);
  --tutor-color-secondary: #c0c0cc;
  --tutor-color-subdued: #b8b8c8;
  --tutor-color-hints: #b0b0c0;
  --tutor-color-muted: #a8a8bb;
  --tutor-color-gray: #252530;
  --tutor-color-gray-10: #1a1a24;
  --tutor-border-color: #252530;
  --tutor-color-primary: #c8a45e;
  --tutor-color-primary-hover: #d4b06a;
  --tutor-color-primary-rgb: 200, 164, 94;
}
/* Hardkodolt szinek felulirasa */
[data-theme="dark"] .tutor-color-secondary { color: #c0c0cc !important; }
[data-theme="dark"] .tutor-color-subdued { color: #b8b8c8 !important; }
[data-theme="dark"] .tutor-color-muted { color: #a8a8bb !important; }
[data-theme="dark"] .tutor-color-hints { color: #b0b0c0 !important; }
[data-theme="dark"] .tutor-bg-white { background-color: var(--card) !important; }
[data-theme="dark"] .tutor-bg-gray-20 { background-color: #252530 !important; }
[data-theme="dark"] .tutor-bg-gray-10 { background-color: #1a1a24 !important; }
/* Tutor card + sidebar */
[data-theme="dark"] .tutor-card,
[data-theme="dark"] .tutor-sidebar-card {
  background-color: var(--card) !important;
  border-color: var(--border) !important;
}
[data-theme="dark"] .tutor-card-footer {
  border-color: var(--border) !important;
}
/* Form */
[data-theme="dark"] .tutor-form-control,
[data-theme="dark"] .tutor-form-select {
  background-color: var(--surface) !important;
  border-color: var(--border) !important;
  color: var(--text);
}
/* Modal */
[data-theme="dark"] .tutor-modal-content {
  background-color: var(--card) !important;
}
/* Primary button */
[data-theme="dark"] .tutor-btn-primary {
  background-color: var(--gold) !important;
  border-color: var(--gold) !important;
  color: white !important;
}
[data-theme="dark"] .tutor-btn-outline-primary {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}
/* Accordion (leckelista) */
[data-theme="dark"] .tutor-course-content-list-item {
  border-color: var(--border) !important;
}

/* Early Bird pricing */
.early-bird-label {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 0.3rem;
}
.original-price {
  color: var(--text-muted);
  font-size: 0.7em;
  text-decoration: line-through;
  margin-right: 0.25rem;
  font-weight: 400;
}

/* === Tutor LMS Course Archive === */

/* 1:1 course thumbnail ratio */
/* 1:1 ratio handled by tutor-ratio-1x1 class in Tutor LMS CSS */

/* Category description block */
.st-category-description {
  background: var(--surface);
  border-left: 3px solid var(--gold);
  margin-bottom: 2rem;
}
.st-category-description-inner {
  padding: 1.2rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 800px;
}
.st-category-description-inner p {
  margin: 0;
}

/* Hide author line in course cards */
.tutor-card .tutor-meta.tutor-mt-auto > div:first-child {
  display: none;
}

/* Course card excerpt */
.tutor-course-excerpt {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0.5rem 0 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Filter bar: category name + sort dropdown */
.st-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.st-filter-bar-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  color: var(--text);
  line-height: 1.2;
}
.st-filter-bar .tutor-form-select {
  min-width: 220px;
}

/* Free course price label */
.st-price-free {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}

/* Nav sub items (after Kurzus) */
.nav-sub-item a {
  font-size: 0.82rem !important;
  color: var(--text-muted) !important;
  opacity: 0.85;
}
.nav-sub-item a:hover {
  color: var(--gold) !important;
  opacity: 1;
}

/* === Course archive dark mode (override forced-light) === */
[data-theme="dark"] .tutor-wrap-parent.course-archive-page,
[data-theme="dark"] .course-archive-page {
  background-color: var(--bg) !important;
  color: var(--text);
}

[data-theme="dark"] .course-archive-page .tutor-card,
[data-theme="dark"] .course-archive-page .tutor-course-card {
  background: var(--card) !important;
  border-color: var(--border) !important;
  color: var(--text);
}

[data-theme="dark"] .course-archive-page .tutor-card-body,
[data-theme="dark"] .course-archive-page .tutor-card-footer,
[data-theme="dark"] .course-archive-page .tutor-course-list,
[data-theme="dark"] .course-archive-page .tutor-row,
[data-theme="dark"] .course-archive-page .tutor-col-12 {
  background: transparent !important;
  color: var(--text);
}

[data-theme="dark"] .course-archive-page .tutor-course-name a,
[data-theme="dark"] .course-archive-page .tutor-course-name {
  color: var(--text);
}

[data-theme="dark"] .course-archive-page .tutor-meta-value,
[data-theme="dark"] .course-archive-page .tutor-meta-icon,
[data-theme="dark"] .course-archive-page .tutor-course-excerpt,
[data-theme="dark"] .course-archive-page .tutor-ratings-average,
[data-theme="dark"] .course-archive-page .tutor-ratings-count {
  color: var(--text-muted) !important;
}

[data-theme="dark"] .course-archive-page .tutor-color-black,
[data-theme="dark"] .course-archive-page .price {
  color: var(--text);
}

[data-theme="dark"] .course-archive-page .tutor-btn-outline-primary {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
  background: transparent !important;
}

[data-theme="dark"] .course-archive-page .tutor-form-select,
[data-theme="dark"] .course-archive-page .tutor-form-control {
  background: var(--card) !important;
  color: var(--text);
  border-color: var(--border) !important;
}

[data-theme="dark"] .course-archive-page .st-filter-bar-title {
  color: var(--text);
}

[data-theme="dark"] .st-category-description {
  background: var(--surface) !important;
}

[data-theme="dark"] .st-category-description-inner {
  color: var(--text-muted) !important;
}

[data-theme="dark"] .course-archive-page .tutor-ratings .tutor-icon-star-line,
[data-theme="dark"] .course-archive-page .tutor-ratings .tutor-icon-star-bold {
  color: var(--gold) !important;
}

/* === Pricing card extra elements === */
.pricing-guarantee {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0.8rem 0 0 0;
}

.pricing-free-trial {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.pricing-free-trial p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.pricing-free-trial strong {
  color: var(--text);
}

.pricing-tools-note {
  margin-top: 1.2rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

/* ========== TUTOR LMS CHECKOUT - COLOR FIX ========== */
/* A checkout doboz saját fehér hátteret használ, ezért mindkét módban sötét szöveg kell */
.tutor-checkout .tutor-color-black,
[data-theme="dark"] .tutor-checkout .tutor-color-black,
.tutor-checkout-detail-item .tutor-color-black,
[data-theme="dark"] .tutor-checkout-detail-item .tutor-color-black {
  color: #12121e !important;
}

:root .tutor-form-control,
body .tutor-form-control,
.tutor-form-control {
  color: #12121e !important;
  background-color: #fff !important;
}

[data-theme="dark"] .tutor-form-control {
  color: #f0f0f0 !important;
  background-color: #14141c !important;
  border-color: #252530 !important;
}

.tutor-form-control::placeholder {
  color: #6e6878 !important;
  opacity: 1 !important;
}

[data-theme="dark"] .tutor-form-control::placeholder {
  color: #7a7a90 !important;
}

/* =============================================
   EBOOK INLINE WIDGET (blog posts)
   ============================================= */

.ebook-inline-widget {
  margin: 2.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface, #f8f6f0);
  border: 1px solid rgba(0,0,0,0.08);
}

[data-theme="dark"] .ebook-inline-widget {
  background: #1a1a2e;
  border-color: rgba(255,255,255,0.08);
}

.ebook-widget-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.ebook-widget-text {
  padding: 2rem 2rem 2rem 2.5rem;
  border-right: 1px solid rgba(0,0,0,0.08);
}

[data-theme="dark"] .ebook-widget-text {
  border-right-color: rgba(255,255,255,0.08);
}

.ebook-widget-label {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.ebook-widget-text h3 {
  font-family: var(--font-display, 'Bodoni Moda', serif);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.ebook-widget-text p {
  font-size: 0.9rem;
  color: var(--text-muted, #6e6878);
  margin: 0;
  line-height: 1.6;
}

[data-theme="dark"] .ebook-widget-text p {
  color: #a0a0b8;
}

.ebook-widget-form-wrap {
  padding: 2rem 2.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.ebook-widget-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ebook-widget-form input[type="text"],
.ebook-widget-form input[type="email"] {
  width: 100%;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 6px;
  font-family: var(--font-body, 'Space Grotesk', sans-serif);
  font-size: 0.875rem;
  background: var(--bg, #fff);
  color: var(--text);
  box-sizing: border-box;
  transition: border-color 0.2s;
}

[data-theme="dark"] .ebook-widget-form input[type="text"],
[data-theme="dark"] .ebook-widget-form input[type="email"] {
  background: #12121e;
  border-color: rgba(255,255,255,0.12);
  color: #e8e8f0;
}

.ebook-widget-form input[type="text"]:focus,
.ebook-widget-form input[type="email"]:focus {
  outline: none;
  border-color: var(--gold);
}

.ebook-widget-gdpr {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted, #6e6878);
  line-height: 1.4;
  cursor: pointer;
}

[data-theme="dark"] .ebook-widget-gdpr {
  color: #a0a0b8;
}

.ebook-widget-gdpr input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--gold);
}

.ebook-widget-gdpr a {
  color: var(--gold);
  text-decoration: underline;
}

.ebook-widget-submit {
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0.7rem 1.25rem;
  font-family: var(--font-body, 'Space Grotesk', sans-serif);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
  text-align: center;
}

.ebook-widget-submit:hover {
  opacity: 0.85;
}

.ebook-widget-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.ebook-widget-success {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
  color: var(--text);
}

.ebook-widget-success strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--gold);
}

@media (max-width: 640px) {
  .ebook-widget-inner {
    grid-template-columns: 1fr;
  }
  .ebook-widget-text {
    padding: 1.5rem 1.5rem 1rem;
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }
  [data-theme="dark"] .ebook-widget-text {
    border-bottom-color: rgba(255,255,255,0.08);
  }
  .ebook-widget-form-wrap {
    padding: 1rem 1.5rem 1.5rem;
  }
}


/* ========== BLOG FEATURED IMAGES: grayscale in dark mode (2026-04-02) ========== */
[data-theme="dark"] .featured-image,
[data-theme="dark"] .post-card-image:not(.switchable-img) {
  filter: grayscale(100%) brightness(0.85);
  transition: filter 0.4s;
}
