:root {
  --green: #008060;
  --green-dark: #004c3f;
  --green-light: #f1f8f5;
  --black: #000000;
  --gray-900: #1a1a1a;
  --gray-700: #404040;
  --gray-500: #6b6b6b;
  --gray-300: #b3b3b3;
  --gray-100: #f5f5f5;
  --white: #ffffff;
  --red: #dc2626;
  --red-light: #fef2f2;
  --orange: #ea580c;
  --orange-light: #fff7ed;
  --blue: #2563eb;
  --blue-light: #eff6ff;
  --purple: #7c3aed;
  --purple-light: #f5f3ff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, San Francisco, Segoe UI, Roboto, Helvetica Neue, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6 { font-weight: 600; line-height: 1.2; color: var(--black); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary { background: var(--black); color: var(--white); }
.btn-primary:hover { background: var(--gray-700); }
.btn-secondary { background: var(--white); color: var(--black); border: 1px solid var(--gray-300); }
.btn-secondary:hover { background: var(--gray-100); }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-dark); }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: #b91c1c; }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 18px 36px; font-size: 17px; }
.btn-block { width: 100%; }

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
}

.logo-ai {
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-light);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
}

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 15px; font-weight: 500; color: var(--gray-700); transition: color 0.2s; }
.nav-links a:hover { color: var(--black); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

/* User Menu */
.user-menu {
  position: relative;
}

.user-avatar {
  width: 40px;
  height: 40px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s;
}

.user-avatar:hover { transform: scale(1.05); }

.user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  display: none;
  z-index: 200;
}

.user-dropdown.active { display: block; }

.user-dropdown-header {
  padding: 16px;
  border-bottom: 1px solid var(--gray-100);
}

.user-dropdown-header strong { display: block; }
.user-dropdown-header small { color: var(--gray-500); font-size: 13px; }

.user-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 14px;
  transition: background 0.15s;
}

.user-dropdown a:hover { background: var(--gray-100); }
.user-dropdown-divider { border-top: 1px solid var(--gray-100); }

/* Hero */
.hero {
  padding: 160px 0 120px;
  background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content { max-width: 560px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--green-light);
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 20px;
  color: var(--gray-500);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-buttons { display: flex; gap: 16px; margin-bottom: 48px; }

.hero-proof {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-100);
}

.hero-proof-item { text-align: center; }
.hero-proof-value { font-size: 24px; font-weight: 700; color: var(--black); }
.hero-proof-label { font-size: 14px; color: var(--gray-500); }

/* How Easy Section */
.easy-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #f0fdf4 100%);
}

.easy-section .section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.easy-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--green);
  color: white;
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 16px;
}

.easy-section h2 {
  font-size: 2.5rem;
  margin-bottom: 12px;
  color: var(--green-dark);
}

.easy-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 50px;
}

.easy-step {
  flex: 1;
  max-width: 300px;
  background: white;
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 128, 96, 0.12);
  position: relative;
}

.step-number-big {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  background: var(--green);
  color: white;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 128, 96, 0.3);
}

.step-visual {
  font-size: 2.5rem;
  margin: 20px 0 16px;
  letter-spacing: 4px;
}

.easy-step h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--gray-900);
}

.easy-step p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.step-time {
  display: inline-block;
  padding: 6px 14px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 600;
  border-radius: 100px;
}

.easy-arrow {
  font-size: 2rem;
  color: var(--green);
  margin-top: 80px;
  font-weight: 700;
}

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

.easy-tagline {
  font-size: 1.1rem;
  color: var(--gray-700);
  margin-bottom: 20px;
  font-weight: 500;
}

.easy-note {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--gray-500);
}

@media (max-width: 900px) {
  .easy-steps {
    flex-direction: column;
    align-items: center;
  }
  .easy-arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }
  .easy-section h2 {
    font-size: 2rem;
  }
}

/* Comparison Section */
.comparison-section {
  padding: 80px 24px;
  background: var(--gray-100);
}

.comparison-section .section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

.compare-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--blue);
  color: white;
  font-size: 14px;
  font-weight: 600;
  border-radius: 100px;
  margin-bottom: 16px;
}

.comparison-table-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  font-size: 14px;
}

.comparison-table thead tr {
  background: var(--gray-900);
  color: white;
}

