/* ═══════════════════════════════════════════════════════
   BELINGUAL — Main Stylesheet
   All design tokens, components, layout, and responsive
═══════════════════════════════════════════════════════ */

html { scroll-behavior: smooth; }

:root {
  --burgundy:       #6B1A2A;
  --burgundy-light: #8B2438;
  --burgundy-dark:  #4A0F1C;
  --black:          #111010;
  --cream:          #FAF8F3;
  --cream-dark:     #F0EBE0;
  --off-white:      #FDFCFA;
  --muted:          #7A6B60;
  --gold:           #C4922A;
  --text:           #1C1410;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--off-white);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
.site-header {
  position: fixed; top: 0; width: 100%; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 4rem;
  background: rgba(253,252,250,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(107,26,42,0.1);
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-text {
  font-family: 'Lora', serif;
  font-size: 1.45rem; font-weight: 700;
  color: var(--burgundy);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.nav-logo-text .dot { color: var(--burgundy); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  text-decoration: none; color: var(--text);
  font-size: 0.875rem; font-weight: 500;
  opacity: 0.65; transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  background: var(--burgundy) !important;
  color: white !important; opacity: 1 !important;
  padding: 0.55rem 1.3rem; border-radius: 5px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--burgundy-light) !important; }

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
  z-index: 101;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--burgundy); border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0;
  background: rgba(253,252,250,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(107,26,42,0.1);
  padding: 0 1.5rem 1.5rem;
  flex-direction: column;
  z-index: 99;
  pointer-events: none;
  opacity: 0; transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.nav-drawer.open { opacity: 1; transform: translateY(0); pointer-events: all; }
.nav-drawer a {
  text-decoration: none; color: var(--text);
  font-size: 1rem; font-weight: 500;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(107,26,42,0.07);
  display: block; opacity: 0.8;
}
.nav-drawer .drawer-cta {
  margin-top: 1rem;
  background: var(--burgundy);
  color: white !important; opacity: 1;
  text-align: center; padding: 0.9rem !important;
  border-radius: 6px; border-bottom: none !important;
  font-weight: 600 !important;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 72px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(107,26,42,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 3rem 5rem 5rem;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--burgundy);
  margin-bottom: 1.8rem;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--burgundy); flex-shrink: 0;
}
.hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1.1; font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1.6rem;
  color: var(--black);
}
.hero h1 em { font-style: italic; color: var(--burgundy); }
.hero-sub {
  font-size: 1.05rem; line-height: 1.75;
  color: var(--muted); max-width: 430px;
  margin-bottom: 0.8rem; font-weight: 400;
}
.hero-note {
  font-size: 0.82rem; color: var(--muted);
  margin-bottom: 2.5rem; opacity: 0.7;
  border-left: 2px solid var(--burgundy);
  padding-left: 0.8rem;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--burgundy); color: white;
  padding: 0.9rem 2rem; border-radius: 5px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  text-decoration: none; transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-primary:hover { background: var(--burgundy-light); transform: translateY(-2px); color: white; }
.btn-outline {
  background: transparent; color: var(--black);
  padding: 0.9rem 1.8rem; border-radius: 5px;
  border: 1.5px solid rgba(28,20,16,0.18);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem; font-weight: 500;
  text-decoration: none; transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--burgundy); color: var(--burgundy); }
