/* ===========================
   NEXTSTEP METRICS — SITE CSS
   =========================== */

:root {
  --navy:    #122D6B;
  --teal:    #148099;
  --navy-mid: #1a3d8f;
  --teal-light: #1da8c8;
  --bg:      #F7F9FC;
  --bg-alt:  #EEF2FA;
  --surface: #FFFFFF;
  --text:    #111827;
  --text-2:  #374151;
  --text-3:  #6B7280;
  --border:  #E5E7EB;
  --green:   #16A34A;
  --yellow:  #D97706;
  --red:     #DC2626;
  --green-bg: #DCFCE7;
  --yellow-bg: #FEF3C7;
  --red-bg:   #FEE2E2;
  --radius:  12px;
  --radius-lg: 20px;
  --shadow:  0 2px 12px rgba(18,45,107,0.08);
  --shadow-lg: 0 8px 40px rgba(18,45,107,0.14);
  --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; }

a { color: var(--navy); text-decoration: none; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 22px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: #fff;
  box-shadow: 0 4px 14px rgba(18,45,107,0.25);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(18,45,107,0.35); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.22); }
.btn-white {
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 6px 28px rgba(0,0,0,0.2); }
.btn-nav {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: #fff;
  font-size: 13px;
  padding: 8px 18px;
}
.btn-lg { font-size: 17px; padding: 14px 32px; border-radius: 12px; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo strong { font-weight: 700; }
.nav-logo-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-3);
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 20px;
  background: #fff;
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  padding: 8px 0;
}

/* ===== SECTION HEADERS ===== */
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-header p {
  font-size: 16px;
  color: var(--text-3);
  line-height: 1.7;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 140px 0 100px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #1a4a7a 50%, var(--teal) 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: var(--teal);
  top: -100px; right: -100px;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: #1a4a9a;
  bottom: -80px; left: -80px;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-headline em {
  font-style: italic;
  color: rgba(255,255,255,0.75);
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
}
.badge-green { background: #4ade80; }
.badge-teal  { background: #22d3ee; }
.badge-blue  { background: #93c5fd; }

/* App Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
}
.app-mockup {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(12px);
  width: 100%;
  max-width: 380px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.mockup-screen { background: #fff; border-radius: 14px; overflow: hidden; }
.mockup-header {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  padding: 16px 18px;
}
.mockup-title { font-size: 15px; font-weight: 700; color: #fff; }
.mockup-subtitle { font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 2px; }
.mockup-stats {
  display: flex;
  padding: 16px 18px;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.mockup-stat { flex: 1; text-align: center; }
.mockup-stat-value { font-size: 20px; font-weight: 700; }
.mockup-stat-label { font-size: 10px; color: var(--text-3); margin-top: 2px; }
.stat-green { color: var(--green); }
.stat-yellow { color: var(--yellow); }
.stat-red { color: var(--red); }
.mockup-members { padding: 8px; }
.mockup-member {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 4px;
  background: var(--bg);
}
.mockup-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.av-green { background: var(--green); }
.av-yellow { background: var(--yellow); }
.av-red { background: var(--red); }
.mockup-member-info { flex: 1; min-width: 0; }
.mockup-member-name { font-size: 12px; font-weight: 600; }
.mockup-member-step { font-size: 10px; color: var(--text-3); margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mockup-chip {
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  flex-shrink: 0;
}
.chip-green  { background: var(--green-bg);  color: var(--green); }
.chip-yellow { background: var(--yellow-bg); color: var(--yellow); }
.chip-red    { background: var(--red-bg);    color: var(--red); }

/* ===== PROBLEM ===== */
.problem {
  padding: 96px 0;
  background: var(--surface);
}
.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.problem-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 20px;
}
.problem-text p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 16px;
}
.problem-list {
  list-style: none;
  margin: 20px 0;
}
.problem-list li {
  font-size: 15px;
  color: var(--text-2);
  padding: 10px 0 10px 24px;
  position: relative;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.problem-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--teal));
}
.problem-quote {
  background: linear-gradient(135deg, var(--navy), #1a4a7a);
  border-radius: 20px;
  padding: 40px;
}
.problem-quote blockquote p {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
  margin-bottom: 20px;
}
.problem-quote cite {
  font-size: 13px;
  font-style: normal;
  color: rgba(255,255,255,0.5);
}

/* ===== FEATURES OVERVIEW ===== */
.features-overview {
  padding: 96px 0;
  background: var(--bg);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(18,45,107,0.15);
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  margin-bottom: 20px;
  position: relative;
}
.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.7;
}
.features-cta {
  text-align: center;
  margin-top: 48px;
}

