/* Modern Design System for NØRVE Website */

:root {
  --font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Primary Color Tokens (HSL) */
  --color-navy: #2D4A6B;
  --color-navy-dark: #1E3550;
  --color-navy-darker: #1A2E42;
  --color-navy-footer: #152536;
  --color-blue-accent: #7BAFD4;
  --color-blue-light: #EEF3F8;
  --color-blue-border: #D8E4EE;
  --color-blue-muted: #94AFBE;
  --color-blue-subtle: #A8C8E8;
  --color-blue-text: #5A7A94;
  --color-bg-light: #F4F7FA;
  --color-white: #FFFFFF;
  
  /* Status Colors */
  --color-green: #22A66E;
  --color-yellow: #D4900A;
  --color-orange: #D4610A;
  --color-red: #C93B3B;
  
  /* Layout Spacing */
  --max-width: 1100px;
  --header-height: 64px;
}

@media (min-width: 768px) {
  :root {
    --header-height: 80px;
  }
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-family);
  scroll-behavior: smooth;
  color: var(--color-navy-darker);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.5;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select {
  font: inherit;
}

/* Container Utility */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Screen-reader-only Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.2s ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  border-bottom-color: var(--color-blue-border);
  box-shadow: 0 4px 20px rgba(45, 74, 107, 0.05);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

/* The logo must never absorb the row's overflow, or it collapses to zero width. */
.nav-logo {
  flex-shrink: 0;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

/* Mobile: tabs and the CTA become a dropdown panel below the bar, toggled by .nav-toggle */
.nav-tabs {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 0.5rem 0;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-blue-border);
  box-shadow: 0 4px 20px rgba(45, 74, 107, 0.08);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.nav-tabs.active {
  opacity: 1;
  visibility: visible;
}

.nav-tab {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-blue-text);
  transition: color 0.2s ease;
  position: relative;
  padding: 0.875rem 1.5rem;
}

.nav-tab:hover {
  color: var(--color-navy-darker);
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: none;
  color: var(--color-navy);
  cursor: pointer;
}

.nav-toggle-icon-close,
.nav-toggle[aria-expanded='true'] .nav-toggle-icon-open {
  display: none;
}

.nav-toggle[aria-expanded='true'] .nav-toggle-icon-close {
  display: block;
}

/* Stretches to the panel width; .btn-primary already centres its own label */
.nav-cta {
  margin: 0.5rem 1.5rem;
}

/* Language Switcher: a dropdown so the two-letter code list doesn't spend row width */
.nav-lang {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 0.875rem 1.5rem;
}

.nav-lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-blue-text);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s ease;
}

.nav-lang-toggle:hover {
  color: var(--color-navy-darker);
}

.nav-lang-caret {
  transition: transform 0.2s ease;
}

.nav-lang.active .nav-lang-caret {
  transform: rotate(180deg);
}

.nav-lang-menu {
  position: absolute;
  top: calc(100% + 0.25rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 5rem;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  padding: 0.375rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-blue-border);
  border-radius: 0.625rem;
  box-shadow: 0 8px 24px rgba(45, 74, 107, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, visibility 0.15s ease;
  z-index: 10;
}

.nav-lang.active .nav-lang-menu {
  opacity: 1;
  visibility: visible;
}

.nav-lang-option {
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  color: var(--color-blue-text);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-lang-option:hover {
  background-color: var(--color-blue-light);
  color: var(--color-navy-darker);
}

.nav-lang-option.is-active {
  color: var(--color-navy);
  font-weight: 600;
  pointer-events: none;
}

@media (min-width: 768px) {
  .nav-logo img {
    height: 54px;
  }

  .nav-tabs {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
    position: static;
    padding: 0;
    background: none;
    border-bottom: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
  }

  .nav-tab {
    padding: 0.25rem 0;
  }

  .nav-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-blue-accent);
    transition: width 0.2s ease;
    border-radius: 1px;
  }

  .nav-tab:hover::after {
    width: 100%;
  }

  .nav-toggle {
    display: none;
  }

  .nav-cta {
    margin: 0;
  }

  .nav-lang {
    padding: 0;
  }
}

/* Buttons */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-navy);
  color: var(--color-white);
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color 0.2s ease, transform 0.1s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--color-navy-dark);
}

.btn-primary-large {
  padding: 0.75rem 1.75rem;
  font-size: 1rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  color: var(--color-blue-text);
  font-size: 1rem;
  font-weight: 400;
  transition: color 0.2s ease;
}

