.v2-version-section {
  background: linear-gradient(180deg, rgba(20, 22, 34, 1) 0%, rgba(26, 26, 46, 0.98) 100%);
  padding: 4.5rem 0 1rem;
}

.v2-version-container {
  text-align: left;
  padding-top: 0;
}

.v2-version-header {
  max-width: 860px;
  margin-bottom: 2rem;
}

.v2-section-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.9rem;
  color: var(--color-accent-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.v2-version-header .section-title span {
  color: var(--color-accent-blue);
}

.v2-version-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
}

.v2-version-card {
  min-height: 100%;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.v2-version-card-featured {
  background:
    linear-gradient(135deg, rgba(27, 182, 242, 0.12) 0%, rgba(20, 22, 34, 0.04) 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(27, 182, 242, 0.25);
}

.v2-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.v2-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(77, 221, 135, 0.28);
  border-radius: 999px;
  background: rgba(77, 221, 135, 0.08);
  color: #75eda4;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.v2-live-badge i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #54e58d;
  box-shadow: 0 0 12px rgba(84, 229, 141, 0.85);
  animation: v2-live-pulse 1.8s ease-in-out infinite;
}

.v2-hub-flow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.45rem;
}

.v2-hub-flow span:not(.v2-flow-line) {
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(27, 182, 242, 0.2);
  border-radius: 5px;
  background: rgba(27, 182, 242, 0.07);
  color: var(--color-text);
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.v2-flow-line {
  flex: 1;
  min-width: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(27, 182, 242, 0.15), var(--color-accent-blue), rgba(27, 182, 242, 0.15));
}

@keyframes v2-live-pulse {
  50% { opacity: 0.45; transform: scale(0.8); }
}

.v2-card-eyebrow {
  color: var(--color-accent-blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.v2-version-card h3 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.08;
  margin-bottom: 0.75rem;
}

.v2-version-card p {
  color: var(--color-text-muted);
  font-size: 0.94rem;
}

.v2-bullet-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.v2-bullet-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.v2-bullet-list li::before {
  content: '';
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.v2-inline-cta {
  margin-top: 1rem;
}

.v2-page .nav-dropdown {
  position: relative;
}

.v2-page .nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.v2-page .nav-dropdown-toggle svg {
  width: 0.85rem;
  height: 0.85rem;
  transition: transform 0.2s ease;
}

.v2-page .nav-dropdown.open .nav-dropdown-toggle svg,
.v2-page .nav-dropdown:hover .nav-dropdown-toggle svg,
.v2-page .nav-dropdown:focus-within .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.v2-page .nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 0;
  min-width: 220px;
  margin: 0;
  padding: 0.55rem;
  list-style: none;
  background: rgba(20, 22, 34, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 20;
}

.v2-page .nav-dropdown.open .nav-dropdown-menu,
.v2-page .nav-dropdown:hover .nav-dropdown-menu,
.v2-page .nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.v2-page .nav-dropdown-link {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0.65rem 0.8rem;
  border-radius: 6px;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.v2-page .nav-dropdown-link:hover {
  background: rgba(27, 182, 242, 0.08);
  color: var(--color-text);
}

.v2-page .footer-privacy-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(27, 182, 242, 0.3);
  border-radius: 4px;
  color: var(--color-accent-blue);
}

.module-v2-page .hero-slider {
  height: 78vh;
  min-height: 620px;
  max-height: 760px;
}

.module-v2-page .slider-controls {
  display: none;
}

.module-v2-page {
  --module-accent: #1bb6f2;
  --module-accent-soft: rgba(27, 182, 242, 0.14);
  --module-accent-strong: rgba(27, 182, 242, 0.24);
}

.module-analisis {
  --module-accent: #1bb6f2;
  --module-accent-soft: rgba(27, 182, 242, 0.16);
  --module-accent-strong: rgba(27, 182, 242, 0.28);
}

.module-dibujo {
  --module-accent: #7de07d;
  --module-accent-soft: rgba(125, 224, 125, 0.16);
  --module-accent-strong: rgba(125, 224, 125, 0.28);
}

.module-dibujo .slide-accent {
  background:
    radial-gradient(circle at 78% 52%, rgba(125, 224, 125, 0.22) 0%, transparent 34%);
}

.module-dibujo .slide::before {
  background:
    linear-gradient(90deg, rgba(9, 13, 22, 0.9) 0%, rgba(9, 13, 22, 0.82) 18%, rgba(9, 13, 22, 0.48) 40%, rgba(9, 13, 22, 0.14) 62%, rgba(9, 13, 22, 0.08) 100%);
}

.module-edicion {
  --module-accent: #ff8b5e;
  --module-accent-soft: rgba(255, 139, 94, 0.16);
  --module-accent-strong: rgba(255, 139, 94, 0.28);
}

.module-pizarra {
  --module-accent: #b48cff;
  --module-accent-soft: rgba(180, 140, 255, 0.16);
  --module-accent-strong: rgba(180, 140, 255, 0.28);
}

.module-planificacion {
  --module-accent: #ffd166;
  --module-accent-soft: rgba(255, 209, 102, 0.16);
  --module-accent-strong: rgba(255, 209, 102, 0.28);
}

.module-v2-page .hero-slider::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(9, 12, 20, 0) 0%, rgba(9, 12, 20, 0.88) 100%);
  pointer-events: none;
  z-index: 1;
}

