/* ===== HOME PAGE ===== */

/* HERO */
.hero {
  padding: 130px 0 100px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,255,255,0.025) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner { max-width: 700px; position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  width: 18px; height: 1px; background: var(--text-dim);
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -0.03em;
  color: var(--text); margin-bottom: 24px;
}

.hero-title em {
  font-style: normal;
  color: var(--text-sub);
}

.hero-sub {
  font-size: 1rem; color: var(--text-sub);
  line-height: 1.78; margin-bottom: 40px; max-width: 480px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-scroll-hint {
  display: flex; align-items: center; gap: 8px;
  margin-top: 64px;
  font-size: 0.75rem; color: var(--text-dim); letter-spacing: 0.06em;
}
.hero-scroll-line {
  width: 32px; height: 1px; background: var(--border-light);
}

/* SERVICES PREVIEW */
.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 28px;
}

.sp-card {
  padding: 28px 24px;
  background: var(--bg-card);
  border-radius: 0;
  border: none;
  transition: var(--transition);
}
.sp-card:hover {
  background: var(--bg-elevated);
  transform: none;
  box-shadow: none;
}

.sp-icon {
  width: 38px; height: 38px;
  background: var(--bg-hover);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-sub); margin-bottom: 18px;
  transition: var(--transition);
}
.sp-card:hover .sp-icon { border-color: #3a3a3a; color: var(--text); }

.sp-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem; font-weight: 600; letter-spacing: -0.01em;
  color: var(--text); margin-bottom: 8px;
}

.sp-card p {
  font-size: 0.84rem; color: var(--text-sub); line-height: 1.65;
}

.section-more { margin-top: 4px; }

/* STATS */
.stats-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 6px;
  transition: var(--transition);
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child  { border-right: none; }
.stat-item:hover { background: var(--bg-card); }

.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.6rem; font-weight: 800; color: var(--text);
  line-height: 1; letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.8rem; color: var(--text-dim); font-weight: 500;
  letter-spacing: 0.02em;
}

/* PARTNERS */
.partners-section {
  border-top: 1px solid var(--border);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.partner-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.partner-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.partner-logo {
  width: 64px; height: 64px;
  background: var(--bg-hover);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
  transition: var(--transition);
}
.partner-card:hover .partner-logo { border-color: #3a3a3a; }

.partner-logo img {
  width: 100%; height: 100%;
  object-fit: contain; padding: 10px;
}

.partner-badge {
  font-size: 0.6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-dim);
  border: 1px solid var(--border);
  border-radius: 4px; padding: 3px 8px;
  white-space: nowrap;
  align-self: flex-start;
}

.partner-body {
  flex: 1;
}

.partner-body h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: -0.02em;
  color: var(--text); margin-bottom: 8px;
}

.partner-body p {
  font-size: 0.82rem; color: var(--text-sub); line-height: 1.62;
}

.partner-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.partner-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 500;
}

.status-dot {
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(74,222,128,0.5);
}

.partner-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.78rem; font-weight: 600;
  color: var(--text-dim); text-decoration: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  transition: var(--transition);
}
.partner-link:hover {
  color: var(--text); border-color: var(--border-light);
  background: var(--bg-hover);
}

.partners-cta {
  text-align: center;
  margin-top: 36px;
  font-size: 0.88rem;
  color: var(--text-dim);
}
.partners-cta a {
  color: var(--text-sub); text-decoration: none;
  font-weight: 600; transition: color 0.2s;
}
.partners-cta a:hover { color: var(--text); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 36px 0; }
  .stat-item:last-child { border-bottom: none; }
  .stat-item:first-child { padding-left: 0; }
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .services-preview-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 28px 0; }
  .partners-grid { grid-template-columns: 1fr; }
  .hero { padding: 88px 0 72px; }
  .hero-scroll-hint { display: none; }
}
