/* =============================================
   ROLIN — ESTILS PRINCIPALS
   metodorolin.com · Versió 1.0 · Maig 2026
   ============================================= */

/* 1. VARIABLES */
:root {
  --primary:   #2d3b28;
  --accent:    #778D63;
  --accent-s:  #eef3e9;
  --green:     #778D63;
  --green-s:   #eef3e9;
  --orange:    #F08C42;
  --orange-s:  #fef3e8;
  --purple:    #7a5c8a;
  --gold:      #c4883a;
  --gray:      #7E807A;
  --cream:     #EDE6D8;
  --text:      #2c2820;
  --muted:     #6b6663;
  --border:    #d9cfbc;
  --bg:        #ffffff;
  --bg-s:      #f5f1ea;
  --radius:    10px;
  --shadow:    0 4px 20px rgba(0,0,0,0.09);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
}

/* 2. RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
p { margin: 0 0 1rem 0; }
p:last-child { margin-bottom: 0; }
h1, h2, h3, h4 {
  font-family: 'Lora', Georgia, serif;
  line-height: 1.25;
  color: var(--primary);
  font-weight: 700;
}
ul { padding-left: 1.2rem; }

/* 3. LAYOUT */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-white   { background: var(--bg); }
.section-soft    { background: var(--bg-s); }
.section-dark    { background: var(--primary); color: white; }
.section-dark h2,
.section-dark h3 { color: white; }
.section-header  { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-dark .section-eyebrow { color: rgba(255,255,255,0.55); }
.section-title    { font-size: 2rem; margin-bottom: 14px; }
.section-subtitle { font-size: 1rem; color: var(--muted); max-width: 580px; margin: 0 auto; }
.section-dark .section-subtitle { color: rgba(255,255,255,0.7); }

/* 4. NAV */
.rolin-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--cream);
  box-shadow: 0 2px 14px rgba(44,40,32,0.13);
  border-bottom: 2px solid rgba(119,141,99,0.18);
}
.rolin-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 68px;
  position: relative;
}
.rolin-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 28px;
  text-decoration: none;
}
.rolin-logo-img { height: 42px; width: auto; display: block; }
.rolin-logo:hover { opacity: 0.85; text-decoration: none; }
.rolin-nav-links { display: flex; align-items: center; gap: 2px; flex: 1; }
.rolin-nav-links a {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.rolin-nav-links a:hover { color: var(--accent); background: var(--accent-s); text-decoration: none; }
.rolin-nav-links a.active { color: var(--accent); font-weight: 700; }
.rolin-nav-links a.nav-cta {
  background: var(--orange);
  color: white;
  padding: 9px 20px;
  border-radius: 22px;
  font-weight: 700;
  margin-left: auto;
  box-shadow: 0 2px 8px rgba(240,140,66,0.28);
}
.rolin-nav-links a.nav-cta:hover { background: #d97a34; box-shadow: 0 4px 14px rgba(240,140,66,0.4); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--primary); border-radius: 2px; transition: all 0.3s; }

/* 5. BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-lg { padding: 15px 30px; font-size: 1rem; }
.btn-sm { padding: 8px 16px; font-size: 0.85rem; }
.btn-primary { background: var(--orange); color: white; border-color: var(--orange); box-shadow: 0 2px 10px rgba(240,140,66,0.25); }
.btn-primary:hover { background: #d97a34; border-color: #d97a34; box-shadow: 0 4px 18px rgba(240,140,66,0.4); }
.btn-green { background: var(--accent); color: white; border-color: var(--accent); }
.btn-green:hover { background: #667a55; border-color: #667a55; }
.btn-ghost { background: transparent; color: white; border-color: rgba(255,255,255,0.5); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: white; }
.btn-outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline:hover { background: var(--accent-s); }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* 6. HERO */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(105deg,
      rgba(20, 30, 18, 0.93) 0%,
      rgba(35, 55, 28, 0.82) 45%,
      rgba(45, 65, 35, 0.55) 100%
    ),
    url('../images/map-hero.jpg') center center / cover no-repeat;
  background-color: var(--primary);
  padding: 100px 0 80px;
}
.hero-content { max-width: 620px; }
.hero-eyebrow {
  display: inline-block;
  background: rgba(52,152,219,0.22);
  color: #7ec8f0;
  border: 1px solid rgba(52,152,219,0.35);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.3rem);
  color: white;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 14px;
}
.hero-title span { color: var(--accent); display: block; }
.hero-subtitle {
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.88);
  font-weight: 400;
  margin-bottom: 12px;
}
.hero-text {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.68);
  margin-bottom: 34px;
  max-width: 500px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* 7. BARRA PROVA SOCIAL */
