/* ================================================
   FLUENCY ENGLISH SCHOOL — Main Website Styles
   Brand: #6B46C1 purple | Outfit + DM Sans
   ================================================ */

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

:root {
  --purple: #6B46C1;
  --purple-light: #8B5CF6;
  --purple-dark: #553098;
  --purple-darker: #3C1F80;
  --purple-glow: rgba(107, 70, 193, 0.25);
  --purple-soft: #F3EEFF;
  --purple-muted: #E9DFFE;
  --gold: #F59E0B;
  --gold-dark: #D97706;
  --gold-soft: #FEF3C7;
  --teal: #0D9488;
  --teal-dark: #0F766E;
  --teal-soft: #CCFBF1;
  --ink: #0F0B1F;
  --ink-light: #2D2545;
  --muted: #6B6180;
  --subtle: #9B92AB;
  --bg: #FAFAFE;
  --surface: #FFFFFF;
  --surface-alt: #F5F3FA;
  --stroke: #E8E3F3;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(15, 11, 31, 0.04);
  --shadow-md: 0 8px 30px rgba(15, 11, 31, 0.07);
  --shadow-lg: 0 20px 60px rgba(15, 11, 31, 0.10);
  --shadow-purple: 0 12px 40px rgba(107, 70, 193, 0.25);
  --shadow-gold: 0 12px 40px rgba(245, 158, 11, 0.25);
  --shadow-teal: 0 12px 40px rgba(13, 148, 136, 0.25);
  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

.container {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ================================================ NAV ================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s var(--ease);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-logo strong { font-weight: 800; }

.nav-logo-icon {
  width: 34px; height: 34px;
  background: var(--purple);
  color: #fff;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.95rem;
  font-family: var(--font-display);
  transition: transform 0.3s var(--ease);
}
.nav-logo:hover .nav-logo-icon { transform: rotate(-5deg) scale(1.05); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links > a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}
.nav-links > a:hover,
.nav-links > a.active { color: var(--purple); }

.nav-links > a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--purple);
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}
.nav-links > a:hover::after,
.nav-links > a.active::after { width: 100%; }

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
}
.nav-dropdown-trigger:hover { color: var(--purple); }
.nav-dropdown-trigger svg { transition: transform 0.3s var(--ease); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 320px;
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 0.6rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.35s var(--ease);
  z-index: 100;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px; height: 14px;
  background: var(--surface);
  border-top: 1px solid var(--stroke);
  border-left: 1px solid var(--stroke);
}

.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown.open .nav-dropdown-trigger svg,
.nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }

.nav-dropdown-menu a {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.8rem;
  border-radius: var(--radius-md);
  transition: background 0.2s;
}
.nav-dropdown-menu a:hover { background: var(--surface-alt); }

.nav-dropdown-icon { font-size: 1.3rem; line-height: 1; flex-shrink: 0; margin-top: 0.1rem; }

.nav-dropdown-menu strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.15rem;
}
.nav-dropdown-menu small { font-size: 0.78rem; color: var(--muted); }

.nav-cta {
  background: var(--purple);
  color: #fff;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--purple-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-purple);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  z-index: 10;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 0 1.5rem;
  background: var(--surface);
  border-top: 1px solid var(--stroke);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), padding 0.4s;
}
.nav-mobile.open {
  display: flex;
  /* Full mobile usability: allow internal scroll instead of clipping */
  max-height: calc(100vh - 84px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;

  padding: 1rem 1.5rem 1.5rem;
  border-bottom: 1px solid var(--stroke);
  box-shadow: var(--shadow-md);
}

.nav-mobile-link {
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--stroke);
  transition: color 0.2s;
}
.nav-mobile-link:hover { color: var(--purple); }
.nav-mobile-link--sub { padding-left: 1rem; font-size: 0.9rem; color: var(--muted); }

.nav-mobile-label {
  display: block;
  padding: 0.75rem 0 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--purple);
}

.nav-mobile-cta {
  display: block;
  text-align: center;
  background: var(--purple);
  color: #fff;
  padding: 0.85rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 1rem;
  transition: all 0.3s var(--ease);
}
.nav-mobile-cta:hover { background: var(--purple-dark); }