.btn-secondary:hover {
  color: var(--color-navy);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 60vh;
  overflow: hidden;
  background-color: var(--color-white);
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 4rem;
}

.neural-bg {
  position: absolute;
  width: 500px;
  height: 500px;
  pointer-events: none;
  top: -8rem;
  opacity: 1;
}

.neural-bg-left {
  left: -8rem;
}

.neural-bg-right {
  right: -8rem;
  transform: scaleX(-1);
}

.hero-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (min-width: 1024px) {
  .hero-layout {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
    padding-top: 4rem;
    padding-bottom: 6rem;
  }
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-content {
    align-items: flex-start;
    text-align: left;
  }
}

.pilot-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background-color: var(--color-blue-light);
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
}

.pilot-dot {
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background-color: var(--color-blue-accent);
}

.pilot-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-navy);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--color-navy);
  margin-bottom: 1.5rem;
  max-width: 36rem;
}

.hero-title span {
  color: var(--color-blue-text);
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.625;
  color: var(--color-blue-text);
  max-width: 32rem;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 0.875rem;
  color: var(--color-blue-muted);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    width: auto;
  }
}

/* Gauge Visual */
.gauge-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.gauge-container {
  position: relative;
  width: 100%;
  max-width: 340px;
}

.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  border-radius: 0.375rem;
  border: 1px solid var(--color-blue-border);
  background-color: var(--color-white);
  padding: 0.375rem 0.625rem;
  font-size: 0.75rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  animation: float 4s ease-in-out infinite alternate;
}

.floating-badge-top-left { top: 2rem; left: -1rem; }
.floating-badge-top-right { top: 2rem; right: -1rem; animation-delay: 1s; }
.floating-badge-bottom-left { bottom: 4rem; left: -0.5rem; animation-delay: 2s; }
.floating-badge-bottom-right { bottom: 4rem; right: -0.5rem; animation-delay: 3s; }

@keyframes float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}

.badge-title { font-weight: 500; color: var(--color-navy); }
.badge-value { color: var(--color-blue-text); }

/* Problem Section */
.problem-section {
  position: relative;
  background-color: var(--color-bg-light);
  padding: 6rem 0;
  overflow: hidden;
}

.problem-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.problem-content {
  max-width: 42rem;
}

.problem-visual {
  width: 100%;
}

.problem-visual img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 1.25rem;
  box-shadow: 0 20px 50px rgba(45, 74, 107, 0.18);
}

@media (min-width: 1024px) {
  .problem-layout {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }

  .problem-content {
    flex: 1 1 50%;
  }

  .problem-visual {
    flex: 1 1 50%;
  }

  .problem-visual img {
    aspect-ratio: 4 / 5;
  }
}

.section-title-large {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-navy);
  margin-bottom: 2.5rem;
}

.problem-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: var(--color-navy-darker);
}

.problem-highlight {
  margin-top: 2.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-blue-accent);
}

/* Pillars Section */
.pillars-section {
  background-color: var(--color-white);
  padding: 6rem 0;
}

.section-title-center {
  text-align: center;
  font-size: clamp(1.625rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 4rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.pillar-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .pillar-card {
    align-items: flex-start;
    text-align: left;
  }
}

.pillar-icon {
  margin-bottom: 1.25rem;
  display: flex;
  height: 3rem;
  width: 3rem;
  align-items: center;
  justify-content: center;
  color: var(--color-navy);
}

.pillar-title {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}

.pillar-desc {
  color: var(--color-blue-text);
  line-height: 1.625;
}

.pillars-footer {
  margin-top: 4rem;
  border-top: 1px solid var(--color-blue-border);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  color: var(--color-blue-muted);
}

/* Dashboard Preview Section */
.dashboard-section {
  background-color: var(--color-bg-light);
  padding: 6rem 0;
}

.dashboard-subtitle {
  text-align: center;
  color: var(--color-blue-text);
  max-width: 560px;
  margin: 1rem auto 0;
  line-height: 1.625;
}

.dashboard-card {
  max-width: 920px;
  margin: 3rem auto 0;
  border-radius: 1rem;
  border: 1px solid var(--color-blue-border);
  background-color: var(--color-white);
  padding: 1.75rem;
  box-shadow: 0 4px 32px rgba(45, 74, 107, 0.08);
}

.dashboard-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .dashboard-header {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.dashboard-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-navy-darker);
}