.comparison-table th {
  padding: 24px 20px;
  text-align: center;
  font-weight: 600;
  vertical-align: bottom;
}

.comparison-table th.feature-col {
  text-align: left;
  width: 200px;
  background: var(--gray-800);
}

.comparison-table th.competitor-col {
  width: 220px;
}

.comp-icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 8px;
}

.comp-name {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.comp-examples {
  display: block;
  font-size: 11px;
  font-weight: 400;
  opacity: 0.7;
}

.comp-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--green);
  border-radius: 100px;
  font-size: 11px;
  margin-top: 8px;
}

.comparison-table th.good {
  background: var(--green-dark);
}

.comparison-table td {
  padding: 20px;
  border-bottom: 1px solid var(--gray-100);
  text-align: center;
  vertical-align: top;
}

.comparison-table td.feature-name {
  text-align: left;
  background: var(--gray-50);
}

.comparison-table td.feature-name strong {
  display: block;
  margin-bottom: 4px;
}

.comparison-table td.feature-name span {
  font-size: 12px;
  color: var(--gray-500);
}

.comparison-table td .value {
  display: block;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
}

.comparison-table td .caveat {
  display: block;
  font-size: 12px;
  color: var(--gray-500);
}

.comparison-table td.bad {
  background: #fef2f2;
}

.comparison-table td.bad .value {
  color: #dc2626;
}

.comparison-table td.meh {
  background: #fffbeb;
}

.comparison-table td.meh .value {
  color: #d97706;
}

.comparison-table td.good {
  background: #f0fdf4;
}

.comparison-table td.good .value {
  color: var(--green);
}

.comparison-table td.good .value.winner {
  color: var(--green-dark);
  font-size: 16px;
}

.comparison-table tr.highlight-row td {
  border-top: 3px solid var(--green);
  padding-top: 24px;
  padding-bottom: 24px;
}

