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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1a202c;
  line-height: 1.6;
  background: #ffffff;
}

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

.header {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #1e40af;
}

.header nav {
  display: flex;
  gap: 32px;
}

.header nav a {
  color: #475569;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}

.header nav a:hover,
.header nav a.active {
  color: #1e40af;
}

.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  color: #0f172a;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 20px;
  color: #475569;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #1e40af;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: #1e3a8a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.btn-secondary {
  background: #ffffff;
  color: #1e40af;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid #1e40af;
  transition: all 0.2s;
  display: inline-block;
}

.btn-secondary:hover {
  background: #eff6ff;
}

.hero-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.problem {
  padding: 80px 0;
  background: #f8fafc;
}

.problem h2,
.audit-scope h2,
.timeline h2,
.proof h2,
.plan-overview h2,
.investment h2,
.dashboard-preview h2,
.performance-breakdown h2,
.insights h2,
.forecast h2,
.report-delivery h2 {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  color: #0f172a;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.problem-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.problem-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #0f172a;
}

.problem-card p {
  color: #64748b;
  margin-bottom: 16px;
}

.impact {
  display: inline-block;
  background: #fef2f2;
  color: #dc2626;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
}

.audit-scope {
  padding: 80px 0;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.scope-item {
  background: #f8fafc;
  padding: 32px;
  border-radius: 12px;
}

.scope-item h3 {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1e40af;
}

.scope-item ul {
  list-style: none;
}

.scope-item li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #475569;
}

.scope-item li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1e40af;
  font-weight: 700;
}

.timeline {
  padding: 80px 0;
  background: #f8fafc;
}

.timeline-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.timeline-phase {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
}

.phase-day {
  background: #1e40af;
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 12px;
}

.timeline-phase h4 {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #0f172a;
}

.timeline-phase p {
  font-size: 14px;
  color: #64748b;
}

.proof {
  padding: 80px 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.metric-card {
  text-align: center;
  padding: 32px;
  background: #f8fafc;
  border-radius: 12px;
}

.metric-value {
  font-family: 'Sora', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 8px;
}

.metric-label {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
}

.metric-card p {
  font-size: 14px;
  color: #64748b;
}

.cta-final {
  padding: 80px 0;
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  color: #ffffff;
  text-align: center;
}

.cta-final h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-final p {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.footer {
  padding: 32px 0;
  background: #0f172a;
  color: #94a3b8;
  text-align: center;
  font-size: 14px;
}

.page-hero {
  padding: 60px 0 40px;
  background: #f8fafc;
}

.breadcrumb {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: #1e40af;
  text-decoration: none;
}

.page-hero h1 {
  font-family: 'Sora', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.page-subtitle {
  font-size: 18px;
  color: #475569;
}

.plan-overview {
  padding: 60px 0;
}

.plan-phases {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.phase-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 40px;
}

.phase-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid #e2e8f0;
}

.phase-number {
  background: #1e40af;
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.phase-header h3 {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 700;
  flex: 1;
}

.phase-duration {
  background: #f8fafc;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  color: #475569;
}

.phase-objectives,
.phase-deliverables,
.phase-kpis {
  margin-bottom: 32px;
}

.phase-objectives h4,
.phase-deliverables h4,
.phase-kpis h4 {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #0f172a;
}

.phase-objectives ul {
  list-style: none;
}

.phase-objectives li {
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  color: #475569;
}

.phase-objectives li:before {
  content: '→';
  position: absolute;
  left: 0;
  color: #1e40af;
  font-weight: 700;
}

.week-item {
  background: #f8fafc;
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 12px;
  color: #475569;
}

.week-item strong {
  color: #1e40af;
  font-weight: 600;
}

.kpi-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
  color: #475569;
}

.kpi-row:last-child {
  border-bottom: none;
}

.kpi-row strong {
  color: #1e40af;
  font-weight: 700;
}

.investment {
  padding: 80px 0;
  background: #f8fafc;
}

.investment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.investment-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  text-align: center;
}

.investment-card.highlight {
  border-color: #1e40af;
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
}

.investment-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #0f172a;
}

.price {
  font-family: 'Sora', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 16px;
}

.investment-card p {
  color: #64748b;
  font-size: 15px;
}

.next-steps {
  padding: 80px 0;
}

.steps-list {
  max-width: 800px;
  margin: 0 auto 48px;
}

.step-item {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}

.step-num {
  background: #1e40af;
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
}

.step-content h4 {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #0f172a;
}

.step-content p {
  color: #64748b;
}

.dashboard-preview {
  padding: 60px 0;
}

.report-header {
  background: #f8fafc;
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 40px;
}

.report-meta {
  display: flex;
  gap: 32px;
  margin-top: 16px;
  font-size: 14px;
  color: #64748b;
}

.kpi-dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.kpi-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
}

.kpi-title {
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.kpi-value {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.kpi-change {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.kpi-change.positive {
  background: #dcfce7;
  color: #16a34a;
}

.kpi-card p {
  font-size: 14px;
  color: #64748b;
}

.performance-breakdown {
  padding: 60px 0;
  background: #f8fafc;
}

.campaign-table {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #e2e8f0;
}

.table-header,
.table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
  gap: 16px;
  padding: 20px 24px;
  align-items: center;
}

.table-header {
  background: #f8fafc;
  font-weight: 600;
  font-size: 14px;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.table-row {
  border-top: 1px solid #e2e8f0;
  color: #475569;
}

.status-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}

.status-badge.green {
  background: #dcfce7;
  color: #16a34a;
}

.status-badge.yellow {
  background: #fef3c7;
  color: #d97706;
}

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

.insights {
  padding: 60px 0;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.insight-card {
  background: #f8fafc;
  padding: 32px;
  border-radius: 12px;
  border-left: 4px solid #1e40af;
}

.insight-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #0f172a;
}

.insight-card p {
  color: #475569;
  margin-bottom: 16px;
}

.insight-action {
  background: #dbeafe;
  color: #1e40af;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
}

.forecast {
  padding: 60px 0;
  background: #f8fafc;
}

.forecast-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.forecast-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  text-align: center;
}

.forecast-card h4 {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.forecast-value {
  font-family: 'Sora', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 12px;
}

.forecast-card p {
  font-size: 14px;
  color: #64748b;
}

.forecast-actions {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
}

.forecast-actions h3 {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #0f172a;
}

.forecast-actions ul {
  list-style: none;
}

.forecast-actions li {
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  color: #475569;
  border-bottom: 1px solid #e2e8f0;
}

.forecast-actions li:last-child {
  border-bottom: none;
}

.forecast-actions li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1e40af;
  font-weight: 700;
}

.report-delivery {
  padding: 60px 0;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.delivery-item {
  background: #f8fafc;
  padding: 32px;
  border-radius: 12px;
}

.delivery-item h3 {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #0f172a;
}

.delivery-item p {
  color: #64748b;
}

@media (max-width: 768px) {
  .hero .container,
  .problem-grid,
  .scope-grid,
  .timeline-track,
  .metrics-grid,
  .investment-grid,
  .kpi-dashboard,
  .insights-grid,
  .forecast-grid,
  .delivery-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 36px;
  }

  .table-header,
  .table-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .header nav {
    flex-direction: column;
    gap: 16px;
  }
}