.module-v2-page .slide-accent {
  background:
    radial-gradient(circle at center, var(--module-accent-strong) 0%, transparent 62%);
}

.module-v2-page .slide-badge {
  box-shadow: 0 10px 30px var(--module-accent-soft);
}

.module-v2-page .slide-badge span,
.module-v2-page .title-highlight,
.module-v2-page .v2-card-eyebrow,
.module-v2-page .highlight-eyebrow {
  color: var(--module-accent);
}

.module-v2-page .feature-tag,
.module-v2-page .module-proof-points span,
.module-v2-page .module-panel-foot span {
  border-color: var(--module-accent-strong);
}

.module-hero-content {
  width: min(1260px, calc(100% - 5rem));
}

.module-hero-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.84fr) minmax(220px, 280px);
  gap: 1.6rem;
  align-items: center;
}

.module-hero-copy {
  max-width: 500px;
  padding-top: 0.4rem;
}

.module-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-top: 1rem;
}

.module-secondary-cta {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.module-secondary-cta:hover {
  border-color: var(--module-accent-strong);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.module-hero-panel {
  position: relative;
  z-index: 2;
  margin-top: 0.35rem;
  padding: 1rem 1rem 0.9rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.03) 100%),
    linear-gradient(135deg, var(--module-accent-soft) 0%, rgba(8, 10, 16, 0.14) 62%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.module-panel-kicker {
  margin-bottom: 0.8rem;
  color: var(--color-text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.module-panel-metric {
  display: grid;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.module-panel-label {
  color: var(--color-text-muted);
  font-size: 0.82rem;
}

.module-panel-metric strong {
  font-size: 1.02rem;
  line-height: 1.08;
}

.module-panel-list {
  display: grid;
  gap: 0.72rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.module-panel-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--color-text-muted);
  font-size: 0.88rem;
}

.module-panel-list li::before {
  content: '';
  position: absolute;
  top: 0.48rem;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--module-accent);
}

.module-panel-foot,
.module-proof-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.module-panel-foot span,
.module-proof-points span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.4rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text);
  font-size: 0.78rem;
  font-weight: 600;
}

.module-v2-page .v2-version-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.module-v2-page .slide-title {
  max-width: 9ch;
  font-size: clamp(2.8rem, 4.6vw, 4.4rem);
  line-height: 0.96;
  margin-bottom: 0.9rem;
}

.module-v2-page.module-planificacion .slide-title {
  max-width: 12ch;
}

.module-v2-page.module-planificacion .module-hero-content {
  max-width: 820px;
}

.module-v2-page.module-planificacion .module-hero-copy {
  max-width: 520px;
}

.module-v2-page .slide-text {
  max-width: 27rem;
  font-size: 0.98rem;
  line-height: 1.5;
  margin-bottom: 1.35rem;
}

.module-v2-page .slide-features {
  max-width: 28rem;
  margin-top: 0.9rem;
  margin-bottom: 1.45rem;
}

.module-v2-page .hero-slider .slide-image {
  width: 74%;
  margin-left: auto;
  object-position: center right;
}

.module-v2-page .slide::before {
  background:
    linear-gradient(90deg, rgba(10, 14, 24, 0.92) 0%, rgba(10, 14, 24, 0.86) 18%, rgba(10, 14, 24, 0.52) 42%, rgba(10, 14, 24, 0.12) 62%, rgba(10, 14, 24, 0.08) 100%);
}

.module-v2-page .v2-version-card-featured {
  background:
    linear-gradient(135deg, var(--module-accent-soft) 0%, rgba(20, 22, 34, 0.08) 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-color: var(--module-accent-strong);
}

.v2-page .hero-slider::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 160px;
  background: linear-gradient(180deg, rgba(9, 12, 20, 0) 0%, rgba(9, 12, 20, 0.78) 100%);
  pointer-events: none;
  z-index: 5;
}

.v2-page .slide-badge {
  box-shadow: 0 10px 30px rgba(27, 182, 242, 0.12);
}

.v2-page .feature-tag {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.v2-page .highlight-card,
.v2-page .v2-version-card {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.v2-page .v2-version-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.025) 100%);
}