.comparison-table tr.highlight-row td.good {
  background: linear-gradient(135deg, #dcfce7, #f0fdf4);
}

.comparison-cta {
  max-width: 600px;
  margin: 50px auto 0;
  text-align: center;
}

.cta-box {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.cta-box h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.cta-box p {
  color: var(--gray-500);
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .comparison-table-wrapper {
    margin: 0 -24px;
    border-radius: 0;
  }
  .comparison-table th, .comparison-table td {
    padding: 12px 10px;
    font-size: 12px;
  }
  .comparison-table th.feature-col {
    width: 120px;
  }
  .comparison-table th.competitor-col {
    width: auto;
  }
  .comp-icon {
    font-size: 1.5rem;
  }
  .comp-name {
    font-size: 12px;
  }
  .comp-examples {
    display: none;
  }
}

.hero-visual { display: flex; justify-content: center; }

.hero-card {
  width: 100%;
  max-width: 440px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-card-top {
  padding: 16px 20px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-card-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--gray-300); }
.hero-card-dot:nth-child(1) { background: #ff5f57; }
.hero-card-dot:nth-child(2) { background: #febc2e; }
.hero-card-dot:nth-child(3) { background: #28c840; }

.hero-card-body { padding: 32px; }

.hero-card-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
}

.hero-card-row:last-child { border-bottom: none; }
.hero-card-label { color: var(--gray-500); }
.hero-card-value { font-weight: 600; font-size: 18px; }

.hero-card-highlight {
  margin: 24px -32px -32px;
  padding: 24px 32px;
  background: var(--green-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-card-highlight .hero-card-label { color: var(--green-dark); font-weight: 500; }
.hero-card-highlight .hero-card-value { color: var(--green); font-size: 24px; font-weight: 700; }

/* Promo Banner */
.promo-banner {
  background: linear-gradient(90deg, var(--green-dark) 0%, var(--green) 100%);
  color: var(--white);
  padding: 12px 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.promo-banner strong { font-weight: 700; }

/* Section */
.section { padding: 100px 0; }
.section-alt { background: var(--gray-100); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-header h2 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-header p { font-size: 20px; color: var(--gray-500); }

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.feature-card h3 { font-size: 20px; margin-bottom: 12px; }
.feature-card p { color: var(--gray-500); line-height: 1.7; }

.feature-highlight {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px;
  background: var(--gray-100);
  border: none;
}

.feature-highlight:hover { transform: none; box-shadow: none; }

.feature-demo {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.demo-row { display: flex; align-items: center; gap: 16px; padding: 12px 0; }

.demo-check {
  width: 24px;
  height: 24px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.demo-text { color: var(--gray-700); font-weight: 500; }

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.step-num {
  width: 56px;
  height: 56px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.step-card h3 { font-size: 20px; margin-bottom: 12px; }
.step-card p { color: var(--gray-500); }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  padding: 40px 36px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--green);
  box-shadow: var(--shadow-md);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  padding: 8px 24px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
}

.pricing-card h3 { font-size: 24px; margin-bottom: 8px; text-align: center; }
.pricing-subtitle { text-align: center; color: var(--gray-500); font-size: 14px; margin-bottom: 24px; }

.pricing-price {
  text-align: center;
  margin-bottom: 8px;
}

.pricing-price .original {
  font-size: 24px;
  color: var(--gray-300);
  text-decoration: line-through;
  margin-right: 8px;
}

.pricing-price .current {
  font-size: 48px;
  font-weight: 700;
}

.pricing-price .period {
  font-size: 16px;
  font-weight: 400;
  color: var(--gray-500);
}

.pricing-savings {
  text-align: center;
  background: var(--orange-light);
  color: var(--orange);
  padding: 8px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.pricing-list {
  list-style: none;
  margin-bottom: 32px;
}

.pricing-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.pricing-list li:last-child { border-bottom: none; }
.pricing-list li::before { content: "✓"; color: var(--green); font-weight: 700; }
.pricing-list li.disabled { color: var(--gray-300); }
.pricing-list li.disabled::before { content: "—"; color: var(--gray-300); }
.pricing-card .btn { width: 100%; }

/* CTA */
.cta {
  padding: 100px 0;
  background: var(--green-dark);
  text-align: center;
}

.cta h2 { font-size: 44px; color: var(--white); margin-bottom: 16px; }
.cta p { font-size: 20px; color: rgba(255,255,255,0.7); margin-bottom: 40px; }
.cta .btn-primary { background: var(--white); color: var(--green-dark); }
.cta .btn-primary:hover { background: var(--gray-100); }

/* Footer */
.footer {
  padding: 80px 0 40px;
  background: var(--gray-900);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}

.footer-brand p { color: var(--gray-300); margin-top: 16px; max-width: 280px; }

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-300);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.footer-col a { display: block; color: var(--gray-300); padding: 8px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--gray-700);
  text-align: center;
  color: var(--gray-500);
  font-size: 14px;
}

/* Dashboard Layout */
.app {
  display: flex;
  min-height: 100vh;
  padding-top: 72px;
}

.sidebar {
  width: 260px;
  background: var(--gray-100);
  border-right: 1px solid var(--gray-100);
  padding: 24px 16px;
  position: fixed;
  top: 72px;
  bottom: 0;
  left: 0;
  overflow-y: auto;
}

.sidebar-section { margin-bottom: 28px; }

.sidebar-section h4 {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  padding: 0 16px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  color: var(--gray-700);
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 14px;
  transition: all 0.15s;
}

.sidebar-link:hover { background: var(--white); color: var(--black); }
.sidebar-link.active { background: var(--green); color: var(--white); }

.main {
  flex: 1;
  margin-left: 260px;
  padding: 28px;
  background: var(--white);
}

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

.page-header h1 { font-size: 26px; }

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.stat-card {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
}

.stat-label { font-size: 13px; color: var(--gray-500); margin-bottom: 6px; }
.stat-value { font-size: 26px; font-weight: 700; }
.stat-change { font-size: 13px; margin-top: 6px; }
.stat-change.up { color: var(--green); }
.stat-change.down { color: var(--red); }

/* Cards */
.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
}

.card-header {
  padding: 18px 22px;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-header h2 { font-size: 17px; }

/* Tables */
.table-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  gap: 16px;
  flex-wrap: wrap;
}

.table-filters { display: flex; gap: 12px; align-items: center; }

.filter-select {
  padding: 10px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 14px;
  background: var(--white);
  min-width: 140px;
}

.table-search {
  display: flex;
  align-items: center;
  gap: 8px;
}

.table-search input {
  padding: 10px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 14px;
  width: 240px;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th {
  text-align: left;
  padding: 14px 22px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-500);
  background: var(--gray-100);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.table td {
  padding: 16px 22px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
}

.table tr:last-child td { border-bottom: none; }
.table tr:hover { background: var(--gray-100); }

.table-actions {
  display: flex;
  gap: 8px;
}

.table-actions button {
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.15s;
}

.table-actions .btn-view { background: var(--blue-light); color: var(--blue); }
.table-actions .btn-edit { background: var(--gray-100); color: var(--gray-700); }
.table-actions .btn-dispose { background: var(--red-light); color: var(--red); }
.table-actions button:hover { opacity: 0.8; }

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  border-top: 1px solid var(--gray-100);
  font-size: 14px;
  color: var(--gray-500);
}

.pagination-info { }

.pagination-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination-btn {
  padding: 8px 14px;
  border: 1px solid var(--gray-300);
  background: var(--white);
  border-radius: var(--radius-sm);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.15s;
}

.pagination-btn:hover { background: var(--gray-100); }
.pagination-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.pagination-btn.active { background: var(--green); color: var(--white); border-color: var(--green); }

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 100px;
}

.badge-green { background: var(--green-light); color: var(--green); }
.badge-gray { background: var(--gray-100); color: var(--gray-500); }
.badge-red { background: var(--red-light); color: var(--red); }
.badge-blue { background: var(--blue-light); color: var(--blue); }
.badge-purple { background: var(--purple-light); color: var(--purple); }
.badge-orange { background: var(--orange-light); color: var(--orange); }

/* Role Badges */
.role-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.role-superadmin { background: var(--purple-light); color: var(--purple); }
.role-admin { background: var(--blue-light); color: var(--blue); }
.role-manager { background: var(--green-light); color: var(--green); }
.role-staff { background: var(--orange-light); color: var(--orange); }
.role-readonly { background: var(--gray-100); color: var(--gray-500); }

/* Grid */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }

/* Forms */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group.full { grid-column: span 2; }

.form-label {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-input {
  padding: 12px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 15px;
  transition: all 0.15s;
}

.form-input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,128,96,0.1);
}

.form-hint { font-size: 13px; color: var(--gray-500); }

.form-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid var(--gray-100);
}

/* Tooltips */
.tooltip-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.tooltip-icon {
  width: 18px;
  height: 18px;
  background: var(--gray-100);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--gray-500);
  cursor: help;
  font-weight: 700;
  margin-left: 6px;
}

.tooltip-content {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gray-900);
  color: var(--white);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  line-height: 1.5;
  width: 280px;
  margin-bottom: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  z-index: 100;
  font-weight: 400;
}

.tooltip-content::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--gray-900);
}

