/* =========================================
   INDEX PAGE STYLE
   Hero • Why • Series
   Premium Layout Upgrade
========================================= */

/* ===============================
   HERO ENHANCEMENT
=============================== */

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

.hero h1{
  font-size:52px;
  letter-spacing:-1px;
}

.hero p{
  font-size:17px;
  max-width:720px;
}

.hero .actions{
  margin-top:28px;
}

/* Hero feature badges */
.hero-features{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-top:30px;
  max-width:600px;
}

.hero-feature{
  display:flex;
  align-items:center;
  gap:10px;
  background:rgba(255,255,255,.12);
  padding:10px 14px;
  border-radius:14px;
  font-size:14px;
  backdrop-filter:blur(4px);
}

.hero-feature .ico{
  font-size:16px;
}
.whyspc-structure{
  display:grid;
  gap:18px;
  margin-bottom:28px;
}

.structure-item{
  padding:18px 22px;
  border-radius:18px;
  background:#fff;
  border:1px solid var(--line);
}

.structure-item .label{
  font-size:12px;
  letter-spacing:.15em;
  color:var(--brand);
  text-transform:uppercase;
}

.structure-item h4{
  margin:6px 0;
  font-size:18px;
}
/* ===============================
   WHY SECTION
=============================== */

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

.why-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
  transition:.25s ease;
}

.why-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-medium);
}

.why-card img{
  width:100%;
  height:220px;
  object-fit:cover;
}

.why-card .pad{
  padding:22px;
}

.why-card h3{
  margin:0 0 8px;
  font-size:20px;
  font-weight:600;
}

.why-card p{
  margin:0;
  color:var(--muted);
}


/* ===============================
   WHY SPC SECTION
=============================== */

.whyspc{
  border-radius:28px;
  padding:40px;
  background:linear-gradient(
    135deg,
    rgba(122,15,27,.05),
    rgba(122,15,27,.02)
  );
  border:1px solid rgba(122,15,27,.1);
}

.whyspc-grid{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:40px;
  align-items:center;
}

.whyspc-media img{
  border-radius:22px;
  box-shadow:var(--shadow-medium);
}

.whyspc-title{
  font-size:30px;
  margin-bottom:16px;
  letter-spacing:-.3px;
}

.whyspc-lead{
  color:var(--muted);
  line-height:1.7;
  margin-bottom:20px;
}

.whyspc-pills{
  display:grid;
  gap:12px;
  margin-bottom:22px;
}

.whyspc-pill{
  display:flex;
  align-items:center;
  gap:10px;
  background:#fff;
  padding:12px 16px;
  border-radius:16px;
  border:1px solid var(--line);
  font-size:14px;
}

.whyspc-pill .dot{
  width:28px;
  height:28px;
  border-radius:50%;
  background:var(--brand);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  font-weight:600;
}

.whyspc-note{
  font-size:14px;
  color:var(--muted);
  line-height:1.7;
  margin-bottom:20px;
}

.whyspc-cta{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

/* ===============================
   SERIES SECTION
=============================== */

.series-card{
  transition:.25s ease;
}

.series-card:hover{
  transform:translateY(-8px);
  box-shadow:var(--shadow-medium);
}

.series-media{
  padding:18px;
  background:#fafafa;
  border-bottom:1px solid var(--line);
}

.series-square{
  aspect-ratio:1/1;
  display:flex;
  align-items:center;
  justify-content:center;
}

.series-square img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}

.series-card h3{
  font-size:20px;
  margin-bottom:6px;
}

/* ===============================
   SERVICE SPLIT PANEL
=============================== */

.split{
  margin-top:36px;
  gap:26px;
}

/* ===============================
   RESPONSIVE
=============================== */

@media (max-width: 980px){

  .why-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .whyspc-grid{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:42px;
  }

}

@media (max-width: 720px){

  .hero-features{
    grid-template-columns:1fr;
  }

  .why-grid{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:34px;
  }

  .whyspc{
    padding:28px;
  }

}

/* ===============================
   SERIES SECTION (Homepage)
=============================== */

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

.series-card{
  display:block;
  background:#fff;
  border-radius:28px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
  text-decoration:none;
  color:inherit;
  transition:.3s ease;
}

.series-card:hover{
  transform:translateY(-10px);
  box-shadow:var(--shadow-medium);
}

.series-image{
  padding:24px;
  background:linear-gradient(180deg,#ffffff,#f7f7f7);
  border-bottom:1px solid var(--line);
}

.series-image img{
  width:100%;
  object-fit:contain;
}

.series-body{
  padding:24px;
}

.series-body h3{
  font-size:22px;
  font-weight:600;
  margin-bottom:8px;
}

.series-body p{
  font-size:14px;
  color:var(--muted);
  margin-bottom:14px;
}

.series-tags{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

@media (max-width: 1000px){
  .series-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width: 720px){
  .series-grid{
    grid-template-columns:1fr;
  }
}


