/* =========================
   SMO PAGE (Scoped)
   ========================= */
.smo-page{
  font-family: "Poppins", sans-serif;
  color: #11104d;
}

/* spacing system */
.smo-page{
  --secY: 44px;
  --secY-mobile: 26px;
  --text: #2b2b2b;
  --muted: #6b6b6b;
  --accent: #ff6a00; /* orange subtitle */
}

/* reset inside this page only */
.smo-page h1,
.smo-page h2,
.smo-page h3,
.smo-page p,
.smo-page ul{
  margin: 0;
}

.smo-page img{
  max-width: 100%;
  height: auto;
  display: block;
}

/* section paddings (top/bottom control) */
.smo-page section{
  padding: var(--secY) 0;
}

/* paragraphs */
.smo-text{
  max-width: 1050px;
  margin: 0 auto;
}

.smo-text p{
  color: var(--text);
  font-size: 16px;
  line-height: 1.9;
  margin-top: 16px;
}

/* common titles */
.smo-section-title{
  text-align: center;
  font-weight: 800;
  color: #11104d;
  font-size: clamp(30px, 3.2vw, 44px);
  margin-bottom: 12px;
}

/* centered small paragraph */
.smo-center-text{
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-top: 10px;
}
/* =========================================
   HERO SLIDER
========================================= */
.hero-slider {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

/* Dark overlay */
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* Content */
.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  width: min(92%, 900px);
}

.slide-content .breadcrumb {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 10px;
}

.slide-content h1 {
  font-size: 44px;
  font-weight: 800;
  margin: 0;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  user-select: none;
}

.arrow:hover {
  background: #ff3c2f;
}

.prev { left: 20px; }
.next { right: 20px; }

/* Slider responsive */
@media (max-width: 768px) {
  .hero-slider { height: 300px; }
  .slide-content h1 { font-size: 28px; }
}


/* main wrapper */
.seo-main{
  background: #fff;
}

/* =========================
   1) HERO
   ========================= */
.smo-hero{
  background: #ffffff;
  padding-top: calc(var(--secY) + 6px);
}

.smo-hero__title{
  text-align: center;
  font-weight: 900;
  color: #11104d;
  font-size: clamp(30px, 3.4vw, 52px);
  line-height: 1.15;
}

.smo-hero__subtitle{
  text-align: center;
  color: var(--accent);
  font-weight: 800;
  font-size: clamp(16px, 2vw, 26px);
  margin-top: 10px;
}

/* hero illustration (bottom) */
.smo-hero__art{
  margin: 22px auto 0;
  width: min(1100px, 100%);
  object-fit: contain;
}

/* =========================
   2) OBJECTIVE
   ========================= */
.smo-objective{
  background: #ffffff;
}

.smo-subtitle{
  margin-top: 22px;
  color: #11104d;
  font-size: clamp(20px, 2.1vw, 30px);
  font-weight: 800;
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

/* bullets (simple like screenshot) */
.smo-list{
  max-width: 1050px;
  margin: 14px auto 0;
  padding-left: 22px; /* bullet indent */
  color: var(--text);
  list-style: disc;
}

.smo-list li{
  font-size: 16px;
  line-height: 1.85;
  margin: 8px 0;
  color: var(--text);
}

/* =========================
   3) 3 IMAGES + Offered title
   ========================= */
.smo-offered{
  background: #ffffff;
}

.smo-illustrations{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.smo-illustrations img{
  width: 100%;
  height: 220px;
  object-fit: contain;
}

/* =========================
   4) Platform Cards (6)
   ========================= */
.smo-platforms{
  background: #ffffff;
  padding-top: 18px;
}

.platform-grid{
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.platform-card{
  background: var(--bg, #f3f3f3);
  border-radius: 10px;
  padding: 14px 10px 16px;
  text-align: center;
  border: 1px solid rgba(17,16,77,0.10);
}

.platform-name{
  font-weight: 700;
  color: #11104d;
  font-size: 13px;
  margin-bottom: 12px;
}

.platform-icon{
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: rgba(255,255,255,0.55);
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.platform-icon i{
  font-size: 34px;
  color: #11104d;
}

/* =========================
   5) Benefits
   ========================= */
.smo-benefits{
  background: #ffffff;
  padding-bottom: 28px;
}

.smo-list--wide{
  max-width: 980px;
  margin-top: 18px;
}

.smo-banner{
  margin: 22px auto 0;
  width: min(1100px, 100%);
  border-radius: 10px;
  object-fit: cover;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 991px){
  .platform-grid{ grid-template-columns: repeat(3, 1fr); }
  .smo-illustrations{ grid-template-columns: 1fr; }
  .smo-illustrations img{ height: 200px; }
}

@media (max-width: 575px){
  .smo-page section{ padding: var(--secY-mobile) 0; }

  .smo-text p{
    font-size: 15px;
    line-height: 1.85;
    margin-top: 12px;
  }

  .smo-subtitle{
    text-align: left;
    margin-top: 16px;
  }

  .smo-list li{
    font-size: 15px;
    line-height: 1.8;
  }

  .platform-grid{ grid-template-columns: repeat(2, 1fr); }

  .platform-icon{
    width: 58px;
    height: 58px;
  }
  .platform-icon i{ font-size: 30px; }

  .smo-hero__art{ margin-top: 16px; }
}
