/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  background: linear-gradient(140deg, var(--ci-color-1) 0%, rgba(77, 149, 168, 0.1) 45%, #f8fafd 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(77, 149, 168, 0.07) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(77, 149, 168, 0.08) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-in {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent);
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

.badge svg { width: 14px; height: 14px; }

.hero h1 {
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}

.hero h1 em { font-style: normal; color: var(--accent); }

.hero-sub {
  font-size: 19px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-btns .btn-p { padding: 16px 28px; font-size: 17px; }
.hero-btns .btn-o { padding: 16px 28px; font-size: 17px; }

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.hs strong {
  display: block;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hs span { font-size: 13px; color: var(--muted); }

.hero-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.16);
}

.hero-img-wrap img { width: 100%; height: 500px; object-fit: cover; }

/* TRUST */
.trust {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 18px 24px;
}

.trust-in {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.ti {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}

.ti svg { color: var(--green); width: 17px; height: 17px; flex-shrink: 0; }

/* SERVICE GRID */
.sg { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* STEPS */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 35px;
  left: calc(50% / 3 + 36px);
  right: calc(50% / 3 + 36px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--green) 100%);
  z-index: 0;
}

.step { text-align: center; position: relative; z-index: 1; }

.step-n {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 28px var(--accent-shadow);
}

.step h3 { font-size: 19px; font-weight: 600; margin-bottom: 12px; }
.step p { color: var(--muted); font-size: 15px; line-height: 1.65; }

/* SUBSIDY CARDS (dark section) */
.sub-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.sec-dark .sub-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(77, 149, 168, 0.2);
  border-radius: var(--r);
  padding: 28px 24px;
  backdrop-filter: blur(10px);
}

.sec-dark .sub-amt {
  font-size: 30px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.sec-dark .sub-lbl {
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.5;
}

/* REGIONS */
.reg-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }

.reg-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 28px 16px;
  text-align: center;
  transition: all 0.2s;
  color: var(--text);
  text-decoration: none;
  display: block;
}

.reg-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px var(--accent-shadow-sm);
  transform: translateY(-3px);
}

.reg-card svg { width: 30px; height: 30px; color: var(--accent); margin: 0 auto 12px; }
.reg-card strong { display: block; font-size: 15px; font-weight: 600; }

/* HOME RESPONSIVE */
@media (max-width: 1024px) {
  .sg { grid-template-columns: repeat(2, 1fr); }
  .sub-grid { grid-template-columns: repeat(2, 1fr); }
  .reg-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .hero-in { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .hero-img-wrap { order: -1; }
  .hero-img-wrap img { height: 280px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .steps::before { display: none; }
  .sg { grid-template-columns: 1fr; }
  .sub-grid { grid-template-columns: 1fr 1fr; }
  .reg-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 36px; }
}

@media (max-width: 480px) {
  .sub-grid, .reg-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-p, .hero-btns .btn-o { justify-content: center; }
}
