/* ================================================================
   Yuva Tools — Homepage CSS
   ================================================================ */

/* ── Wrapper ───────────────────────────────────────────────────── */
.yt-home-wrap {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  max-width: 960px;
  margin: 0 auto;
  color: #1a1a1a;
}

/* ── Hero Section ──────────────────────────────────────────────── */
.yt-hero {
  text-align: center;
  padding: 48px 24px 40px;
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 50%, #2563eb 100%);
  border-radius: 16px;
  margin-bottom: 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.yt-hero::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}

.yt-hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -30px;
  width: 260px; height: 260px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}

.yt-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: .3px;
}

.yt-hero-title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.yt-hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,.88);
  max-width: 640px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}

.yt-hero-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.yt-hero-stat {
  padding: 12px 28px;
  border-right: 1px solid rgba(255,255,255,.2);
}

.yt-hero-stat:last-child { border-right: none; }

.yt-hero-stat span {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.yt-hero-stat small {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.7);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

@media (max-width: 600px) {
  .yt-hero-title { font-size: 24px; }
  .yt-hero { padding: 32px 16px 28px; }
  .yt-hero-stat { padding: 10px 16px; }
  .yt-hero-stat span { font-size: 22px; }
}

/* ── Section Label ─────────────────────────────────────────────── */
.yt-section-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #2563eb;
  margin-bottom: 16px;
}

.yt-section-heading {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 24px;
  line-height: 1.3;
}

/* ── Tools Grid ────────────────────────────────────────────────── */
.yt-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 56px;
}

/* ── Tool Card ─────────────────────────────────────────────────── */
.yt-tool-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 16px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: border-color .2s, box-shadow .2s, transform .15s;
  position: relative;
  overflow: hidden;
}

.yt-tool-card:hover {
  border-color: #2563eb;
  box-shadow: 0 4px 20px rgba(37,99,235,.12);
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}

.yt-tool-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: #2563eb;
  opacity: 0;
  transition: opacity .2s;
}

.yt-tool-card:hover::before { opacity: 1; }

.yt-tc-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.yt-tc-body { flex: 1; min-width: 0; }

.yt-tc-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 6px;
  line-height: 1.3;
}

.yt-tc-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.55;
  margin: 0 0 10px;
}

.yt-tc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.yt-tc-tags span {
  font-size: 11px;
  background: #f0f4ff;
  color: #2563eb;
  border-radius: 4px;
  padding: 2px 7px;
  font-weight: 500;
}

.yt-tc-arrow {
  font-size: 18px;
  color: #c0c0c0;
  align-self: center;
  transition: color .2s, transform .2s;
}

.yt-tool-card:hover .yt-tc-arrow {
  color: #2563eb;
  transform: translateX(3px);
}

/* ── How It Works ──────────────────────────────────────────────── */
.yt-how-section {
  background: #f8faff;
  border-radius: 16px;
  padding: 36px 32px;
  margin-bottom: 48px;
  border: 1px solid #e0e8ff;
}

.yt-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.yt-step {
  text-align: center;
}

.yt-step-num {
  width: 48px;
  height: 48px;
  background: #2563eb;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 14px;
}

.yt-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 8px;
}

.yt-step p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 600px) {
  .yt-how-section { padding: 24px 16px; }
}

/* ── Exam Coverage ─────────────────────────────────────────────── */
.yt-exam-section {
  margin-bottom: 48px;
}

.yt-exam-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}

.yt-exam-pill {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 10px 14px;
  transition: box-shadow .15s;
}

.yt-exam-pill:hover {
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
}

.yt-exam-pill strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 2px;
}

.yt-exam-pill span {
  font-size: 12px;
  color: #777;
}

/* ── Why Yuva Tools ────────────────────────────────────────────── */
.yt-why-section {
  margin-bottom: 48px;
}

.yt-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.yt-why-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 22px 20px;
  transition: box-shadow .2s, border-color .2s;
}

.yt-why-card:hover {
  border-color: #93c5fd;
  box-shadow: 0 4px 16px rgba(37,99,235,.08);
}

.yt-why-icon {
  font-size: 32px;
  margin-bottom: 12px;
  line-height: 1;
}

.yt-why-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 8px;
}

.yt-why-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* ── Home SEO Content ──────────────────────────────────────────── */
.yt-home-content {
  border-top: 1px solid #e8e8e8;
  padding-top: 40px;
  margin-bottom: 32px;
}

.yt-home-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 14px;
  line-height: 1.35;
}

.yt-home-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1e3a5f;
  margin: 28px 0 10px;
}

.yt-home-content p {
  font-size: 15px;
  color: #374151;
  line-height: 1.75;
  margin: 0 0 14px;
}

.yt-home-content a {
  color: #2563eb;
  font-weight: 500;
  text-decoration: none;
}

.yt-home-content a:hover { text-decoration: underline; }

/* reuse .yt-faq from main CSS */
