* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Updated colors to match Key Media Hub brand: dark navy bg with cyan accents */
  --primary-color: #0a1628;
  --secondary-color: #00d4ff;
  --accent-color: #00d4ff;
  --light-bg: #f5f5f5;
  --white: #ffffff;
  --text-dark: #333333;
  --text-light: #666666;
  --border-color: #e0e0e0;
  --spacing-unit: 16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  line-height: 1.6;
  color: var(--white);
  background-color: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-unit);
}

/* HERO SECTION */
.hero {
  padding: 100px var(--spacing-unit);
  background: linear-gradient(135deg, var(--primary-color) 0%, #0f1f2e 100%);
  color:white;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-left h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color:white;
}

.hero-subhead {
  font-size: 20px;
  margin-bottom: 40px;
  color: #9db4c4;
  line-height: 1.4;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  font-weight: 700;
}

.btn-primary:hover {
  background-color: #00b8d4;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  font-weight: 700;
}

.trust-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trust-block img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.trust-stat {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-stat h3 {
  font-size: 32px;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

/* PAIN SECTION */
.pain-section {
  padding: 80px var(--spacing-unit);
  background-color: var(--light-bg);
}

.pain-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  font-weight: 700;
  color: white;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.pain-card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.pain-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.pain-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.pain-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
}

.pain-card p {
  color: var(--text-light);
  font-size: 14px;
}

/* POSITIONING SECTION */
.positioning {
  padding: 80px var(--spacing-unit);
  background: var(--white);
}

.positioning h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  font-weight: 700;
  color: white;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.comparison-column {
  padding: 40px;
  border-radius: 8px;
  border: 2px solid var(--border-color);
}

.comparison-column:first-child {
  /* background: #f0f7ff; */
  border-color: var(--secondary-color);
}

.comparison-column:last-child {
  /* background: #fff5f5; */
  border-color: #ff6b6b;
}

.comparison-column h3 {
  font-size: 20px;
  margin-bottom: 24px;
  font-weight: 600;
  color: var(--primary-color);
}

.comparison-column ul {
  list-style: none;
}

.comparison-column li {
  padding: 10px 0;
  font-size: 16px;
}

/* WHO WE WORK WITH */
.who-section {
  padding: 80px var(--spacing-unit);
  background-color: var(--light-bg);
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.who-card {
  padding: 40px;
  border-radius: 8px;
  color: var(--white);
}

.who-yes {
  background: linear-gradient(135deg, #00d4ff 0%, #00a8d4);
  color: var(--primary-color);
}

.who-yes h3 {
  color: var(--primary-color);
  font-weight: 700;
}

.who-yes li {
  color: var(--primary-color);
}

.who-no {
  background: linear-gradient(135deg, #ff6b6b 0%, #d63031 100%);
  color: var(--white);
}

.who-card h3 {
  font-size: 22px;
  margin-bottom: 24px;
  font-weight: 600;
}

.who-card ul {
  list-style: none;
}

.who-card li {
  padding: 10px 0;
  font-size: 15px;
}

/* WHAT MAKES US DIFFERENT */
.different-section {
  padding: 80px var(--spacing-unit);
  background: var(--white);
}

.different-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  font-weight: 700;
  color:white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.feature-block {
  background: var(--light-bg);
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid var(--secondary-color);
}

.feature-block h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--primary-color);
}

.feature-block p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 14px;
}

.feature-block img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}

/* CASE STUDIES */
.case-studies {
  padding: 80px var(--spacing-unit);
  background: linear-gradient(135deg, var(--primary-color) 0%, #0f1f2e 100%);
  color: var(--white);
}

.case-studies h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  font-weight: 700;
  color: var(--white);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.case-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.case-card:hover {
  transform: translateY(-8px);
  border-color: var(--secondary-color);
  box-shadow: 0 12px 32px rgba(0, 212, 255, 0.2);
}

.case-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.case-card h3 {
  font-size: 18px;
  font-weight: 600;
  padding: 20px 20px 10px;
}

.case-card p {
  color: #ccc;
  padding: 0 20px 20px;
  font-size: 14px;
}

/* SERVICES SECTION */
.services-section {
  padding: 80px var(--spacing-unit);
  background: var(--light-bg);
}

.services-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  font-weight: 700;
  color: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-block {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  border-top: 4px solid var(--secondary-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-block h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.service-block ul {
  list-style: none;
  margin-bottom: 20px;
}

.service-block li {
  padding: 8px 0;
  color: var(--text-light);
  font-size: 14px;
}

.service-block li:before {
  content: "→ ";
  color: var(--secondary-color);
  font-weight: 600;
}

.learn-more {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.learn-more:hover {
  color: #00a8d4;
}

/* PROCESS TIMELINE */
.process-section {
  padding: 80px var(--spacing-unit);
  background: var(--white);
}

.process-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  font-weight: 700;
  color: white;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  /* max-width: 1000px; */
  margin: 0 auto;
}

.timeline-step {
  text-align: center;
  padding: 30px;
  background: var(--light-bg);
  border-radius: 8px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
}

.timeline-step:hover {
  border-color: var(--secondary-color);
  /* background: #f0f7ff; */
  box-shadow: 0 12px 32px rgba(0, 212, 255, 0.2);
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 50%;
  line-height: 50px;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 16px;
}

.timeline-step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.timeline-step p {
  color: var(--text-light);
  font-size: 14px;
}

/* TESTIMONIALS */
.testimonials-section {
  padding: 80px var(--spacing-unit);
  background: linear-gradient(135deg, var(--primary-color) 0%, #0f1f2e 100%);
  color: var(--white);
}

.testimonials-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 60px;
  font-weight: 700;
  color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial {
  background: rgba(0, 212, 255, 0.1);
  padding: 30px;
  border-radius: 8px;
  border-left: 4px solid var(--secondary-color);
}

.testimonial p {
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.6;
  font-style: italic;
  /* color: white !important; */
}

.testimonial footer {
  color: #ccc;
  font-size: 14px;
  font-weight: 600;
}

/* FINAL CTA */
.final-cta {
  padding: 80px var(--spacing-unit);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 212, 255, 0.05));
  text-align: center;
  border : 1px solid var(--secondary-color);
  border-radius: 20px;
  margin: 80px auto;
}

.final-cta h2 {
  font-size: 42px;
  margin-bottom: 16px;
  font-weight: 700;
  color: white;
}

.final-cta p {
  font-size: 18px;
  margin-bottom: 40px;
  /* color: var(--primary-color); */
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-large {
  padding: 16px 40px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(10, 22, 40, 0.4);
  background-color: #051119;
}

.btn-secondary-large {
  padding: 16px 40px;
  background-color: transparent;
  color:white;
  border: 2px solid var(--secondary-color);
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary-large:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

/* FOOTER */
.footer {
  padding: 30px var(--spacing-unit);
  background: var(--primary-color);
  color: var(--white);
  text-align: center;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-left h1 {
    font-size: 32px;
    color: white;
  }

  .comparison {
    grid-template-columns: 1fr;
  }

  .who-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn-primary-large,
  .btn-secondary-large {
    width: 100%;
  }
}
