* {
  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(--text-dark);
  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: var(--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: 32px;
  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(0, 212, 255, 0.3);
}

.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: var(--primary-color);
}

.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;
  border-top: 3px solid var(--secondary-color);
}

.pain-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 212, 255, 0.15);
}

.pain-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.pain-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
  color: var(--primary-color);
}

.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: var(--primary-color);
}

.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;
  color: var(--text-dark);
}

/* 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 100%);
  color: var(--primary-color);
}

.who-yes h3 {
  color: var(--primary-color);
  font-weight: 700;
}

.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: var(--primary-color);
}

.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;
  color: var(--white);
}

.case-card p {
  color: #9db4c4;
  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: var(--primary-color);
}

.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: var(--primary-color);
}

.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 8px 24px rgba(0, 212, 255, 0.1);
}

.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;
  color: var(--primary-color);
}

.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: var(--white); */
}

.testimonial footer {
  color: white;
  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));
  /* color: var(--primary-color); */
  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: var(--primary-color);
}

.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(42, 115, 224, 0.4);
  /* background-color: #051119; */
}

.btn-secondary-large {
  padding: 16px 40px;
  background-color: transparent;
  /* color: var(--primary-color); */
  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: 28px;
  }

  @media screen and (max-width: 480px) {
    .hero-left h1 {
      font-size: 22px;
    }
    
  }

  .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%;
  }
}  

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.modal-content {
  position: relative;
  width: 90vw;
  max-width: 640px;
  max-height: 80vh;
  overflow-y: auto;
  background: #0b1220;
  padding: 28px;
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.modal-content p {
  white-space: pre-line;
  color: #98a3b3;
  line-height: 1.6;
}

.modal-close {
  position: sticky;
  top: 0;
  float: right;
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

/* POSITIONING SECTION */

.positioning {
  background: radial-gradient(circle at top, #0b1a33, #020617);
  padding: 90px 0;
  color: #fff;
}

.positioning h2 {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 70px;
}

.comparison {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

/* Columns */
.comparison-column {
  padding: 35px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
  position: relative;
}

/* LEFT border (green) */
.comparison-column:first-child {
  border: 2px solid #22c55e;
}

/* RIGHT border (red) */
.comparison-column:last-child {
  border: 2px solid #ef4444;
}

.comparison-column h3 {
  font-size: 26px;
  margin-bottom: 30px;
}

/* List */
.comparison-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Each point card */
.comparison-column li {
  padding: 18px 20px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;

  /* smooth hover */
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

/* Hover slow scale */
.comparison-column li:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

/* Accent strip like uploaded UI */
.comparison-column:first-child li {
  border-left: 4px solid #22c55e;
}

.comparison-column:last-child li {
  border-left: 4px solid #ef4444;
}

/* Responsive */
@media (max-width: 900px) {
  .comparison {
    grid-template-columns: 1fr;
  }
}



.who-section {
  background: radial-gradient(circle at top, #0b1a33, #020617);
  padding: 90px 0;
  color: #fff;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

/* Card base */
.who-card {
  padding: 40px 35px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

/* Title */
.who-card h3 {
  font-size: 26px;
  margin-bottom: 30px;
}

/* List */
.who-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.who-card li {
  padding: 18px 22px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 16px;
  line-height: 1.4;

  transition: transform 0.6s ease, box-shadow 0.6s ease;
  cursor: default;
}

/* Slow hover */
.who-card li:hover {
  transform: scale(1.06);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.45);
}

/* YES card (green glow strip) */
.who-yes {
  border: 2px solid #22c55e;
}

.who-yes li {
  border-left: 4px solid #22c55e;
}

/* NO card (red glow strip) */
.who-no {
  border: 2px solid #ef4444;
}

.who-no li {
  border-left: 4px solid #ef4444;
}

/* Subtle gradient shine */
.who-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.04),
    transparent
  );
  opacity: 0.4;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 900px) {
  .who-grid {
    grid-template-columns: 1fr;
  }
}