.v2-page .v2-version-card-featured {
  background:
    linear-gradient(135deg, rgba(27, 182, 242, 0.1) 0%, rgba(20, 22, 34, 0.04) 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.025) 100%);
}

.v2-page .highlight-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.v2-page .highlight-media {
  position: relative;
}

.v2-page .highlight-media::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 36%;
  background: linear-gradient(180deg, rgba(7, 10, 18, 0) 0%, rgba(7, 10, 18, 0.68) 100%);
}

.v2-page .tool-spot.active,
.v2-page .tool-spot:hover,
.v2-page .feature-tab.active,
.v2-page .tab-button.active {
  box-shadow: 0 0 0 1px rgba(27, 182, 242, 0.18), 0 18px 38px rgba(27, 182, 242, 0.12);
}

.module-v2-page .highlight-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.2);
}

.module-v2-page .highlight-media {
  position: relative;
}

.module-v2-page .highlight-media::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(7, 10, 18, 0) 0%, rgba(7, 10, 18, 0.72) 100%);
}

.module-v2-page .tool-spot.active,
.module-v2-page .tool-spot:hover,
.module-v2-page .feature-tab.active,
.module-v2-page .tab-button.active {
  box-shadow: 0 0 0 1px var(--module-accent-strong), 0 18px 38px var(--module-accent-soft);
}

.module-v2-page .v2-version-header,
.module-v2-page .highlights-header,
.module-v2-page .tools-header,
.module-v2-page .features-header {
  max-width: 920px;
}

.module-v2-page .tools-tabs {
  justify-content: flex-start;
}

.module-analisis .feature-tab-wide {
  min-width: 220px;
  padding-inline: 1.35rem;
}

.module-analisis .feature-tab-wide .feature-tab-text {
  white-space: nowrap;
}

.module-planificacion .feature-tab-wide {
  min-width: 220px;
  padding-inline: 1.35rem;
}

.module-planificacion .feature-tab-wide .feature-tab-text {
  white-space: nowrap;
}

.module-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(27, 182, 242, 0.08), transparent 32%),
    linear-gradient(180deg, #11131d 0%, #151928 45%, #0f121b 100%);
}

.shell {
  width: min(1180px, calc(100% - 3rem));
  margin: 0 auto;
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
}

.brand-type {
  height: 30px;
  width: auto;
}

.module-page .site-header {
  background: rgba(17, 19, 29, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.module-page .main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.module-page .main-nav a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  transition: color var(--transition-fast);
}

.module-page .main-nav a:hover {
  color: var(--color-text);
}

.module-page main {
  padding-top: 84px;
}

.module-hero {
  padding: 4.5rem 0 2.5rem;
}

.module-hero-grid,
.interface-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 2.5rem;
  align-items: center;
}

.module-page h1,
.module-page h2,
.module-page h3 {
  line-height: 1.08;
}