/* ================================================ HERO ================================================ */
.hero {
  position: relative;
  background: linear-gradient(160deg, #0F0720 0%, #1A0B3E 40%, #2D1460 100%);
  color: #fff;
  padding: 8rem 0 5rem;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(107, 70, 193, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 70, 193, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
}

.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(107, 70, 193, 0.35), transparent 60%);
  top: -200px; right: -200px;
  border-radius: 50%;
  filter: blur(80px);
  animation: hero-float 10s ease-in-out infinite;
}
.hero-glow--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2), transparent 60%);
  bottom: -150px; left: -100px;
  top: auto; right: auto;
  animation-delay: -5s;
}

@keyframes hero-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -25px) scale(1.08); }
}

.hero-particles { position: absolute; inset: 0; }
.hero-particle {
  position: absolute;
  width: 3px; height: 3px;
  background: rgba(139, 92, 246, 0.4);
  border-radius: 50%;
  animation: particle-drift 8s ease-in-out infinite;
}
@keyframes particle-drift {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  20% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: translateY(-200px) scale(0.5); }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--purple-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
}
.hero-stat-label { font-size: 0.78rem; color: rgba(255, 255, 255, 0.45); }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(255, 255, 255, 0.1); }

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}
.hero-micro { font-size: 0.82rem; color: rgba(255, 255, 255, 0.35); }

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(139, 92, 246, 0.6), transparent);
  animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); }
}

/* ================================================ BUTTONS ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.4;
}
.btn--lg { padding: 1rem 2.4rem; font-size: 1rem; }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
  box-shadow: var(--shadow-purple);
}
.btn--primary:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(107, 70, 193, 0.35);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--elite {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: #fff;
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.btn--elite:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(245, 158, 11, 0.35);
  filter: brightness(1.05);
}

.btn--coaching {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: #fff;
  border-color: var(--teal);
  box-shadow: var(--shadow-teal);
}
.btn--coaching:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 50px rgba(13, 148, 136, 0.35);
  filter: brightness(1.05);
}

.btn--outline {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}
.btn--outline:hover {
  background: var(--purple);
  color: #fff;
  transform: translateY(-2px);
}

/* ================================================ SECTIONS ================================================ */
.section { padding: 5rem 0; position: relative; }
.section--dark {
  background: linear-gradient(160deg, #0F0720, #1A0B3E);
  color: #fff;
}
.section--subtle { background: var(--surface-alt); }
.section--pricing {
  background: linear-gradient(160deg, #0F0720 0%, #1A0B3E 40%, #2D1460 100%);
  color: #fff;
  padding: 5rem 0 6rem;
}
.section--cta {
  background: var(--surface);
  border-top: 1px solid var(--stroke);
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--purple-light);
  margin-bottom: 0.6rem;
  text-align: center;
}
.section--dark .section-label,
.section--pricing .section-label { color: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: -0.02em;
}

.section-desc {
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}
.section--dark .section-desc,
.section--pricing .section-desc { color: rgba(255, 255, 255, 0.6); }

/* ================================================ TICKER ================================================ */
.ticker-section {
  background: var(--purple);
  padding: 0.7rem 0;
  overflow: hidden;
}
.ticker { overflow: hidden; }
.ticker-track {
  display: flex;
  gap: 3rem;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-item {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================================================ PAIN POINTS ================================================ */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.pain-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: all 0.4s var(--ease);
}
.pain-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}
.pain-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.pain-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.pain-card p { font-size: 0.88rem; color: rgba(255, 255, 255, 0.6); line-height: 1.6; }

.pain-solution { margin-top: 1rem; }
.pain-solution-inner {
  text-align: center;
  background: rgba(107, 70, 193, 0.15);
  border: 1px solid rgba(107, 70, 193, 0.3);
  border-radius: var(--radius-xl);
  padding: 2rem;
}
.pain-solution-arrow {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
  animation: bounce-down 2s ease infinite;
}
@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}
.pain-solution-text { font-size: 1.05rem; color: rgba(255, 255, 255, 0.85); line-height: 1.7; }
.pain-solution-text strong { color: var(--gold); }

/* ================================================ METHOD PILLARS ================================================ */
.method-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.method-pillar {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.method-pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  opacity: 0;
  transition: opacity 0.3s;
}
.method-pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--purple-muted);
}
.method-pillar:hover::before { opacity: 1; }