.tooltip-wrapper:hover .tooltip-content {
  opacity: 1;
  visibility: visible;
}

/* Upload */
.upload-zone {
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius);
  padding: 56px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.upload-zone:hover {
  border-color: var(--green);
  background: var(--green-light);
}

.upload-icon { font-size: 48px; margin-bottom: 16px; }
.upload-zone h3 { margin-bottom: 8px; }
.upload-zone p { color: var(--gray-500); }

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}

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

.modal {
  background: var(--white);
  border-radius: var(--radius);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95);
  transition: transform 0.2s;
}

.modal-overlay.active .modal { transform: scale(1); }

.modal-header {
  padding: 24px;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 { font-size: 20px; }

.modal-close {
  width: 36px;
  height: 36px;
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.modal-close:hover { background: var(--gray-300); }
.modal-body { padding: 24px; }
.modal-footer { padding: 24px; border-top: 1px solid var(--gray-100); display: flex; gap: 12px; justify-content: flex-end; }

/* Report Cards */
.report-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.report-card {
  padding: 28px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.2s;
}

.report-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}

.report-icon {
  width: 64px;
  height: 64px;
  background: var(--green-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 16px;
}

.report-card h3 { font-size: 18px; margin-bottom: 8px; }
.report-card p { color: var(--gray-500); font-size: 14px; margin-bottom: 20px; }

/* Content Pages */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
  text-align: center;
}

.page-hero h1 { font-size: 44px; margin-bottom: 16px; }
.page-hero p { font-size: 20px; color: var(--gray-500); max-width: 600px; margin: 0 auto; }

.content-section { padding: 80px 0; }
.content-wrapper { max-width: 800px; margin: 0 auto; }
.content-wrapper h2 { font-size: 32px; margin: 48px 0 24px; }
.content-wrapper h2:first-child { margin-top: 0; }
.content-wrapper h3 { font-size: 24px; margin: 32px 0 16px; }
.content-wrapper p { color: var(--gray-700); margin-bottom: 16px; line-height: 1.8; }
.content-wrapper ul { margin: 16px 0 24px 24px; color: var(--gray-700); }
.content-wrapper li { margin-bottom: 12px; line-height: 1.7; }

.content-wrapper .highlight-box {
  background: var(--green-light);
  border-left: 4px solid var(--green);
  padding: 24px;
  margin: 32px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.content-wrapper .highlight-box p { color: var(--green-dark); margin: 0; }

.content-wrapper .example-box {
  background: var(--gray-100);
  padding: 24px;
  margin: 24px 0;
  border-radius: var(--radius-sm);
}

.content-wrapper .example-box h4 { font-size: 16px; margin-bottom: 12px; }

.author-box {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 32px;
  background: var(--gray-100);
  border-radius: var(--radius);
  margin-top: 48px;
}

.author-avatar {
  width: 80px;
  height: 80px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 32px;
  font-weight: 700;
  flex-shrink: 0;
}

.author-info h4 { font-size: 18px; margin-bottom: 4px; }
.author-info p { color: var(--gray-500); margin: 0; }

/* Contact Form */
.contact-form { max-width: 600px; margin: 0 auto; }
.contact-form .form-group { margin-bottom: 20px; }
.contact-form .form-group.full { grid-column: span 1; }
.contact-form textarea.form-input { min-height: 160px; resize: vertical; }

.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid var(--gray-100);
}

.contact-info-item { text-align: center; }

.contact-info-icon {
  width: 56px;
  height: 56px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
}

.contact-info-item h4 { font-size: 16px; margin-bottom: 4px; }
.contact-info-item p { color: var(--gray-500); font-size: 14px; }

/* Login Page */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  padding: 40px 20px;
}

