/* ==========================================================================
   GOAGAIN | LUXURY LIGHT THEME DESIGN SYSTEM (INSPIRED BY WERVUS.COM)
   Typography: Montserrat
   Palette: Pristine Light (#fafbfc, #ffffff), Deep Charcoal (#1c252a),
            Signature Mint/Sage Accent (#a2d0b3, #3a5a4a)
   ========================================================================== */

:root {
  /* Core Colors */
  --bg-main: #fafbfc;
  --bg-pure: #ffffff;
  --bg-card: rgba(255, 255, 255, 0.92);
  --bg-card-hover: #ffffff;
  --bg-subtle: #f3f6f4;
  --bg-glass: rgba(255, 255, 255, 0.75);
  
  /* Text & Border Colors */
  --text-primary: #1c252a;
  --text-secondary: #57656e;
  --text-muted: #82929b;
  --text-inverse: #ffffff;
  
  --border-ultra-light: rgba(28, 37, 42, 0.06);
  --border-light: rgba(28, 37, 42, 0.10);
  --border-medium: rgba(28, 37, 42, 0.18);
  --border-mint: rgba(162, 208, 179, 0.45);
  
  /* Signature WERVUS Mint / Sage Accent Palette */
  --mint-primary: #a2d0b3;
  --mint-light: #d6eee0;
  --mint-soft-bg: rgba(162, 208, 179, 0.12);
  --mint-glow: rgba(162, 208, 179, 0.45);
  --sage-dark: #3a5a4a;
  --forest-deep: #1e382b;

  /* Status Colors */
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-info: #0ea5e9;

  /* Typography */
  --font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 9999px;

  /* Shadows */
  --shadow-subtle: 0 4px 20px rgba(28, 37, 42, 0.04);
  --shadow-card: 0 10px 30px -5px rgba(28, 37, 42, 0.05), 0 0 1px rgba(28, 37, 42, 0.08);
  --shadow-hover: 0 20px 45px -10px rgba(28, 37, 42, 0.10), 0 0 0 1px var(--mint-primary);
  --shadow-glow: 0 0 30px rgba(162, 208, 179, 0.35);

  /* Transitions */
  --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

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

html {
  font-family: var(--font-family);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  position: relative;
  overflow-x: hidden;
  background-color: var(--bg-main);
  color: var(--text-primary);
}

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

button, input, select, textarea {
  font-family: inherit;
}

img, svg {
  vertical-align: middle;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: #d4dde1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--mint-primary);
}

/* Selection */
::selection {
  background: var(--mint-primary);
  color: var(--text-primary);
}

/* Utility Containers */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

.max-w-narrow {
  max-width: 880px;
}

.hidden {
  display: none !important;
}

.w-full {
  width: 100%;
}

/* ==========================================================================
   BACKGROUND DECORATIONS & RADIAL GLOWS
   ========================================================================== */

.bg-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.radial-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.55;
  pointer-events: none;
}

.glow-top-center {
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 750px;
  height: 500px;
  background: radial-gradient(circle, rgba(162, 208, 179, 0.40) 0%, rgba(214, 238, 224, 0.15) 50%, transparent 75%);
}

.glow-right {
  top: 600px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(162, 208, 179, 0.25) 0%, transparent 70%);
}

.grid-mesh-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(28, 37, 42, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, black 30%, transparent 95%);
}

/* ==========================================================================
   ANNOUNCEMENT BAR & TOP STRIP
   ========================================================================== */

.announcement-bar {
  background: rgba(28, 37, 42, 0.03);
  border-bottom: 1px solid var(--border-ultra-light);
  padding: 8px 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.pulse-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint-primary);
  box-shadow: 0 0 0 0 rgba(162, 208, 179, 0.8);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(162, 208, 179, 0.8); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(162, 208, 179, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(162, 208, 179, 0); }
}

