.landing-hero {
  color: #fff;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.landing-hero .hero-logo-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  box-shadow: 0 12px 35px -18px rgba(0, 0, 0, 0.45);
}

.landing-hero .hero-logo-mark img {
  max-width: 100%;
  height: auto;
}

.landing-hero .hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.landing-hero .hero-subtext {
  color: rgba(255, 255, 255, 0.78);
}

.landing-hero .hero-values,
.landing-hero .hero-confidence {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.landing-hero .hero-value-chip,
.landing-hero .hero-confidence-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.landing-hero .hero-confidence-chip {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.landing-hero .hero-confidence-chip i {
  color: var(--brand-accent);
}

.landing-hero .stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.landing-hero .stat-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 1.5rem;
  backdrop-filter: blur(12px);
}

.landing-hero .stat-value {
  font-size: 2rem;
  font-weight: 700;
}

.landing-hero .stat-label {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.35rem;
  font-size: 0.95rem;
}

.landing-btn-accent {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-primary-strong));
  border: none;
  color: #fff;
  box-shadow: 0 18px 32px -20px var(--brand-primary);
}

.landing-btn-accent:hover,
.landing-btn-accent:focus {
  color: #fff;
  filter: brightness(1.05);
  box-shadow: 0 20px 40px -18px var(--brand-primary);
}

.landing-section-title {
  font-size: clamp(2.25rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--brand-ink);
}

.landing-dashboard {
  position: relative;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), var(--brand-surface));
  border: 1px solid rgba(13, 59, 102, 0.08);
  padding: clamp(2rem, 5vw, 3rem);
  box-shadow: 0 18px 48px -32px rgba(7, 24, 34, 0.3);
}

.landing-dashboard::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, var(--brand-accent)33, transparent 70%);
  top: -40px;
  right: -40px;
  pointer-events: none;
}

.landing-dashboard-metric {
  border-radius: 18px;
  background: var(--brand-surface);
  padding: 1rem;
  border: 1px solid rgba(13, 59, 102, 0.08);
  box-shadow: 0 18px 40px -32px rgba(7, 24, 34, 0.25);
}

.module-card,
.feature-card {
  border-radius: 18px;
  border: 1px solid rgba(13, 59, 102, 0.08);
  padding: 2rem;
  background: #fff;
  height: 100%;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.module-card:hover,
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px -40px rgba(7, 24, 34, 0.38);
}

.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(10, 174, 148, 0.12);
  color: var(--brand-primary-strong);
  font-weight: 600;
  font-size: 0.85rem;
}

.compliance-card {
  background: linear-gradient(145deg, var(--brand-ink), var(--brand-primary));
  color: #fff;
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.compliance-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 60%);
  pointer-events: none;
}

.testimonial-card {
  border-radius: 18px;
  border: 1px solid rgba(7, 24, 34, 0.08);
  background: #fff;
  padding: 2rem;
  height: 100%;
}

.cta-banner {
  border-radius: 24px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  color: #fff;
  padding: clamp(2rem, 6vw, 3.5rem);
  box-shadow: 0 38px 50px -40px rgba(10, 110, 160, 0.65);
}

.hero-snapshot-card {
  backdrop-filter: blur(12px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  min-height: 100%;
}

.hero-meta {
  letter-spacing: 0.04em;
}

.hero-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
}

.hero-nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  text-decoration: none;
  padding-bottom: 0.3rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.25);
  transition: border-color 160ms ease, color 160ms ease;
}

.hero-nav-link:hover,
.hero-nav-link:focus {
  color: #fff;
  border-bottom-color: var(--brand-accent);
}

.hero-secondary-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  transition: background 160ms ease, border-color 160ms ease;
}

.hero-secondary-link:hover,
.hero-secondary-link:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.hero-stat {
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
}

.hero-stat-value {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}

.hero-stat-label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.hero-empty-state {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  border: 1px dashed rgba(255, 255, 255, 0.35);
  border-radius: 18px;
  padding: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-empty-state i {
  font-size: 1.25rem;
  color: var(--brand-accent);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.metric-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(13, 59, 102, 0.08);
  background: #fff;
  padding: 1.5rem;
  box-shadow: 0 18px 40px -32px rgba(7, 24, 34, 0.25);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.metric-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px -40px rgba(7, 24, 34, 0.35);
}

.metric-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 174, 148, 0.12);
  color: var(--brand-primary-strong);
  font-size: 1.25rem;
}

.metric-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand-ink);
  display: block;
}

.metric-label {
  color: rgba(13, 59, 102, 0.65);
  font-weight: 500;
}

.metric-empty-state {
  text-align: center;
  border-radius: 20px;
  border: 1px dashed rgba(13, 59, 102, 0.18);
  padding: 2.5rem 2rem;
  background: rgba(244, 250, 248, 0.6);
}

.metric-empty-state i {
  font-size: 2rem;
  color: var(--brand-primary);
  display: inline-block;
  margin-bottom: 1rem;
}

.module-card {
  position: relative;
  padding: 2rem;
  background: #fff;
}

.module-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 174, 148, 0.12);
  color: var(--brand-primary-strong);
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.plan-card {
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(13, 59, 102, 0.12);
  background: #fff;
  padding: 1.75rem;
  height: 100%;
  box-shadow: 0 18px 35px -32px rgba(7, 24, 34, 0.25);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 55px -38px rgba(7, 24, 34, 0.35);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.plan-card .display-6 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--brand-ink);
}