.btn-whatsapp {
  background: #128C7E; color: white;
  padding: 0.9rem 1.5rem; border-radius: 5px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem; font-weight: 500;
  text-decoration: none; transition: background 0.2s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-whatsapp:hover { background: #0e7265; color: white; }

/* ── HERO CARD STACK ── */
.hero-right {
  display: flex; align-items: center; justify-content: center;
  padding: 4rem 3.5rem 4rem 2rem;
  position: relative; z-index: 2;
  overflow: visible;
}
.hero-right::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 65% 40%, rgba(107,26,42,0.09) 0%, transparent 55%),
    radial-gradient(ellipse at 30% 75%, rgba(212,164,58,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-cards-stack {
  position: relative;
  width: 340px; height: 440px;
}
.hc-main {
  position: absolute;
  top: 30px; left: 50%; transform: translateX(-50%);
  width: 310px;
  background: rgba(255,255,255,0.52);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 18px;
  padding: 1.8rem;
  box-shadow: 0 20px 60px rgba(107,26,42,0.16), 0 2px 8px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.95);
  z-index: 3;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.hc-main:hover {
  transform: translateX(-50%) translateY(-5px);
  box-shadow: 0 28px 70px rgba(107,26,42,0.2), 0 4px 16px rgba(0,0,0,0.07), inset 0 1px 0 rgba(255,255,255,0.95);
}
.hc-back {
  position: absolute;
  width: 240px;
  border-radius: 16px;
  padding: 1.3rem 1.4rem;
  z-index: 1;
  transition: transform 0.45s cubic-bezier(0.34,1.15,0.64,1), box-shadow 0.4s ease;
}
.hc-back-right {
  top: 0; right: -10px;
  background: linear-gradient(145deg, #F5E6C0, #EDD89A);
  border: 1px solid rgba(212,164,58,0.35);
  box-shadow: 0 12px 40px rgba(196,146,42,0.22), inset 0 1px 0 rgba(255,255,255,0.7);
  transform: rotate(5deg) translateX(28px);
}
.hc-back-left {
  bottom: 0; left: -10px;
  background: var(--burgundy);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 12px 40px rgba(107,26,42,0.28);
  transform: rotate(-4deg) translateX(-28px);
}
.hero-cards-stack:hover .hc-back-right {
  transform: rotate(5deg) translateX(0);
  box-shadow: 0 18px 50px rgba(196,146,42,0.28), inset 0 1px 0 rgba(255,255,255,0.7);
}
.hero-cards-stack:hover .hc-back-left {
  transform: rotate(-4deg) translateX(0);
  box-shadow: 0 18px 50px rgba(107,26,42,0.32);
}
.hc-back-label {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
}
.hc-back-right .hc-back-label { color: rgba(107,26,42,0.55); }
.hc-back-right .hc-back-title { color: var(--burgundy-dark); }
.hc-back-right .hc-feat      { color: rgba(28,20,16,0.8); }
.hc-back-right .hc-check     { color: var(--burgundy); }
.hc-back-right .hc-sub       { color: rgba(28,20,16,0.45); }
.hc-back-title {
  font-family: 'Lora', serif; font-size: 1.05rem; font-weight: 700;
  color: white; margin-bottom: 0;
}
.hc-feats { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.9rem; }
.hc-feat {
  display: flex; align-items: flex-start; gap: 0.4rem;
  font-size: 0.77rem; color: rgba(255,255,255,0.8); line-height: 1.4;
}
.hc-check { color: rgba(255,255,255,0.55); font-weight: 700; flex-shrink: 0; }
.hc-sub   { font-size: 0.7rem; color: rgba(255,255,255,0.45); }

/* Lesson card (inside hc-main) */
.lesson-card-header { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.4rem; }
.meet-dot { width: 10px; height: 10px; border-radius: 50%; background: #34A853; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:0.4} }
.meet-label { font-size: 0.78rem; font-weight: 600; color: #34A853; letter-spacing: 0.04em; }
.lesson-card-title { font-family: 'Lora', serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 0.35rem; }
.lesson-card-sub   { font-size: 0.8rem; color: var(--muted); margin-bottom: 1.2rem; }
.lesson-topics     { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.4rem; }
.topic-chip {
  background: rgba(240,235,224,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--burgundy);
  font-size: 0.72rem; font-weight: 600; padding: 0.25rem 0.65rem;
  border-radius: 20px; letter-spacing: 0.03em;
  border: 1px solid rgba(107,26,42,0.1);
}
.lesson-card-footer {
  border-top: 1px solid rgba(107,26,42,0.1); padding-top: 1rem;
  display: flex; align-items: center; justify-content: space-between;
}
.lesson-card-footer span  { font-size: 0.78rem; color: var(--muted); }
.lesson-card-footer strong { color: var(--black); font-weight: 600; }

/* ── SECTIONS ── */
section { padding: 6rem 5rem; scroll-margin-top: 72px; }
.section-eyebrow {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--burgundy); margin-bottom: 0.7rem;
}
.section-title {
  font-family: 'Lora', serif;
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  font-weight: 700; letter-spacing: -0.03em;
  line-height: 1.15; margin-bottom: 0.9rem; color: var(--black);
}
.section-sub {
  color: var(--muted); font-size: 1rem; line-height: 1.75;
  max-width: 480px; margin-bottom: 3rem;
}
.divider { width: 40px; height: 3px; background: var(--burgundy); margin-bottom: 1.5rem; border-radius: 2px; }

/* ── WHAT YOU GET ── */
.what-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 1.5rem; }
.what-card {
  border-radius: 12px; padding: 2rem;
  border: 1.5px solid rgba(107,26,42,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.what-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(107,26,42,0.08); }
.what-card.featured { background: var(--burgundy); color: white; border-color: var(--burgundy); }
.what-card-icon    { font-size: 1.8rem; margin-bottom: 1rem; }
.what-card h3 { font-family: 'Lora', serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
.what-card p  { font-size: 0.85rem; line-height: 1.65; color: var(--muted); }
.what-card.featured p  { color: rgba(255,255,255,0.75); }
.what-card.featured h3 { color: white; }
.what-tag         { display: inline-block; margin-top: 1rem; background: rgba(255,255,255,0.15); color: white; font-size: 0.7rem; font-weight: 600; padding: 0.25rem 0.7rem; border-radius: 20px; letter-spacing: 0.04em; }
.what-tag-outline { display: inline-block; margin-top: 1rem; background: var(--cream-dark); color: var(--burgundy); font-size: 0.7rem; font-weight: 600; padding: 0.25rem 0.7rem; border-radius: 20px; letter-spacing: 0.04em; }

/* ── HOW IT WORKS ── */
.how { background: var(--cream-dark); }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.step { background: white; border-radius: 12px; padding: 2rem; position: relative; overflow: hidden; }
.step-num {
  font-family: 'Lora', serif; font-size: 5rem; font-weight: 700;
  color: var(--burgundy); opacity: 0.07;
  position: absolute; top: -10px; right: 1rem;
  line-height: 1; pointer-events: none;
}
.step h3  { font-family: 'Lora', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; position: relative; z-index: 1; }
.step p   { font-size: 0.84rem; color: var(--muted); line-height: 1.65; position: relative; z-index: 1; }
.step-index {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--burgundy); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
  margin-bottom: 1rem; position: relative; z-index: 1;
}

/* ── GAMES ── */
.games-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; margin-bottom: 1.2rem; }
.game-card {
  background: white; border-radius: 12px; padding: 1.8rem;
  border: 1.5px solid rgba(0,0,0,0.06);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.game-card:hover { border-color: var(--burgundy); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(107,26,42,0.09); }
.free-pill {
  position: absolute; top: 1rem; right: 1rem;
  background: #1A7A4A; color: white;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem; border-radius: 20px; text-transform: uppercase;
}
.game-emoji { font-size: 1.6rem; margin-bottom: 0.8rem; }
.game-card h3  { font-family: 'Lora', serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 0.35rem; }
.game-desc     { font-size: 0.82rem; color: var(--muted); line-height: 1.6; margin-bottom: 0.9rem; }
.game-skills   { display: flex; flex-wrap: wrap; gap: 0.3rem; margin-bottom: 1.2rem; }
.skill-chip    { font-size: 0.67rem; padding: 0.2rem 0.55rem; background: var(--cream-dark); color: var(--muted); border-radius: 20px; font-weight: 500; }
.btn-play {
  display: inline-block; background: var(--burgundy); color: white;
  padding: 0.5rem 1.1rem; border-radius: 4px;
  font-size: 0.82rem; font-weight: 600; text-decoration: none;
  transition: background 0.2s;
}
.btn-play:hover { background: var(--burgundy-light); color: white; }
.locked-strip {
  background: var(--black); border-radius: 12px;
  padding: 1.8rem 2.2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.locked-strip-left h3 { font-family: 'Lora', serif; color: white; font-size: 1rem; margin-bottom: 0.3rem; }
.locked-strip-left p  { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.locked-pills { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.locked-pill  { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.45); padding: 0.4rem 0.85rem; border-radius: 6px; font-size: 0.75rem; }
.btn-upgrade {
  background: var(--burgundy); color: white;
  padding: 0.7rem 1.5rem; border-radius: 5px;
  font-weight: 600; font-size: 0.88rem; text-decoration: none;
  white-space: nowrap; transition: background 0.2s; flex-shrink: 0;
}
.btn-upgrade:hover { background: var(--burgundy-light); color: white; }

/* ── PLANS ── */
.plans { background: var(--cream); }
.plans-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; }
.plan-card {
  background: white; border-radius: 12px; padding: 1.8rem 1.5rem;
  border: 1.5px solid rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column;
}
.plan-card:hover { transform: translateY(-3px); box-shadow: 0 14px 44px rgba(0,0,0,0.08); }
.plan-card.featured { background: var(--burgundy); border-color: var(--burgundy); color: white; }
.plan-eyebrow { font-size: 0.67rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 0.4rem; }
.plan-card.featured .plan-eyebrow { color: rgba(255,255,255,0.6); }
.plan-title { font-family: 'Lora', serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 0.9rem; }
.plan-price { font-family: 'Lora', serif; font-size: 2.1rem; font-weight: 700; color: var(--burgundy); line-height: 1; margin-bottom: 0.2rem; }
.plan-card.featured .plan-price { color: white; }
.plan-period { font-size: 0.75rem; color: var(--muted); margin-bottom: 1.5rem; }
.plan-card.featured .plan-period { color: rgba(255,255,255,0.6); }
.plan-features { list-style: none; flex: 1; margin-bottom: 1.5rem; }
.plan-feature {
  font-size: 0.82rem; padding: 0.45rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex; align-items: flex-start; gap: 0.5rem; color: var(--text);
}
.plan-card.featured .plan-feature { border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); }
.plan-feature::before { content: '✓'; font-weight: 700; flex-shrink: 0; color: var(--burgundy); }
.plan-card.featured .plan-feature::before { color: rgba(255,255,255,0.8); }
.plan-btn-wrap { margin-top: auto; }
.plan-btn { display: block; text-align: center; padding: 0.72rem; border-radius: 5px; font-size: 0.87rem; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.pb-outline { border: 1.5px solid rgba(0,0,0,0.15); color: var(--black); }
.pb-outline:hover { border-color: var(--burgundy); color: var(--burgundy); }
.pb-white { background: white; color: var(--burgundy); }
.pb-white:hover { background: var(--cream-dark); }
.pb-dark  { background: var(--black); color: white; }
.pb-dark:hover { background: #2a1f1a; color: white; }
.best-tag { display: inline-block; background: var(--gold); color: white; font-size: 0.62rem; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.4rem; }
.payments-note { display: flex; align-items: center; gap: 0.8rem; margin-top: 2rem; flex-wrap: wrap; }
.payments-note > span { font-size: 0.78rem; color: var(--muted); }
.pay-badge { background: white; border: 1px solid rgba(0,0,0,0.1); padding: 0.35rem 0.85rem; border-radius: 5px; font-size: 0.78rem; font-weight: 600; color: var(--black); }
.pay-badge.rec { border-color: var(--burgundy); color: var(--burgundy); }

/* ── REVIEWS ── */
.reviews { background: var(--black); }
.reviews .section-title { color: white; }
.reviews .section-sub   { color: rgba(255,255,255,0.45); }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
.review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px; padding: 1.8rem;
  transition: background 0.2s;
}
.review-card:hover { background: rgba(255,255,255,0.07); }
.review-stars  { color: var(--gold); font-size: 0.85rem; margin-bottom: 1rem; }
.review-text   { font-size: 0.88rem; line-height: 1.75; color: rgba(255,255,255,0.75); margin-bottom: 1.3rem; font-style: italic; }
.reviewer      { display: flex; align-items: center; gap: 0.8rem; }
.reviewer-av   { width: 36px; height: 36px; border-radius: 50%; background: var(--burgundy); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.82rem; color: white; flex-shrink: 0; }
.reviewer-name { font-size: 0.85rem; font-weight: 600; color: white; }
.reviewer-loc  { font-size: 0.73rem; color: rgba(255,255,255,0.38); }

/* ── FAQ ── */
.faq-section { background: var(--cream); }
.faq-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.faq-item    { background: white; border-radius: 10px; padding: 1.5rem; border: 1px solid rgba(0,0,0,0.06); }
.faq-q       { font-weight: 600; font-size: 0.88rem; margin-bottom: 0.5rem; }
.faq-a       { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }

/* ── CORPORATE ── */
.corp { background: var(--cream-dark); padding: 7rem 5rem; scroll-margin-top: 72px; }
.corp .section-title { color: var(--black); }
.corp .section-sub   { color: var(--muted); }
.corp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 4rem; }
.corp-card {
  background: white; border: 1.5px solid rgba(107,26,42,0.08);
  border-radius: 12px; padding: 1.8rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.corp-card:hover { border-color: var(--burgundy); transform: translateY(-2px); box-shadow: 0 10px 36px rgba(107,26,42,0.09); }
.corp-card-icon { font-size: 1.5rem; margin-bottom: 0.8rem; }
.corp-card h3   { font-family: 'Lora', serif; font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 0.4rem; }
.corp-card p    { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }
.corp-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; margin-bottom: 4rem; }
.corp-stat  { background: var(--burgundy); border-radius: 12px; padding: 2rem; text-align: center; }
.corp-stat-num   { font-family: 'Lora', serif; font-size: 2.5rem; font-weight: 700; color: white; line-height: 1; margin-bottom: 0.4rem; }
.corp-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); line-height: 1.5; }
.corp-partners       { margin-bottom: 4rem; }
.corp-partners-label { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 1.5rem; }
.corp-logos          { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.corp-logo-pill { background: white; border: 1.5px solid rgba(107,26,42,0.12); border-radius: 8px; padding: 0.75rem 1.3rem; font-size: 0.82rem; font-weight: 600; color: var(--text); transition: background 0.2s, border-color 0.2s; }
.corp-logo-pill:hover { background: var(--burgundy); color: white; border-color: var(--burgundy); }
.corp-logo-pill:hover .pill-sub { color: rgba(255,255,255,0.7); }
.corp-logo-pill .pill-sub { font-size: 0.68rem; font-weight: 400; color: var(--muted); display: block; margin-top: 0.15rem; transition: color 0.2s; }
.corp-cta {
  background: var(--burgundy); border-radius: 16px; padding: 3rem;
  display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center;
}
.corp-cta h3 { font-family: 'Lora', serif; font-size: 1.5rem; font-weight: 700; color: white; margin-bottom: 0.4rem; }
.corp-cta p  { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.65; }
.corp-cta-right     { display: flex; flex-direction: column; gap: 0.8rem; align-items: flex-end; }
.btn-corp-white     { background: white; color: var(--burgundy); padding: 0.85rem 1.8rem; border-radius: 5px; font-weight: 700; font-size: 0.9rem; text-decoration: none; white-space: nowrap; transition: background 0.2s; }
.btn-corp-white:hover { background: var(--cream-dark); }
.btn-corp-ghost     { background: transparent; color: white; padding: 0.85rem 1.8rem; border-radius: 5px; border: 1.5px solid rgba(255,255,255,0.35); font-weight: 500; font-size: 0.9rem; text-decoration: none; white-space: nowrap; transition: border-color 0.2s; }
.btn-corp-ghost:hover { border-color: white; }
.corp-testimonial {
  border-left: 3px solid var(--burgundy); padding: 1.5rem 2rem;
  margin-bottom: 4rem; background: white;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 4px 20px rgba(107,26,42,0.06);
}
.corp-testimonial blockquote { font-size: 1rem; font-style: italic; color: var(--text); line-height: 1.8; margin-bottom: 0.8rem; }
.corp-testimonial cite        { font-size: 0.78rem; color: var(--muted); font-style: normal; }

/* ── CONTACT ── */
.contact-section { background: var(--off-white); }
.contact-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; max-width: 700px; }
.contact-card    { background: white; border: 1.5px solid rgba(107,26,42,0.1); border-radius: 12px; padding: 2rem; display: flex; align-items: flex-start; gap: 1rem; transition: border-color 0.2s, transform 0.2s; text-decoration: none; }
.contact-card:hover { border-color: var(--burgundy); transform: translateY(-2px); }
.contact-card-icon  { font-size: 1.6rem; }
.contact-card-title { font-family: 'Lora', serif; font-weight: 700; font-size: 1rem; margin-bottom: 0.3rem; color: var(--black); }
.contact-card-desc  { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }
.contact-card-cta   { margin-top: 0.8rem; font-size: 0.8rem; font-weight: 600; color: var(--burgundy); }

/* ── FOOTER CTA ── */
.footer-cta { background: var(--burgundy); padding: 5rem; text-align: center; }
.footer-cta h2 { font-family: 'Lora', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; color: white; margin-bottom: 0.8rem; letter-spacing: -0.02em; }
.footer-cta p  { color: rgba(255,255,255,0.65); font-size: 1rem; max-width: 420px; margin: 0 auto 2.5rem; line-height: 1.7; }
.cta-btns      { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-btn-white { background: white; color: var(--burgundy); padding: 0.9rem 2rem; border-radius: 5px; font-weight: 600; text-decoration: none; font-size: 0.95rem; transition: background 0.2s; }
.cta-btn-white:hover { background: var(--cream-dark); }
.cta-btn-ghost { background: transparent; color: white; padding: 0.9rem 1.8rem; border-radius: 5px; border: 1.5px solid rgba(255,255,255,0.35); font-weight: 500; text-decoration: none; font-size: 0.95rem; transition: border-color 0.2s; }
.cta-btn-ghost:hover { border-color: rgba(255,255,255,0.7); color: white; }

/* ── FOOTER ── */
.site-footer { background: #0A0706; color: white; padding: 4rem 5rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-top  { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo-text { font-family: 'Lora', serif; font-size: 1.35rem; font-weight: 700; color: var(--burgundy); margin-bottom: 0.8rem; }
.footer-desc   { font-size: 0.82rem; color: rgba(255,255,255,0.38); line-height: 1.7; }
.footer-col h4 { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); font-weight: 600; margin-bottom: 1rem; }
.footer-col a  { display: block; text-decoration: none; font-size: 0.83rem; color: rgba(255,255,255,0.55); margin-bottom: 0.6rem; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.8rem; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.28); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floatIn { from { opacity: 0; transform: translateY(30px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
.hero-left > * { opacity: 0; animation: fadeUp 0.65s ease forwards; }
.hero-left > *:nth-child(1) { animation-delay: 0.05s; }
.hero-left > *:nth-child(2) { animation-delay: 0.18s; }
.hero-left > *:nth-child(3) { animation-delay: 0.30s; }
.hero-left > *:nth-child(4) { animation-delay: 0.42s; }
.hero-left > *:nth-child(5) { animation-delay: 0.55s; }
.hero-cards-stack { animation: floatIn 0.8s 0.3s ease both; }

/* ── RESPONSIVE: TABLET ── */
@media (max-width: 960px) {
  .site-header { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer { display: flex; }

  section { padding: 4rem 2rem; }
  .corp { padding: 4rem 2rem; }
  .footer-cta { padding: 4rem 2rem; }
  .site-footer { padding: 3rem 2rem; }

  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 64px; }
  .hero-left { padding: 3.5rem 2rem 2rem; }
  .hero h1 { font-size: clamp(2.2rem, 7vw, 3rem); }
  .hero-sub { max-width: 100%; }
  .hero-right { display: flex; padding: 2rem 2rem 5rem; justify-content: center; }

  .what-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 1rem; }
  .games-grid { grid-template-columns: 1fr 1fr; }
  .locked-strip { flex-direction: column; align-items: flex-start; }
  .locked-pills { display: none; }
  .btn-upgrade { width: 100%; text-align: center; display: block; }
  .plans-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .reviews-grid { grid-template-columns: 1fr; gap: 1rem; }
  .faq-grid { grid-template-columns: 1fr; }
  .corp-stats { grid-template-columns: 1fr 1fr 1fr; }
  .corp-grid { grid-template-columns: 1fr 1fr; }
  .corp-cta { grid-template-columns: 1fr; text-align: center; }
  .corp-cta-right { align-items: stretch; flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .contact-grid { grid-template-columns: 1fr !important; max-width: 100% !important; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ── RESPONSIVE: MOBILE ── */
@media (max-width: 600px) {
  section { padding: 3rem 1.2rem; }
  .corp { padding: 3rem 1.2rem; }
  .footer-cta { padding: 3rem 1.2rem; }
  .site-footer { padding: 2.5rem 1.2rem; }
  .site-header { padding: 0.9rem 1.2rem; }
  .nav-drawer { top: 60px; padding: 0 1.2rem 1.5rem; }

  .hero-left { padding: 2.5rem 1.2rem 1.5rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns a { text-align: center; }
  .hero-right { padding: 0 1.2rem 4rem; }
  .hero-cards-stack { width: 290px; height: 400px; }
  .hc-main { width: 270px; }

  .games-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .corp-stats { grid-template-columns: 1fr; gap: 0.8rem; }
  .corp-grid  { grid-template-columns: 1fr; }
  .corp-cta   { padding: 2rem 1.2rem; }
  .corp-cta-right { flex-direction: column; }
  .btn-corp-white, .btn-corp-ghost { text-align: center; }
  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
  .cta-btns   { flex-direction: column; align-items: stretch; }
  .cta-btn-white, .cta-btn-ghost { text-align: center; }
}

/* ── WP ADMIN BAR OFFSET ── */
.admin-bar .site-header { top: 32px; }
.admin-bar .nav-drawer  { top: 96px; }
@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
  .admin-bar .nav-drawer  { top: 110px; }
}