.announcement-link {
  color: var(--sage-dark);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.announcement-link:hover {
  text-decoration: underline;
  color: var(--text-primary);
}

/* ==========================================================================
   LUXURY STICKY HEADER & NAVIGATION
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(28, 37, 42, 0.06);
  transition: all var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 20px -2px rgba(28, 37, 42, 0.05);
  border-bottom-color: rgba(28, 37, 42, 0.1);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  user-select: none;
  text-decoration: none;
}

.logo-symbol {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: #1c252a;
  color: var(--mint-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(28, 37, 42, 0.12);
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.brand-logo:hover .logo-symbol {
  transform: rotate(-6deg) scale(1.05);
  background: #11171a;
}

.brand-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  line-height: 1;
}

.brand-badge {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--sage-dark);
  background: var(--mint-soft-bg);
  border: 1px solid var(--border-mint);
  padding: 2px 7px;
  border-radius: 4px;
  text-transform: uppercase;
  line-height: 1.2;
}

/* Nav Menu */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
  padding: 6px 0;
  letter-spacing: -0.01em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--mint-primary);
  transition: width var(--transition-smooth);
}

.nav-link:hover {
  color: var(--text-primary);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--text-primary);
  color: #ffffff;
  border-color: var(--text-primary);
  box-shadow: 0 4px 14px rgba(28, 37, 42, 0.12);
}

.btn-primary:hover {
  background: #11171a;
  transform: translateY(-1.5px);
  box-shadow: 0 6px 20px rgba(28, 37, 42, 0.20), 0 0 0 2px var(--mint-primary);
}

.btn-secondary {
  background: var(--bg-pure);
  color: var(--text-primary);
  border-color: var(--border-medium);
  box-shadow: var(--shadow-subtle);
}

.btn-secondary:hover {
  background: var(--bg-subtle);
  border-color: var(--text-primary);
  transform: translateY(-1.5px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: none;
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: rgba(28, 37, 42, 0.04);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-medium);
}

.btn-outline:hover {
  border-color: var(--text-primary);
  background: rgba(28, 37, 42, 0.04);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
}

.btn-xs {
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-sm);
}

/* Mobile Toggle */
.mobile-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-toggle-btn span {
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.mobile-nav-drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--bg-pure);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 15px 30px rgba(0,0,0,0.06);
  padding: 24px;
}

.mobile-nav-drawer.open {
  display: block;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-ultra-light);
}

.mobile-actions {
  margin-top: 12px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  position: relative;
  padding: 60px 0 90px;
}

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

.hero-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: var(--mint-soft-bg);
  border: 1px solid var(--border-mint);
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(162, 208, 179, 0.15);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage-dark);
}

.badge-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--sage-dark);
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--text-primary);
  max-width: 980px;
  margin-bottom: 22px;
}

.text-highlight {
  position: relative;
  display: inline-block;
  color: var(--text-primary);
}

.text-highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 8%;
  width: 100%;
  height: 30%;
  background: var(--mint-primary);
  opacity: 0.45;
  z-index: -1;
  border-radius: 4px;
}

.text-mint-gradient {
  background: linear-gradient(135deg, #1c252a 30%, #3a5a4a 70%, #2f6b4d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 780px;
  margin-bottom: 36px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Metrics Strip */
.hero-metrics-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--bg-pure);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 12px 32px;
  box-shadow: var(--shadow-card);
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.metric-pill {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.metric-value {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-primary);
}

.metric-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.metric-divider {
  width: 1px;
  height: 20px;
  background: var(--border-light);
}

/* ==========================================================================
   HERO DUAL INTERACTIVE SHOWCASE FRAME
   ========================================================================== */

.hero-showcase {
  width: 100%;
  max-width: 1100px;
  background: var(--bg-pure);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  box-shadow: 0 25px 60px -15px rgba(28, 37, 42, 0.12), 0 0 0 1px rgba(162, 208, 179, 0.25);
  overflow: hidden;
  text-align: left;
}

.showcase-frame-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: #f7faf8;
  border-bottom: 1px solid var(--border-light);
}

.frame-pills {
  display: flex;
  gap: 8px;
}

.frame-pills .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.frame-pills .red { background: #ff5f56; }
.frame-pills .yellow { background: #ffbd2e; }
.frame-pills .green { background: #27c93f; }

.showcase-tabs-toggle {
  display: flex;
  gap: 6px;
  background: #e9eff0;
  padding: 4px;
  border-radius: var(--radius-pill);
}

.showcase-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  border: none;
  background: transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.showcase-tab.active {
  background: var(--bg-pure);
  color: var(--text-primary);
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.frame-live-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sage-dark);
}

.pulse-tag {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-success);
  animation: pulse-ring 1.8s infinite;
}

.showcase-content-view {
  padding: 24px;
  background: var(--bg-pure);
}

/* Merchant View Layout */
.dashboard-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.kpi-card {
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: transform var(--transition-fast);
}

.kpi-card:hover {
  transform: translateY(-2px);
  border-color: var(--mint-primary);
}

.kpi-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.kpi-value-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}

