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

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

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

.nav {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.nav-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #6366f1;
}

.nav-links {
  display: flex;
  gap: 32px;
}

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

.nav-links a:hover,
.nav-links a.active {
  color: #6366f1;
}

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

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

.badge {
  display: inline-block;
  background: #e0e7ff;
  color: #6366f1;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 20px;
  color: #0f172a;
}

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

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

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

.btn-primary:hover {
  background: #4f46e5;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

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

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

.section {
  padding: 80px 0;
}

.section-alt {
  padding: 80px 0;
  background: #fafafa;
}

.section-header {
  max-width: 640px;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 40px;
  margin-bottom: 16px;
  color: #0f172a;
}

.section-header p {
  font-size: 18px;
  color: #64748b;
}

.centered-heading {
  font-size: 40px;
  text-align: center;
  margin-bottom: 60px;
  color: #0f172a;
}

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

.stat-card {
  text-align: center;
  padding: 32px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #6366f1;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: #64748b;
}

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

.campaign-card {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: all 0.2s;
}

.campaign-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.campaign-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

.campaign-icon img {
  width: 100%;
  height: 100%;
}

.campaign-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #0f172a;
}

.campaign-card p {
  font-size: 15px;
  color: #64748b;
  margin-bottom: 16px;
}

.campaign-meta {
  font-size: 13px;
  color: #94a3b8;
  font-weight: 500;
}

.logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.logo-img {
  height: 40px;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.logo-img:hover {
  opacity: 1;
}

.cta-section {
  padding: 80px 0;
}

.cta-box {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  padding: 64px;
  border-radius: 16px;
  text-align: center;
  color: #fff;
}

.cta-box h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

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

.cta-box .btn-primary {
  background: #fff;
  color: #6366f1;
}

.cta-box .btn-primary:hover {
  background: #f8f9ff;
}

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

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

.breadcrumb {
  display: inline-block;
  color: #6366f1;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  transition: color 0.2s;
}

.breadcrumb:hover {
  color: #4f46e5;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
  color: #0f172a;
}

.page-subtitle {
  font-size: 20px;
  color: #64748b;
  max-width: 720px;
}

.strategy-phase {
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid #e5e5e5;
}

.strategy-phase:last-child {
  border-bottom: none;
}

.phase-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.phase-number {
  background: #6366f1;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

.phase-header h2 {
  font-size: 32px;
  flex: 1;
}

.phase-duration {
  color: #94a3b8;
  font-size: 15px;
  font-weight: 500;
}

.strategy-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.strategy-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #0f172a;
}

.strategy-item p {
  font-size: 16px;
  color: #475569;
  margin-bottom: 12px;
}

.strategy-item ul {
  list-style: none;
  padding-left: 0;
}

.strategy-item li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
  color: #64748b;
  font-size: 15px;
}

.strategy-item li:before {
  content: "•";
  position: absolute;
  left: 8px;
  color: #6366f1;
  font-weight: bold;
}

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

.included-item {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
}

.included-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #0f172a;
}

.included-item p {
  font-size: 15px;
  color: #64748b;
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
}

.timeline-item:before {
  content: "";
  position: absolute;
  left: 70px;
  top: 32px;
  bottom: -48px;
  width: 2px;
  background: #e5e5e5;
}

.timeline-item:last-child:before {
  display: none;
}

.timeline-marker {
  background: #6366f1;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  height: fit-content;
}

.timeline-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #0f172a;
}

.timeline-content p {
  font-size: 15px;
  color: #475569;
  margin-bottom: 12px;
}

.timeline-content strong {
  color: #0f172a;
}

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

.report-card {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
}

.report-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #0f172a;
}

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

@media (max-width: 768px) {
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 18px; }
  .hero-cta { flex-direction: column; }
  .stats-grid,
  .campaign-grid,
  .included-grid,
  .reporting-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .timeline-item { grid-template-columns: 1fr; }
  .timeline-item:before { display: none; }
  .cta-box { padding: 40px 24px; }
}