.dashboard-sub {
  font-size: 0.8125rem;
  color: var(--color-blue-text);
  margin-top: 0.25rem;
}

.dashboard-search {
  display: flex;
  height: 2.5rem;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--color-blue-border);
  padding: 0 0.75rem;
  color: var(--color-blue-muted);
  font-size: 0.8125rem;
}

@media (min-width: 640px) {
  .dashboard-search { width: 14rem; }
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}

.stat-item {
  border-radius: 0.625rem;
  border: 1px solid var(--color-blue-border);
  background-color: var(--color-bg-light);
  padding: 1rem 1.25rem;
}

.stat-label { font-size: 0.75rem; color: var(--color-blue-text); }
.stat-value { margin-top: 0.25rem; font-size: 1.5rem; font-weight: 600; color: var(--color-navy-darker); }

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.pill {
  border-radius: 9999px;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
}

.pill-active {
  background-color: var(--color-navy);
  color: var(--color-white);
  font-weight: 500;
}

.pill-inactive {
  border: 1px solid var(--color-blue-border);
  color: var(--color-blue-text);
}

.athlete-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .athlete-cards-grid { grid-template-columns: repeat(3, 1fr); }
}

.athlete-card {
  border-radius: 0.75rem;
  border: 1.5px solid var(--color-blue-border);
  border-left: 3px solid var(--color-yellow);
  background-color: var(--color-white);
  padding: 1.25rem;
}

.athlete-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.athlete-anon-profile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar-blur {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 50%;
  background-color: #C4D2DE;
  filter: blur(8px);
}

.name-blur {
  height: 1rem;
  width: 100px;
  border-radius: 0.25rem;
  background-color: #C4D2DE;
  filter: blur(6px);
}

.athlete-score { text-align: right; }
.score-num { font-size: 1.5rem; font-weight: 700; line-height: 1; color: var(--color-yellow); }
.score-label { margin-top: 0.25rem; font-size: 0.6875rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-yellow); }

.athlete-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.meta-label { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--color-blue-muted); }
.meta-value { margin-top: 0.125rem; font-size: 0.875rem; color: var(--color-navy-darker); }

.athlete-blur-bullets {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  filter: blur(5px);
  font-size: 0.8125rem;
  color: var(--color-blue-text);
}

.checkin-done {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--color-green);
}

/* Audience Split & Trend Section */
.audience-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(21, 37, 54, 0.86), rgba(21, 37, 54, 0.86)),
    url('assets/backgrounds/cycling-2.webp') center / cover no-repeat;
  padding: 6rem 0;
}

.audience-section .section-title-center {
  color: var(--color-white);
}

.audience-section .sport-tag {
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
}

.audience-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .audience-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem;
  }
}

.audience-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .audience-cards { width: 60%; }
  .audience-sidebar { width: 40%; }
}

.audience-card {
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.audience-tag {
  display: inline-block;
  border-radius: 9999px;
  background-color: var(--color-blue-light);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-blue-accent);
  margin-bottom: 1rem;
}

.audience-title { font-size: 1.25rem; font-weight: 500; color: var(--color-navy); margin-bottom: 0.5rem; }
.audience-subtitle { color: var(--color-blue-accent); margin-bottom: 1rem; }
.audience-desc { color: var(--color-blue-text); line-height: 1.625; }

/* Sticky Dark Readiness Sidebar */
.readiness-dark-card {
  position: relative;
  overflow: hidden;
  background-color: #1A2232;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 40px rgba(0,0,0,0.28);
  padding: 1.5rem;
  color: white;
}

.readiness-dark-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.driver-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
}

.driver-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Pricing Section */
.pricing-section {
  padding: 6rem 0;
  background-color: var(--color-white);
}

.pricing-card-wrapper {
  display: flex;
  justify-content: center;
}

.pricing-card {
  width: 100%;
  max-width: 480px;
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-blue-border);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(45, 74, 107, 0.04);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(45, 74, 107, 0.08);
}

.pricing-badge {
  display: inline-block;
  padding: 0.25rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-blue-accent);
  background-color: var(--color-white);
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 0;
  background-color: var(--color-bg-light);
}

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

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial-card {
  position: relative;
  background-color: var(--color-white);
  border: 1px solid var(--color-blue-border);
  border-radius: 16px;
  padding: 2.5rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 20px rgba(45, 74, 107, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(45, 74, 107, 0.08);
}

.testimonial-quote-mark {
  position: absolute;
  top: 0.75rem;
  left: 1.25rem;
  font-size: 3.5rem;
  font-family: Georgia, serif;
  line-height: 1;
  color: var(--color-blue-subtle);
  opacity: 0.5;
  pointer-events: none;
}

.testimonial-card-text {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-navy-darker);
  margin-bottom: 1.5rem;
}