.proof-bar {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.proof-items {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
  border-right: 1px solid var(--border);
}
.proof-item:last-child { border-right: none; }
.proof-icon { font-size: 1.15rem; flex-shrink: 0; }

/* 8. QUÈ ÉS ROLIN */
.rolin-def {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.rolin-def-text h2 { font-size: 1.9rem; margin-bottom: 16px; }
.rolin-def-text p  { color: var(--muted); }
.rolin-def-features { display: flex; flex-direction: column; gap: 14px; }
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--bg-s);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}
.feature-icon  { font-size: 1.3rem; flex-shrink: 0; line-height: 1; margin-top: 3px; }
.feature-title { font-size: 0.95rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.feature-desc  { font-size: 0.86rem; color: var(--muted); line-height: 1.5; }

/* 9. COM FUNCIONA */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.step-card {
  text-align: center;
  padding: 28px 18px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
}
.step-num {
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto 14px;
}
.step-title { font-size: 0.98rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.step-desc  { font-size: 0.85rem; color: var(--muted); line-height: 1.55; }
.step-connector {
  position: absolute;
  top: 38px;
  right: -11px;
  width: 22px;
  height: 2px;
  background: var(--border);
  z-index: 1;
}
.step-card:last-child .step-connector { display: none; }

/* 10. PERSONA CARDS */
.persona-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.persona-card {
  background: white;
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.2s;
}
.persona-card:hover { box-shadow: var(--shadow); }
.persona-card.card-coord   { border-top-color: var(--green); }
.persona-card.card-teacher { border-top-color: var(--purple); }
.persona-card.card-pro     { border-top-color: #1a6b8a; }
.persona-card .card-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}
.persona-card.card-coord .card-tag   { color: var(--green); }
.persona-card.card-teacher .card-tag { color: var(--purple); }
.persona-card.card-pro .card-tag     { color: #1a6b8a; }
.persona-card h3 { font-size: 1.02rem; margin-bottom: 10px; }
.persona-card p  { font-size: 0.89rem; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.checklist { list-style: none; padding: 0; margin: 0 0 18px; }
.checklist li { font-size: 0.87rem; color: var(--text); padding: 3px 0; }
.checklist li::before { content: "✓  "; color: var(--green); font-weight: 700; }

/* 11. CAIXA INCLUSIÓ */
.inclusion-box {
  background: var(--green-s);
  border: 1px solid rgba(39,174,96,0.2);
  border-left: 5px solid var(--green);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-top: 30px;
}
.ib-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green);
  margin-bottom: 10px;
  display: block;
}
.inclusion-box h3 { font-size: 1.08rem; margin-bottom: 10px; color: var(--primary); }
.inclusion-box p  { font-size: 0.9rem; color: var(--muted); margin-bottom: 14px; }
.inclusion-pills  { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.inclusion-pill {
  background: white;
  border: 1px solid rgba(39,174,96,0.3);
  color: var(--green);
  font-size: 0.77rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

/* 12. CITACIÓ */
.quote-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.quote-mark  { font-size: 4rem; line-height: 1; color: var(--accent); opacity: 0.45; font-family: Georgia, serif; margin-bottom: -8px; }
.quote-text  { font-size: clamp(1.05rem, 2.5vw, 1.35rem); font-weight: 500; color: white; line-height: 1.65; margin-bottom: 18px; font-style: italic; }
.quote-author { font-size: 0.82rem; color: rgba(255,255,255,0.5); letter-spacing: 1.5px; text-transform: uppercase; }

/* 13. FAQ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item  { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
  font-family: inherit;
}
.faq-question:hover { color: var(--accent); }
.faq-toggle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bg-s);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--accent);
  transition: all 0.2s;
  font-style: normal;
}
.faq-item.open .faq-toggle { background: var(--accent); border-color: var(--accent); color: white; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 0 20px; font-size: 0.93rem; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 320px; }

/* 14. LEAD MAGNET */
.lead-magnet { background: var(--primary); }
.lm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.lm-eyebrow {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.lm-title    { font-size: 1.55rem; color: white; font-weight: 800; line-height: 1.3; margin-bottom: 12px; }
.lm-subtitle { font-size: 0.93rem; color: rgba(255,255,255,0.65); line-height: 1.6; }
.lm-form-box {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius);
  padding: 32px;
}
.lm-form-title { font-size: 1rem; color: white; font-weight: 700; margin-bottom: 20px; }

/* 15. FORMULARIS */
.form-field  { margin-bottom: 14px; }
.form-label  { display: block; font-size: 0.76rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.6); margin-bottom: 6px; }
.form-input  {
  width: 100%;
  padding: 11px 15px;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
}
.form-input::placeholder { color: rgba(255,255,255,0.32); }
.form-input:focus { outline: none; border-color: var(--accent); background: rgba(255,255,255,0.12); }
.form-privacy { font-size: 0.73rem; color: rgba(255,255,255,0.38); margin-top: 10px; }
.form-success {
  background: var(--green-s);
  border: 1px solid var(--green);
  color: #1a7a43;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  display: none;
  margin-top: 12px;
}
.form-error {
  background: #fdf3f3;
  border: 1px solid #f0c0c0;
  color: #a93226;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.88rem;
  display: none;
  margin-top: 12px;
}
/* Formulari de contacte (fons blanc) */
.contact-form-box .form-label { color: var(--muted); }
.contact-form-box .form-input {
  background: white;
  color: var(--text);
  border: 1px solid var(--border);
}
.contact-form-box .form-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(52,152,219,0.1); }
.contact-form-box textarea.form-input { min-height: 120px; resize: vertical; }

/* 16. TARGETES EQUIP */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.team-card {
  background: white;
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.team-name { font-size: 1.08rem; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.team-role { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; color: var(--gold); margin-bottom: 12px; display: block; }
.team-bio  { font-size: 0.89rem; color: var(--muted); line-height: 1.6; }

/* 17. CAIXA PROPÒSIT */
.purpose-box {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 44px 40px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 32px;
}
.purpose-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.5); font-weight: 700; margin-bottom: 14px; }
.purpose-text  { font-size: 1.25rem; font-weight: 700; color: white; line-height: 1.55; }

/* 18. DIFERENCIADORS */
.diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.diff-card {
  background: white;
  border: 1px solid var(--border);
  border-left: 5px solid var(--purple);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.diff-num   { font-size: 0.67rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--purple); margin-bottom: 5px; }
.diff-title { font-size: 0.96rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.diff-desc  { font-size: 0.85rem; color: var(--muted); line-height: 1.55; }

/* 19. VALORS */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.value-card  {
  background: var(--bg-s);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
}
.value-icon { font-size: 1.7rem; margin-bottom: 10px; }
.value-name { font-size: 0.93rem; font-weight: 700; color: var(--primary); margin-bottom: 5px; }
.value-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

/* 20. XARXES SOCIALS */
.social-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.social-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.social-card:hover { box-shadow: var(--shadow); }
.social-icon-wrap { font-size: 1.9rem; line-height: 1; flex-shrink: 0; }
.social-name   { font-size: 0.98rem; font-weight: 700; color: var(--primary); margin-bottom: 2px; }
.social-handle { font-size: 0.84rem; color: var(--accent); font-weight: 600; margin-bottom: 6px; }
.social-desc   { font-size: 0.83rem; color: var(--muted); line-height: 1.5; }

/* 21. CAPÇALERA PÀGINES (no-hero) */
.page-header {
  background: var(--primary);
  padding: 64px 0 52px;
  text-align: center;
}
.page-header h1 { color: white; font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 12px; }
.page-header p  { color: rgba(255,255,255,0.62); font-size: 1rem; max-width: 580px; margin: 0 auto; }

/* 22. SECCIONS DE PERFIL (Para quién) */
.profile-section     { padding: 80px 0; }
.profile-section.alt { background: var(--bg-s); }
.profile-inner       { max-width: 860px; margin: 0 auto; }
.profile-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.tag-family    { background: rgba(52,152,219,0.1);  color: var(--accent); }
.tag-coord     { background: rgba(39,174,96,0.1);   color: var(--green); }
.tag-teacher   { background: rgba(142,68,173,0.1);  color: var(--purple); }
.tag-inclusion { background: rgba(39,174,96,0.12);  color: var(--green); border: 1px solid rgba(39,174,96,0.2); }
.profile-inner h2 { font-size: 1.7rem; margin-bottom: 16px; }
.profile-inner > p, .profile-text p { font-size: 0.97rem; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.profile-inner > p strong { color: var(--primary); }

/* Ancoratge nav (Para quién hero) */
.anchor-nav { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 28px; }
.anchor-btn {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 25px;
  font-size: 0.87rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.07);
  transition: all 0.2s;
  text-decoration: none;
}
.anchor-btn:hover { background: var(--accent); color: white; border-color: var(--accent); text-decoration: none; }

/* Divisor de perfil */
.profile-divider { border: none; border-top: 2px dashed var(--border); margin: 60px 0; }

/* Inclusió (seccio especial) */
.inclusion-section-full {
  background: var(--green-s);
  border-top: 4px solid var(--green);
  padding: 80px 0;
}

/* 23. TEXT LLONG (història) */
.story-text p { font-size: 0.97rem; color: var(--muted); line-height: 1.85; margin-bottom: 18px; }
.story-text p strong { color: var(--primary); font-size: 1.02rem; }

/* 24. CONTACT GRID */
.contact-outer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }

/* 25. FOOTER */
.rolin-footer { background: var(--primary); padding: 46px 24px; text-align: center; }
.footer-brand    { font-size: 1.05rem; font-weight: 900; color: var(--accent); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 8px; }
.footer-tagline  { font-size: 0.84rem; color: rgba(255,255,255,0.42); margin-bottom: 18px; }
.footer-links    { display: flex; justify-content: center; gap: 18px; margin-bottom: 14px; flex-wrap: wrap; }
.footer-links a  { color: rgba(255,255,255,0.42); font-size: 0.82rem; transition: color 0.2s; }
.footer-links a:hover { color: white; text-decoration: none; }
.footer-links span { color: rgba(255,255,255,0.18); }
.footer-copy { font-size: 0.77rem; color: rgba(255,255,255,0.28); }

/* 26. EXTENSIONS — pàgines interiors */

/* Aliases i helpers */
.section-sub { font-size: 1rem; color: var(--muted); max-width: 600px; margin: 0 auto 8px; }
.page-header-sub { color: rgba(255,255,255,0.62); font-size: 1rem; max-width: 600px; margin: 12px auto 0; }

/* Purpose box light (dins section-white / section-soft) */
.section-white .purpose-box,
.section-soft .purpose-box {
  background: white;
  border: 1px solid var(--border);
  border-left: 5px solid var(--accent);
  text-align: left;
  color: var(--text);
  box-shadow: var(--shadow);
}
.section-white .purpose-box h2,
.section-soft .purpose-box h2 { color: var(--primary); }
.section-white .purpose-box .section-eyebrow,
.section-soft .purpose-box .section-eyebrow { color: var(--accent); }
.purpose-body { margin-top: 14px; }
.purpose-body p { font-size: 0.95rem; color: var(--muted); margin-bottom: 12px; }
.purpose-list { list-style: none; padding: 0; margin: 0 0 14px; }
.purpose-list li { font-size: 0.9rem; color: var(--muted); padding: 6px 0 6px 22px; position: relative; border-bottom: 1px solid var(--border); }
.purpose-list li:last-child { border-bottom: none; }
.purpose-list li::before { content: "→"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* Diff card icon variant */
.diff-card .diff-icon { font-size: 1.6rem; margin-bottom: 10px; }

/* Value card with styled icon (metodo page) */
.value-card .value-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 12px;
}
.value-title { font-size: 0.93rem; font-weight: 700; color: var(--primary); margin-bottom: 5px; }

/* Leryenne section */
.leryenne-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.leryenne-features { display: flex; flex-direction: column; gap: 20px; }
.leryenne-item { display: flex; gap: 16px; align-items: flex-start; }
.leryenne-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.leryenne-title { font-size: 0.95rem; font-weight: 700; color: rgba(255,255,255,0.92); margin-bottom: 4px; }
.leryenne-desc  { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.55; }

/* Profile sections (Para quién page) */
.profile-section { /* already has padding from section class */ }
.profile-header { max-width: 860px; margin: 0 auto 36px; }
.profile-intro { font-size: 1.05rem; color: var(--muted); margin-top: 10px; }
.profile-body { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 860px; margin: 0 auto; }
.profile-col {}
.profile-col h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 14px; }

.scenario-list { list-style: none; padding: 0; margin: 0 0 18px; }
.scenario-list li { font-size: 0.87rem; color: var(--muted); padding: 5px 0 5px 22px; position: relative; }
.scenario-list li::before { content: "—"; position: absolute; left: 0; color: var(--muted); }

.profile-highlight {
  background: var(--accent-s);
  border: 1px solid rgba(52,152,219,0.2);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px 22px;
}
.ph-icon { font-size: 1.8rem; margin-bottom: 10px; }
.ph-quote { font-size: 0.92rem; color: var(--primary); font-style: italic; line-height: 1.65; margin-bottom: 10px; font-weight: 500; }
.ph-author { font-size: 0.75rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

.profile-box {
  background: var(--bg-s);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  padding: 14px 18px;
}
.pb-title { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); margin-bottom: 5px; }
.pb-text  { font-size: 0.86rem; color: var(--muted); line-height: 1.5; }

/* Lead magnet bullets (white) */
.lm-bullets { list-style: none; padding: 0; margin: 16px 0 0; }
.lm-bullets li { font-size: 0.87rem; color: rgba(255,255,255,0.72); padding: 5px 0 5px 22px; position: relative; }
.lm-bullets li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* Inclusion section full (Para quién page) */
.inclusion-section { max-width: 100%; }
.inclusion-header { max-width: 860px; margin: 0 auto 36px; }
.inclusion-header h2 { font-size: 1.7rem; margin-bottom: 12px; }
.inclusion-header p  { font-size: 0.97rem; color: var(--muted); }
.inclusion-profiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 860px; margin: 0 auto 28px; }
.inclusion-profile {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow);
}
.ip-pill {
  display: inline-block;
  background: rgba(52,152,219,0.1);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.inclusion-profile h3 { font-size: 1rem; color: var(--primary); margin-bottom: 8px; }
.inclusion-profile p  { font-size: 0.87rem; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.inclusion-note {
  max-width: 860px;
  margin: 0 auto;
  background: var(--bg-s);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 22px;
  font-size: 0.87rem;
  color: var(--muted);
}
.inclusion-note strong { color: var(--primary); }

/* Origin section (Sobre nosotros page) */
.origin-section { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.origin-text {}
.origin-text h2 { font-size: 1.8rem; margin-bottom: 18px; }
.origin-text p  { font-size: 0.96rem; color: var(--muted); line-height: 1.8; }
.origin-aside {}

.origin-quote {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 28px 26px;
  margin-bottom: 22px;
  position: relative;
}
.oq-mark { font-size: 3rem; line-height: 0.8; color: var(--accent); opacity: 0.5; font-family: Georgia, serif; margin-bottom: 10px; }
.oq-text { font-size: 0.98rem; color: rgba(255,255,255,0.88); font-style: italic; line-height: 1.65; margin-bottom: 14px; }
.oq-author { font-size: 0.75rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }

.origin-data { display: flex; gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.od-item { flex: 1; padding: 18px 16px; text-align: center; border-right: 1px solid var(--border); }
.od-item:last-child { border-right: none; }
.od-num   { font-size: 1.5rem; font-weight: 900; color: var(--primary); line-height: 1; margin-bottom: 4px; }
.od-label { font-size: 0.75rem; color: var(--muted); line-height: 1.3; }

/* Team card additions */
.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  letter-spacing: 0;
}
.team-avatar-a { background: rgba(52,152,219,0.15); color: var(--accent); }
.team-avatar-x { background: rgba(39,174,96,0.15);  color: var(--green); }
.team-bio p { font-size: 0.89rem; color: var(--muted); line-height: 1.65; margin-bottom: 10px; }
.team-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.team-tag {
  font-size: 0.71rem;
  font-weight: 600;
  background: var(--bg-s);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 3px 10px;
  border-radius: 20px;
}

/* Contact page layout */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info {}
.contact-info h2 { font-size: 1.7rem; margin-bottom: 12px; }
.contact-info > p { font-size: 0.96rem; color: var(--muted); line-height: 1.75; margin-bottom: 24px; }
.contact-items { display: flex; flex-direction: column; gap: 18px; margin-bottom: 24px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.ci-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 3px; }
.ci-value { font-size: 0.9rem; color: var(--primary); font-weight: 600; }
.ci-value a { color: var(--accent); }
.contact-note {
  background: var(--bg-s);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.87rem;
  color: var(--muted);
}
.contact-note strong { color: var(--primary); }

.contact-form-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.cf-title { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 22px; }

/* Light form inputs (dins fons clar) */
.form-input-light {
  background: var(--bg-s);
  color: var(--text);
  border: 1px solid var(--border);
}
.form-input-light::placeholder { color: var(--muted); }
.form-input-light:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(52,152,219,0.1); background: white; }
.form-textarea { min-height: 120px; resize: vertical; }
.contact-form-box .form-label { color: var(--muted); }

/* Social cards (contacto page — 3 columnes) */
.social-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 860px; margin: 0 auto; }
.social-cards .social-card {
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  align-items: center;
}
.sc-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px;
}
.sc-name   { font-size: 1rem; font-weight: 700; color: var(--primary); }
.sc-handle { font-size: 0.82rem; color: var(--accent); font-weight: 600; margin-bottom: 4px; }
.sc-desc   { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

/* 28. IMATGES FANTASIA */

/* Vista prèvia del món a la portada (substitueix el personatge) */
.rolin-world-preview { margin-bottom: 16px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.rolin-world-img { width: 100%; height: auto; display: block; transition: transform 0.4s; }
.rolin-world-preview:hover .rolin-world-img { transform: scale(1.03); }
.rolin-world-caption { text-align: center; font-size: 0.75rem; color: var(--muted); font-style: italic; padding: 6px 0; }

/* Capçalera El juego */
.page-header-juego {
  background:
    linear-gradient(rgba(20,30,18,0.82), rgba(20,30,18,0.72)),
    url('../images/scenes/bael_gor.jpg') center 35% / cover no-repeat;
}

/* Fons underground El juego */
.juego-underground-bg {
  background:
    linear-gradient(rgba(10,12,10,0.88), rgba(10,12,10,0.80)),
    url('../images/scenes/kaherin_gor.jpg') center center / cover no-repeat;
}

/* Layout intro El juego */
.juego-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.juego-map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.juego-map-img { width: 100%; height: auto; display: block; }
.juego-map-label { text-align: center; font-size: 0.75rem; color: var(--muted); font-style: italic; padding: 8px 0 0; }

/* Steps El juego */
.juego-steps { display: flex; flex-direction: column; gap: 20px; max-width: 760px; margin: 0 auto 40px; }
.juego-step { display: flex; gap: 20px; align-items: flex-start; background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 24px; }
.js-num { font-family: 'Lora', Georgia, serif; font-size: 1.8rem; font-weight: 700; color: var(--orange); line-height: 1; flex-shrink: 0; width: 36px; }
.js-title { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 6px; }
.js-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* Placeholders d'imatge */
.img-placeholder-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px; }
.img-placeholder {
  background: var(--cream);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.img-placeholder-dark {
  background: rgba(255,255,255,0.06);
  border: 2px dashed rgba(255,255,255,0.2);
  min-height: 200px;
  width: 100%;
  margin-top: 24px;
}
.img-placeholder-inline { margin-top: 16px; min-height: 100px; }
.ip-icon { font-size: 1.8rem; }
.ip-text { font-size: 0.85rem; font-weight: 600; color: var(--primary); }
.ip-sub  { font-size: 0.75rem; color: var(--muted); }
.img-placeholder-dark .ip-text,
.img-placeholder-dark .ip-sub { color: rgba(255,255,255,0.6); }

/* Personatges El juego */
.juego-chars { display: grid; grid-template-columns: 1fr 220px; gap: 52px; align-items: center; }
.juego-char-list { list-style: none; padding: 0; margin: 16px 0 20px; }
.juego-char-list li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; color: var(--muted); }
.juego-char-list li:last-child { border-bottom: none; }
.juego-char-list strong { color: var(--primary); }
.juego-char-img { max-height: 200px; width: auto; margin: 0 auto; mix-blend-mode: multiply; filter: drop-shadow(0 6px 16px rgba(0,0,0,0.12)); }

/* Underground layout */
.juego-underground { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

/* Tech section */
.juego-tech { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.juego-tech-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }

/* Fotos i escenes El juego */
.juego-photos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.juego-photo-img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius); display: block; box-shadow: var(--shadow); }
.juego-scene-img { width: 100%; height: auto; border-radius: var(--radius); display: block; box-shadow: var(--shadow-lg); }
.juego-char-sheet { width: 100%; max-width: 460px; height: auto; border-radius: var(--radius); display: block; box-shadow: var(--shadow); margin-top: 16px; }
.impl-badge-premium { background: var(--accent); color: #fff; }
.jt-pill { background: var(--accent-s); color: var(--accent); border: 1px solid rgba(119,141,99,0.25); font-size: 0.77rem; font-weight: 600; padding: 4px 12px; border-radius: 20px; }

/* Video demo */
.video-demo-box { text-align: center; max-width: 680px; margin: 0 auto; }
.vd-badge {
  display: inline-block; background: var(--orange); color: white;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; padding: 4px 14px; border-radius: 20px; margin-bottom: 16px;
}
.vd-placeholder {
  background: rgba(255,255,255,0.06);
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 48px 24px;
  margin: 0 auto;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.vd-play { width: 64px; height: 64px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: white; }
.vd-label { color: rgba(255,255,255,0.5); font-size: 0.87rem; }

/* Personatge espià a la secció "Qué es Rolin" */
.rolin-character-wrap {
  text-align: center;
  margin-bottom: 12px;
  order: -1;
}
.rolin-character {
  max-height: 200px;
  width: auto;
  margin: 0 auto;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.15));
}