.kpi-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
}

.kpi-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

.kpi-badge.positive {
  background: #e6f7ee;
  color: #0c8a4d;
}

.kpi-badge.neutral {
  background: var(--mint-soft-bg);
  color: var(--sage-dark);
}

.kpi-subtext {
  font-size: 11px;
  color: var(--text-muted);
}

/* Dashboard Columns */
.dashboard-main-columns {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
}

.dashboard-feed-box, .dashboard-segments-box {
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 18px;
}

.box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.box-header h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.status-live {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-success);
}

.trigger-items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trigger-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--bg-pure);
  border: 1px solid var(--border-ultra-light);
  border-radius: var(--radius-md);
}

.trigger-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trigger-icon.success { background: #e6f7ee; color: #0c8a4d; }
.trigger-icon.info { background: #e0f2fe; color: #0284c7; }
.trigger-icon.warning { background: #fef3c7; color: #d97706; }

.trigger-details {
  flex: 1;
}

.trigger-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.trigger-meta {
  font-size: 11px;
  color: var(--text-secondary);
}

.trigger-tag {
  font-size: 10px;
  font-weight: 700;
  background: var(--mint-soft-bg);
  color: var(--sage-dark);
  padding: 4px 8px;
  border-radius: var(--radius-pill);
}

/* Segments */
.segments-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 16px;
}

.seg-info {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
}

.seg-bar-bg {
  height: 8px;
  background: #e2e8ea;
  border-radius: 4px;
  overflow: hidden;
}

.seg-bar-fill {
  height: 100%;
  background: var(--mint-primary);
  border-radius: 4px;
}

.seg-bar-fill.warning { background: var(--color-warning); }
.seg-bar-fill.info { background: var(--color-info); }

.quick-broadcast-banner {
  background: #f0f7f3;
  border: 1px dashed var(--mint-primary);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--sage-dark);
}

/* Consumer Digital Pass Showcase */
.consumer-pass-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 20px;
  flex-wrap: wrap;
}

.mobile-phone-wrapper {
  width: 320px;
  background: #0f171b;
  padding: 14px;
  border-radius: 36px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  border: 4px solid #334149;
}

.phone-speaker {
  width: 60px;
  height: 4px;
  background: #475569;
  border-radius: 2px;
  margin: 6px auto 14px;
}

.digital-pass-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pass-brand-banner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--mint-soft-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.brand-meta h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

.pass-url {
  font-size: 10px;
  color: var(--text-muted);
}

.pass-vip-card {
  background: linear-gradient(135deg, #1c252a 0%, #2f3e46 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 8px 20px rgba(28, 37, 42, 0.2);
}

.vip-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.tier-pill-gold {
  background: rgba(255, 215, 0, 0.2);
  color: #ffd700;
  border: 1px solid rgba(255, 215, 0, 0.4);
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.08em;
}

.member-id {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-family: monospace;
}

.vip-points-tally {
  margin-bottom: 12px;
}

.pts-big {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
}

.pts-caption {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.progress-bar-bg {
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 4px;
}

.progress-bar-active {
  height: 100%;
  background: var(--mint-primary);
  border-radius: 3px;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.6);
}

.pass-qr-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px;
  background: #f8fafc;
  border: 1px dashed var(--border-light);
  border-radius: var(--radius-md);
  text-align: center;
}

.qr-box {
  background: #ffffff;
  padding: 8px;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-bottom: 8px;
}

.qr-helper-text strong {
  display: block;
  font-size: 11px;
  color: var(--text-primary);
}

.qr-helper-text span {
  font-size: 10px;
  color: var(--text-secondary);
}

.pass-rewards-list {
  background: var(--mint-soft-bg);
  border: 1px solid var(--border-mint);
  border-radius: var(--radius-md);
  padding: 10px 12px;
}

.reward-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reward-info strong {
  display: block;
  font-size: 12px;
  color: var(--text-primary);
}

.reward-info span {
  font-size: 10px;
  color: var(--sage-dark);
}

.consumer-pass-features {
  max-width: 420px;
}

