/* ============================================================
   HOME PAGE — Specific Styles
   ============================================================ */

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: 160px;
  padding-bottom: 140px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 163, 224, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-left .badge { margin-bottom: 28px; }

.hero-title {
  font-family: 'Plus Jakarta Sans', var(--font-sans);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 24px;
}

.accent-text { color: var(--accent-blue); }

.hero-subtitle {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 60%;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Dashboard Card */
.dashboard-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.dashboard-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 16px;
  background: #F8FAFC;
  border-bottom: 1px solid var(--border-light);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot.green { background: #22c55e; }
.dot.amber { background: #f59e0b; }
.dot.red { background: #ef4444; }

.dashboard-title {
  margin-left: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}

.dashboard-body { padding: 28px; }

.metric-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.metric-label {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

.metric-value {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-blue);
}

.metric-bar {
  height: 6px;
  background: var(--border-light);
  border-radius: 999px;
  margin: 20px 0 8px;
  overflow: hidden;
}

.metric-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-blue), #38bdf8);
  border-radius: 999px;
}

.metric-footnote {
  font-size: 12px;
  color: var(--text-secondary);
  text-align: right;
}

.divider {
  height: 1px;
  background: var(--border-light);
  margin: 24px 0;
}

.highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
}

.highlight-icon {
  width: 18px;
  height: 18px;
  color: var(--accent-blue);
  flex-shrink: 0;
}

/* Bottom curve */
.hero-bottom-curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--base-light);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: scaleX(1.5);
}

/* ---------- Metrics Strip ---------- */
.metrics-section {
  background: var(--base-light);
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.metric-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.metric-card:hover {
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.metrics-more {
  text-align: center;
  margin-top: 32px;
}

.case-studies-link {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--accent-blue);
  text-decoration: none;
  transition: color 0.2s ease, text-decoration 0.2s ease;
}

.case-studies-link:hover {
  color: #0091c9;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.metric-number {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-blue);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.metric-tag {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ---------- Market Opportunity ---------- */
.market-section {
  background: var(--base-light);
  padding: 80px 0 100px;
}

.market-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.market-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-big-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-md);
}

.stat-big-number {
  font-family: var(--font-mono);
  font-size: 64px;
  font-weight: 800;
  color: var(--accent-blue);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.stat-big-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--brand-navy);
  margin-bottom: 8px;
}

.stat-big-note {
  font-size: 12px;
  color: var(--text-secondary);
}

.stat-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-mini {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-mini-num {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-blue);
  line-height: 1;
}

.stat-mini-label {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ---------- Advantage ---------- */
.advantage-section {
  background: var(--base-light);
  padding: 80px 0 120px;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.advantage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.advantage-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.advantage-card:hover {
  border-color: var(--accent-blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.advantage-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(0, 163, 224, 0.1);
  color: var(--accent-blue);
  margin-bottom: 28px;
}

.advantage-icon svg {
  width: 28px;
  height: 28px;
}

.advantage-title {
  font-family: 'Plus Jakarta Sans', var(--font-sans);
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.advantage-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 163, 224, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.cta-banner-text h2 {
  font-family: 'Plus Jakarta Sans', var(--font-sans);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.cta-banner-text p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
}

/* ============================================================
   RESPONSIVE — Tablet & Mobile (Home)
   ============================================================ */

@media (max-width: 1024px) {
  .hero-title { font-size: 44px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { max-width: 540px; }
  .hero-left { max-width: 640px; }

  .market-inner { grid-template-columns: 1fr; gap: 56px; }
  .market-right { max-width: 540px; }

  .cta-banner-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 120px;
    padding-bottom: 100px;
  }

  .hero-title { font-size: 34px; }
  .hero-subtitle { font-size: 16px; margin-bottom: 32px; max-width: 90%; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }

  .dashboard-body { padding: 20px; }
  .metric-number { font-size: 16px; }

  .metrics-grid { grid-template-columns: 1fr; gap: 16px; }
  .metric-number { font-size: 40px; }

  .market-section { padding: 56px 0; }
  .stat-big-card { padding: 32px 24px; }
  .stat-big-number { font-size: 48px; }
  .stat-stack { grid-template-columns: 1fr; gap: 12px; }

  .advantage-section { padding: 56px 0 80px; }
  .advantage-grid { grid-template-columns: 1fr; gap: 20px; }
  .advantage-card { padding: 32px 28px; }
  .advantage-title { font-size: 20px; }

  .section-head { margin-bottom: 40px; }

  .cta-banner { padding: 56px 0; }
  .cta-banner-text h2 { font-size: 24px; }
  .cta-banner-text p { font-size: 15px; }
  .cta-banner .btn { width: 100%; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 30px; }
}
