/* ==========================================================================
   La Máquina Studio — Custom CSS
   Everything that can't be expressed via theme.json goes here:
   animations, gradients, complex layouts, hover effects, etc.
   ========================================================================== */

/* ===== CSS VARIABLES ===== */
:root {
  --black: #0a0a0f;
  --dark: #0c0c12;
  --card: #111118;
  --pink: #d81b60;
  --gold: #fff000;
  --white: #ffffff;
  --muted: #8b8b9e;
  --light: #c8c8d8;
  --purple: #7c3aed;
  --gradient-pink: linear-gradient(135deg, #d81b60, #e84d8a);
  --gradient-gold: linear-gradient(135deg, #fff000, #ffe74d);
}

/* ===== RESET ADDITIONS ===== */
*, *::before, *::after { box-sizing: border-box; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* Body offset for fixed nav */
body { padding-top: 60px; background: var(--black); color: #fff; }

/* Gradient shows through hero — no z-index stacking needed, body bg handles it */

/* ===== CONTAINER ===== */
.lm-container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.lm-narrow { max-width: 800px; margin: 0 auto; }

/* ===== HIGHLIGHT MARKS ===== */
.hi-pink { background: linear-gradient(180deg, transparent 45%, var(--pink) 45%); padding: 0 0.15em; }
.hi-gold { background: linear-gradient(180deg, transparent 45%, var(--gold) 45%); padding: 0 0.15em; color: var(--black); }

/* Light-page text gradient variant (used on curso/kit detail pages) */
.lm-light-page .hi-pink {
  background: var(--gradient-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lm-light-page .hi-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== ANIMATED GRADIENT BACKGROUND (HOMEPAGE) ===== */
.gradient-bg {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(216,27,96,0.30), transparent),
    radial-gradient(ellipse 70% 50% at 90% 40%, rgba(124,58,237,0.20), transparent),
    radial-gradient(ellipse 60% 40% at 5% 75%, rgba(255,240,0,0.10), transparent),
    radial-gradient(ellipse 50% 35% at 50% 100%, rgba(216,27,96,0.14), transparent);
}

/* ===== NAVIGATION ===== */
.lm-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(10,10,15,0.55);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s ease;
}
.lm-nav .inner { max-width: 1400px; margin: 0 auto; padding: 1rem 2rem; display: flex; align-items: center; justify-content: space-between; }
.lm-nav .logo { font-family: 'Inter', sans-serif; font-weight: 900; font-size: 1.2rem; text-transform: uppercase; color: var(--white); letter-spacing: 0.05em; display: flex; flex-direction: column; line-height: 1; gap: 0; text-decoration: none; }
.lm-nav .logo .logo-sub { font-size: 0.5rem; font-weight: 500; color: var(--muted); letter-spacing: 0.18em; text-transform: uppercase; margin-top: 2px; }
.lm-nav ul { list-style: none; display: flex; gap: 2rem; margin: 0; padding: 0; }
.lm-nav ul a { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); transition: color 0.3s; }
.lm-nav ul a:hover { color: var(--white); }
.lm-nav .cta-nav { background: var(--pink); color: #fff; padding: 0.6rem 1.4rem; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; transition: all 0.3s; }
.lm-nav .cta-nav:hover { background: #e84d8a; transform: translateY(-1px); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gradient-pink); color: #fff; padding: 1rem 2.5rem;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.08em; transition: all 0.3s;
  position: relative; overflow: hidden; border: none; cursor: pointer;
}
.btn-primary::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); transition: left 0.5s; }
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(216,27,96,0.35); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 2px solid rgba(255,255,255,0.12); color: var(--light); padding: 1rem 2.5rem;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.08em; transition: all 0.3s;
  background: transparent;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-pink {
  background: var(--pink); color: #fff; padding: 0.9rem 2rem;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.08em; transition: all 0.3s;
  display: inline-block; border: none; cursor: pointer;
}
.btn-pink:hover { background: #e84d8a; transform: translateY(-2px); }

.btn-gold {
  display: block; width: 100%; text-align: center;
  background: var(--gradient-gold); color: var(--black); padding: 1.1rem;
  font-family: 'Inter', sans-serif; font-weight: 800; font-size: 0.95rem;
  text-transform: uppercase; letter-spacing: 0.08em; transition: all 0.3s;
  border: none; cursor: pointer;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(255,240,0,0.2); }

.btn-about {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.8rem; font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  border: 1px solid rgba(255,240,0,0.3); color: var(--gold);
  background: transparent; border-radius: 999px; transition: all 0.3s;
}
.btn-about:hover { background: rgba(255,240,0,0.08); border-color: var(--gold); }

/* ===== TAGS / BADGES ===== */
.tag { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; }
.tag-pink { color: var(--pink); }
.tag-gold { color: var(--gold); }
.tag-purple { color: var(--purple); }
.mono { font-family: 'JetBrains Mono', monospace; }

.section-tag {
  display: inline-block; font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--pink); border: 1px solid rgba(216,27,96,0.2);
  padding: 0.4rem 1rem; margin-bottom: 1.5rem;
}

/* ===== HERO BADGE ===== */
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(216,27,96,0.12); border: 1px solid rgba(216,27,96,0.25);
  padding: 0.5rem 1rem; font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.15em; color: var(--pink);
  margin-bottom: 1.2rem;
}
.hero-badge .dot { width: 6px; height: 6px; background: var(--pink); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* Course hero badge variant */
.course-hero .hero-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem; color: var(--gold);
  border: 1px solid rgba(255,240,0,0.3);
  background: transparent;
}

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); margin-top: 0.5rem; }
.section-header p { color: var(--muted); font-size: 1.05rem; line-height: 1.7; max-width: 600px; margin: 1.5rem auto 0; }

/* ===== HERO SECTION (HOMEPAGE) ===== */
.lm-hero { min-height: 100vh; display: flex; align-items: center; padding-top: 4rem; position: relative; overflow: visible; }
.lm-hero .lm-container { display: grid; grid-template-columns: 1fr 1.4fr; gap: 2rem; align-items: center; }
.lm-hero h1 { font-size: clamp(2.2rem, 4vw, 3.6rem); margin-bottom: 1rem; }
.lm-hero p { font-size: 1.15rem; line-height: 1.75; color: var(--light); max-width: 540px; margin-bottom: 1.8rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== COURSE HERO (DETAIL PAGES) ===== */
.course-hero {
  padding: 8rem 0 4rem;
  background: var(--black);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.course-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(216,27,96,0.25), transparent),
    radial-gradient(ellipse 60% 40% at 90% 60%, rgba(124,58,237,0.15), transparent);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 1; }