/* ===== ENGAGEMENT SECTION ===== */
.engagement-section {
  padding: 96px 0;
  background: var(--surface);
}
.engagement-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.engagement-card {
  background: var(--bg);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.eng-header {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.eng-bar-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.eng-bar-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  width: 90px;
  flex-shrink: 0;
}
.dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot-green { background: var(--green); }
.dot-yellow { background: var(--yellow); }
.dot-red { background: var(--red); }
.eng-bar-track {
  flex: 1;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.eng-bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1s ease;
}
.fill-green  { background: var(--green); }
.fill-yellow { background: var(--yellow); }
.fill-red    { background: var(--red); }
.eng-bar-pct {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-2);
  width: 32px;
  text-align: right;
  flex-shrink: 0;
}
.eng-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}
.eng-nudge {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.eng-nudge-icon { font-size: 20px; flex-shrink: 0; }
.eng-nudge-text { font-size: 13px; color: var(--text-2); line-height: 1.5; }
.eng-nudge-text strong { display: block; color: var(--navy); font-weight: 600; margin-bottom: 4px; }
.engagement-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 20px;
}
.engagement-text p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ===== PLANS TEASER ===== */
.plans-teaser {
  padding: 96px 0;
  background: var(--bg-alt);
}
.plans-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.plan-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--transition);
}
.plan-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.plan-card.plan-featured {
  border: 2px solid var(--navy);
  box-shadow: 0 8px 32px rgba(18,45,107,0.15);
}
.plan-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-name { font-size: 13px; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.plan-price { font-family: 'Playfair Display', serif; font-size: 42px; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.plan-price span { font-family: 'DM Sans', sans-serif; font-size: 18px; font-weight: 500; color: var(--text-3); }
.plan-desc { font-size: 14px; color: var(--text-3); line-height: 1.6; margin: 12px 0 24px; }
.plan-btn { width: 100%; }
.plans-note { text-align: center; margin-top: 32px; font-size: 14px; color: var(--text-3); }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 96px 0;
  background: var(--surface);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid var(--border);
}
.testimonial-card p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 14px; color: var(--navy); }
.testimonial-author span  { font-size: 12px; color: var(--text-3); }

/* ===== DOWNLOAD CTA ===== */
.download-cta {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  position: relative;
  overflow: hidden;
}
.download-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.download-inner {
  position: relative;
  text-align: center;
}
.download-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.download-inner p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.download-note {
  font-size: 13px !important;
  color: rgba(255,255,255,0.5) !important;
  margin-top: 16px !important;
  margin-bottom: 0 !important;
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 120px 0 72px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a4a7a 60%, var(--teal) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-hero .container { position: relative; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 700px;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 600px;
}

/* ===== FEATURE DETAIL ===== */
.feature-detail {
  padding: 96px 0;
  background: var(--surface);
}
.feature-detail.feature-alt {
  background: var(--bg);
}
.feature-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-detail-inner.reverse { direction: rtl; }
.feature-detail-inner.reverse > * { direction: ltr; }
.feature-detail-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
}
.feature-detail-text p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 14px;
}
.feature-note {
  font-size: 13px !important;
  color: var(--teal) !important;
  font-weight: 500;
  background: rgba(20,128,153,0.08);
  padding: 10px 14px;
  border-radius: 8px;
  border-left: 3px solid var(--teal);
}
.metric-list { margin: 20px 0; }
.metric-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
}
.metric-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  flex-shrink: 0;
  margin-top: 5px;
}