.method-pillar-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--purple);
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}
.method-pillar-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.method-pillar h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.method-pillar p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.method-pillar-tag {
  display: inline-block;
  background: var(--purple-soft);
  color: var(--purple);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
}

/* Method quote */
.method-quote {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--purple-soft), var(--purple-muted));
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--purple);
}
.method-quote blockquote {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 0.8rem;
}
.method-quote blockquote em {
  font-style: normal;
  color: var(--purple);
  text-decoration: underline;
  text-decoration-color: var(--purple-glow);
  text-underline-offset: 3px;
}
.method-quote cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--muted);
}

/* VS Section */
.vs-section { margin-top: 2rem; }
.vs-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--ink);
}

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

.vs-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  transition: all 0.3s var(--ease);
}
.vs-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.vs-card ul { list-style: none; }
.vs-card ul li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
  line-height: 1.5;
}

.vs-card--bad {
  background: #FFF5F5;
  border-color: #FED7D7;
}
.vs-card--bad h4 { color: #C53030; }
.vs-card--bad ul li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #E53E3E;
  font-weight: 700;
  font-size: 0.75rem;
}

.vs-card--good {
  background: linear-gradient(135deg, var(--purple-soft), var(--purple-muted));
  border-color: var(--purple);
  border-width: 2px;
}
.vs-card--good h4 { color: var(--purple-dark); }
.vs-card--good ul li { color: var(--ink); font-weight: 500; }
.vs-card--good ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 700;
}

/* ================================================ PRICING ================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 2.5rem;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
}
.pricing-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.07);
}

.pricing-card--elite {
  border-color: rgba(245, 158, 11, 0.3);
  background: rgba(245, 158, 11, 0.05);
  position: relative;
}
.pricing-card--elite::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
}
.pricing-card--elite:hover { background: rgba(245, 158, 11, 0.08); }

.pricing-card--coaching {
  border-color: rgba(13, 148, 136, 0.3);
  background: rgba(13, 148, 136, 0.04);
}
.pricing-card--coaching:hover { background: rgba(13, 148, 136, 0.07); }

.pricing-card-top {
  padding: 2.5rem 2rem 1.5rem;
  text-align: center;
}

.pricing-badge {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--purple);
  color: #fff;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 0.8rem;
}
.pricing-badge--elite { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); }
.pricing-badge--coaching { background: linear-gradient(135deg, var(--teal-dark), var(--teal)); }

.pricing-card-top h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}
.pricing-card-top h3 em { font-style: normal; color: var(--purple-light); }
.pricing-card--elite .pricing-card-top h3 em { color: var(--gold); }
.pricing-card--coaching .pricing-card-top h3 em { color: var(--teal); }

.pricing-subtitle {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.2rem;
}

.pricing-price { margin-bottom: 0.3rem; }
.pricing-old {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: line-through;
  display: block;
  margin-bottom: 0.3rem;
}
.pricing-current {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
}
.pricing-current small { font-size: 1rem; font-weight: 600; opacity: 0.6; }
.pricing-equiv { font-size: 0.82rem; color: rgba(255, 255, 255, 0.4); }

.pricing-features {
  list-style: none;
  padding: 1.5rem 2rem;
  flex: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.pricing-features li {
  padding: 0.45rem 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}
.pricing-features li strong { color: rgba(255, 255, 255, 0.95); }

.pricing-features li.included::before { content: '✓ '; color: var(--purple-light); font-weight: 700; }
.pricing-features li.elite::before { content: '⭐ '; }
.pricing-card--elite .pricing-features li.included::before { color: var(--gold); }
.pricing-card--coaching .pricing-features li.included::before { color: var(--teal); }

.pricing-action {
  padding: 0 2rem 2.5rem;
  text-align: center;
}
.pricing-guarantee {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.8rem;
}

.pricing-footer {
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  max-width: 700px;
  margin: 0 auto;
}
.pricing-footer strong { color: var(--gold); }

/* ================================================ TESTIMONIALS ================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: hsl(var(--hue, 270), 50%, 92%);
  color: hsl(var(--hue, 270), 50%, 40%);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}
.testimonial-author span {
  font-size: 0.78rem;
  color: var(--subtle);
}

.testimonial-plan {
  display: inline-block;
  background: var(--purple-soft);
  color: var(--purple);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  width: fit-content;
}
.testimonial-plan--elite {
  background: var(--gold-soft);
  color: var(--gold-dark);
}
.testimonial-plan--coaching {
  background: var(--teal-soft);
  color: var(--teal-dark);
}

/* ================================================ BLOG ================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.blog-card-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--purple-soft), var(--purple-muted));
  display: grid;
  place-items: center;
  font-size: 3rem;
}
.blog-card-category {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--purple);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
}

.blog-card-body { padding: 1.5rem; }
.blog-card-date {
  font-size: 0.78rem;
  color: var(--subtle);
  margin-bottom: 0.5rem;
  display: block;
}
.blog-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}
.blog-card-body h3 a { transition: color 0.2s; }
.blog-card-body h3 a:hover { color: var(--purple); }

.blog-card-body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-card-link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--purple);
  transition: gap 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.blog-card-link:hover { gap: 0.6rem; }

.blog-cta { text-align: center; }

/* ================================================ FAQ ================================================ */
.faq-list {
  max-width: 750px;
  margin: 0 auto;
}
.faq-item { border-bottom: 1px solid var(--stroke); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--purple); }

