/* =============================================
   MI VIDA, MI JUEGO — Esteban Tur
   Premium coaching website
   Mobile-first, textured, elegant
   ============================================= */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1E293B;
  --navy-deep: #0F172A;
  --navy-light: #334155;
  --gold: #D4A853;
  --gold-light: #E8C97A;
  --gold-dark: #B8912E;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-600);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--navy);
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
strong { color: var(--navy); }

.gold { color: var(--gold); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- SUBTLE GRAIN TEXTURE (applied per-section for performance) --- */

/* --- REVEAL ANIMATION --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- NAV --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}
.nav.scrolled {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(212, 168, 83, 0.1);
  padding: 10px 0;
}
.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav__logo-accent { color: var(--gold); }
.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__links {
  list-style: none;
  position: fixed;
  top: 0; right: -100%;
  width: 80%;
  max-width: 360px;
  height: 100vh;
  background: var(--navy-deep);
  display: flex;
  flex-direction: column;
  padding: 100px 40px 40px;
  gap: 8px;
  transition: right 0.4s var(--ease-out);
  box-shadow: -20px 0 60px rgba(0,0,0,0.5);
}
.nav__links.open { right: 0; }
.nav__links li a {
  color: var(--gray-300);
  font-size: 1.05rem;
  font-weight: 400;
  padding: 12px 0;
  display: block;
  transition: color 0.3s;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav__links li a:hover { color: var(--gold); }
.nav__links li a.nav__studyhub {
  color: #60A5FA !important;
  font-weight: 500 !important;
  font-size: 0.85rem !important;
  border-bottom: none !important;
  opacity: 0.85;
  transition: opacity 0.3s, color 0.3s !important;
}
.nav__links li a.nav__studyhub:hover {
  opacity: 1;
  color: #93C5FD !important;
}
.nav__studyhub-li {
  order: 99;
}
.nav__cta {
  color: var(--gold) !important;
  font-weight: 600 !important;
  border-bottom: none !important;
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--navy-deep);
  overflow: hidden;
}
.hero__texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(212,168,83,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 80%, rgba(30,41,59,0.5) 0%, transparent 70%),
    linear-gradient(180deg, var(--navy-deep) 0%, #162032 100%);
}
/* Geometric subtle lines */
.hero__texture::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,168,83,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,168,83,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
}
.hero__pre {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero__title .gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--gray-400);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero__scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  letter-spacing: 0.01em;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy-deep);
  box-shadow: 0 4px 20px rgba(212,168,83,0.3);
}
.btn--gold:hover {
  box-shadow: 0 8px 32px rgba(212,168,83,0.45);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn--lg { padding: 18px 40px; font-size: 1.05rem; }
.btn--sm { padding: 10px 20px; font-size: 0.85rem; }
.btn__wa-icon { flex-shrink: 0; }

/* --- SECTION COMMONS --- */
.section {
  padding: 100px 0;
  position: relative;
}
.section__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section__title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 40px 0 32px;
}

/* --- ABOUT --- */
.about {
  background: var(--white);
}
.about__grid {
  display: grid;
  gap: 40px;
  margin-bottom: 60px;
}
.about__text p {
  margin-bottom: 16px;
}
.about__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about__photo {
  width: 280px;
  height: 340px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(212,168,83,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1), 0 0 0 1px rgba(212,168,83,0.05);
  position: relative;
}
.about__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(180deg, transparent 60%, rgba(30,41,59,0.15) 100%);
  pointer-events: none;
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}
.about__break {
  max-width: 720px;
}
.about__break p { margin-bottom: 16px; }
.about__subtitle {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.about__today { margin-top: 60px; }
.about__today-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
}
.about__today-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark), transparent);
}
.about__today-card p { margin-bottom: 16px; }
.about__today-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}
.about__today-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.about__check {
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.about__purpose {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-top: 24px;
}

/* --- SESSIONS --- */
.sessions {
  background: var(--navy-deep);
  color: var(--gray-300);
  overflow: hidden;
}
.sessions__texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(212,168,83,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 100% 0%, rgba(212,168,83,0.03) 0%, transparent 70%);
}
.sessions__texture::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,168,83,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,168,83,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.sessions .section__title { color: var(--white); }
.sessions strong { color: var(--white); }
.sessions__intro {
  font-size: 1.1rem;
  max-width: 640px;
  margin-bottom: 60px;
}
.sessions__subtitle {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 32px;
}
.sessions__steps {
  display: grid;
  gap: 24px;
  margin-bottom: 60px;
}
.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  transition: border-color 0.3s, background 0.3s;
}
.step:hover {
  border-color: rgba(212,168,83,0.2);
  background: rgba(255,255,255,0.05);
}
.step__number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.6;
}
.step__content h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.step__content p {
  font-size: 0.95rem;
  line-height: 1.6;
}
.sessions__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 60px;
}
.tag {
  padding: 8px 18px;
  background: rgba(212,168,83,0.08);
  border: 1px solid rgba(212,168,83,0.15);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gold-light);
  transition: all 0.3s;
}
.tag:hover {
  background: rgba(212,168,83,0.15);
  border-color: rgba(212,168,83,0.3);
}
.sessions__cta {
  text-align: center;
  position: relative;
  z-index: 2;
}

