/* =========================
   MIRAKURU - top.css (TOP ONLY)
   ========================= */

/* ---------- Hero ---------- */
.hero{ position:relative; }
.hero img{ width:100%; height:420px; object-fit:cover; }
.hero .overlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.10));
}
.hero .copy{
  position:absolute;
  left:50%;
  top:55%;
  transform:translate(-50%,-50%);
  width:var(--container);
  color:#fff;
}
.hero h1{
  margin:0 0 10px;
  font-size:clamp(28px, 3.1vw, 44px);
  line-height:1.12;
  font-weight:1000;
  letter-spacing:.03em;
}
.hero p{
  margin:0;
  max-width:72ch;
  line-height:1.85;
  color:#e5e7eb;
}
.ctaRow{
  margin-top:16px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* ---------- Hero Search (big) ---------- */
.heroSearch{
  padding: 18px 0 10px;
  background:#eff6fa;
}
.bigSearchWrap{
  width:var(--container);
  margin:0 auto;
  position:relative;
}
.bigSearch{
  display:flex;
  align-items:center;
  gap:10px;
  border-radius:999px;
  padding:14px 14px;
  background:#ffffff;
  border:1px solid rgba(15,23,42,.10);
  box-shadow:
    0 18px 50px rgba(15,23,42,.12),
    0 4px 16px rgba(15,23,42,.08);
}
.bigSearch input{
  border:0;
  outline:0;
  flex:1;
  font-size:16px;
  min-width:160px;
}
.bigSearch button{
  border:0;
  cursor:pointer;
  padding:10px 14px;
  border-radius:999px;
  background:var(--pri);
  color:#fff;
  font-weight:1000;
  letter-spacing:.02em;
}
.bigSearch button:hover{ filter:brightness(0.96); }

.bigSg{
  position:absolute;
  top:66px;
  left:0;
  width:min(720px, 92vw);
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius:16px;
  overflow:hidden;
  display:none;
  box-shadow: 0 26px 70px rgba(15,23,42,.16);
}
.bigSg a{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:12px 14px;
  border-bottom:1px solid rgba(15,23,42,.06);
}
.bigSg a:last-child{ border-bottom:none; }
.bigSg a:hover{ background:#f8fafc; }

/* ---------- Main wrapper (TOP) ---------- */
.main{ width:var(--container); margin: 22px auto 70px; }
.section{
  padding: 22px 0;
  border-top:1px solid rgba(15,23,42,.06);
}
.section:first-child{ border-top:none; }
.section h2{
  margin:0 0 10px;
  font-size:18px;
  font-weight:1000;
  letter-spacing:.03em;
}
.section p{
  margin:0 0 12px;
  color:var(--sub);
  font-size:14px;
  line-height:1.85;
}
.list a{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  padding:12px 6px;
  border-bottom:1px solid rgba(15,23,42,.08);
}
.list a:last-child{ border-bottom:none; }
.list strong{ font-weight:1000; }
.list .desc{
  color:var(--sub);
  font-size:13px;
  line-height:1.6;
  margin-top:4px;
}
.chev{
  width:34px;
  height:34px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  display:grid;
  place-items:center;
  font-weight:1000;
  color:rgba(15,23,42,.65);
  flex-shrink:0;
}
.list a:hover{ background:#f8fafc; }
.list a:hover .chev{
  border-color:rgba(37, 83, 235, 0.25);
  color:#1d74d8;
}

/* ---------- Reasons ---------- */
.reason{
  padding: 140px 0 110px;
  background: linear-gradient(180deg,#fff 0%, #f7f9fc 45%, #fff 100%);
}
.reasonTitle{
  text-align:center;
  margin:0 0 90px;
  font-size:30px;
  font-weight:1000;
  letter-spacing:.08em;
}
.reasonTitle::after{
  content:"";
  display:block;
  width:64px;
  height:3px;
  margin:18px auto 0;
  border-radius:999px;
  background:var(--pri);
  opacity:.9;
}
.reasonGrid{
  display:grid;
  justify-content:center;
  grid-template-columns: repeat(3, 300px);
  gap:56px;
}
.reasonItem{
  width:300px;
  padding:56px 36px 52px;
  min-height:360px;
  border-radius:0;
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  box-shadow:
    0 32px 90px rgba(15,23,42,.12),
    0 10px 26px rgba(15,23,42,.08);
  position:relative;
  overflow:hidden;
}
.reasonItem::before{
  content:"";
  position:absolute;
  left:36px; right:36px; top:24px;
  height:2px;
  background:#2563eb;
}
.reasonItem .num{
  margin-top:30px;
  font-size:72px;
  font-weight:1000;
  line-height:1;
  background: linear-gradient(180deg,#2563eb 0%,#60a5fa 45%,rgba(37,99,235,.15) 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  letter-spacing: .02em;
}
.reasonItem h3{ margin:18px 0 14px; font-size:19px; font-weight:1000; }
.reasonItem p{ margin:0; font-size:14px; line-height:2.1; color:var(--sub); }

@media (max-width: 680px){
  .reason{ padding: 90px 0 70px; }
  .reasonTitle{ margin-bottom: 50px; font-size:26px; }
  .reasonGrid{ grid-template-columns: 1fr; justify-content:stretch; gap:28px; }
  .reasonItem{
    width: min(520px, 92vw);
    margin: 0 auto;
    padding: 40px 22px 38px;
    min-height:auto;
  }
  .reasonItem::before{ left:22px; right:22px; top:18px; }
  .reasonItem .num{ font-size:64px; }
}