.achievement-card {
  border-radius: 20px;
  border: 1px solid rgba(13, 59, 102, 0.12);
  background: #fff;
  padding: 1.75rem;
  box-shadow: 0 18px 48px -36px rgba(7, 24, 34, 0.28);
}

.achievement-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 174, 148, 0.12);
  color: var(--brand-primary-strong);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.content-card {
  border-radius: 18px;
  border: 1px solid rgba(13, 59, 102, 0.12);
  background: #fff;
  padding: 1.75rem;
  height: 100%;
}

.content-link {
  display: grid;
  gap: 0.35rem;
  padding: 0.75rem 0.5rem;
  border-radius: 12px;
  color: inherit;
  text-decoration: none;
  transition: background 160ms ease;
}

.content-link:hover {
  background: rgba(10, 174, 148, 0.08);
}

.content-date {
  font-size: 0.85rem;
  color: rgba(13, 59, 102, 0.55);
}

.content-title {
  font-weight: 600;
  color: var(--brand-ink);
}

.content-summary {
  color: rgba(13, 59, 102, 0.65);
}

.insight-card,
.mission-card {
  border-radius: 18px;
  border: 1px solid rgba(13, 59, 102, 0.12);
  background: #fff;
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 18px 45px -36px rgba(7, 24, 34, 0.28);
}

.insight-icon,
.mission-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 179, 0, 0.15);
  color: var(--brand-accent);
}

.mission-card .mission-icon {
  background: rgba(10, 174, 148, 0.12);
  color: var(--brand-primary-strong);
}

.journey-card {
  border-radius: 20px;
  border: 1px solid rgba(13, 59, 102, 0.1);
  background: #fff;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
  box-shadow: 0 18px 45px -36px rgba(7, 24, 34, 0.26);
}

.journey-xp {
  color: var(--brand-primary-strong);
  font-size: 0.95rem;
}

.journey-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.journey-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(10, 174, 148, 0.12);
  color: var(--brand-primary-strong);
  font-size: 0.85rem;
  font-weight: 500;
}

.journey-link {
  color: var(--brand-primary-strong);
  font-weight: 600;
  text-decoration: none;
}

.journey-link:hover {
  text-decoration: underline;
}

.solution-card {
  border-radius: 20px;
  border: 1px solid rgba(13, 59, 102, 0.1);
  background: #fff;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  box-shadow: 0 18px 45px -36px rgba(7, 24, 34, 0.28);
}

.solution-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 179, 0, 0.18);
  color: var(--brand-accent);
  font-size: 1.2rem;
}

.solution-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.75rem;
}

.solution-stat {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  background: rgba(10, 174, 148, 0.08);
  padding: 0.75rem;
  gap: 0.2rem;
}

.solution-stat-value {
  font-weight: 600;
  color: var(--brand-primary-strong);
}

.solution-stat-label {
  font-size: 0.85rem;
  color: rgba(13, 59, 102, 0.6);
}

.solution-link {
  color: var(--brand-primary-strong);
  text-decoration: none;
}

.solution-link:hover {
  text-decoration: underline;
}

.segment-card {
  border-radius: 18px;
  border: 1px solid rgba(13, 59, 102, 0.12);
  background: #fff;
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 18px 40px -34px rgba(7, 24, 34, 0.24);
}

.segment-module-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
  color: rgba(13, 59, 102, 0.75);
  font-size: 0.9rem;
}

.segment-card .segment-price {
  color: #0d3b66;
  font-weight: 600;
}

.segment-link {
  text-decoration: none;
  color: var(--brand-primary-strong);
  font-weight: 600;
}

.segment-link:hover {
  text-decoration: underline;
}

.resource-card {
  border-radius: 18px;
  border: 1px solid rgba(13, 59, 102, 0.12);
  background: #fff;
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.resource-link {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  color: var(--brand-ink);
  text-decoration: none;
  padding: 0.5rem 0.4rem;
  border-radius: 12px;
  transition: background 160ms ease;
}

.resource-link:hover {
  background: rgba(10, 174, 148, 0.08);
}

.resource-label {
  font-weight: 600;
}

.resource-meta {
  color: rgba(13, 59, 102, 0.6);
}

.marketing-metrics-bar {
  border-bottom: 1px solid rgba(13, 59, 102, 0.08);
  background: rgba(244, 250, 248, 0.85);
  backdrop-filter: blur(6px);
}

.marketing-metrics-list {
  display: flex;
  gap: 1.5rem;
  padding: 0.75rem 0;
  flex-wrap: wrap;
  justify-content: center;
}

.marketing-metric-item {
  display: inline-flex;
  align-items: baseline;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: rgba(13, 59, 102, 0.75);
}

.marketing-metric-value {
  font-weight: 600;
  color: var(--brand-ink);
}

.marketing-metric-label {
  font-size: 0.85rem;
}

.corporate-footer-metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
}

.corporate-footer-metric {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.75rem 1rem;
}

.corporate-footer-metric .value {
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
}

.corporate-footer-metric .label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 991.98px) {
  .landing-hero {
    text-align: center;
  }

  .landing-dashboard {
    margin-top: 2rem;
  }

  .landing-hero .hero-values,
  .landing-hero .hero-confidence {
    justify-content: center;
  }

  .metric-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .solution-stats {
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  }

  .hero-nav-list,
  .hero-secondary-nav {
    justify-content: center;
  }

  .hero-snapshot-card {
    margin-top: 2rem;
  }
}