.consumer-pass-features h3 {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.check-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--mint-soft-bg);
  color: var(--sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-list strong {
  font-size: 14px;
  color: var(--text-primary);
}

.check-list p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* ==========================================================================
   COMMON SECTION STYLING
   ========================================================================== */

.section {
  padding: 100px 0;
  position: relative;
}

.section-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: var(--mint-soft-bg);
  border: 1px solid var(--border-mint);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  max-width: 840px;
  margin-bottom: 18px;
}

.section-subtitle {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 720px;
  line-height: 1.6;
  margin-bottom: 50px;
}

.text-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   PROBLEM SECTION & COMPARISON
   ========================================================================== */

.problem-section {
  background: #f7faf8;
  border-top: 1px solid var(--border-ultra-light);
  border-bottom: 1px solid var(--border-ultra-light);
}

.problem-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.problem-card {
  background: var(--bg-pure);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth);
}

.problem-card:hover {
  transform: translateY(-4px);
  border-color: #fca5a5;
}

.problem-stat {
  font-size: 42px;
  font-weight: 900;
  color: #e11d48;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.problem-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.problem-body {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 18px;
}

.problem-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #be123c;
  background: #ffe4e6;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

/* Comparison Card */
.comparison-card {
  background: var(--bg-pure);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.comparison-header {
  padding: 32px;
  text-align: center;
  background: #fafbfc;
  border-bottom: 1px solid var(--border-light);
}

.comparison-header h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.comparison-header p {
  font-size: 14px;
  color: var(--text-secondary);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.comparison-column {
  padding: 36px 40px;
}

.comparison-column.old-way {
  background: #fffafa;
  border-right: 1px solid var(--border-light);
}

.comparison-column.new-way {
  background: #f7fdf9;
}

.column-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.column-badge.old {
  background: #fee2e2;
  color: #991b1b;
}

.column-badge.new {
  background: var(--mint-soft-bg);
  color: var(--sage-dark);
  border: 1px solid var(--border-mint);
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.x-mark {
  color: #dc2626;
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
}

.check-mark {
  color: #059669;
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
}

.new-way .comparison-list li {
  color: var(--text-primary);
  font-weight: 500;
}

/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.step-card {
  background: var(--bg-pure);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.step-number-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--sage-dark);
  background: var(--mint-soft-bg);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.step-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: #f1f7f3;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid var(--border-mint);
}

.step-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.step-highlight {
  font-size: 12px;
  font-weight: 600;
  color: var(--sage-dark);
  border-top: 1px solid var(--border-ultra-light);
  padding-top: 14px;
}

/* ==========================================================================
   INTERACTIVE WHATSAPP SIMULATOR
   ========================================================================== */

.whatsapp-simulator-section {
  background: #fafbfc;
}

.simulator-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

.controls-header h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.controls-header p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.scenario-btn-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.scenario-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-pure);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  cursor: pointer;
  text-align: left;
  transition: all var(--transition-smooth);
}

.scenario-btn:hover {
  border-color: var(--mint-primary);
  transform: translateX(4px);
}

.scenario-btn.active {
  background: #ffffff;
  border-color: var(--text-primary);
  box-shadow: 0 8px 24px rgba(28, 37, 42, 0.08);
}

.scenario-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e9eff0;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

.scenario-btn.active .scenario-badge {
  background: var(--mint-primary);
  color: var(--text-primary);
}

.scenario-info strong {
  display: block;
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 700;
}

.scenario-info span {
  display: block;
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.compliance-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #f1f8f4;
  border: 1px solid var(--border-mint);
  border-radius: var(--radius-md);
  padding: 16px;
}

.compliance-icon {
  font-size: 20px;
}

.compliance-text strong {
  display: block;
  font-size: 13px;
  color: var(--text-primary);
}

.compliance-text p {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 4px;
  line-height: 1.5;
}

/* iPhone & WhatsApp Styling */
.simulator-phone-wrapper {
  display: flex;
  justify-content: center;
}

.iphone-mockup {
  width: 340px;
  height: 600px;
  background: #0b1114;
  border-radius: 44px;
  padding: 12px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  border: 4px solid #2d373c;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.iphone-notch {
  width: 110px;
  height: 24px;
  background: #000000;
  border-radius: 20px;
  margin: 2px auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.camera-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #111e25;
}

.speaker-pill {
  width: 40px;
  height: 3px;
  border-radius: 2px;
  background: #1a252b;
}

