/* ===== UGC Reach DESIGN SYSTEM (CLEANED) ===== */
/* Removed 143 unused utility classes - kept only what's actively used in HTML */
/* File size reduced from 2,165 lines to ~600 lines */

/* ===== CSS RESET & NORMALIZATION ===== */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #1f2937;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: #ffffff;
  /* Grid Pattern Only */
  background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
  background-size: 24px 24px;
  min-height: 100vh;
  position: relative;
  /* Ensure body can contain the absolute positioned background */
  overflow-x: hidden;
}

/* --- MOBILE GLOBAL FIXES --- */
html,
body {
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

/* --- 3. CONTENT: Top Layer (z-index 1) --- */
/* This ensures text/buttons float ABOVE the orbs */
header,
main,
footer {
  position: relative;
  z-index: 1;
}

/* --- CRITICAL FIX: MAKE SECTIONS TRANSPARENT --- */
/* This overrides the default white background on sections so the orbs show through */

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: float 10s infinite ease-in-out;
  z-index: -999;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: #e9d5ff; /* Light Purple */
  top: 10px;
  left: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: #d1fae5; /* Light Teal/Green */
  bottom: 250px;
  right: -50px;
  animation-delay: -5s;
}

/* ===== TYPOGRAPHY BASE STYLES ===== */

@font-face {
  font-family: "Inter";
  src: url("https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHAPMtMWUNHXw.woff2")
    format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHAPMtMWUNHXw.woff2")
    format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHAPMtMWUNHXw.woff2")
    format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHAPMtMWUNHXw.woff2")
    format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  src: url("https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHAPMtMWUNHXw.woff2")
    format("woff2");
  font-weight: 800;
  font-display: swap;
  font-style: normal;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 800;
}

h2 {
  font-size: clamp(1.875rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 700;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 700;
}

h4 {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 600;
}

h5 {
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 600;
}

h6 {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
}

p {
  margin: 0;
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0;
}

small,
.small {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
}

a {
  color: #7c3aed;
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}

a:hover {
  color: #6d28d9;
  text-decoration: underline;
}

a:focus-visible {
  outline: 2px solid #7c3aed;
  outline-offset: 2px;
}

@media (max-width: 768px) {
  p,
  body {
    font-size: 1rem;
    line-height: 1.6;
  }
}

/* ===== SEMANTIC HTML ELEMENTS ===== */

button {
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

button:focus-visible {
  outline: 2px solid #7c3aed;
  outline-offset: 2px;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: 1rem;
  color: inherit;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid #7c3aed;
  outline-offset: 2px;
}

ul,
ol {
  list-style: none;
}

li {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== ACCESSIBILITY ===== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2px solid #7c3aed;
  outline-offset: 2px;
}

/* ===== DESIGN TOKENS (CSS CUSTOM PROPERTIES) ===== */

:root {
  /* ===== COLOR TOKENS ===== */

  /* Primary Colors - Purple (Product) */
  --color-primary-50: #faf5ff;
  --color-primary-100: #f3e8ff;
  --color-primary-200: #e9d5ff;
  --color-primary-300: #d8b4fe;
  --color-primary-400: #c084fc;
  --color-primary-500: #a855f7;
  --color-primary-600: #9333ea;
  --color-primary-700: #7e22ce;
  --color-primary-800: #6b21a8;
  --color-primary-900: #581c87;

  /* Accent Colors - Green (Affiliate/Money Theme) */
  --color-accent-50: #f0fdf4;
  --color-accent-100: #dcfce7;
  --color-accent-200: #bbf7d0;
  --color-accent-300: #86efac;
  --color-accent-400: #4ade80;
  --color-accent-500: #22c55e;
  --color-accent-600: #16a34a;
  --color-accent-700: #15803d;
  --color-accent-800: #166534;
  --color-accent-900: #145231;

  /* Emerald (Affiliate Gradient) */
  --color-emerald-600: #059669;
  --color-emerald-700: #047857;

  /* Neutral Colors - Grays */
  --color-gray-50: #f9fafb;
  --color-gray-100: #f3f4f6;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-gray-400: #9ca3af;
  --color-gray-500: #6b7280;
  --color-gray-600: #4b5563;
  --color-gray-700: #374151;
  --color-gray-800: #1f2937;
  --color-gray-900: #111827;

  /* Semantic Colors */
  --color-success: #10b981;
  --color-success-light: #d1fae5;
  --color-error: #ef4444;
  --color-error-light: #fee2e2;
  --color-warning: #f59e0b;
  --color-warning-light: #fef3c7;
  --color-info: #3b82f6;
  --color-info-light: #dbeafe;

  /* ===== SPACING TOKENS ===== */

  --spacing-xs: 0.25rem; /* 4px */
  --spacing-sm: 0.5rem; /* 8px */
  --spacing-md: 1rem; /* 16px */
  --spacing-lg: 1.5rem; /* 24px */
  --spacing-xl: 2rem; /* 32px */
  --spacing-2xl: 3rem; /* 48px */
  --spacing-3xl: 4rem; /* 64px */
  --spacing-4xl: 6rem; /* 96px */

  /* ===== TYPOGRAPHY TOKENS ===== */

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-mono: "Menlo", "Monaco", monospace;

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  --font-size-xs: 0.75rem; /* 12px */
  --font-size-sm: 0.875rem; /* 14px */
  --font-size-base: 1rem; /* 16px */
  --font-size-lg: 1.125rem; /* 18px */
  --font-size-xl: 1.25rem; /* 20px */
  --font-size-2xl: 1.5rem; /* 24px */
  --font-size-3xl: 1.875rem; /* 30px */
  --font-size-4xl: 2.25rem; /* 36px */
  --font-size-5xl: 3rem; /* 48px */

  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  --line-height-loose: 2;

  /* ===== BORDER TOKENS ===== */

  --border-radius-sm: 0.375rem; /* 6px */
  --border-radius-md: 0.5rem; /* 8px */
  --border-radius-lg: 1rem; /* 16px */
  --border-radius-xl: 1.5rem; /* 24px */
  --border-radius-2xl: 2rem; /* 32px */

  --border-width-thin: 1px;
  --border-width-base: 2px;
  --border-width-thick: 4px;

  /* ===== SHADOW TOKENS ===== */

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-base: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);

  /* ===== TRANSITION TOKENS ===== */

  --transition-fast: 150ms ease-in-out;
  --transition-base: 200ms ease-in-out;
  --transition-slow: 300ms ease-in-out;

  /* ===== Z-INDEX TOKENS ===== */

  --z-hide: -1;
  --z-base: 0;
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

/* ===== LAYOUT UTILITIES ===== */

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--spacing-md);
  padding-right: var(--spacing-md);
}