/* Score Card */
.score-card {
  background: var(--bg);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--border);
}
.score-ring-wrap {
  position: relative;
  width: 140px;
  margin: 0 auto 24px;
}
.score-ring { width: 140px; height: 140px; }
.score-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.score-val { font-size: 32px; font-weight: 700; color: var(--navy); line-height: 1; }
.score-lbl { font-size: 12px; color: var(--green); font-weight: 600; margin-top: 2px; }
.score-breakdown { display: flex; flex-direction: column; gap: 8px; }
.score-row { display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--text-3); }
.score-row span { width: 100px; flex-shrink: 0; }
.score-mini-bar { flex: 1; height: 6px; background: var(--border); border-radius: 3px; overflow: hidden; }
.score-mini-bar div { height: 100%; background: linear-gradient(90deg, var(--navy), var(--teal)); border-radius: 3px; }

/* Pathway Visual */
.pathway-visual {
  background: var(--bg);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--border);
  max-width: 340px;
}
.pathway-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.pathway-step.ps-active {
  border-color: var(--navy);
  background: rgba(18,45,107,0.04);
}
.ps-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  flex-shrink: 0;
}
.ps-dot.ps-dim { background: var(--border); }
.ps-content strong { display: block; font-size: 14px; color: var(--navy); }
.ps-content span   { font-size: 12px; color: var(--text-3); }
.pathway-arrow { text-align: center; color: var(--text-3); padding: 4px 0; font-size: 18px; }

/* Nudge Card */
.nudge-card {
  background: var(--bg);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border);
}
.nudge-member { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.nudge-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: #fff; flex-shrink: 0; }
.nudge-name { font-size: 15px; font-weight: 600; color: var(--navy); }
.nudge-status { font-size: 12px; font-weight: 600; padding: 2px 10px; border-radius: 20px; display: inline-block; margin-top: 3px; }
.status-yellow { background: var(--yellow-bg); color: var(--yellow); }
.nudge-suggestion { display: flex; gap: 12px; background: rgba(20,128,153,0.08); border-radius: 12px; padding: 14px; margin-bottom: 16px; align-items: flex-start; }
.nudge-icon { font-size: 20px; flex-shrink: 0; }
.nudge-text { font-size: 13px; color: var(--text-2); line-height: 1.6; }
.nudge-goal-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-3); margin-bottom: 6px; }
.nudge-goal-value { font-size: 14px; color: var(--navy); font-weight: 500; padding: 10px 14px; background: var(--surface); border: 1px solid var(--border); border-radius: 8px; }

/* Data Strategies */
.data-strategy-list { margin: 20px 0; display: flex; flex-direction: column; gap: 16px; }
.ds-item { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; color: var(--text-2); line-height: 1.6; }
.ds-icon { font-size: 20px; flex-shrink: 0; }

/* Integrations Visual */
.integrations-visual {
  background: var(--surface);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--border);
  text-align: center;
}
.integration-badge {
  display: inline-block;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin: 6px;
}
.integration-arrow { font-size: 24px; color: var(--text-3); padding: 12px 0; display: block; }
.integration-core {
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 12px;
  display: inline-block;
}

/* Permissions Visual */
.permissions-visual {
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
}
.perm-row {
  display: grid;
  grid-template-columns: 1fr repeat(3, 56px);
  gap: 0;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  align-items: center;
}
.perm-row:last-child { border-bottom: none; }
.perm-header {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
}
.perm-yes { color: var(--green); font-weight: 700; text-align: center; }
.perm-no  { color: var(--text-3); text-align: center; }