.whatsapp-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #1c252a;
  color: #ffffff;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.wa-back-btn {
  font-size: 18px;
  cursor: pointer;
}

.wa-profile-pic {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.wa-user-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.wa-brand-name {
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.wa-brand-status {
  font-size: 10px;
  color: var(--mint-primary);
}

.wa-actions-dots {
  font-size: 16px;
}

.whatsapp-chat-body {
  flex: 1;
  background-color: #efeae2;
  background-image: radial-gradient(rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 16px 16px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.chat-date-pill {
  align-self: center;
  background: rgba(255,255,255,0.85);
  font-size: 10px;
  font-weight: 600;
  color: #64748b;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

.whatsapp-bubble {
  background: #ffffff;
  border-radius: 12px;
  padding: 12px;
  max-width: 90%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  margin-bottom: 12px;
  position: relative;
  transition: all var(--transition-fast);
}

.bubble-header-tag {
  font-size: 10px;
  font-weight: 800;
  color: var(--sage-dark);
  background: var(--mint-soft-bg);
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.bubble-body-text {
  font-size: 12px;
  line-height: 1.5;
  color: #111827;
  margin-bottom: 6px;
}

.bubble-footer-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.bubble-time {
  font-size: 9px;
  color: #94a3b8;
}

.bubble-ticks {
  font-size: 10px;
  color: #38bdf8;
}

.bubble-action-buttons {
  margin-top: 10px;
  border-top: 1px solid #f1f5f9;
  padding-top: 8px;
}

.wa-btn {
  display: block;
  text-align: center;
  background: #f8fafc;
  color: #0284c7;
  font-size: 12px;
  font-weight: 700;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  transition: background var(--transition-fast);
}

.wa-btn:hover {
  background: #e0f2fe;
}

.reply-simulation {
  align-self: flex-end;
  max-width: 80%;
  margin-top: 6px;
}

.user-reply-bubble {
  background: #d9fdd3;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 12px;
  color: #111827;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

.reply-meta {
  font-size: 9px;
  color: #64748b;
  text-align: right;
  margin-top: 2px;
}

.whatsapp-input-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f0f2f5;
  padding: 8px 12px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

.emoji-btn, .mic-btn {
  font-size: 16px;
  color: #54656f;
}

.fake-input-text {
  flex: 1;
  background: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  color: #94a3b8;
}

/* ==========================================================================
   FEATURES GRID
   ========================================================================== */

.features-section {
  background: #ffffff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.feature-box {
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.feature-box:hover {
  transform: translateY(-6px);
  border-color: var(--mint-primary);
  box-shadow: var(--shadow-hover);
  background: #ffffff;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--mint-soft-bg);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 1px solid var(--border-mint);
}

.feature-box h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.feature-box p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   LIVE INTERACTIVE ROI CALCULATOR
   ========================================================================== */

.roi-section {
  background: #f7faf8;
  border-top: 1px solid var(--border-ultra-light);
  border-bottom: 1px solid var(--border-ultra-light);
}

.calculator-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  background: var(--bg-pure);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  padding: 44px;
}

.calculator-inputs {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.calc-control-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calc-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.calc-header-row label {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.calc-val-pill {
  font-size: 13px;
  font-weight: 800;
  background: var(--mint-soft-bg);
  color: var(--sage-dark);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-mint);
}

/* Custom Range Slider */
.luxury-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #e2e8ea;
  outline: none;
  transition: background var(--transition-fast);
}

.luxury-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--text-primary);
  border: 3px solid var(--mint-primary);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: transform var(--transition-fast);
}

.luxury-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.slider-limits {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
}

.calc-assumptions {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--text-secondary);
  background: #f8fafc;
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-ultra-light);
}

/* Calculator Results */
.calculator-results {
  background: #f7faf8;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.results-header {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 16px;
}

.result-highlight-box {
  background: var(--bg-pure);
  border: 1px solid var(--border-mint);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(162, 208, 179, 0.2);
}

.res-sub {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 6px;
}

.res-big {
  font-size: 38px;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.res-annual {
  display: block;
  font-size: 12px;
  color: var(--sage-dark);
  margin-top: 8px;
}

.results-metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.res-mini-card {
  background: var(--bg-pure);
  border: 1px solid var(--border-ultra-light);
  border-radius: var(--radius-sm);
  padding: 12px 10px;
  text-align: center;
}

.res-mini-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-secondary);
  display: block;
  margin-bottom: 4px;
}

.res-mini-value {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-primary);
}

.res-mini-value.highlight {
  color: #0c8a4d;
}



/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.faq-section {
  background: #ffffff;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-main);
  transition: all var(--transition-smooth);
}

.faq-item.active {
  background: #ffffff;
  border-color: var(--border-medium);
  box-shadow: 0 4px 15px rgba(28, 37, 42, 0.04);
}

.faq-trigger {
  width: 100%;
  padding: 22px 24px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.faq-icon {
  font-size: 22px;
  font-weight: 400;
  color: var(--text-secondary);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 24px;
}

.faq-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  padding-bottom: 22px;
}

/* ==========================================================================
   FINAL CTA CARD
   ========================================================================== */

.final-cta-section {
  padding: 40px 0 100px;
}

.final-cta-card {
  position: relative;
  background: linear-gradient(135deg, #1c252a 0%, #151e23 100%);
  border-radius: 32px;
  padding: 70px 48px;
  color: #ffffff;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 25px 60px -10px rgba(28, 37, 42, 0.3);
}

.cta-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 350px;
  background: radial-gradient(circle, rgba(162, 208, 179, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
}

.cta-mini-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--mint-primary);
  background: rgba(162, 208, 179, 0.12);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.cta-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
}

.cta-desc {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 36px;
}

.cta-buttons-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.final-cta-card .btn-primary {
  background: var(--mint-primary);
  color: #1c252a;
  border-color: var(--mint-primary);
}

.final-cta-card .btn-primary:hover {
  background: #ffffff;
  color: #1c252a;
}

.final-cta-card .btn-secondary {
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  border-color: rgba(255,255,255,0.2);
}

.final-cta-card .btn-secondary:hover {
  background: rgba(255,255,255,0.16);
}

.cta-guarantee {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER (MATCHING WERVUS BRANDING)
   ========================================================================== */

.site-footer {
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  padding: 80px 0 36px;
}

.footer-top-row {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 18px 0;
  max-width: 320px;
}

.wervus-origin-badge {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

.wervus-origin-badge a {
  color: var(--sage-dark);
  font-weight: 800;
  text-decoration: underline;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-col h4 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.footer-nav-col a {
  font-size: 13px;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-nav-col a:hover {
  color: var(--text-primary);
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-ultra-light);
  padding-top: 30px;
  font-size: 12px;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-legal-links a:hover {
  color: var(--text-primary);
}

/* ==========================================================================
   MODAL DIALOG
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(28, 37, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop.active {
  display: flex;
}

.modal-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 36px;
  width: 100%;
  max-width: 520px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  animation: modal-enter 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modal-enter {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

.modal-close-btn:hover {
  color: var(--text-primary);
}

.badge-mini {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--sage-dark);
  background: var(--mint-soft-bg);
  padding: 4px 8px;
  border-radius: var(--radius-pill);
  margin-bottom: 8px;
}

.modal-header h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.modal-header p {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.demo-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
}

.form-group input, .form-group select {
  padding: 10px 14px;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  font-size: 13px;
  background: #ffffff;
  color: var(--text-primary);
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-group input:focus, .form-group select:focus {
  border-color: var(--text-primary);
  box-shadow: 0 0 0 2px var(--mint-glow);
}

.form-privacy-note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 4px;
}

.modal-success-state {
  text-align: center;
  padding: 20px 0;
}

.success-icon-wrap {
  width: 56px;
  height: 56px;
  background: #e6f7ee;
  color: #0c8a4d;
  font-size: 26px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.modal-success-state h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.modal-success-state p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .dashboard-main-columns {
    grid-template-columns: 1fr;
  }
  .simulator-layout {
    grid-template-columns: 1fr;
  }
  .calculator-card {
    grid-template-columns: 1fr;
  }
  .footer-top-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .desktop-nav, .nav-actions .btn-ghost {
    display: none;
  }
  .mobile-toggle-btn {
    display: flex;
  }
  .desktop-only {
    display: none;
  }
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  .comparison-column.old-way {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-top-row {
    grid-template-columns: 1fr;
  }
  .hero-metrics-strip {
    padding: 16px 20px;
    gap: 16px;
  }
  .metric-divider {
    display: none;
  }
  .results-metrics-grid {
    grid-template-columns: 1fr;
  }
}