.faq-icon {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--purple);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a { padding-bottom: 1.3rem; }
.faq-a p { color: var(--muted); font-size: 0.92rem; line-height: 1.7; }
.faq-a strong { color: var(--ink); }

/* ================================================ CONTACT ================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: all 0.3s var(--ease);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255, 255, 255, 0.3); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple-light);
  background: rgba(107, 70, 193, 0.08);
  box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.15);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.form-group select option { background: #1A0B3E; color: #fff; }

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

.form-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 0.8rem;
  text-align: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 0.3s var(--ease);
}
.contact-info-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
}

.contact-info-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.contact-info-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.contact-info-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin-bottom: 0.8rem;
}

.contact-email {
  font-size: 0.88rem;
  color: var(--purple-light);
  transition: color 0.2s;
}
.contact-email:hover { color: #fff; }

.contact-info-card .btn { font-size: 0.85rem; padding: 0.6rem 1.2rem; }
.contact-info-card .btn--outline {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.2);
}
.contact-info-card .btn--outline:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}

.contact-info-card--hours { border-style: dashed; }

/* ================================================ CTA FINAL ================================================ */
.cta-final {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 0;
}
.cta-final h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--ink);
}
.cta-final > p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.cta-final-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.cta-final-sub { font-size: 0.82rem; color: var(--subtle); }

/* ================================================ FOOTER ================================================ */
.footer {
  background: #0A0618;
  color: rgba(255, 255, 255, 0.6);
  padding: 4rem 0 2rem;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.footer-logo .nav-logo-icon { background: var(--purple); }
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
}
.footer-logo-text strong { font-weight: 800; }

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 300px;
  margin-bottom: 1.2rem;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}
.footer-social-link {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s var(--ease);
}
.footer-social-link:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
  transform: translateY(-2px);
}

.footer-links h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-links ul li { margin-bottom: 0.5rem; }
.footer-links a {
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--purple-light); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
}
.footer-bottom-links {
  display: flex;
  gap: 0.5rem;
}
.footer-bottom-links a { transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--purple-light); }
.footer-bottom-links span { color: rgba(255, 255, 255, 0.2); }

