/* =========================================================
   HOMEPAGE – PREMIUM ENTERPRISE DESIGN
   ========================================================= */

/* Keep container alignment EXACTLY same */
.container {
  max-width: 100%;
  padding-left: clamp(24px, 4vw, 64px);
  padding-right: clamp(24px, 4vw, 64px);
}

/* =========================================================
   HERO SECTION
   ========================================================= */

.hero {
  position: relative;
  padding: 60px 0 100px;
  background:
    radial-gradient(circle at 15% 20%, #eef2ff 0%, transparent 50%),
    radial-gradient(circle at 85% 75%, #e0e7ff 0%, transparent 45%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: #6366f1;
  opacity: 0.08;
  filter: blur(140px);
  border-radius: 50%;
}

.hero-inner {
  display: grid;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 980px) {
  .hero-inner {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6366f1;
}

.hero-kicker .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6366f1;
}

.hero h1 {
  font-size: 52px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 28px 0;
  max-width: 16ch;
}

.hero p {
  font-size: 19px;
  line-height: 1.75;
  color: #4b5563;
  max-width: 60ch;
}

.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero .btn-primary {
  padding: 14px 28px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(99,102,241,0.25);
}

.hero-stats {
  margin-top: 60px;
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.stat strong {
  font-size: 22px;
  font-weight: 800;
  display: block;
}

.stat span {
  font-size: 14px;
  color: #6b7280;
}

/* Glass Inquiry Panel */

.hero-panel {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  padding: 42px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 30px 60px rgba(17, 24, 39, 0.12);
  transition: transform 0.3s ease;
}

.hero-panel:hover {
  transform: translateY(-4px);
}

/* =========================================================
   FEATURED REPORTS SECTION (Homepage)
   Professional • Modern • Research-grade
   ========================================================= */

.featured-reports {
  padding: var(--space-8) 0;
  background: linear-gradient(
    to bottom,
    var(--color-bg-soft) 0%,
    #ffffff 100%
  );
}

/* ---------- Section Header ---------- */

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-5);
  margin-bottom: var(--space-7);
}

.section-head {
  display: grid;
  gap: var(--space-3);
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.section-head h2 {
  margin: 0;
  letter-spacing: -0.01em;
}

.section-head p {
  margin: 0;
  max-width: 65ch;
  color: var(--color-text-muted);
}

.section-link {
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
  white-space: nowrap;
}

.section-link:hover {
  text-decoration: underline;
}

/* =========================================================
   Report Grid for all
   ========================================================= */

.reports-grid {
  display: grid;
  gap: var(--space-6);
}

@media (min-width: 720px) {
  .reports-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .reports-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.featured-reports .card {
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: var(--border-width) solid #dfe3ea;
  background: #ffffff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-reports .card-hover:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Meta (category + year) */
.featured-reports .card-meta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-3);

  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* Accent dot */
.featured-reports .card-meta::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1f3a8a; /* calm primary */
}

/* Title */
.featured-reports .card-title {
  font-size: 1.125rem;
  line-height: 1.4;
  margin-bottom: var(--space-3);
  color: var(--color-text-primary);
}

/* Content */
.featured-reports .card-content p {
  font-size: 0.85rem;
  line-height: 1.25;
  color: var(--color-text-body);
  margin-bottom: 0;
}

/* Actions separator */
.featured-reports .card-actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;

  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: var(--border-width) solid var(--color-border);
}

/* Softer secondary button inside cards */
.featured-reports .btn-secondary {
  background: var(--color-bg-soft);
}

/* =========================================================
   INDUSTRIES
   ========================================================= */

.industries {
  padding: 60px 0;
  background: #f9fafb;
}

.industries-grid {
  display: grid;
  gap: 36px;
}

@media (min-width: 640px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.industry-item {
  padding: 32px;
  border-radius: 18px;
  border: 1px solid #eef2f7;
  background: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.industry-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(17, 24, 39, 0.08);
}

.industry-item h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #111827;
}

.industry-item span {
  font-size: 14px;
  color: #6b7280;
}

/* =========================================================
   TRUST SECTION
   ========================================================= */

.trust {
  padding: 60px 0;
  background: #ffffff;
}

.metrics-grid {
  display: grid;
  gap: 36px;
}

@media (min-width: 640px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .metrics-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.metric {
  padding: 40px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #eef2f7;
  transition: 0.3s ease;
}

.metric:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(17, 24, 39, 0.1);
}

.metric strong {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 8px;
  display: block;
}

.metric span {
  font-size: 15px;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.metric p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* =========================================================
   FINAL CTA
   ========================================================= */

.final-cta {
  padding: 60px 0;
}

.final-cta-panel {
  background: linear-gradient(135deg, #1f3a8a, #2563eb);
  color: #ffffff;
  border-radius: 24px;
  padding: 70px;
  display: grid;
  gap: 40px;
}

@media (min-width: 900px) {
  .final-cta-panel {
    grid-template-columns: 1.6fr 0.6fr;
    align-items: center;
  }
}

.final-cta h2 {
  font-size: 36px;
  font-weight: 800;
  margin: 0;
}

.final-cta p {
  margin-top: 16px;
  font-size: 17px;
  color: rgba(255,255,255,0.85);
}

.final-cta-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.final-cta .btn-primary {
  background: #ffffff;
  color: #1f3a8a;
  font-weight: 700;
}

.final-cta-link {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

.final-cta-link:hover {
  text-decoration: underline;
}