/* --- WORKSHOPS --- */
.workshops {
  background: var(--off-white);
}

/* Featured workshop */
.workshop-featured {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 48px 28px;
  margin: 48px 0 60px;
  overflow: hidden;
}
.workshop-featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}
.workshop-featured__badge {
  display: inline-block;
  padding: 4px 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 24px;
}
.workshop-featured__header {
  margin-bottom: 40px;
}
.workshop-featured__title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  margin-bottom: 12px;
}
.workshop-featured__tagline {
  font-size: 1.1rem;
  color: var(--gray-500);
}
.workshop-featured__grid {
  display: grid;
  gap: 40px;
  margin-bottom: 48px;
}
.workshop-featured__desc {
  font-size: 1rem;
  margin-bottom: 32px;
}
.workshop-featured__steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wf-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.wf-step__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.wf-step span:last-child {
  padding-top: 5px;
  font-size: 0.95rem;
}

/* App card */
.app-card {
  background: var(--navy-deep);
  border-radius: 16px;
  padding: 32px 28px;
  color: var(--gray-300);
  position: relative;
  overflow: hidden;
}
.app-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 80% 20%, rgba(212,168,83,0.08), transparent 60%);
}
.app-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  position: relative;
}
.app-card__icon { font-size: 1.6rem; }
.app-card__name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
}
.app-card__features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
  position: relative;
}
.app-card__feat {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.9rem;
}
.app-card__feat-icon { font-size: 1.1rem; }
.app-card__btn {
  width: 100%;
  border-color: rgba(255,255,255,0.15);
  color: var(--gold-light);
  position: relative;
}
.app-card__btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Benefits row */
.workshop-featured__benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.benefit {
  text-align: center;
  padding: 24px 16px;
  background: var(--off-white);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
}
.benefit__icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.benefit h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.benefit p {
  font-size: 0.82rem;
  color: var(--gray-500);
}

/* FAQ */
.workshop-featured__faq {
  margin-bottom: 40px;
}
.faq__title {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.faq {
  border-bottom: 1px solid var(--gray-200);
}
.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  text-align: left;
}
.faq__arrow {
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq__q[aria-expanded="true"] .faq__arrow {
  transform: rotate(90deg);
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s;
}
.faq__a.open {
  max-height: 300px;
  padding-bottom: 18px;
}
.faq__a p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-500);
}

/* Workshop Bonus */
.workshop-bonus {
  margin-top: 40px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.workshop-bonus__inner {
  background: var(--navy-deep);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(212, 168, 83, 0.15);
}

.workshop-bonus__inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.workshop-bonus__inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(212,168,83,0.06), transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(212,168,83,0.04), transparent 60%);
  pointer-events: none;
}

.workshop-bonus__badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.workshop-bonus__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  position: relative;
  z-index: 1;
  min-width: 0;
  overflow: hidden;
}

.workshop-bonus__text {
  min-width: 0;
  overflow-wrap: break-word;
}

.workshop-bonus__title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
}