.login-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 440px;
  padding: 48px;
}

.login-card .logo {
  justify-content: center;
  margin-bottom: 32px;
  font-size: 26px;
}

.login-card h1 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 8px;
}

.login-card > p {
  text-align: center;
  color: var(--gray-500);
  margin-bottom: 32px;
}

.login-card .form-group { margin-bottom: 20px; }
.login-card .btn { margin-top: 8px; }

.login-footer {
  margin-top: 24px;
  text-align: center;
  font-size: 14px;
  color: var(--gray-500);
}

.login-footer a { color: var(--green); font-weight: 500; }

/* Disposal Warning */
.disposal-warning {
  background: var(--red-light);
  border: 1px solid var(--red);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 20px;
}

.disposal-warning p {
  color: var(--red);
  font-size: 14px;
  margin: 0;
}

/* Integrations */
.integrations-grid {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.integration-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .hero-proof { justify-content: center; }
  .hero-visual { order: -1; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-highlight { grid-column: span 1; grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .sidebar { display: none; }
  .main { margin-left: 0; }
  .contact-info { grid-template-columns: 1fr; }
  .report-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero h1 { font-size: 36px; }
  .section-header h2 { font-size: 32px; }
  .stats-row { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 32px; }
  .table-controls { flex-direction: column; align-items: stretch; }
  .table-search input { width: 100%; }
}

/* ============================================
   ROI CALCULATOR
   ============================================ */
.roi-calculator {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.roi-inputs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.roi-input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.roi-input-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
}

.roi-input-group input {
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s;
}

.roi-input-group input:focus {
  border-color: var(--green);
  outline: none;
}

.roi-results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.roi-result {
  text-align: center;
  padding: 24px 16px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
}

.roi-result.highlight {
  background: var(--green-light);
  border: 2px solid var(--green);
}

.roi-result.total {
  background: linear-gradient(135deg, var(--green), #00a67d);
  color: white;
}

.roi-result-value {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 4px;
}

.roi-result.highlight .roi-result-value {
  color: var(--green);
}

.roi-result-label {
  font-size: 13px;
  color: var(--gray-500);
}

.roi-result.total .roi-result-label {
  color: rgba(255,255,255,0.9);
}

.roi-cta {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.roi-cta p {
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--gray-600);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

.testimonial-stars {
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--gray-600);
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
}

.testimonial-author span {
  font-size: 13px;
  color: var(--gray-500);
}

/* ============================================
   ENHANCED BADGES & COLORS  
   ============================================ */
.badge-purple {
  background: var(--purple-light);
  color: var(--purple);
}

.badge-red {
  background: #fee2e2;
  color: #dc2626;
}

/* Role badges */
.role-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.role-superadmin {
  background: var(--purple-light);
  color: var(--purple);
}

.role-admin {
  background: var(--blue-light);
  color: var(--blue);
}

.role-manager {
  background: var(--green-light);
  color: var(--green);
}

.role-staff {
  background: var(--orange-light);
  color: var(--orange);
}

.role-readonly {
  background: var(--gray-100);
  color: var(--gray-600);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 900px) {
  .roi-inputs { grid-template-columns: repeat(2, 1fr); }
  .roi-results { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .roi-calculator { padding: 24px; }
  .roi-inputs { grid-template-columns: 1fr; }
  .roi-results { grid-template-columns: 1fr; }
  .roi-result-value { font-size: 28px; }
}

/* ============================================
   DARK MODE
   ============================================ */
.dark-mode {
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-tertiary: #334155;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --border-color: #334155;
}

.dark-mode body,
body.dark-mode {
  background: var(--bg-primary);
  color: var(--text-primary);
}

.dark-mode .nav,
.dark-mode .app-nav {
  background: var(--bg-secondary);
  border-color: var(--border-color);
}

.dark-mode .sidebar {
  background: var(--bg-secondary);
  border-color: var(--border-color);
}

.dark-mode .sidebar-link {
  color: var(--text-secondary);
}

.dark-mode .sidebar-link:hover,
.dark-mode .sidebar-link.active {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

.dark-mode .main {
  background: var(--bg-primary);
}

.dark-mode .card {
  background: var(--bg-secondary);
  border-color: var(--border-color);
}

.dark-mode .card-header {
  background: var(--bg-tertiary);
  border-color: var(--border-color);
}

.dark-mode h1, .dark-mode h2, .dark-mode h3, .dark-mode h4 {
  color: var(--text-primary);
}

.dark-mode p, .dark-mode span, .dark-mode td, .dark-mode th {
  color: var(--text-secondary);
}

.dark-mode .form-input,
.dark-mode .form-select,
.dark-mode select.form-input,
.dark-mode textarea.form-input {
  background: var(--bg-tertiary);
  border-color: var(--border-color);
  color: var(--text-primary);
}

.dark-mode .form-input:focus {
  border-color: var(--green);
}

.dark-mode .table th {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
}

.dark-mode .table td {
  border-color: var(--border-color);
}

.dark-mode .table tr:hover {
  background: var(--bg-tertiary);
}

.dark-mode .btn-secondary {
  background: var(--bg-tertiary);
  border-color: var(--border-color);
  color: var(--text-primary);
}

.dark-mode .btn-secondary:hover {
  background: var(--border-color);
}

.dark-mode .modal-overlay {
  background: rgba(0, 0, 0, 0.8);
}

.dark-mode .modal {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
}

.dark-mode .modal-header {
  border-color: var(--border-color);
}

.dark-mode .modal-footer {
  border-color: var(--border-color);
  background: var(--bg-tertiary);
}

.dark-mode .stat-card {
  background: var(--bg-secondary);
}

.dark-mode .footer {
  background: var(--bg-secondary);
  border-color: var(--border-color);
}

.dark-mode .chatbot-window {
  background: var(--bg-secondary);
}

.dark-mode .chatbot-messages {
  background: var(--bg-primary);
}

.dark-mode .message-content {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

.dark-mode .chatbot-input input {
  background: var(--bg-tertiary);
  border-color: var(--border-color);
  color: var(--text-primary);
}

.dark-mode .chatbot-quick-actions {
  background: var(--bg-secondary);
  border-color: var(--border-color);
}

.dark-mode .chatbot-quick-actions button {
  background: var(--bg-tertiary);
  border-color: var(--green);
  color: var(--green);
}

/* Dark mode toggle button */
.btn-icon {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}

.btn-icon:hover {
  background: var(--gray-100);
}

.dark-mode .btn-icon:hover {
  background: var(--bg-tertiary);
}

/* App layout styles */
.app-body {
  min-height: 100vh;
}

.app-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 0 24px;
}

.app-nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  max-width: 100%;
}

.app-nav .nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.app-nav .user-menu {
  display: flex;
  align-items: center;
  gap: 12px;
}

.app-nav .user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
}

.app-nav .user-name {
  font-weight: 500;
}

.app-nav .user-role {
  font-size: 11px;
}

.app-layout {
  display: flex;
  padding-top: 60px;
  min-height: 100vh;
}

.app-layout .sidebar {
  position: fixed;
  top: 60px;
  left: 0;
  bottom: 0;
  width: 240px;
  background: var(--white);
  border-right: 1px solid var(--gray-100);
  padding: 24px 16px;
  overflow-y: auto;
}

.app-layout .main {
  flex: 1;
  margin-left: 240px;
  padding: 32px;
  background: var(--gray-100);
  min-height: calc(100vh - 60px);
}

@media (max-width: 900px) {
  .app-layout .sidebar {
    display: none;
  }
  .app-layout .main {
    margin-left: 0;
  }
}

/* ============================================
   NEW EMOTIONAL HOMEPAGE STYLES
   ============================================ */

:root {
    --pain-red: #dc2626;
    --pain-red-light: #fef2f2;
    --relief-green: #059669;
    --relief-green-light: #ecfdf5;
    --dark-slate: #1e293b;
}

/* Hero Emotional */
.hero-emotional {
    padding: 140px 24px 80px;
    text-align: center;
    background: linear-gradient(180deg, #fafafa 0%, #f1f5f9 100%);
}

.pain-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--pain-red-light);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--pain-red);
    margin-bottom: 24px;
}

.hero-emotional h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    color: var(--dark-slate);
    max-width: 900px;
    margin: 0 auto 24px;
    line-height: 1.15;
}

