.strategy-section {
  margin-top: 4rem;
  padding-top: 1rem;
}
.strategy-title {
  font-size: 1.8rem;
  border-bottom: 2px solid #111;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
  display: inline-block;
}

.performance-banner {
  background: #111;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-size: 0.9rem;
}
.perf-item span {
  font-weight: bold;
  color: #d4a574;
  font-size: 1.25rem;
  margin-right: 0.5rem;
}

.why-a10 {
  background: #fdfaf6;
  padding: 3rem;
  border-radius: 12px;
  margin: 2rem 0;
  border: 1px solid #e5e7eb;
}
.why-a10 h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.wall-item {
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4b5563;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.03);
}
.wall-item strong {
  display: inline-block;
  min-width: 120px;
  color: #111;
}

.cta-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0 4rem;
}
.cta-btn {
  background: #111;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  transition: all 0.2s;
  border: 1px solid #111;
}
.cta-btn:hover {
  background: #fff;
  color: #111;
}

.revenue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}
.revenue-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 1.2rem;
  border-radius: 8px;
  text-align: center;
}

.table-container {
  overflow-x: auto;
  margin: 2rem 0;
}
.tier-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.tier-table th, .tier-table td {
  padding: 1rem;
  border-bottom: 1px solid #eee;
  text-align: left;
}
.tier-table th { background: #f9fafb; font-weight: bold; }

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
.catalog-item h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #111;
  border-left: 4px solid #d4a574;
  padding-left: 0.75rem;
}
.catalog-list {
  list-style: none;
  padding: 0;
  font-size: 0.9rem;
  color: #666;
}
.catalog-list li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.2rem;
}
.catalog-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d4a574;
}

.kpi-board {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 3rem;
}
.status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
}
.status-high { background: #fee2e2; color: #ef4444; }
.status-med { background: #fef3c7; color: #d97706; }
.status-low { background: #f3f4f6; color: #6b7280; }

.routine-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.routine-box {
  background: #fff;
  border: 1px solid #eee;
  padding: 1.5rem;
  border-radius: 8px;
}
.routine-box h5 {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: #d4a574;
}

.checklist {
  list-style: none;
  padding: 0;
}
.checklist li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}
.checklist li input {
  margin-right: 0.75rem;
}

/* Active Campaign Accent Styles */
.active-mission-card {
  background: #fff8eb;
  border: 2px solid #d4a574;
  padding: 2.5rem;
  border-radius: 16px;
  margin: 3rem 0;
}
.mission-accent {
  background: #d4a574;
  color: #fff;
  padding: 0.2rem 1rem;
  border-radius: 4px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  display: inline-block;
}

.weekly-step-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.weekly-step-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 1.5rem;
  border-radius: 12px;
  position: relative;
}
.weekly-step-card .step-number {
  position: absolute;
  top: -10px;
  left: 20px;
  background: #111;
  color: #fff;
  padding: 2px 10px;
  font-size: 0.75rem;
  border-radius: 4px;
}

.no-go-zone {
  border: 1px dashed #ef4444;
  padding: 1.5rem;
  border-radius: 8px;
  background: #fef2f2;
}
.no-go-zone h5 { color: #ef4444; margin-bottom: 1rem; }

.hub-visual {
  background: #111;
  color: #fff;
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 4rem;
}

/* Phase Roadmap Styles */
.roadmap-container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 3rem 0;
  position: relative;
}
.roadmap-container::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 2px;
  background: #e5e7eb;
  z-index: 0;
}
.phase-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}
.phase-circle {
  width: 60px;
  height: 60px;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-weight: bold;
  font-size: 0.8rem;
  color: #9ca3af;
  transition: all 0.3s;
}
.phase-step.completed .phase-circle {
  border-color: #111;
  color: #111;
  background: #f9fafb;
}
.phase-step.active .phase-circle {
  border-color: #d4a574;
  color: #fff;
  background: #d4a574;
  box-shadow: 0 0 15px rgba(212, 165, 116, 0.3);
  transform: scale(1.1);
}
.phase-label {
  font-size: 0.85rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: block;
}
.phase-desc {
  font-size: 0.7rem;
  color: #666;
  line-height: 1.4;
  padding: 0 0.5rem;
}
.current-tag {
  background: #111;
  color: #fff;
  font-size: 0.6rem;
  padding: 2px 8px;
  border-radius: 4px;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

@media (max-width: 960px) {
  .routine-grid, .weekly-step-container, .roadmap-container {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 2rem;
  }
  .roadmap-container::before { display: none; }
}