/* Capçaleres de pàgina amb imatges de fons */
.page-header-metodo {
  background:
    linear-gradient(rgba(20,30,18,0.80), rgba(20,30,18,0.72)),
    url('../images/scenes/inhasdir.jpg') center center / cover no-repeat;
}
.page-header-paraquien {
  background:
    linear-gradient(rgba(20,30,18,0.78), rgba(20,30,18,0.70)),
    url('../images/scenes/lysseo.jpg') center 40% / cover no-repeat;
}
.page-header-sobre {
  background:
    linear-gradient(rgba(20,30,18,0.80), rgba(20,30,18,0.72)),
    url('../images/scenes/risemight.jpg') center 30% / cover no-repeat;
}
.page-header-blog {
  background:
    linear-gradient(rgba(20,30,18,0.78), rgba(20,30,18,0.70)),
    url('../images/scenes/adelihs.jpg') center 25% / cover no-repeat;
}

/* Leryenne — fons amb castell sobre la secció fosca */
.leryenne-bg {
  background:
    linear-gradient(rgba(20,30,18,0.88), rgba(20,30,18,0.82)),
    url('../images/scenes/cynya.jpg') center 40% / cover no-repeat;
}

/* 29. BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-card-img-wrap { display: block; aspect-ratio: 16/9; overflow: hidden; background: var(--cream); }
.blog-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.blog-card-img-wrap:hover .blog-card-img { transform: scale(1.04); }
.blog-card-img-placeholder { display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.blog-card-body { padding: 20px 22px; display: flex; flex-direction: column; flex: 1; }
.blog-card-cat {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--orange); margin-bottom: 8px; display: block;
}
.blog-card-title { font-size: 1.05rem; margin-bottom: 10px; }
.blog-card-title a { color: var(--primary); text-decoration: none; }
.blog-card-title a:hover { color: var(--accent); text-decoration: none; }
.blog-card-excerpt { font-size: 0.87rem; color: var(--muted); line-height: 1.6; flex: 1; margin-bottom: 14px; }
.blog-card-footer { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); padding-top: 12px; margin-top: auto; }
.blog-card-date { font-size: 0.76rem; color: var(--muted); }
.blog-card-link { font-size: 0.82rem; font-weight: 600; color: var(--accent); }
.blog-card-link:hover { color: var(--orange); text-decoration: none; }

.blog-pagination { margin-top: 48px; text-align: center; }
.blog-pagination .nav-links { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.blog-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 8px;
  border: 1px solid var(--border); color: var(--primary);
  font-size: 0.9rem; font-weight: 600; text-decoration: none; transition: all 0.2s;
}
.blog-pagination .page-numbers.current { background: var(--accent); color: white; border-color: var(--accent); }
.blog-pagination .page-numbers:hover { background: var(--accent-s); text-decoration: none; }
.blog-pagination .prev, .blog-pagination .next { width: auto; padding: 0 16px; }

.blog-empty { text-align: center; padding: 60px 20px; max-width: 500px; margin: 0 auto; }
.blog-empty-icon { font-size: 3rem; margin-bottom: 16px; }
.blog-empty h2 { font-size: 1.5rem; margin-bottom: 12px; }
.blog-empty p { color: var(--muted); }

/* 29. ARTICLE INDIVIDUAL */
.post-header { text-align: left; }
.post-header h1 { font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: 14px; }
.post-cat-eyebrow {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  background: var(--orange); color: white;
  padding: 3px 12px; border-radius: 20px; margin-bottom: 14px;
}
.post-meta { font-size: 0.83rem; color: rgba(255,255,255,0.55); display: flex; gap: 6px; align-items: center; margin-top: 8px; }
.post-meta-sep { opacity: 0.4; }

