/* =========================================
   GLOBAL RESET & THEME COLORS
========================================= */
/* * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  color: #0f1724;
  background-color: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden;
} */

/* Theme Colors */
:root {
  --blue: #0077cc;
  --dark: #0f1724;
  --muted: #6b7280;
  --light: #f8fafb;
  --radius: 18px;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  --gradient: linear-gradient(90deg, #0077cc, #00aaff);
}

/* =========================================
   HERO SECTION
========================================= */
.hero_section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  width: 100%;
  min-height: 70vh;
  padding: 80px 10%;
  background: linear-gradient(180deg, #f9fbff 0%, #eef6ff 100%);
  flex-wrap: wrap;
}

.hero_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1280px;
}

.hero_txt {
  flex: 1 1 273px;
}

.hero_txt h1 {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero_txt p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 32px;
}

.hero_cta {
  background: #6aed8c;
  color: #000;
  border: 5px solid #60c14f;
  padding: 14px 36px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.hero_cta:hover {
  background: #ffffff;
  transform: translateY(-2px);
}

.hro_img {
  flex: 1 1 450px;
  display: flex;
  justify-content: center;
}

.hro_img img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  margin-top: 20px;
}

.hro_img img:hover {
  transform: scale(1.05);
}

/* =========================================
   BENEFITS SECTION
========================================= */
.messaging-benefits-section {
  max-width: 1300px;
  margin: 60px auto;
  padding: 48px 32px;
  background: linear-gradient(135deg, #e7f2ff, #ffffff);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.messaging-benefits-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  /* color: var(--blue); */
  margin-bottom: 40px;
}

/* .messaging-benefits-title .primary-highlight {
  color: #005fa3;
} */

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.benefit-card {
  background: #fff;
  border: 2px solid #0077cc;
  border-radius: 20px;
  padding: 28px 22px;
  width: 240px;
  text-align: center;
  box-shadow: var(--shadow);
}

.benefit-value {
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--blue);
  margin-bottom: 10px;
}

.benefit-desc {
  color: #333;
  font-size: 1rem;
}

/* =========================================
   CATALOG PROMO SECTION
========================================= */
.catalog-promo-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1200px;
  margin: 60px auto;
  padding: 60px 20px;
  gap: 40px;
  background: #f8fbff;
  border-radius: var(--radius);
}

.promo-chip {
  display: inline-block;
  background: #e0f2ff;
  color: var(--blue);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 14px;
}

.promo-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.3rem);
  font-weight: 700;
  margin-bottom: 12px;
  /* color: var(--dark); */
}

.gradient-text {
  /* background: var(--gradient); */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.promo-summary {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.multi-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.multi-list li {
  position: relative;
  padding-left: 34px;
  font-size: 1rem;
  color: var(--dark);
}

.multi-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gradient);
}

.multi-list li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 9px;
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

/* IMAGE */
.catalog-promo-image {
  display: flex;
  justify-content: center;
}

.robot-demo {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.robot-demo img {
  width: 100%;
  max-width: 480px;
  border-radius: 10px;
}

/* =========================================
   MULTI-BROADCAST SECTION
========================================= */
.multi-broadcast-section {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 60px auto;
  padding: 60px 20px;
  gap: 40px;
  background: #eef6ff;
  border-radius: var(--radius);
}

.multi-broadcast-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

.multi-broadcast-image img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.multi-broadcast-info {
  flex: 1 1 55%;
}

.multi-chip {
  background: #dff4ff;
  color: var(--blue);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.multi-title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin: 16px 0;
  /* color: var(--dark); */
}

.multi-gradient {
  /* background: var(--gradient); */
  -webkit-background-clip: text;
  /* -webkit-text-fill-color: transparent; */
}

.multi-desc {
  color: var(--muted);
  margin-bottom: 18px;
}

/* =========================================
   RESPONSIVE FIXES
========================================= */

/* Tablets */
@media (max-width: 992px) {
  .hero_inner,
  .multi-broadcast-section {
    flex-direction: column;
    text-align: center;
  }

  .catalog-promo-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .catalog-promo-image,
  .multi-broadcast-image {
    order: -1;
  }

  .hero_section {
    padding: 60px 5%;
  }

  .hero_txt h1 {
    font-size: 2.1rem;
  }

  .hero_txt p {
    font-size: 1rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero_section {
    min-height: auto;
    padding: 40px 6%;
  }

  .hero_txt h1 {
    font-size: 1.8rem;
  }

  .hero_txt p {
    font-size: 0.95rem;
  }

  .hro_img img {
    max-width: 100%;
  }

  .messaging-benefits-section {
    margin: 40px 16px;
    padding: 32px 20px;
  }

  .benefits-grid {
    flex-direction: column;
    align-items: center;
  }

  .catalog-promo-section,
  .multi-broadcast-section {
    padding: 40px 20px;
    margin: 40px 16px;
    gap: 30px;
  }

  
  .multi-title {
    font-size: 1.6rem;
  }

  .promo-summary,
  .multi-desc {
    font-size: 0.95rem;
  }

  .multi-list li {
    font-size: 0.9rem;
    padding-left: 28px;
  }

  .robot-demo img,
  .multi-broadcast-image img {
    max-width: 85%;
  }
}

/* Very Small Devices */
@media (max-width: 480px) {
  .hero_txt h1 {
    font-size: 1.5rem;
  }

  .hero_cta {
    padding: 10px 24px;
    font-size: 0.9rem;
  }

  .messaging-benefits-title {
    font-size: 1.6rem;
  }

  .benefit-card {
    width: 90%;
  }
}