.testimonial-card-author {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-blue-text);
  text-align: right;
}

.testimonial-card-author p {
  margin: 0;
}

.testimonial-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--color-blue-border);
}


/* FAQ Section */
.faq-section {
  padding: 6rem 0;
  background-color: var(--color-white);
}

.faq-list {
  max-width: 760px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--color-blue-border);
  border-radius: 16px;
  padding: 0 1.5rem;
  background-color: var(--color-bg-light);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-navy);
  cursor: pointer;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--color-blue-text);
  border-bottom: 2px solid var(--color-blue-text);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(-135deg);
}

.faq-answer {
  color: var(--color-blue-text);
  line-height: 1.7;
  padding: 0 0 1.5rem;
}

.faq-answer a {
  color: var(--color-navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-answer a:hover {
  color: var(--color-navy-darker);
}

.price-header {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-navy-darker);
  line-height: 1;
}

.price-period-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.price-unit {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-navy);
}

.price-vat {
  font-size: 0.8125rem;
  color: var(--color-blue-muted);
}

.pricing-divider {
  border: none;
  border-top: 1px solid var(--color-blue-border);
  margin: 1.75rem 0;
}

.pricing-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--color-navy-darker);
}

.pricing-cta-btn {
  width: 100%;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  justify-content: center;
}




/* Sport Pills */
.sports-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3rem;
}

.sport-tag {
  border-radius: 9999px;
  background-color: var(--color-blue-light);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--color-blue-text);
}

/* Waitlist Section */
.waitlist-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(21, 37, 54, 0.82), rgba(21, 37, 54, 0.92)),
    url('assets/backgrounds/running-3.webp') center / cover no-repeat;
  padding: 6rem 0;
}

.waitlist-section .section-title-center {
  color: var(--color-white);
}

.waitlist-section .dashboard-subtitle {
  color: rgba(255, 255, 255, 0.75);
}

.waitlist-section .form-note {
  color: rgba(255, 255, 255, 0.6);
}

.waitlist-container {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}

.form-input {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid var(--color-blue-border);
  background-color: var(--color-white);
  padding: 0.75rem 1rem;
  color: var(--color-navy-darker);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input::placeholder { color: var(--color-blue-muted); }

.form-input:focus {
  border-color: var(--color-blue-accent);
  outline: none;
  box-shadow: 0 0 0 2px rgba(123, 175, 212, 0.2);
}

.form-submit-btn {
  width: 100%;
  border-radius: 9999px;
  background-color: var(--color-navy);
  padding: 0.875rem 1.75rem;
  font-weight: 500;
  color: var(--color-white);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.form-submit-btn:hover { background-color: var(--color-navy-dark); }

.form-note {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: var(--color-blue-muted);
}

/* Footer */
.footer {
  background-color: var(--color-navy-footer);
  color: var(--color-white);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
  text-decoration: underline;
}

.footer-links a:hover {
  color: var(--color-white);
}

.footer-sep {
  color: rgba(255, 255, 255, 0.4);
}


/* Modal Popup Styles */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background-color: rgba(30, 53, 80, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  padding: 2.5rem 2rem 2rem 2rem;
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(21, 37, 54, 0.25), 0 0 0 1px rgba(216, 228, 238, 0.8);
  text-align: center;
  transform: scale(0.92) translateY(12px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.active .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border: none;
  background: var(--color-blue-light);
  color: var(--color-navy-dark);
  font-size: 1.25rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.modal-close-btn:hover {
  background-color: var(--color-blue-border);
  color: var(--color-navy-darker);
  transform: rotate(90deg);
}

.modal-icon-wrapper {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem auto;
  border-radius: 50%;
  background-color: rgba(34, 166, 110, 0.12);
  color: var(--color-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(34, 166, 110, 0.05);
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy-darker);
  margin-bottom: 0.625rem;
  letter-spacing: -0.02em;
}

.modal-desc {
  font-size: 0.9375rem;
  color: var(--color-blue-text);
  line-height: 1.55;
  margin-bottom: 1.75rem;
}

.modal-action-btn {
  width: 100%;
  padding: 0.875rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  justify-content: center;
  cursor: pointer;
}