.post-layout { display: grid; grid-template-columns: 1fr 300px; gap: 52px; align-items: start; }
.post-featured-img { border-radius: var(--radius); overflow: hidden; margin-bottom: 28px; }
.post-featured-img img { width: 100%; height: auto; }
.post-body { font-size: 1rem; line-height: 1.85; color: var(--text); }
.post-body h2 { font-size: 1.45rem; margin: 32px 0 14px; }
.post-body h3 { font-size: 1.15rem; margin: 24px 0 10px; }
.post-body p  { margin-bottom: 18px; }
.post-body ul, .post-body ol { margin: 0 0 18px 1.4rem; }
.post-body li { margin-bottom: 6px; }
.post-body blockquote {
  border-left: 4px solid var(--accent); padding: 14px 20px;
  margin: 24px 0; background: var(--accent-s); border-radius: 0 8px 8px 0;
  font-style: italic; color: var(--primary);
}
.post-body img { border-radius: 8px; margin: 18px 0; }

.post-nav { display: flex; gap: 16px; margin-top: 48px; border-top: 2px solid var(--border); padding-top: 28px; }
.post-nav-item { flex: 1; padding: 16px 18px; border: 1px solid var(--border); border-radius: var(--radius); text-decoration: none; transition: box-shadow 0.2s; }
.post-nav-item:hover { box-shadow: var(--shadow); text-decoration: none; }
.post-nav-next { text-align: right; }
.pn-label { display: block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 5px; }
.pn-title { font-size: 0.9rem; font-weight: 600; color: var(--primary); }