.module-page h1 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  margin-bottom: 1rem;
}

.module-page h2 {
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.module-page h3 {
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--color-accent-blue);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.module-lead,
.module-page p,
.plain-list li,
.detail-list article p {
  color: var(--color-text-muted);
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.85rem 1.15rem;
  border-radius: 6px;
  font-weight: 700;
  transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast);
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--color-accent-blue);
  color: #fff;
}

.button-primary:hover {
  background: var(--color-accent-blue-dark);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--color-text);
}

.button-secondary:hover {
  border-color: rgba(27, 182, 242, 0.4);
  background: rgba(255, 255, 255, 0.03);
}

.module-hero-media,
.interface-media {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
}

.module-hero-media img,
.interface-media img {
  width: 100%;
  height: auto;
}

.section {
  padding: 2.5rem 0;
}

.section-dark {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.module-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.summary-card {
  min-height: 100%;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.plain-list {
  display: grid;
  gap: 0.75rem;
}

.plain-list li {
  position: relative;
  padding-left: 1rem;
}

.plain-list li::before {
  content: '';
  position: absolute;
  top: 0.6rem;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.detail-list {
  display: grid;
  gap: 1rem;
}

.detail-list article {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-list article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

@media (max-width: 1100px) {
  .v2-version-grid {
    grid-template-columns: 1fr;
  }

  .module-hero-layout {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.5rem;
  }

  .module-hero-copy {
    max-width: 640px;
    padding-top: 0;
  }

  .module-hero-panel {
    margin-top: 0;
    max-width: 420px;
  }

  .module-v2-page .hero-slider .slide-image {
    width: 100%;
  }

  .module-v2-page .slide-title {
    max-width: 10ch;
  }

  .module-hero-grid,
  .interface-grid,
  .module-summary-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .v2-version-section {
    padding-top: 3rem;
  }

  .v2-hub-flow {
    align-items: stretch;
    flex-direction: column;
  }

  .v2-flow-line {
    align-self: center;
    flex: none;
    width: 1px;
    min-width: 0;
    height: 14px;
    background: linear-gradient(180deg, rgba(27, 182, 242, 0.15), var(--color-accent-blue));
  }

  .module-hero-content {
    width: min(100% - 1.5rem, 1180px);
  }

  .module-v2-page .slide-title {
    font-size: clamp(2.45rem, 9vw, 3.5rem);
    max-width: 10ch;
  }

  .module-v2-page .slide-text,
  .module-v2-page .slide-features {
    max-width: 100%;
  }

  .shell {
    width: min(100% - 1.5rem, 1180px);
  }

  .module-hero {
    padding-top: 3rem;
  }
}

@media (max-width: 767px) {
  .module-v2-page .hero-slider {
    min-height: 720px;
    max-height: none;
  }

  .module-v2-page .slide-content {
    bottom: 4.75rem;
  }

  .module-hero-copy .slide-title {
    font-size: clamp(2.1rem, 10.5vw, 2.9rem);
    max-width: 10ch;
  }

  .module-hero-panel {
    padding: 1rem;
    border-radius: 10px;
  }

  .module-v2-page .slide::before {
    background:
      linear-gradient(180deg, rgba(10, 14, 24, 0.88) 0%, rgba(10, 14, 24, 0.72) 34%, rgba(10, 14, 24, 0.38) 58%, rgba(10, 14, 24, 0.18) 100%);
  }

  .module-secondary-cta,
  .module-v2-page .slide-cta {
    width: 100%;
    justify-content: center;
  }

  .header-shell {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .module-page .main-nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .module-page h1 {
    font-size: clamp(2.2rem, 12vw, 3rem);
  }

  .v2-page .nav-dropdown {
    width: 100%;
  }

  .v2-page .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.35rem 0;
  }

  .v2-page .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    margin-top: 0.4rem;
    padding: 0 0 0 0.85rem;
    border: 0;
    border-left: 1px solid var(--color-border);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .v2-page .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .v2-page .nav-dropdown-link {
    min-height: 0;
    padding: 0.5rem 0;
    font-size: 0.96rem;
  }
}