/* Role List */
.role-list { margin: 20px 0; display: flex; flex-direction: column; gap: 16px; }
.role-item { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; color: var(--text-2); line-height: 1.6; }
.role-badge { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; flex-shrink: 0; margin-top: 2px; }
.role-admin  { background: rgba(139,51,204,0.12); color: #8B33CC; }
.role-staff  { background: rgba(26,122,204,0.12); color: #1A7ACC; }
.role-viewer { background: var(--bg-alt); color: var(--text-3); }

/* ===== PRICING SECTION ===== */
.pricing-section { padding: 80px 0; background: var(--bg); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); }
.pricing-card-featured {
  border: 2px solid var(--navy);
  box-shadow: 0 8px 32px rgba(18,45,107,0.15);
}
.pricing-popular {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-plan { font-size: 13px; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.pricing-amount { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 700; color: var(--navy); line-height: 1; }
.pricing-amount span { font-family: 'DM Sans', sans-serif; font-size: 18px; font-weight: 400; color: var(--text-3); }
.pricing-period { font-size: 13px; color: var(--text-3); margin: 4px 0; }
.pricing-desc { font-size: 14px; color: var(--text-3); line-height: 1.6; margin: 12px 0 24px; }
.pricing-card-header { margin-bottom: 28px; }
.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pf-item { font-size: 14px; color: var(--text-2); padding-left: 22px; position: relative; line-height: 1.5; }
.pf-item em { color: var(--text-3); font-style: normal; }
.pf-item::before { content: ''; position: absolute; left: 0; top: 6px; width: 10px; height: 10px; border-radius: 50%; }
.pf-yes::before { background: var(--green); }
.pf-no { color: var(--text-3); }
.pf-no::before { background: var(--border); }
.pricing-btn { width: 100%; }

/* ===== FAQ ===== */
.faq-section { padding: 96px 0; background: var(--surface); }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 48px;
  max-width: 900px;
  margin: 0 auto;
}
.faq-item h4 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.faq-item p { font-size: 14px; color: var(--text-3); line-height: 1.7; }

/* ===== ABOUT ===== */
.about-story { padding: 96px 0; background: var(--surface); }
.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.25;
}
.about-text p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-values { display: flex; flex-direction: column; gap: 24px; }
.value-card {
  background: var(--bg);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
}
.value-icon { font-size: 24px; margin-bottom: 10px; }
.value-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: 13px; color: var(--text-3); line-height: 1.6; }
.about-mission { padding: 80px 0; background: var(--bg-alt); }
.mission-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.mission-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
}

/* ===== SUPPORT ===== */
.support-section { padding: 80px 0; background: var(--bg); }
.support-options {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-bottom: 16px;
}
.support-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 36px;
  border: 1px solid var(--border);
}
.support-card.support-primary {
  border: 2px solid var(--navy);
}
.support-icon { font-size: 36px; margin-bottom: 16px; }
.support-card h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.support-card p { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 12px; }
.support-card .btn { margin-top: 8px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  padding: 56px 0 32px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand .nav-logo { color: rgba(255,255,255,0.9); margin-bottom: 12px; }
.footer-brand .nav-logo-icon { background: rgba(255,255,255,0.15); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.45); max-width: 200px; line-height: 1.6; }
.footer-links { display: flex; gap: 48px; }
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col strong { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.footer-col a { font-size: 13px; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: flex; }

  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-headline { font-size: 40px; }

  .problem-inner,
  .engagement-inner,
  .feature-detail-inner,
  .about-story-inner,
  .support-options { grid-template-columns: 1fr; gap: 40px; }

  .feature-detail-inner.reverse { direction: ltr; }

  .features-grid,
  .testimonials-grid,
  .plans-row,
  .pricing-grid { grid-template-columns: 1fr; }

  .faq-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }

  .section-header h2 { font-size: 30px; }
  .page-hero h1 { font-size: 36px; }
  .hero-headline { font-size: 36px; }
}

@media (max-width: 600px) {
  .hero { padding: 100px 0 60px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .download-inner h2 { font-size: 30px; }
  .problem-quote { display: none; }
}