/* ================================================ FLOATING ELEMENTS ================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  border: none;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-purple);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.4s var(--ease);
  z-index: 900;
  cursor: pointer;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(107, 70, 193, 0.4);
}

.whatsapp-float {
  position: fixed;
  bottom: 2rem; left: 2rem;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  z-index: 900;
  transition: all 0.4s var(--ease);
  animation: wa-pulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.5);
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* ================================================ SCROLL ANIMATIONS ================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.pain-grid .fade-up:nth-child(1) { transition-delay: 0s; }
.pain-grid .fade-up:nth-child(2) { transition-delay: 0.08s; }
.pain-grid .fade-up:nth-child(3) { transition-delay: 0.16s; }
.pain-grid .fade-up:nth-child(4) { transition-delay: 0.24s; }
.pain-grid .fade-up:nth-child(5) { transition-delay: 0.32s; }
.pain-grid .fade-up:nth-child(6) { transition-delay: 0.4s; }

.method-pillars .fade-up:nth-child(1) { transition-delay: 0s; }
.method-pillars .fade-up:nth-child(2) { transition-delay: 0.12s; }
.method-pillars .fade-up:nth-child(3) { transition-delay: 0.24s; }

.pricing-grid .fade-up:nth-child(1) { transition-delay: 0s; }
.pricing-grid .fade-up:nth-child(2) { transition-delay: 0.1s; }
.pricing-grid .fade-up:nth-child(3) { transition-delay: 0.2s; }

.testimonial-grid .fade-up:nth-child(1) { transition-delay: 0s; }
.testimonial-grid .fade-up:nth-child(2) { transition-delay: 0.08s; }
.testimonial-grid .fade-up:nth-child(3) { transition-delay: 0.16s; }
.testimonial-grid .fade-up:nth-child(4) { transition-delay: 0.24s; }
.testimonial-grid .fade-up:nth-child(5) { transition-delay: 0.32s; }
.testimonial-grid .fade-up:nth-child(6) { transition-delay: 0.4s; }

.blog-grid .fade-up:nth-child(1) { transition-delay: 0s; }
.blog-grid .fade-up:nth-child(2) { transition-delay: 0.1s; }
.blog-grid .fade-up:nth-child(3) { transition-delay: 0.2s; }

/* ================================================ RESPONSIVE ================================================ */
@media (max-width: 1024px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .method-pillars { grid-template-columns: repeat(2, 1fr); }
  .vs-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding: 6rem 0 3rem; min-height: auto; }
  .hero-title { font-size: clamp(2rem, 7vw, 2.8rem); }
  .hero-stats { gap: 1.2rem; }
  .hero-stat-divider { display: none; }
  .hero-scroll { display: none; }

  .section { padding: 3.5rem 0; }

  .pain-grid { grid-template-columns: 1fr; gap: 1rem; }
  .method-pillars { grid-template-columns: 1fr; }
  .vs-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 450px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .btn--lg { padding: 0.9rem 1.8rem; }

  .whatsapp-float {
    bottom: 1.2rem; left: 1.2rem;
    width: 50px; height: 50px;
  }
  .back-to-top { bottom: 1.2rem; right: 1.2rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .cta-final-buttons { flex-direction: column; width: 100%; }
  .cta-final-buttons .btn { width: 100%; }
  .method-pillars { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 1.5rem; }
}

/* ================================================ PRINT ================================================ */
@media print {
  .nav, .whatsapp-float, .back-to-top, .ticker-section { display: none; }
  .hero { min-height: auto; padding: 2rem 0; }
  .section { padding: 2rem 0; }
  .fade-up { opacity: 1; transform: none; }
}

/* =========================================================
   PRO ACCESSIBILITY + PERFORMANCE PATCHES (2026-02)
   - Keyboard focus visibility
   - Reduced motion support
   - Dropdown keyboard support (focus-within)
   ========================================================= */

/* 1) Strong, consistent focus rings (keyboard users) */
:where(
  a,
  button,
  input,
  textarea,
  select,
  summary,
  [role="button"],
  [tabindex]:not([tabindex="-1"])
):focus-visible {
  outline: 3px solid var(--purple-light);
  outline-offset: 3px;
  border-radius: 10px;
}

/* Prevent double focus styles for mouse users */
:where(
  a,
  button,
  input,
  textarea,
  select,
  summary,
  [role="button"],
  [tabindex]:not([tabindex="-1"])
):focus:not(:focus-visible) {
  outline: none;
}

/* 2) Dropdown usable with keyboard (TAB) */
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown:focus-within .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

/* 3) Respect “Reduce motion” OS setting */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }

  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  /* Specific high-motion pieces */
  .ticker,
  .hero-particles,
  .floating,
  .float,
  .pulse,
  .shine,
  .glow {
    animation: none !important;
    transition: none !important;
  }
}



/* Mobile menu grouping helper */
.nav-mobile-group { padding-top: 0.25rem; }

/* Mobile accordion: Formación */
.nav-mobile-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.nav-mobile-accordion {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: 0;
  padding: 12px 0;
  font: inherit;
  cursor: pointer;
}

.nav-mobile-submenu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px 0 14px 0;
}

.nav-mobile-link--sub {
  display: block;
  width: 100%;
}

.nav-mobile-accordion-icon {
  font-weight: 800;
  line-height: 1;
}

/* FIX: respetar el atributo hidden (accordion mobile) */
.nav-mobile-submenu[hidden] {
  display: none !important;
}