.highlight-red {
    color: var(--pain-red);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Struggle Section */
.struggle-section {
    padding: 80px 24px;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-slate);
    margin-bottom: 12px;
}

.section-header p {
    color: #64748b;
    font-size: 1.1rem;
}

.struggle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.struggle-card {
    background: var(--pain-red-light);
    border: 1px solid rgba(220, 38, 38, 0.15);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
}

.struggle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.1);
}

.struggle-card .emoji {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.struggle-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--pain-red);
    margin-bottom: 12px;
    line-height: 1.4;
}

.struggle-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

.struggle-card .stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding: 6px 12px;
    background: white;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--pain-red);
}

/* Relief Section */
.relief-section {
    padding: 80px 24px;
    background: linear-gradient(180deg, #ecfdf5 0%, #f0fdf4 100%);
}

.transition-text {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 16px;
}

.green-text {
    color: var(--relief-green) !important;
}

.relief-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.relief-card {
    background: white;
    border: 2px solid var(--relief-green);
    border-radius: 16px;
    padding: 28px;
    position: relative;
}

.relief-card::before {
    content: '✓';
    position: absolute;
    top: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
    background: var(--relief-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.relief-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-slate);
    margin-bottom: 12px;
    padding-right: 40px;
}

.relief-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Sample Company Section */
.sample-section {
    padding: 100px 24px;
    background: var(--dark-slate);
    text-align: center;
}

.sample-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: #22c55e;
    margin-bottom: 24px;
}

.sample-section h2 {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.sample-section > p {
    color: #94a3b8;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 32px;
}

.sample-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* Pricing Section Updates */
.pricing-section {
    padding: 80px 24px;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--green);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.pricing-card.popular {
    border-color: var(--green);
    background: linear-gradient(180deg, #f0fdf4 0%, white 30%);
    position: relative;
}

.pricing-card.popular::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 100px;
}

.pricing-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 24px;
}

.pricing-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #64748b;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.pricing-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: bold;
}

/* Final CTA */
.final-cta {
    padding: 100px 24px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    text-align: center;
}

.final-cta h2 {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.final-cta p {
    color: #94a3b8;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Footer Updates */
.footer {
    background: #0f172a;
    padding: 60px 24px 30px;
    color: #94a3b8;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 12px;
}

.footer-links h4 {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    padding: 6px 0;
}

.footer-links a:hover {
    color: #22c55e;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid #1e293b;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