.workshop-bonus__desc {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 16px;
}

.workshop-bonus__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.workshop-bonus__list li {
  font-size: 0.85rem;
  color: var(--gray-300);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.workshop-bonus__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Mock Browser */
.workshop-bonus__preview {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: center;
}

.mock-browser {
  width: 200px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.mock-browser__bar {
  background: #2a2a2a;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.mock-browser__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #555;
}

.mock-browser__dot:nth-child(1) { background: #ff5f57; }
.mock-browser__dot:nth-child(2) { background: #febc2e; }
.mock-browser__dot:nth-child(3) { background: #28c840; }

.mock-browser__url {
  font-size: 0.55rem;
  color: #888;
  margin-left: 8px;
  background: #1a1a1a;
  padding: 2px 8px;
  border-radius: 4px;
  flex: 1;
  text-align: center;
}

.mock-browser__body {
  background: #f8f8f5;
  padding: 12px;
  min-height: 140px;
}

.mock-site__nav {
  height: 4px;
  background: #ddd;
  border-radius: 2px;
  margin-bottom: 12px;
  width: 70%;
}

.mock-site__hero {
  margin-bottom: 12px;
}

.mock-site__line {
  height: 4px;
  border-radius: 2px;
  margin-bottom: 6px;
}

.mock-site__line--short {
  width: 40%;
  background: var(--gray-300);
}

.mock-site__line--long {
  width: 80%;
  background: var(--navy);
  height: 6px;
}

.mock-site__line--med {
  width: 60%;
  background: var(--gray-300);
}

.mock-site__btn {
  width: 50px;
  height: 10px;
  background: var(--gold);
  border-radius: 5px;
  margin-top: 8px;
}

.mock-site__cards {
  display: flex;
  gap: 6px;
}

.mock-site__card {
  flex: 1;
  height: 30px;
  background: white;
  border-radius: 4px;
  border: 1px solid #e5e5e5;
}

/* Mock Phone */
.mock-phone {
  width: 100px;
  background: #1a1a1a;
  border-radius: 16px;
  padding: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.mock-phone__notch {
  width: 36px;
  height: 4px;
  background: #333;
  border-radius: 4px;
  margin: 6px auto 8px;
}

.mock-phone__body {
  background: linear-gradient(170deg, #fafaf7 0%, #e8ddd3 100%);
  border-radius: 12px;
  padding: 12px 8px;
  min-height: 140px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.mock-links {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.mock-links__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-300);
  margin-bottom: 4px;
}

.mock-links__name {
  width: 50px;
  height: 4px;
  background: var(--gray-400);
  border-radius: 2px;
  margin-bottom: 6px;
}

.mock-links__link {
  width: 100%;
  height: 14px;
  background: white;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
}

.mock-links__link--primary {
  background: var(--navy);
  border-color: var(--navy);
}

@media (max-width: 768px) {
  .workshop-bonus {
    margin-left: -28px;
    margin-right: -28px;
    border-radius: 0;
  }

  .workshop-bonus__inner {
    padding: 28px 20px;
    border-radius: 0;
  }

  .workshop-bonus__title {
    font-size: 1.1rem;
  }

  .workshop-bonus__content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .workshop-bonus__preview {
    justify-content: center;
  }

  .mock-browser { width: 180px; }
  .mock-phone { width: 90px; }

  .testimonial {
    width: 300px;
    flex: 0 0 300px;
  }

  .marquee__track {
    animation-duration: 30s;
  }
}

.workshop-featured__cta {
  text-align: center;
}

/* Other workshops */
.workshops__others {
  margin-top: 20px;
}
.workshops__others-title {
  font-size: 1.3rem;
  margin-bottom: 24px;
  text-align: center;
}
.workshops__grid {
  display: grid;
  gap: 24px;
}
.workshop-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.3s;
}
.workshop-card:hover {
  border-color: var(--gold);
}
.workshop-card__status {
  display: inline-block;
  padding: 3px 12px;
  background: var(--gray-100);
  color: var(--gray-500);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 16px;
}
.workshop-card__title {
  font-size: 1.3rem;
  margin-bottom: 4px;
}
.workshop-card__co {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 12px;
}
.workshop-card__desc {
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.workshop-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.workshop-card__list li {
  font-size: 0.85rem;
  color: var(--gray-500);
  padding-left: 20px;
  position: relative;
}
.workshop-card__list li::before {
  content: '~';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* --- TESTIMONIALS --- */
.testimonials {
  background: var(--navy-deep);
  color: var(--gray-300);
  overflow: hidden;
}
.testimonials__texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(212,168,83,0.04), transparent 70%);
}
.testimonials .section__title { color: var(--white); }

/* Marquee */
.marquee {
  overflow: hidden;
  margin-top: 32px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee + .marquee { margin-top: 20px; }
.marquee__track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marqueeScroll 40s linear infinite;
}
.marquee--reverse .marquee__track {
  animation-name: marqueeScrollReverse;
}
.marquee:hover .marquee__track {
  animation-play-state: paused;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marqueeScrollReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.testimonial {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 32px 28px;
  width: 360px;
  flex: 0 0 360px;
  transition: border-color 0.3s;
}
.testimonial:hover {
  border-color: rgba(212,168,83,0.2);
}
.testimonial__quote {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: -8px;
}
.testimonial p {
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial__author strong {
  color: var(--white);
  font-size: 0.9rem;
}
.testimonial__author span {
  font-size: 0.78rem;
  color: var(--gold);
}

/* --- CONTACT --- */
.contact {
  background: var(--white);
}
.contact__inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.contact__text {
  font-size: 1.1rem;
  margin-bottom: 32px;
  color: var(--gray-500);
}
.contact__btn {
  margin-bottom: 40px;
}
.contact__social {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.contact__social-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-light);
  transition: all 0.3s;
}
.contact__social-link:hover {
  background: var(--navy-deep);
  color: var(--gold);
  transform: translateY(-3px);
}

/* --- FOOTER --- */
.footer {
  background: var(--navy-deep);
  padding: 24px 0;
  text-align: center;
}
.footer p {
  font-size: 0.78rem;
  color: var(--gray-500);
}
.footer__credit {
  margin-top: 8px;
  font-size: 0.7rem;
  color: var(--gray-600);
}
.footer__credit a {
  color: var(--gold-dark);
  text-decoration: none;
  transition: color 0.3s;
}
.footer__credit a:hover {
  color: var(--gold);
}

/* --- WHATSAPP FLOAT --- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 998;
  transition: transform 0.3s, box-shadow 0.3s;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}

/* =============================================
   RESPONSIVE — TABLET+
   ============================================= */
@media (min-width: 768px) {
  .hero__actions {
    flex-direction: row;
  }
  .about__grid {
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
  }
  .sessions__steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .workshop-featured {
    padding: 56px 48px;
  }
  .workshop-featured__grid {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }
  .workshop-featured__benefits {
    grid-template-columns: repeat(4, 1fr);
  }
  .workshops__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial {
    width: 380px;
    flex: 0 0 380px;
  }
  .workshop-bonus__content {
    grid-template-columns: 1.2fr 1fr;
  }
}

/* =============================================
   RESPONSIVE — DESKTOP
   ============================================= */
@media (min-width: 1024px) {
  .nav__toggle { display: none; }
  .nav__links {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    background: none;
    flex-direction: row;
    padding: 0;
    gap: 4px;
    box-shadow: none;
    align-items: center;
  }
  .nav__links li a {
    padding: 8px 16px;
    font-size: 0.9rem;
    border-bottom: none;
  }
  .nav__cta {
    background: rgba(212,168,83,0.1);
    border-radius: 8px;
    padding: 8px 20px !important;
  }
  .nav__cta:hover {
    background: rgba(212,168,83,0.2);
  }
  .nav__studyhub-li {
    margin-left: auto;
    padding-left: 16px;
    border-left: 1px solid rgba(255,255,255,0.08);
  }

  .section { padding: 140px 0; }

  .about__grid {
    gap: 80px;
  }

  .sessions__steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonial {
    width: 400px;
    flex: 0 0 400px;
  }
}

/* =============================================
   ACCESSIBILITY
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero__scroll-line { animation: none; }
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