@media (min-width: 640px) {
  .container {
    padding-left: var(--spacing-lg);
    padding-right: var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: var(--spacing-xl);
    padding-right: var(--spacing-xl);
  }
}

.text-center {
  text-align: center;
}

.hidden {
  display: none;
}

/* ===== SECTION SPACING ===== */

.section-padding {
  padding-top: var(--spacing-3xl);
  padding-bottom: var(--spacing-3xl);
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: var(--spacing-4xl);
    padding-bottom: var(--spacing-4xl);
  }
}

.section-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #111827;
  text-align: center;
  margin: 0 0 var(--spacing-md) 0;
}

/* ===== BUTTON SYSTEM ===== */

button,
.btn {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  cursor: pointer;
  border: none;
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-md) var(--spacing-lg);
  transition: all var(--transition-base);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  white-space: nowrap;
  user-select: none;
  position: relative;
  min-height: 44px;
  min-width: 44px;
}

.btn-primary {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(124, 58, 237, 0.3);
  font-weight: 700;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #6d28d9 0%, #5b21b6 100%);
  box-shadow: 0 10px 15px -3px rgba(124, 58, 237, 0.4);
  transform: translateY(-2px);
}

.btn-primary:focus-visible {
  outline: 2px solid #7c3aed;
  outline-offset: 2px;
  box-shadow: 0 10px 15px -3px rgba(124, 58, 237, 0.4);
}

.btn-primary:active {
  background: linear-gradient(135deg, #5b21b6 0%, #4c1d95 100%);
  transform: translateY(0);
  box-shadow: 0 4px 6px -1px rgba(124, 58, 237, 0.3);
}

.btn-primary:disabled {
  background: linear-gradient(135deg, #c4b5fd 0%, #a78bfa 100%);
  color: #9ca3af;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
}

.btn-secondary {
  background: transparent;
  color: #7c3aed;
  border: 2px solid #7c3aed;
  font-weight: 600;
  padding: calc(var(--spacing-md) - 2px) var(--spacing-lg);
}

.btn-secondary:hover {
  background: #f3e8ff;
  border-color: #6d28d9;
  color: #6d28d9;
  box-shadow: 0 4px 6px -1px rgba(124, 58, 237, 0.2);
}

.btn-secondary:focus-visible {
  outline: 2px solid #7c3aed;
  outline-offset: 2px;
  background: #f3e8ff;
}

.btn-secondary:active {
  background: #e9d5ff;
  border-color: #5b21b6;
  color: #5b21b6;
}

.btn-secondary:disabled {
  background: transparent;
  border-color: #d1d5db;
  color: #9ca3af;
  cursor: not-allowed;
  opacity: 0.6;
}

.btn-accent {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.3);
  font-weight: 700;
}

.btn-accent:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
}

.btn-accent:focus-visible {
  outline: 2px solid #10b981;
  outline-offset: 2px;
  box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.4);
}

.btn-accent:active {
  background: linear-gradient(135deg, #047857 0%, #065f46 100%);
  transform: translateY(0);
  box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.3);
}