.course-hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 1.5rem;
}
.course-hero h1 .line-small {
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 600; text-transform: none; color: var(--muted);
  display: block; margin-bottom: 0.5rem; letter-spacing: 0;
}
.hero-sub { font-size: 1.05rem; line-height: 1.7; color: var(--light); margin-bottom: 2rem; max-width: 520px; }
.hero-cta-group { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image { aspect-ratio: 1/1; border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,0.08); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

/* Hero meta badges */
.hero-meta {
  display: flex; gap: 2rem; margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-meta-item { text-align: left; }
.hero-meta-item .meta-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.4rem; font-weight: 700; color: var(--gold);
}
.hero-meta-item .meta-label { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.2rem; }

/* ===== SCROLLING MARQUEE ===== */
.marquee { overflow: hidden; padding: 0.8rem 0; background: var(--pink); white-space: nowrap; }
.marquee-inner {
  display: inline-flex; gap: 3rem; align-items: center;
  animation: marquee 30s linear infinite;
}
.marquee-inner span {
  font-family: 'Inter', sans-serif; font-weight: 900; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.15em; color: var(--black);
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== STATS BAR ===== */
.lm-stats { background: var(--black); border-top: 1px solid rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.04); padding: 3rem 0; }
.lm-stats .lm-container { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.stat { text-align: center; }
.stat-num { font-family: 'Inter', sans-serif; font-size: clamp(2.5rem,4vw,3.5rem); font-weight: 900; line-height: 1; }
.stat-num.pink { color: var(--pink); }
.stat-num.gold { color: var(--gold); }
.stat-num.purple { color: var(--purple); }
.stat-label { color: var(--muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.5rem; }

/* ===== PAIN POINTS ===== */
.lm-pain { padding: 7rem 0; }
.pain-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.pain-card {
  background: var(--card); border: 1px solid rgba(255,255,255,0.05);
  padding: 2rem; position: relative; overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.pain-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--gradient-pink); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.pain-card:hover { transform: translateY(-4px); border-color: rgba(216,27,96,0.15); }
.pain-card:hover::before { transform: scaleX(1); }
.pain-icon { margin-bottom: 1rem; }
.pain-card h4 { font-size: 1rem; font-weight: 800; margin-bottom: 0.75rem; }
.pain-card p { font-size: 0.875rem; line-height: 1.7; color: var(--muted); }

/* ===== COURSE MODULES GRID ===== */
.lm-modules { padding: 7rem 0; background: var(--black); }
.module-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.module-card {
  background: var(--card); border: 1px solid rgba(255,255,255,0.05);
  padding: 2rem; position: relative; overflow: hidden;
  transition: all 0.4s; cursor: default;
}
.module-card:hover { border-color: rgba(255,240,0,0.2); }
.module-num { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.75rem; }
.module-card h4 { font-size: 1.05rem; margin-bottom: 0.75rem; }
.module-card p { font-size: 0.85rem; line-height: 1.7; color: var(--muted); }

/* Module video placeholder */
.module-video { position: relative; width: 100%; aspect-ratio: 16/9; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 8px; margin-bottom: 1rem; overflow: hidden; cursor: pointer; transition: border-color 0.3s; }
.module-video:hover { border-color: rgba(216,27,96,0.3); }
.module-video .video-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(15,15,24,0.9), rgba(20,20,32,0.9)); }
.module-video .play-btn { width: 48px; height: 48px; border-radius: 50%; background: var(--pink); display: flex; align-items: center; justify-content: center; transition: transform 0.3s, box-shadow 0.3s; }
.module-video .play-btn:hover { transform: scale(1.1); box-shadow: 0 0 20px rgba(216,27,96,0.4); }

/* ===== LEARNING PATH ===== */
.lm-path { padding: 7rem 0; }
.path-steps { max-width: 700px; margin: 0 auto; position: relative; }
.path-steps::before { content: ''; position: absolute; left: 23px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--pink), var(--gold), var(--purple)); }
.path-step { display: flex; gap: 2rem; margin-bottom: 3rem; align-items: flex-start; }
.step-num {
  width: 48px; height: 48px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-weight: 900; font-size: 1.1rem;
  background: var(--black); border: 2px solid var(--gold); color: var(--gold);
  position: relative; z-index: 1;
}
.path-step:nth-child(2) .step-num { border-color: var(--pink); color: var(--pink); }
.path-step:nth-child(3) .step-num { border-color: var(--purple); color: var(--purple); }
.path-step:nth-child(4) .step-num { border-color: var(--gold); color: var(--gold); }
.step-content h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step-content p { font-size: 0.9rem; line-height: 1.7; color: var(--muted); }

/* ===== AUDIENCE GRID ===== */
.lm-audience { padding: 5rem 0; background: var(--black); }
.audience-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; max-width: 1100px; margin: 0 auto; }
.aud-item { background: var(--card); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 1.2rem 1.4rem; display: flex; align-items: flex-start; gap: 0.8rem; transition: border-color 0.3s; }
.aud-item:hover { border-color: rgba(255,240,0,0.15); }
.aud-item .aud-icon { font-size: 1.1rem; flex-shrink: 0; line-height: 1.5; }
.aud-item p { font-size: 0.85rem; line-height: 1.6; color: var(--light); margin: 0; }
.aud-item.no { opacity: 0.5; }
.aud-item.no .aud-icon { color: #ef4444; }
.aud-item.no p { color: var(--muted); }
.aud-divider { grid-column: 1/-1; height: 1px; background: rgba(255,255,255,0.04); margin: 0.5rem 0; }

/* ===== FOUNDER ===== */
.lm-founder { padding: 7rem 0; overflow: hidden; }
.lm-founder .lm-container { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; }
.founder-img { position: relative; }
.founder-img .img-frame {
  width: 100%; aspect-ratio: 4/5; overflow: hidden;
  border: 2px solid rgba(255,240,0,0.2);
}
.founder-img .img-frame img { width: 100%; height: 100%; object-fit: cover; }
.founder-img::after {
  content: ''; position: absolute; top: 1rem; left: 1rem; right: -1rem; bottom: -1rem;
  border: 2px solid rgba(216,27,96,0.15); z-index: -1;
}
.founder-badge { position: absolute; bottom: -1.5rem; right: -1rem; width: 110px; height: 110px; z-index: 2; filter: drop-shadow(0 4px 16px rgba(0,0,0,0.6)); animation: badgeFloat 4s ease-in-out infinite; }
@keyframes badgeFloat { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-6px) rotate(3deg); } }
.lm-founder h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
.lm-founder p { font-size: 1rem; line-height: 1.8; color: var(--light); margin-bottom: 1rem; }

/* ===== PRICING ===== */
.lm-pricing { padding: 7rem 0; background: var(--black); }
.pricing-card {
  max-width: 550px; margin: 0 auto;
  background: var(--card); border: 2px solid rgba(255,240,0,0.2);
  padding: 3rem; position: relative; overflow: hidden;
}
.pricing-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient-gold); }
.pricing-card .price { font-family: 'Inter', sans-serif; font-size: clamp(3.5rem,6vw,5rem); font-weight: 900; text-align: center; margin: 1.5rem 0 0.5rem; }
.pricing-card .price-sub { text-align: center; color: var(--muted); font-size: 0.9rem; margin-bottom: 2rem; }
.pricing-card .price-note { font-size: 0.8rem; color: var(--muted); margin-top: 0.3rem; margin-bottom: 2rem; text-align: center; }
.features { list-style: none; padding: 0; margin: 0; }
.features li { font-size: 0.95rem; line-height: 2.4; color: var(--light); display: flex; gap: 0.75rem; align-items: center; }
.features li .check { color: var(--gold); font-weight: 700; }
.pricing-includes { list-style: none; padding: 0; margin: 0 0 2rem; text-align: left; }
.pricing-includes li { padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.85rem; color: var(--light); display: flex; gap: 0.75rem; align-items: center; }
.pricing-includes .pi-check { color: var(--gold); font-weight: 900; }
.guarantee { text-align: center; color: var(--muted); font-size: 0.8rem; margin-top: 1.5rem; }
.pricing-urgency { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; color: var(--pink); margin-top: 1.5rem; text-transform: uppercase; letter-spacing: 0.1em; text-align: center; }
.monthly-cost { max-width: 600px; margin: 2rem auto 0; font-size: 0.85rem; color: var(--muted); line-height: 1.7; text-align: center; }

