/* ==========================================================================
   home.css — home page only
   ========================================================================== */

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--c-primary) 0%, #1e40af 100%);
  color: #fff;
  padding: var(--s-24) 0;
  overflow: hidden;
}
.hero h1 { color: #fff; font-size: clamp(2.5rem, 5vw, 3.75rem); margin-bottom: var(--s-4); }
.hero__sub { font-size: 1.25rem; color: #dbeafe; margin-bottom: var(--s-3); font-weight: 500; }
.hero__lead { font-size: 1.05rem; color: #eff6ff; max-width: 720px; line-height: 1.7; }
.hero__cta { margin-top: var(--s-8); display: flex; flex-wrap: wrap; gap: var(--s-3); }
.hero__cta .btn--outline { color: #fff; border-color: #fff; }
.hero__cta .btn--outline:hover { background: #fff; color: var(--c-primary); }

/* Section: Services preview */
.svc-preview__grid { margin-top: var(--s-8); }
.svc-preview__card { text-align: left; }
.svc-preview__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-primary-light);
  color: var(--c-primary);
  margin-bottom: var(--s-3);
  font-size: 1.5rem;
  font-weight: 700;
}

/* Section: CV downloads */
.cv {
  display: grid;
  gap: var(--s-6);
  grid-template-columns: 1fr;
  margin-top: var(--s-8);
}
@media (min-width: 700px) {
  .cv { grid-template-columns: 1fr 1fr; }
}
.cv__card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: var(--s-8);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
}
.cv__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--c-primary-light);
  color: var(--c-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}
.cv__title { margin: 0; }
.cv__desc { color: var(--c-text-soft); font-size: 0.95rem; }

/* Section: Showcase teaser */
.showcase-teaser { margin-top: var(--s-8); }
.showcase-teaser__cta { text-align: center; margin-top: var(--s-8); }