.post-sidebar { position: sticky; top: 88px; }
.sidebar-box {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 20px;
}
.sb-title { font-family: 'Lora', Georgia, serif; font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.sb-text  { font-size: 0.87rem; color: var(--muted); line-height: 1.55; }
.sidebar-posts { list-style: none; padding: 0; margin: 10px 0 0; }
.sidebar-posts li { border-bottom: 1px solid var(--border); padding: 8px 0; }
.sidebar-posts li:last-child { border-bottom: none; }
.sidebar-posts a { font-size: 0.87rem; color: var(--primary); font-weight: 500; }
.sidebar-posts a:hover { color: var(--accent); text-decoration: none; }

/* Fila de personatges sobre la secció "Para quién" */
.persona-chars-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.persona-char {
  height: 150px;
  width: auto;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.12));
  transition: transform 0.25s ease;
}
.persona-char:hover { transform: translateY(-6px); }

/* 28. SECCIÓN IMPLEMENTACIÓN */
.impl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 860px; margin: 0 auto; }
.impl-card { border-radius: var(--radius); padding: 32px 28px; position: relative; }
.impl-card-base { background: var(--soft); border: 1px solid var(--border); }
.impl-card-premium { background: var(--primary); }
.impl-icon { font-size: 2rem; margin-bottom: 14px; }
.impl-title { font-size: 1.08rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.impl-desc { font-size: 0.9rem; color: var(--muted); margin-bottom: 14px; line-height: 1.6; }
.impl-card-premium .impl-title { color: #fff; }
.impl-card-premium .impl-desc  { color: rgba(255,255,255,0.8); }
.impl-card-premium .checklist li { color: rgba(255,255,255,0.9); }
.impl-card-premium .checklist li::before { color: var(--gold); }
.impl-badge { position: absolute; top: -13px; left: 28px; background: var(--gold); color: var(--primary); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 4px 12px; border-radius: 20px; }

/* 27. RESPONSIVE */
@media (max-width: 960px) {
  .rolin-def          { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid         { grid-template-columns: 1fr 1fr; }
  .step-connector     { display: none; }
  .persona-grid       { grid-template-columns: 1fr; }
  .lm-grid            { grid-template-columns: 1fr; gap: 36px; }
  .contact-outer-grid { grid-template-columns: 1fr; gap: 36px; }
  .diff-grid          { grid-template-columns: 1fr; }
  .impl-grid          { grid-template-columns: 1fr; }
  .social-grid        { grid-template-columns: 1fr; }
  .team-grid          { grid-template-columns: 1fr; }
  .leryenne-inner     { grid-template-columns: 1fr; gap: 36px; }
  .profile-body       { grid-template-columns: 1fr; gap: 28px; }
  .inclusion-profiles { grid-template-columns: 1fr; }
  .origin-section     { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid       { grid-template-columns: 1fr; gap: 36px; }
  .social-cards       { grid-template-columns: 1fr; }
  .values-grid        { grid-template-columns: repeat(2, 1fr); }
  .blog-grid          { grid-template-columns: 1fr 1fr; gap: 18px; }
  .post-layout        { grid-template-columns: 1fr; }
  .post-sidebar       { position: static; }
  .juego-intro        { grid-template-columns: 1fr; }
  .juego-chars        { grid-template-columns: 1fr; }
  .juego-underground  { grid-template-columns: 1fr; }
  .juego-tech         { grid-template-columns: 1fr; }
  .juego-photos-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 52px 0; }
  .container { padding: 0 16px; }
  .steps-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 85vh; padding: 80px 0 56px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .proof-items { flex-direction: column; }
  .proof-item  { border-right: none; border-bottom: 1px solid var(--border); width: 100%; justify-content: center; }
  .proof-item:last-child { border-bottom: none; }
  .section-title     { font-size: 1.65rem; }
  .juego-photos-grid { grid-template-columns: 1fr; }
  .lm-form-box   { padding: 22px 18px; }
  .purpose-box   { padding: 28px 20px; }
  .profile-inner h2 { font-size: 1.4rem; }
  .anchor-nav { flex-direction: column; align-items: center; }
  .rolin-nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 12px 20px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    border-top: 2px solid var(--accent);
    z-index: 999;
  }
  .rolin-nav-links.open { display: flex; }
  .rolin-nav-links a { color: rgba(255,255,255,0.85); padding: 12px 8px; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.95rem; }
  .rolin-nav-links a:hover { color: white; background: rgba(255,255,255,0.06); }
  .rolin-nav-links a.active { color: var(--orange); }
  .rolin-nav-links a.nav-cta { color: white; background: var(--orange); margin-left: 0; margin-top: 8px; border-radius: 8px; text-align: center; border: none; }
  .nav-toggle { display: flex; }
}