/* ===== CTA SECTION ===== */
.lm-cta { padding: 7rem 0; text-align: center; position: relative; overflow: hidden; }
.lm-cta h2 { font-size: clamp(2.5rem,5vw,4rem); margin-bottom: 1.5rem; }
.lm-cta p { color: var(--muted); font-size: 1.1rem; max-width: 550px; margin: 0 auto 2.5rem; line-height: 1.7; }

/* ===== FAQ (DARK — HOMEPAGE) ===== */
.lm-faq { padding: 7rem 0; background: var(--black); }
.faq-list { max-width: 700px; margin: 0 auto; }
details.faq-item { border-bottom: 1px solid rgba(255,255,255,0.05); padding: 1.5rem 0; }
details.faq-item summary {
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1rem;
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  color: var(--white); transition: color 0.3s;
}
details.faq-item summary:hover { color: var(--gold); }
details.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--pink); transition: transform 0.3s; }
details.faq-item[open] summary::after { transform: rotate(45deg); }
details.faq-item p { margin-top: 1rem; font-size: 0.9rem; line-height: 1.8; color: var(--muted); max-width: 90%; }

/* ===== TRUST STRIP (LIGHT PAGES) ===== */
.trust-strip { background: #f8f8fc; padding: 2rem 0; border-bottom: 1px solid #eee; }
.trust-inner { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; align-items: center; }
.trust-item { font-size: 0.8rem; font-weight: 600; color: #555; display: flex; align-items: center; gap: 0.5rem; }
.trust-item .check { color: var(--pink); font-weight: 900; font-size: 1rem; }

/* ===== BUILD GRID (COURSE DETAIL) ===== */
.section-build { padding: 5rem 0; }
.section-build h2 { font-size: clamp(2rem, 3.5vw, 3rem); text-transform: uppercase; margin-bottom: 1rem; }
.section-build .section-sub { font-size: 1rem; line-height: 1.7; color: #555; max-width: 700px; margin-bottom: 3rem; }
.build-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.build-card { background: #fff; border: 1px solid #eee; padding: 1.5rem; transition: all 0.3s; position: relative; }
.build-card:hover { border-color: var(--pink); transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.06); }
.build-num { font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; color: var(--pink); font-weight: 700; margin-bottom: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; }
.build-card h4 { font-size: 0.95rem; font-weight: 800; text-transform: uppercase; margin-bottom: 0.6rem; line-height: 1.2; }
.build-card p { font-size: 0.82rem; line-height: 1.6; color: #666; }

/* ===== LEARN LIST (COURSE DETAIL) ===== */
.section-learn { padding: 5rem 0; background: #f8f8fc; }
.learn-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.learn-list { list-style: none; padding: 0; margin: 0; }
.learn-list li { padding: 0.8rem 0; border-bottom: 1px solid #eee; font-size: 0.9rem; color: #333; display: flex; align-items: flex-start; gap: 0.75rem; }
.learn-list .icon-check { color: var(--pink); font-weight: 900; font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

/* ===== ACCORDION (COURSE CONTENT) ===== */
.section-content { padding: 5rem 0; }
.accordion { max-width: 800px; }
.accordion-item { border: 1px solid #eee; margin-bottom: 0.5rem; }
.accordion-header {
  padding: 1.2rem 1.5rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-weight: 700; font-size: 0.9rem; background: #fff; transition: background 0.3s;
  border: none; width: 100%; text-align: left;
}
.accordion-header:hover { background: #f8f8fc; }
.accordion-header .arrow { transition: transform 0.3s; font-size: 0.8rem; color: var(--muted); }
.accordion-header.open .arrow { transform: rotate(180deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.accordion-body.open { max-height: 1000px; }
.accordion-body ul { list-style: none; padding: 0 1.5rem 1.2rem; margin: 0; }
.accordion-body li {
  padding: 0.5rem 0; border-bottom: 1px solid #f0f0f0;
  font-size: 0.82rem; color: #555; display: flex; justify-content: space-between; align-items: center;
}
.accordion-body li:last-child { border-bottom: none; }
.lesson-time { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; color: var(--muted); }
.free-badge {
  font-family: 'JetBrains Mono', monospace; font-size: 0.55rem; font-weight: 700;
  background: rgba(216,27,96,0.1); color: var(--pink); padding: 0.2rem 0.5rem;
  text-transform: uppercase; letter-spacing: 0.1em;
}

/* ===== TOOLS NEEDED ===== */
.section-tools { padding: 5rem 0; background: #f8f8fc; }
.tools-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.tool-card { background: #fff; border: 1px solid #eee; padding: 1.5rem; }
.tool-card h4 { font-size: 0.85rem; font-weight: 800; text-transform: uppercase; margin-bottom: 0.5rem; }
.tool-card p { font-size: 0.8rem; line-height: 1.6; color: #666; }
.tool-card .tool-cost {
  font-family: 'JetBrains Mono', monospace; font-size: 0.7rem;
  color: var(--pink); font-weight: 700; margin-top: 0.5rem;
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* Tool pills (kit detail) */
.tools-pills { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 2rem; }
.tool-pill { display: inline-flex; align-items: center; gap: 0.5rem; background: #f0f0f5; border: 1px solid #e0e0e8; padding: 0.6rem 1.2rem; border-radius: 100px; font-size: 0.85rem; font-weight: 600; color: #333; }

/* ===== INSTRUCTOR ===== */
.section-instructor { padding: 5rem 0; }
.instructor-grid { display: grid; grid-template-columns: auto 1fr; gap: 3rem; align-items: center; }
.instructor-photo { width: 200px; height: 200px; border-radius: 50%; overflow: hidden; border: 3px solid var(--pink); }
.instructor-photo img { width: 100%; height: 100%; object-fit: cover; }
.instructor-info h3 { font-size: 1.5rem; text-transform: uppercase; margin-bottom: 0.5rem; }
.instructor-title {
  font-family: 'JetBrains Mono', monospace; font-size: 0.7rem;
  color: var(--pink); text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 1rem; font-weight: 700;
}
.instructor-info p { font-size: 0.9rem; line-height: 1.7; color: #555; max-width: 600px; }
.instructor-badge { display: inline-block; margin-top: 1rem; }
.instructor-badge img { height: 60px; }

/* ===== PROBLEM/SOLUTION (KIT DETAIL) ===== */
.problem-solution { padding: 5rem 0; border-bottom: 1px solid #eee; }
.ps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.ps-col h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 1.5rem; }
.ps-col p { font-size: 0.95rem; line-height: 1.8; color: #444; }
.ps-col ul { list-style: none; margin-top: 1rem; padding: 0; }
.ps-col ul li { padding: 0.6rem 0; font-size: 0.9rem; color: #333; display: flex; align-items: flex-start; gap: 0.75rem; line-height: 1.6; }
.ps-icon {
  display: inline-flex; width: 24px; height: 24px; min-width: 24px;
  border-radius: 6px; align-items: center; justify-content: center;
  font-size: 0.75rem; margin-top: 2px;
}
.ps-icon.red { background: rgba(239,68,68,0.1); color: #ef4444; }
.ps-icon.green { background: rgba(34,197,94,0.1); color: #22c55e; }

/* ===== KIT INCLUDES ===== */
.kit-includes { padding: 5rem 0; background: #fafafa; }
.kit-includes h2 { font-size: 1.8rem; font-weight: 800; text-align: center; margin-bottom: 0.75rem; }
.kit-includes .section-sub { text-align: center; color: #666; font-size: 0.95rem; margin-bottom: 3rem; }
.includes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.include-card { background: #fff; border: 1px solid #eee; border-radius: 12px; padding: 2rem; transition: all 0.3s; }
.include-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.06); border-color: var(--pink); }
.include-card .card-icon { font-size: 1.5rem; margin-bottom: 1rem; }
.include-card h4 { font-size: 0.95rem; font-weight: 800; margin-bottom: 0.5rem; }
.include-card p { font-size: 0.85rem; line-height: 1.6; color: #666; }

/* ===== KIT HERO GRAPHIC ===== */
.kit-hero-graphic {
  width: 100%; max-width: 440px;
  aspect-ratio: 1/1;
  background: var(--card);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem; padding: 3rem;
  position: relative; overflow: hidden;
}
.kit-hero-graphic::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-pink);
}
.workflow-nodes { display: flex; align-items: center; gap: 0.75rem; }
.wf-node {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.wf-connector { width: 24px; height: 2px; background: rgba(255,255,255,0.15); position: relative; }
.wf-connector::after { content: '▸'; position: absolute; right: -6px; top: -8px; color: rgba(255,255,255,0.15); font-size: 0.8rem; }

/* Hero stats (kit) */
.hero-stats { display: flex; gap: 2rem; margin-bottom: 2rem; }
.hero-stat { text-align: center; }
.hero-stat .stat-val { font-family: 'JetBrains Mono', monospace; font-size: 1.8rem; font-weight: 700; color: var(--gold); }
.hero-stat .stat-label { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.25rem; }

/* ===== MAKE SCENARIO MOCKUP (HOMEPAGE) ===== */
.make-scenario {
  background: linear-gradient(160deg, #111118 0%, #0f0f18 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 1.5rem;
  position: relative;
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 1px rgba(255,255,255,0.1);
}
.make-scenario:hover { transform: perspective(1200px) rotateY(0deg) rotateX(0deg); box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.make-bar { display: flex; align-items: center; gap: 8px; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.04); margin-bottom: 1.25rem; }
.make-bar .dot { width: 10px; height: 10px; border-radius: 50%; }
.make-bar .dot:nth-child(1) { background: #ff5f57; }
.make-bar .dot:nth-child(2) { background: #febc2e; }
.make-bar .dot:nth-child(3) { background: #28c840; }
.make-bar .title { margin-left: auto; font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; }
.make-row { display: flex; align-items: center; padding: 0.6rem 0; position: relative; }
.make-row + .make-row { margin-top: 0.15rem; padding-top: 0.6rem; border-top: 1px solid rgba(255,255,255,0.03); }

/* App nodes */
.app-node { display: flex; flex-direction: column; align-items: center; gap: 6px; flex-shrink: 0; cursor: default; transition: transform 0.3s; }
.app-node:hover { transform: translateY(-4px) scale(1.08); }
.app-node .icon-wrap {
  width: 62px; height: 62px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  border: 2px solid rgba(255,255,255,0.1); transition: all 0.3s;
}
.app-node:hover .icon-wrap { border-color: var(--gold); box-shadow: 0 0 20px rgba(255,240,0,0.15), 0 8px 25px rgba(0,0,0,0.3); }
.app-node .icon-wrap img { width: 36px; height: 36px; filter: brightness(1.2) drop-shadow(0 1px 3px rgba(0,0,0,0.5)); }
.app-node .name { font-family: 'JetBrains Mono', monospace; font-size: 0.5rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap; }

/* Node type colors */
.app-node.trigger .icon-wrap { background: rgba(124,58,237,0.25); border-color: rgba(124,58,237,0.5); }
.app-node.ai .icon-wrap { background: rgba(16,185,129,0.2); border-color: rgba(16,185,129,0.4); }
.app-node.data .icon-wrap { background: rgba(216,27,96,0.2); border-color: rgba(216,27,96,0.4); }
.app-node.output .icon-wrap { background: rgba(255,240,0,0.12); border-color: rgba(255,240,0,0.3); }

/* Trigger pulse */
.app-node.trigger .icon-wrap::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(124,58,237,0.4);
  animation: triggerPulse 2s infinite ease-out;
}
@keyframes triggerPulse { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.35); opacity: 0; } }

/* Connection lines */
.conn { flex: 1; min-width: 24px; max-width: 60px; height: 2px; position: relative; margin: 0 4px; background: rgba(255,255,255,0.06); align-self: center; margin-bottom: 18px; }
.conn::after { content: '▸'; position: absolute; right: -2px; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,0.15); font-size: 0.6rem; line-height: 1; }
.conn .dot-flow {
  position: absolute; width: 6px; height: 6px; border-radius: 50%; top: 50%; transform: translateY(-50%);
  background: var(--gold); box-shadow: 0 0 10px rgba(255,240,0,0.8), 0 0 20px rgba(255,240,0,0.4);
  animation: dotTravel 3s infinite ease-in-out; opacity: 0;
}
@keyframes dotTravel { 0% { left: 0%; opacity: 0; } 8% { opacity: 1; } 85% { opacity: 1; } 100% { left: 100%; opacity: 0; } }

/* Router diamond */
.router-node { display: flex; flex-direction: column; align-items: center; gap: 6px; flex-shrink: 0; }
.router-diamond {
  width: 30px; height: 30px; border-radius: 4px;
  background: rgba(255,255,255,0.08); border: 2px solid rgba(255,255,255,0.2);
  transform: rotate(45deg); display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
}
.router-diamond::after { content: ''; width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); }
.router-node .name { font-family: 'JetBrains Mono', monospace; font-size: 0.5rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* Branch block */
.branch-out { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 0; position: relative; padding-left: 8px; }
.branch-out::before { content: ''; position: absolute; left: 0; top: 28px; bottom: 28px; width: 2px; background: rgba(255,255,255,0.06); }
.branch-row { display: flex; align-items: center; }
.branch-conn { width: 16px; height: 2px; background: rgba(255,255,255,0.06); flex-shrink: 0; margin-right: 4px; position: relative; }

/* Status bar */
.make-status { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; padding: 0.65rem 1rem; background: rgba(16,185,129,0.06); border: 1px solid rgba(16,185,129,0.12); border-radius: 8px; }
.make-status .live { display: flex; align-items: center; gap: 8px; font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; color: #10b981; font-weight: 600; }
.make-status .live::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #10b981; animation: blink 2s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.make-status .count { font-family: 'JetBrains Mono', monospace; font-size: 0.6rem; color: var(--muted); }

/* ===== FOOTER ===== */
.lm-footer { padding: 4rem 0 2rem; border-top: 1px solid rgba(255,255,255,0.04); background: var(--black); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.lm-footer h5 { font-family: 'Inter', sans-serif; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 1.5rem; font-weight: 700; }
.lm-footer p, .lm-footer a { font-size: 0.85rem; color: var(--muted); line-height: 2; }
.lm-footer a:hover { color: var(--white); }
.footer-bar { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.04); font-size: 0.75rem; color: var(--muted); }

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .lm-hero .lm-container { grid-template-columns: 1fr; gap: 3rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-image { max-width: 500px; }
  .hero-cols { flex-wrap: wrap!important; }
  .hero-cols > .wp-block-column { flex-basis: 100%!important; }
  .pain-grid { grid-template-columns: 1fr 1fr; }
  .module-grid { grid-template-columns: 1fr 1fr; }
  .build-grid { grid-template-columns: repeat(2, 1fr); }
  .learn-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .includes-grid { grid-template-columns: repeat(2, 1fr); }
  .instructor-grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .instructor-info p { margin: 0 auto; }
  .lm-founder .lm-container { grid-template-columns: 1fr; }
  .ps-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .make-scenario { padding: 1rem; }
  .app-node .icon-wrap { width: 42px; height: 42px; }
  .app-node .icon-wrap img { width: 24px; height: 24px; }
  .app-node .name { font-size: 0.42rem; }
  .conn { min-width: 14px; max-width: 35px; }
  .router-diamond { width: 22px; height: 22px; }
}

@media (max-width: 640px) {
  .pain-grid { grid-template-columns: 1fr; }
  .module-grid { grid-template-columns: 1fr; }
  .build-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
  .lm-stats .lm-container { grid-template-columns: 1fr; gap: 2rem; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .lm-nav ul { display: none; }
  .hero-btns { flex-direction: column; }
  .hero-meta { flex-direction: column; gap: 1rem; }
  .hero-cta-group { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .btn-pink, .btn-outline { text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .make-row { flex-wrap: wrap; justify-content: center; gap: 4px; }
  .branch-out { padding-left: 0; }
  .branch-out::before { display: none; }
  .trust-inner { flex-direction: column; gap: 0.8rem; }
}

/* ===== TUTOR LMS OVERRIDES ===== */
.lamaquina-tutor-page .tutor-course-details-page {
  background: #fff;
  color: #1a1a2e;
}
.lamaquina-tutor-page .tutor-course-details-header {
  background: #fff !important;
  color: #1a1a2e !important;
}

/* ===== LIGHT PAGE BODY (SUBPAGES) ===== */
.lm-light-page { background: #ffffff; color: #1a1a2e; }
.lm-light-page h1, .lm-light-page h2, .lm-light-page h3,
.lm-light-page h4, .lm-light-page h5, .lm-light-page h6 {
  color: #1a1a2e;
}

/* ==========================================================================
   WP PATTERN COMPATIBILITY — lm- prefixed selectors
   The patterns use lm- prefix to avoid WordPress class conflicts.
   This section maps them to the proper styles.
   ========================================================================== */

/* ===== REVEAL (lm- prefix) ===== */
.lm-reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.lm-reveal.visible { opacity: 1; transform: translateY(0); }
.lm-reveal-delay-1 { transition-delay: 0.1s; }
.lm-reveal-delay-2 { transition-delay: 0.2s; }
.lm-reveal-delay-3 { transition-delay: 0.3s; }

/* ===== TAGS (lm- prefix) ===== */
.lm-tag {
  display: inline-block; font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.15em; border: 1px solid rgba(216,27,96,0.2);
  padding: 0.4rem 1rem;
}
.lm-tag-pink { color: var(--pink); border-color: rgba(216,27,96,0.25); }
.lm-tag-gold { color: var(--gold); border-color: rgba(255,240,0,0.25); }
.lm-tag-purple { color: var(--purple); border-color: rgba(124,58,237,0.25); }
.lm-tag-dark { color: var(--muted); border-color: rgba(255,255,255,0.1); }


/* WP button global outline reset */
.wp-block-button__link { outline: none !important; box-shadow: none !important; }
/* ===== WP BUTTONS (lm- prefix) ===== */
.wp-block-button.lm-btn-primary .wp-block-button__link {
  background: var(--gradient-pink) !important; color: #fff !important;
  padding: 0.65rem 2rem !important; font-weight: 700 !important;
  font-size: 0.8rem !important; text-transform: uppercase !important;
  letter-spacing: 0.08em !important; border-radius: 0 !important;
  transition: all 0.3s !important; position: relative; overflow: hidden;
  border: none !important; display: inline-flex !important; align-items: center !important;
  min-height: 2.6rem !important;
}
.wp-block-button.lm-btn-primary .wp-block-button__link:hover {
  transform: translateY(-2px); box-shadow: 0 10px 40px rgba(216,27,96,0.35);
}

.wp-block-button.lm-btn-outline .wp-block-button__link {
  background: transparent !important; color: var(--light) !important;
  padding: 0.65rem 2rem !important; font-weight: 700 !important;
  font-size: 0.8rem !important; text-transform: uppercase !important;
  letter-spacing: 0.08em !important; border-radius: 0 !important;
  border: 2px solid rgba(255,255,255,0.2) !important; outline: none !important;
  box-shadow: none !important; transition: all 0.3s !important;
  display: inline-flex !important; align-items: center !important; min-height: 2.6rem !important;
}
.wp-block-button.lm-btn-outline .wp-block-button__link:hover {
  border-color: var(--gold) !important; color: var(--gold) !important;
}

.wp-block-button.lm-btn-about .wp-block-button__link {
  background: transparent !important; color: var(--gold) !important;
  padding: 0.65rem 2rem !important; font-weight: 700 !important;
  font-size: 0.8rem !important; text-transform: uppercase !important;
  letter-spacing: 0.08em !important; border-radius: 0 !important;
  border: 2px solid rgba(255,240,0,0.3) !important; outline: none !important;
  box-shadow: none !important; transition: all 0.3s !important;
  display: inline-flex !important; align-items: center !important; min-height: 2.6rem !important;
}
.wp-block-button.lm-btn-about .wp-block-button__link:hover {
  background: rgba(255,240,0,0.08) !important; border-color: var(--gold) !important;
}

.wp-block-button.lm-btn-dark .wp-block-button__link {
  background: var(--black) !important; color: #fff !important;
  padding: 1rem 2.5rem !important; font-weight: 700 !important;
  font-size: 0.85rem !important; text-transform: uppercase !important;
  letter-spacing: 0.08em !important; border-radius: 0 !important;
  transition: all 0.3s !important;
}
.wp-block-button.lm-btn-dark .wp-block-button__link:hover {
  background: var(--dark) !important; transform: translateY(-2px);
}

/* Standalone buttons (non-WP) */
.lm-btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gradient-pink); color: #fff; padding: 1rem 2.5rem;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.08em; transition: all 0.3s;
  border: none; cursor: pointer; text-decoration: none;
}
.lm-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(216,27,96,0.35); color: #fff; }

.lm-btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 2px solid rgba(255,255,255,0.12); color: var(--light); padding: 1rem 2.5rem;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.08em; transition: all 0.3s;
  background: transparent; text-decoration: none;
}
.lm-btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.lm-btn-gold {
  display: block; width: 100%; text-align: center;
  background: var(--gradient-gold); color: var(--black); padding: 1.1rem;
  font-family: 'Inter', sans-serif; font-weight: 800; font-size: 0.95rem;
  text-transform: uppercase; letter-spacing: 0.08em; transition: all 0.3s;
  border: none; cursor: pointer; text-decoration: none;
}
.lm-btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(255,240,0,0.2); color: var(--black); }

.lm-btn-pink {
  display: inline-block; background: var(--pink); color: #fff; padding: 0.9rem 2rem;
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.08em; transition: all 0.3s;
  border: none; cursor: pointer; text-decoration: none;
}
.lm-btn-pink:hover { background: #e84d8a; transform: translateY(-2px); color: #fff; }

/* ===== MODULE GRID (lm- prefix) ===== */
.lm-module-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.lm-module-card {
  background: var(--card); border: 1px solid rgba(255,255,255,0.05);
  padding: 2rem; position: relative; overflow: hidden;
  transition: all 0.4s; cursor: default;
}
.lm-module-card:hover { border-color: rgba(255,240,0,0.2); }
.lm-module-card h4 { font-size: 1.05rem; margin-bottom: 0.75rem; color: #fff; }
.lm-module-card p { font-size: 0.85rem; line-height: 1.7; color: var(--muted); }

/* ===== PAIN CARDS (lm- prefix) ===== */
.lm-pain-card {
  background: var(--card); border: 1px solid rgba(255,255,255,0.05);
  padding: 2rem; position: relative; overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.lm-pain-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--gradient-pink); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.lm-pain-card:hover { transform: translateY(-4px); border-color: rgba(216,27,96,0.15); }
.lm-pain-card:hover::before { transform: scaleX(1); }
.lm-pain-card h4 { font-size: 1rem; font-weight: 800; margin-bottom: 0.75rem; color: #fff; }
.lm-pain-card p { font-size: 0.875rem; line-height: 1.7; color: var(--muted); }

/* ===== PRICING CARD (lm- prefix) ===== */
.lm-pricing-card {
  max-width: 550px; margin: 0 auto;
  background: var(--card); border: 2px solid rgba(255,240,0,0.2);
  padding: 3rem; position: relative; overflow: hidden;
}
.lm-pricing-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient-gold); }
.lm-pricing-card .price { font-family: 'Inter', sans-serif; font-size: clamp(3.5rem,6vw,5rem); font-weight: 900; text-align: center; margin: 1.5rem 0 0.5rem; color: #fff; }
.lm-pricing-card .price-sub { text-align: center; color: var(--muted); font-size: 0.9rem; margin-bottom: 2rem; }
.lm-pricing-card hr { border: none; border-top: 1px solid rgba(255,255,255,0.06); margin: 2rem 0; }
.lm-pricing-card .features { list-style: none; padding: 0; margin: 0 0 2rem; }
.lm-pricing-card .features li { font-size: 0.95rem; line-height: 2.4; color: var(--light); display: flex; gap: 0.75rem; align-items: center; }
.lm-pricing-card .features .check { color: var(--gold); font-weight: 700; }
.lm-pricing-card .guarantee { text-align: center; color: var(--muted); font-size: 0.8rem; margin-top: 1.5rem; }

/* ===== FAQ LIST (lm- prefix) ===== */
.lm-faq-list { max-width: 700px; margin: 0 auto; }
details.lm-faq-item { border-bottom: 1px solid rgba(255,255,255,0.05); padding: 1.5rem 0; }
details.lm-faq-item summary {
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1rem;
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  color: var(--white); transition: color 0.3s;
}
details.lm-faq-item summary::-webkit-details-marker { display: none; }
details.lm-faq-item summary:hover { color: var(--gold); }
details.lm-faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--pink); transition: transform 0.3s; }
details.lm-faq-item[open] summary::after { transform: rotate(45deg); }
details.lm-faq-item p { margin-top: 1rem; font-size: 0.9rem; line-height: 1.8; color: var(--muted); max-width: 90%; }

/* ===== FOUNDER IMAGE (lm- prefix) ===== */
.lm-founder-img { position: relative; }
.lm-founder-img .img-frame {
  width: 100%; aspect-ratio: 4/5; overflow: hidden;
  border: 2px solid rgba(255,240,0,0.2);
  display: flex; align-items: center; justify-content: center;
  background: var(--card); color: var(--muted); font-size: 0.9rem;
}
.lm-founder-img .img-frame img { width: 100%; height: 100%; object-fit: cover; }
.lm-founder-img::after {
  content: ''; position: absolute; top: 1rem; left: 1rem; right: -1rem; bottom: -1rem;
  border: 2px solid rgba(216,27,96,0.15); z-index: -1;
}
.lm-founder-img .founder-badge {
  position: absolute; bottom: -1.5rem; right: -1rem;
  width: 110px; height: 110px; z-index: 2;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.6));
  animation: badgeFloat 4s ease-in-out infinite;
}

/* ===== PATH STEPS (lm- prefix) ===== */
.lm-path-steps { max-width: 700px; margin: 0 auto; position: relative; }
.lm-path-steps::before { content: ''; position: absolute; left: 23px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--pink), var(--gold), var(--purple)); }
.lm-path-step { display: flex; gap: 2rem; margin-bottom: 3rem; align-items: flex-start; }

/* ===== AUDIENCE GRID (lm- prefix) ===== */
.lm-audience-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; max-width: 1100px; margin: 0 auto; }
.lm-aud-item {
  background: var(--card); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; padding: 1.2rem 1.4rem;
  display: flex; align-items: flex-start; gap: 0.8rem; transition: border-color 0.3s;
}
.lm-aud-item:hover { border-color: rgba(255,240,0,0.15); }
.lm-aud-item p { font-size: 0.85rem; line-height: 1.6; color: var(--light); margin: 0; }
.lm-aud-divider { grid-column: 1/-1; height: 1px; background: rgba(255,255,255,0.04); margin: 0.5rem 0; }

/* ===== MARQUEE (lm- prefix) ===== */
.lm-marquee { overflow: hidden; padding: 0.8rem 0; background: var(--pink); white-space: nowrap; }
.lm-marquee-inner {
  display: inline-flex; gap: 3rem; align-items: center;
  animation: marquee 30s linear infinite;
}
.lm-marquee-inner span {
  font-family: 'Inter', sans-serif; font-weight: 900; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.15em; color: var(--black);
}

/* ===== STAT NUM (lm- prefix) ===== */
.lm-stat-num { font-family: 'Inter', sans-serif; font-size: clamp(2.5rem,4vw,3.5rem); font-weight: 900; line-height: 1; }
.lm-stat-num.lm-pink { color: var(--pink); }
.lm-stat-num.lm-gold { color: var(--gold); }
.lm-stat-num.lm-purple { color: var(--purple); }

/* ===== COUNTER (lm- prefix) ===== */
.lm-counter { display: inline; }

/* ===== NEWSLETTER (lm- prefix) ===== */
.lm-newsletter { text-align: center; }
.lm-newsletter-form {
  display: flex; gap: 0.5rem; max-width: 500px; margin: 0 auto;
}
.lm-newsletter-form input[type="email"] {
  flex: 1; padding: 0.9rem 1.2rem; background: var(--card);
  border: 1px solid rgba(255,255,255,0.08); color: #fff;
  font-family: 'Inter', sans-serif; font-size: 0.85rem;
}
.lm-newsletter-form input[type="email"]::placeholder { color: var(--muted); }

/* ===== ABOUT PAGE PATTERNS ===== */
.lm-about-hero { min-height: 60vh; display: flex; align-items: center; }
.lm-about-marquee { overflow: hidden; }

.lm-services-grid-about { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.lm-service-card-about {
  background: var(--card); border: 1px solid rgba(255,255,255,0.06);
  padding: 2rem; transition: all 0.3s; border-radius: 12px;
}
.lm-service-card-about:hover { border-color: rgba(216,27,96,0.2); transform: translateY(-4px); }
.lm-service-icon { font-size: 1.5rem; margin-bottom: 1rem; }
.lm-service-header { margin-bottom: 0.5rem; }
.lm-service-heading { font-size: 1rem; font-weight: 800; text-transform: uppercase; color: #fff; }
.lm-service-category {
  font-family: 'JetBrains Mono', monospace; font-size: 0.6rem;
  text-transform: uppercase; letter-spacing: 0.12em; margin-top: 0.25rem;
}
.lm-service-pink { color: var(--pink); }
.lm-service-gold { color: var(--gold); }
.lm-service-purple { color: var(--purple); }
.lm-service-text { font-size: 0.85rem; line-height: 1.7; color: var(--muted); margin-bottom: 1rem; }
.lm-service-list { list-style: none; padding: 0; margin: 0; }
.lm-service-list li { font-size: 0.8rem; color: var(--light); padding: 0.2rem 0; }

/* About story / timeline */
.lm-about-story { }
.lm-timeline { position: relative; max-width: 700px; margin: 0 auto; }
.lm-timeline::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--pink), var(--gold), var(--purple));
}
.lm-timeline-item { display: flex; gap: 2rem; margin-bottom: 2.5rem; padding-left: 1.5rem; position: relative; }
.lm-timeline-marker {
  position: absolute; left: -5px; top: 5px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--pink); border: 2px solid var(--black);
}
.lm-timeline-year {
  font-family: 'JetBrains Mono', monospace; font-size: 0.7rem;
  color: var(--gold); font-weight: 700; letter-spacing: 0.1em;
  flex-shrink: 0; padding-top: 3px;
}
.lm-timeline-content { }
.lm-timeline-title { font-size: 1rem; font-weight: 800; margin-bottom: 0.3rem; color: #fff; }
.lm-timeline-description { font-size: 0.85rem; line-height: 1.7; color: var(--muted); }

/* About stats */
.lm-about-stats { }

/* About CTA */
.lm-about-cta { text-align: center; }

/* ===== COURSE PATTERNS ===== */

/* Curriculum accordion */
.lm-curriculum { max-width: 800px; }
.lm-curriculum-item { border: 1px solid rgba(255,255,255,0.06); margin-bottom: 0.5rem; background: var(--card); }
.lm-curriculum-header {
  padding: 1.2rem 1.5rem; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; border: none; width: 100%; text-align: left;
  background: transparent; color: #fff; transition: background 0.3s;
}
.lm-curriculum-header:hover { background: rgba(255,255,255,0.02); }
.lm-curriculum-summary { display: flex; align-items: center; gap: 1rem; }
.lm-curriculum-number {
  font-family: 'JetBrains Mono', monospace; font-size: 0.7rem;
  color: var(--gold); font-weight: 700;
}
.lm-curriculum-title { display: flex; flex-direction: column; gap: 0.2rem; }
.lm-curriculum-title-text { font-weight: 700; font-size: 0.9rem; }
.lm-curriculum-toggle {
  font-size: 1.2rem; color: var(--pink); transition: transform 0.3s;
  flex-shrink: 0;
}
.lm-curriculum-item.open .lm-curriculum-toggle { transform: rotate(45deg); }
.lm-curriculum-content {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.lm-curriculum-item.open .lm-curriculum-content { max-height: 1000px; }
.lm-curriculum-content ul { list-style: none; padding: 0.5rem 1.5rem 1rem; margin: 0; }
.lm-curriculum-content li {
  padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.03);
  font-size: 0.82rem; color: var(--muted); display: flex; justify-content: space-between;
}
.lm-curriculum-content li:last-child { border-bottom: none; }

/* Course hero elements */
.lm-hero-tag {
  display: inline-block; font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.15em; padding: 0.4rem 1rem; margin-bottom: 1rem;
}
.lm-hero-title { margin-bottom: 1.5rem; }
.lm-hero-description { font-size: 1.05rem; line-height: 1.75; color: var(--light); margin-bottom: 2rem; }
.lm-hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Instructor */
.lm-instructor-image { width: 200px; height: 200px; border-radius: 50%; overflow: hidden; border: 3px solid var(--pink); }
.lm-instructor-image img { width: 100%; height: 100%; object-fit: cover; }
.lm-instructor-name { font-size: 1.5rem; text-transform: uppercase; margin-bottom: 0.3rem; font-weight: 900; color: #fff; }
.lm-instructor-subtitle {
  font-family: 'JetBrains Mono', monospace; font-size: 0.7rem;
  color: var(--pink); text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 1rem; font-weight: 700;
}
.lm-instructor-bio { font-size: 0.9rem; line-height: 1.7; color: var(--muted); max-width: 600px; }
.lm-instructor-certifications { display: flex; gap: 1rem; margin-top: 1.5rem; }
.lm-certification-row { display: flex; gap: 1rem; align-items: center; }
.lm-instructor-badge, .lm-cert-badge { height: 60px; }

/* Course info sidebar */
.lm-course-info {
  background: var(--card); border: 1px solid rgba(255,255,255,0.06);
  padding: 2rem; border-radius: 12px;
}
.lm-course-info-header {
  font-family: 'JetBrains Mono', monospace; font-size: 0.7rem;
  color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 1rem; font-weight: 700;
}
.lm-course-info-list { list-style: none; padding: 0; margin: 0; }
.lm-course-info-list li {
  padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.85rem; color: var(--light); display: flex; justify-content: space-between;
}
.lm-course-guarantee {
  margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem; color: var(--muted); text-align: center;
}

/* ===== LANDING PAGE PATTERNS ===== */
.lm-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.lm-feature-card {
  background: var(--card); border: 1px solid rgba(255,255,255,0.06);
  padding: 2rem; border-radius: 12px; transition: all 0.3s;
}
.lm-feature-card:hover { border-color: rgba(216,27,96,0.2); transform: translateY(-4px); }
.lm-feature-card h4 { font-size: 1rem; font-weight: 800; margin-bottom: 0.5rem; color: #fff; }
.lm-feature-card p { font-size: 0.85rem; line-height: 1.7; color: var(--muted); }

.lm-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* ===== BLOG PATTERNS ===== */
.lm-post-card { transition: all 0.3s; }
.lm-post-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.3); }
.lm-badge { display: inline-block; }

/* Post card for light pages */
.lm-light-page .lm-post-card {
  background: #fff; border-color: #eee;
}

/* ===== CHECK ICON ===== */
.lm-check { color: var(--gold); font-weight: 700; }

/* ===== HEADER / GOLD / PINK / PURPLE TEXT ===== */
.lm-header-pink { color: var(--pink); }
.lm-header-gold { color: var(--gold); }
.lm-header-purple { color: var(--purple); }

/* ===== LEVEL BADGE ===== */
.lm-level-5 {
  font-family: 'JetBrains Mono', monospace; font-size: 0.6rem;
  color: var(--gold); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== LIGHT PAGE OVERRIDES ===== */
/* Blog listing, single post, about page — white backgrounds */
body:not(.lamaquina-dark-page) .has-black-background-color { background-color: #ffffff !important; }
body:not(.lamaquina-dark-page) .has-dark-background-color { background-color: #f8f8fc !important; }
body:not(.lamaquina-dark-page) .has-card-background-color { background-color: #ffffff !important; }
body:not(.lamaquina-dark-page) .has-white-color { color: #1a1a2e !important; }
body:not(.lamaquina-dark-page) .has-muted-color { color: #666 !important; }
body:not(.lamaquina-dark-page) .has-light-color { color: #555 !important; }

/* Keep navbar dark on all pages */
.lm-nav,
.lm-footer {
  color: #fff;
}
.lm-nav .has-white-color,
.lm-footer .has-white-color { color: #fff !important; }

/* Light page post cards */
body:not(.lamaquina-dark-page) .lm-post-card {
  background: #fff !important; border-color: #eee !important;
}
body:not(.lamaquina-dark-page) .lm-post-card .has-white-color { color: #1a1a2e !important; }
body:not(.lamaquina-dark-page) .lm-post-card .has-muted-color { color: #888 !important; }

/* Light page separators */
body:not(.lamaquina-dark-page) .wp-block-separator { background-color: #eee !important; color: #eee !important; }

/* Light page links */
body:not(.lamaquina-dark-page) .wp-block-post-title a { color: #1a1a2e; }
body:not(.lamaquina-dark-page) .wp-block-post-title a:hover { color: var(--pink); }

/* Light page pagination */
body:not(.lamaquina-dark-page) .wp-block-query-pagination a { color: var(--pink); }

/* Light page newsletter section (keep dark) */
body:not(.lamaquina-dark-page) .lm-newsletter { color: #fff; }

/* ===== ABOUT PAGE — LIGHT OVERRIDES ===== */
/* Timeline (wp:html block) */
body:not(.lamaquina-dark-page) .lm-timeline::before {
  background: linear-gradient(to bottom, var(--pink), var(--gold), var(--purple));
}
body:not(.lamaquina-dark-page) .lm-timeline-title { color: #1a1a2e !important; }
body:not(.lamaquina-dark-page) .lm-timeline-description { color: #555 !important; }
body:not(.lamaquina-dark-page) .lm-timeline-marker { border-color: #fff !important; }

/* Service cards (wp:html block) */
body:not(.lamaquina-dark-page) .lm-service-card-about {
  background: #ffffff !important;
  border-color: #e8e8ee !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
body:not(.lamaquina-dark-page) .lm-service-card-about:hover {
  border-color: rgba(216,27,96,0.25) !important;
}
body:not(.lamaquina-dark-page) .lm-service-heading { color: #1a1a2e !important; }
body:not(.lamaquina-dark-page) .lm-service-text { color: #555 !important; }
body:not(.lamaquina-dark-page) .lm-service-list li { color: #666 !important; }

/* About hero gold name */
body:not(.lamaquina-dark-page) .lm-gold { color: var(--gold); }
body:not(.lamaquina-dark-page) .lm-about-hero .lm-gold {
  background: linear-gradient(135deg, #d81b60, #e84d8a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* About CTA (gold section — keep as-is, override back) */
body:not(.lamaquina-dark-page) .has-gold-background-color { background-color: var(--gold) !important; }
body:not(.lamaquina-dark-page) .lm-about-cta .has-black-color { color: #0a0a0f !important; }

/* About separators (wp:html dividers) */
body:not(.lamaquina-dark-page) .lm-about-story div[style*="border-top"] { border-color: #e0e0e8 !important; }
body:not(.lamaquina-dark-page) .lm-about-services div[style*="border-top"] { border-color: #e0e0e8 !important; }

/* About tag badges on light */
body:not(.lamaquina-dark-page) .lm-badge {
  background: rgba(26,26,46,0.06);
  color: #1a1a2e;
}
body:not(.lamaquina-dark-page) .lm-tag-gold .lm-badge {
  background: rgba(255,240,0,0.12);
  color: #8a7800;
}

/* Marquee stays pink on all pages */
body:not(.lamaquina-dark-page) .lm-marquee { background: var(--pink); }

/* Footer always dark */
body:not(.lamaquina-dark-page) .lm-footer {
  background: var(--black) !important;
  color: #fff !important;
}
body:not(.lamaquina-dark-page) .lm-footer h5 { color: var(--gold) !important; }
body:not(.lamaquina-dark-page) .lm-footer p,
body:not(.lamaquina-dark-page) .lm-footer a { color: var(--muted) !important; }

/* ===== RESPONSIVE ADDITIONS (lm- prefix) ===== */
@media (max-width: 1024px) {
  .lm-module-grid { grid-template-columns: 1fr 1fr; }
  .lm-services-grid-about { grid-template-columns: 1fr 1fr; }
  .lm-features-grid { grid-template-columns: 1fr 1fr; }
  .lm-testimonials-grid { grid-template-columns: 1fr; }
  .lm-audience-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .lm-module-grid { grid-template-columns: 1fr; }
  .lm-services-grid-about { grid-template-columns: 1fr; }
  .lm-features-grid { grid-template-columns: 1fr; }
  .lm-audience-grid { grid-template-columns: 1fr; }
  .lm-newsletter-form { flex-direction: column; }
  .lm-hero-buttons { flex-direction: column; }
}


/* ===== GRADIENT BACKGROUND ===== */
.lm-gradient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(216,27,96,0.30), transparent),
    radial-gradient(ellipse 70% 50% at 90% 40%,  rgba(124,58,237,0.20), transparent),
    radial-gradient(ellipse 60% 40% at 5%  75%,  rgba(255,240,0,0.10),  transparent),
    radial-gradient(ellipse 50% 35% at 50% 100%, rgba(216,27,96,0.14), transparent);
}


/* ===== BUTTON DOUBLE BORDER FIX ===== */
/* WordPress adds calc(+2px) padding compensation that causes inner frame effect */
body .wp-block-button.lm-btn-outline .wp-block-button__link,
body .wp-block-button.lm-btn-outline .wp-block-button__link:focus,
body .wp-block-button.lm-btn-outline .wp-block-button__link:focus-visible,
body .wp-block-button.lm-btn-outline .wp-block-button__link:active {
  border: 2px solid rgba(255,255,255,0.2) !important;
  border-image: none !important;
  outline: none !important;
  outline-offset: 0 !important;
  box-shadow: none !important;
  padding: 0.65rem 2rem !important;
  background-color: transparent !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

body .wp-block-button.lm-btn-primary .wp-block-button__link,
body .wp-block-button.lm-btn-primary .wp-block-button__link:focus,
body .wp-block-button.lm-btn-primary .wp-block-button__link:focus-visible,
body .wp-block-button.lm-btn-primary .wp-block-button__link:active {
  border: none !important;
  border-image: none !important;
  outline: none !important;
  outline-offset: 0 !important;
  box-shadow: none !important;
  padding: 0.65rem 2rem !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

/* ===== NAV ACTIONS (cart + login/account) ===== */
.lm-nav .nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.lm-nav .nav-cart {
  display: flex;
  align-items: center;
  color: var(--muted);
  transition: color 0.3s;
  padding: 0.25rem;
}
.lm-nav .nav-cart:hover { color: var(--white); }
.lm-nav .nav-login,
.lm-nav .nav-account {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  transition: color 0.3s;
  text-decoration: none;
}
.lm-nav .nav-login:hover,
.lm-nav .nav-account:hover { color: var(--white); }

/* Show/hide login vs account using WordPress body.logged-in class */
.lm-nav .nav-account { display: none; }
.lm-nav .nav-login { display: inline; }
body.logged-in .lm-nav .nav-account { display: inline; }
body.logged-in .lm-nav .nav-login { display: none; }

/* Un sistema completo - 2-column module grid */
.lm-modules-grid {
  flex-wrap: wrap !important;
}
.lm-modules-grid > .wp-block-column {
  flex: 0 0 calc(50% - 0.75rem) !important;
  max-width: calc(50% - 0.75rem) !important;
}
.lm-voiceover-note{display:block;text-align:center;font-size:0.75rem;color:#6b7280;margin-top:2rem;padding:0 1rem;line-height:1.6;}

/* ── Mobile hamburger menu ────────────────────────────────────────────────── */
.lm-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
  z-index: 10001;
}
.lm-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.lm-hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lm-hamburger.is-active span:nth-child(2) { opacity: 0; }
.lm-hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 1024px) {
  .lm-hamburger { display: flex; }
  .lm-nav ul { display: none; }
  .lm-nav .inner { flex-wrap: wrap; gap: 0; }
  .lm-nav ul.is-open {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0 1rem;
    margin: 0;
    order: 99;
  }
  .lm-nav ul.is-open li {
    width: 100%;
    text-align: center;
  }
  .lm-nav ul.is-open a {
    display: block;
    padding: 0.75rem 0;
    font-size: 0.9rem;
    color: var(--muted);
  }
  .lm-nav ul.is-open a:hover { color: #fff; }
  .lm-nav .logo { font-size: 1rem; }
  .lm-nav .nav-login, .lm-nav .nav-account { font-size: 0.72rem; }
}