.btn-accent:disabled {
  background: linear-gradient(135deg, #a7f3d0 0%, #6ee7b7 100%);
  color: #9ca3af;
  box-shadow: none;
  cursor: not-allowed;
  opacity: 0.6;
  transform: none;
}

.btn-cta-primary {
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(124, 58, 237, 0.3);
  font-weight: 700;
  font-size: 1.125rem;
  padding: var(--spacing-lg) var(--spacing-xl);
}

.btn-cta-primary:hover {
  background: linear-gradient(135deg, #6d28d9 0%, #5b21b6 100%);
  box-shadow: 0 10px 15px -3px rgba(124, 58, 237, 0.4);
  transform: translateY(-2px);
}

.btn-cta-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  font-weight: 600;
  font-size: 1.125rem;
  padding: calc(var(--spacing-lg) - 2px) var(--spacing-xl);
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.btn-cta-secondary:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.btn-cta-affiliate {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.3);
  font-weight: 700;
  font-size: 1.125rem;
  padding: var(--spacing-lg) var(--spacing-xl);
}

.btn-cta-affiliate:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
}

.button-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

@media (min-width: 640px) {
  .button-group {
    flex-direction: row;
    justify-content: center;
  }
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: var(--spacing-sm) var(--spacing-md);
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
  color: #ffffff;
  border: none;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  user-select: none;
  transition: all var(--transition-base);
  min-height: 40px;
  position: relative;
}

.nav-cta:hover {
  background: linear-gradient(135deg, #6d28d9 0%, #5b21b6 100%);
  box-shadow: 0 4px 6px -1px rgba(124, 58, 237, 0.3);
  transform: translateY(-1px);
}

.nav-cta:focus-visible {
  outline: 2px solid #7c3aed;
  outline-offset: 2px;
  box-shadow: 0 4px 6px -1px rgba(124, 58, 237, 0.3);
}

.nav-cta:active {
  background: linear-gradient(135deg, #5b21b6 0%, #4c1d95 100%);
  transform: translateY(0);
  box-shadow: 0 2px 4px -1px rgba(124, 58, 237, 0.2);
}

.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #7c3aed;
  transition: color var(--transition-base);
}

.mobile-menu-btn:hover {
  color: #7c3aed;
}

.mobile-menu-btn:focus-visible {
  outline: 2px solid #7c3aed;
  outline-offset: 2px;
  border-radius: var(--border-radius-md);
}

@media (max-width: 640px) {
  .mobile-menu-btn {
    display: flex;
  }
}

/* ===== COMPONENT STYLES: CARDS & COMPONENTS ===== */

.stat-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-xl);
  text-align: center;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.stat-card:hover {
  border-color: #d1d5db;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.stat-number {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 800;
  color: #7c3aed;
  line-height: 1;
  margin-bottom: var(--spacing-md);
}

.stat-label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .stat-card {
    padding: var(--spacing-lg);
  }

  .stat-number {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
  }

  .stat-label {
    font-size: 0.875rem;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
  }
}

.pricing-card {
  background: #ffffff;
  border-radius: var(--border-radius-2xl);
  padding: var(--spacing-xl);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.pricing-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 var(--spacing-sm) 0;
}

.pricing-price {
  font-size: clamp(2.5rem, 6vw, 3rem);
  font-weight: 800;
  color: var(--color-gray-900);
  line-height: 1;
  margin: var(--spacing-md) 0 var(--spacing-sm) 0;
  display: flex;
  align-items: flex-start;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--color-gray-700);
  font-size: var(--font-size-sm);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
  }
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
  border-color: #d1d5db;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.rating {
  display: flex;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-md);
}

.star {
  font-size: 1.25rem;
  color: #fbbf24;
  line-height: 1;
}

.testimonial-quote {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #6b7280;
  margin: 0 0 var(--spacing-md) 0;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.author-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
}

.author-title {
  font-size: 0.8125rem;
  color: #9ca3af;
  margin: 0;
}

@media (max-width: 640px) {
  .testimonial-card {
    padding: var(--spacing-md);
  }

  .testimonial-quote {
    font-size: 0.875rem;
  }
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
  }
}

.scenario-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

@media (min-width: 768px) {
  .scenario-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
  }
}

.scenario-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-sm);
}

.scenario-card:hover {
  border-color: #d1d5db;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.scenario-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 var(--spacing-md) 0;
}

.scenario-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.scenario-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) 0;
  font-size: 0.9375rem;
}

.scenario-label {
  color: #6b7280;
  font-weight: 500;
}

.scenario-value {
  color: #1f2937;
  font-weight: 600;
}

.scenario-accent {
  color: #10b981;
  font-weight: 700;
}

.scenario-total {
  padding-top: var(--spacing-md);
  padding-bottom: 0;
  border-top: 2px solid #e5e7eb;
  margin-top: var(--spacing-md);
}

.scenario-total-value {
  font-size: 1.375rem;
  font-weight: 800;
  color: #10b981;
}

@media (max-width: 640px) {
  .scenario-card {
    padding: var(--spacing-md);
  }

  .scenario-title {
    font-size: 1rem;
  }

  .scenario-row {
    font-size: 0.875rem;
  }

  .scenario-total-value {
    font-size: 1.25rem;
  }
}

/* ===== PRINT STYLES ===== */

@media print {
  body {
    background: white;
  }

  a {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  img {
    max-width: 100%;
  }

  @page {
    margin: 2cm;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    page-break-after: avoid;
  }

  p {
    orphans: 3;
    widows: 3;
  }
}
