/* ========================================
   DESIREE'S DENTAL INSURANCE RECOVERY
   Business Plan Site — Style Sheet
   ======================================== */

:root {
  --primary: #1a5276;
  --primary-light: #2980b9;
  --primary-dark: #0e2f44;
  --accent: #27ae60;
  --accent-light: #2ecc71;
  --warm: #e67e22;
  --warm-light: #f39c12;
  --bg: #ffffff;
  --bg-alt: #f7f9fc;
  --bg-dark: #0c1f2e;
  --text: #2c3e50;
  --text-light: #5d6d7e;
  --text-muted: #95a5a6;
  --border: #e8ecf1;
  --shadow: 0 2px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
  --radius: 12px;
  --radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ======== HERO ======== */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  color: #fff;
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(255,255,255,0.03) 0%, transparent 40%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.hero-tagline {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.7;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.8;
  opacity: 0.85;
  max-width: 650px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
}

.hero-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.hero-nav a {
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.25s;
}

.hero-nav a:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
}

/* ======== STATS BAR ======== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bg-dark);
  color: #fff;
  padding: 2rem;
}

.stat {
  text-align: center;
  padding: 1rem;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-light);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  opacity: 0.7;
  line-height: 1.4;
}

/* ======== SECTIONS ======== */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

/* ======== TWO COLUMN ======== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.col h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

/* ======== CHECK LIST ======== */
.check-list {
  list-style: none;
}

.check-list li {
  padding: 0.5rem 0 0.5rem 1.8rem;
  position: relative;
  font-size: 0.95rem;
}

.check-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ======== HIGHLIGHT BOX ======== */
.highlight-box {
  background: linear-gradient(135deg, #eaf6f0 0%, #e8f4fd 100%);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 2rem;
  margin-top: 2rem;
}

.highlight-box h3 {
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}

.highlight-box p {
  font-size: 1rem;
  line-height: 1.8;
}

/* ======== SERVICES GRID ======== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all 0.3s;
  position: relative;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.service-card.featured {
  border-color: var(--accent);
  background: linear-gradient(to bottom, #f0faf4, #fff);
}

.service-badge {
  position: absolute;
  top: -10px;
  right: 16px;
  background: var(--accent);
  color: #fff;
  padding: 0.2rem 0.75rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.service-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.service-price {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}

/* ======== AUDIENCE TABLE ======== */
.audience-table-wrap {
  overflow-x: auto;
  margin-top: 2rem;
}

.audience-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.audience-table th {
  background: var(--primary);
  color: #fff;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.audience-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.audience-table tr:hover {
  background: var(--bg-alt);
}

.audience-table small {
  color: var(--text-muted);
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge.high {
  background: #e8f8f0;
  color: #1a9a5c;
}

.badge.very-high {
  background: #1a9a5c;
  color: #fff;
}

.badge.moderate {
  background: #fef5e7;
  color: #d4850a;
}

/* ======== DENIAL GRID ======== */
.denial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.denial-card {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  border: 1px solid var(--border);
  position: relative;
}

.denial-rank {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  text-align: center;
  line-height: 28px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.denial-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  color: var(--primary-dark);
}

.denial-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ======== PAIN STATS ======== */
.pain-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.pain-stat {
  text-align: center;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.pain-number {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--warm);
  margin-bottom: 0.5rem;
}

.pain-stat p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ======== PRICING ======== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.pricing-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s;
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--accent);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.pricing-card h3 {
  font-size: 1.15rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.pricing-price small {
  font-size: 1.2rem;
  font-weight: 600;
}

.pricing-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 1.5rem;
}

.pricing-card ul li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-light);
}

.pricing-card ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.pricing-note {
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  padding: 1rem;
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
  text-align: left;
  margin-bottom: 1rem;
}

.pricing-tag {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card.featured .pricing-tag {
  background: var(--accent);
}

/* ======== ADD-ON GRID ======== */
.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.addon {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
}

.addon h4 {
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.addon table {
  width: 100%;
  font-size: 0.85rem;
}

.addon table td {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}

.addon table td:last-child {
  text-align: right;
  color: var(--primary);
}

/* ======== COMPETITOR TABLE ======== */
.competitor-table-wrap {
  overflow-x: auto;
  margin-top: 2rem;
}

.competitor-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.competitor-table th {
  background: var(--primary);
  color: #fff;
  padding: 0.85rem 1rem;
  text-align: left;
  font-weight: 600;
}

.competitor-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.competitor-table tr:hover {
  background: #f0f8ff;
}

/* ======== ADVANTAGE GRID ======== */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.advantage {
  text-align: center;
  padding: 1.5rem;
}

.advantage h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.advantage p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ======== INCOME TABLE ======== */
.income-table-wrap {
  overflow-x: auto;
}

.income-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.income-table th {
  background: var(--primary);
  color: #fff;
  padding: 0.85rem 1rem;
  text-align: left;
  font-weight: 600;
}

.income-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
}

.income-table .total-row {
  background: #f0faf4;
}

.income-table .total-row td {
  border-bottom: 3px solid var(--accent);
  font-size: 1.05rem;
}

/* ======== INCOME SUMMARY ======== */
.income-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.income-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.income-card.accent {
  border-color: var(--accent);
  background: linear-gradient(to bottom, #f0faf4, #fff);
}

.income-amount {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.income-card.accent .income-amount {
  color: var(--accent);
}

.income-label {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ======== STARTUP TABLE ======== */
.startup-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.startup-table td {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}

.startup-table td:last-child {
  text-align: right;
  font-weight: 600;
  color: var(--primary);
}

.startup-table .total-row td {
  border-top: 2px solid var(--primary);
  border-bottom: none;
  font-size: 1.05rem;
  padding-top: 0.85rem;
}

/* ======== CERT LIST ======== */
.cert-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cert {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
}

.cert h4 {
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.cert p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ======== HIPAA GRID ======== */
.hipaa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.hipaa-item {
  background: #fff3e6;
  border: 1px solid #fde0b5;
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: #7d4e00;
  font-weight: 500;
}

/* ======== NICHE GRID ======== */
.niche-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.niche-card {
  background: var(--primary-dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.3s;
}

.niche-card:hover {
  transform: translateY(-4px);
}

.niche-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-light);
  margin-bottom: 0.75rem;
  opacity: 0.6;
}

.niche-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.niche-card p {
  font-size: 0.85rem;
  opacity: 0.8;
  line-height: 1.6;
}

/* ======== TRENDS GRID ======== */
.trends-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.trend {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.75rem;
}

.trend h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.trend p {
  font-size: 0.87rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ======== RISK GRID ======== */
.risk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.risk {
  border-left: 3px solid var(--warm);
  padding: 1.5rem;
  background: #fffbf5;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.risk h4 {
  color: var(--warm);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.risk p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ======== FOOTER ======== */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 3rem 2rem;
  font-size: 0.85rem;
  line-height: 1.8;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 1024px) {
  .services-grid,
  .denial-grid,
  .niche-grid,
  .risk-grid,
  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-bar,
  .pain-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .two-col,
  .pricing-grid,
  .addon-grid,
  .income-summary,
  .hipaa-grid,
  .trends-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .denial-grid,
  .niche-grid,
  .risk-grid,
  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar,
  .pain-stats {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.8rem;
  }
}
