/*
 * home.css — Homepage-specific section styles
 * Fietsdirectservice.nl — Mechanical Atelier Design System
 *
 * Each homepage section has its own clearly scoped block.
 * Sections use tonal background shifts instead of borders.
 */

/* ================================================================== */
/*  HERO                                                               */
/* ================================================================== */

.hero {
  position: relative;
  min-height: calc(100vh - 4.5rem);
  display: flex;
  align-items: center;
  padding-top: calc(4.5rem + var(--space-4xl));
  padding-bottom: var(--space-4xl);
  background: var(--surface-bright);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.hero__eyebrow {
  padding: 0.375rem 1rem;
  background: var(--color-accent-subtle);
  border-radius: var(--radius-md);
  width: fit-content;
}

.hero__heading {
  font-size: var(--text-display);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.hero__heading em {
  color: var(--color-accent);
  font-style: italic;
}

.hero__text {
  font-size: var(--text-body-lg);
  max-width: 42ch;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  padding-top: var(--space-sm);
}

.hero__trust {
  display: flex;
  gap: var(--space-2xl);
  padding-top: var(--space-xl);
  margin-top: var(--space-md);
  border-top: 1px solid var(--ghost-border);
}

.hero__trust-item {
  display: flex;
  flex-direction: column;
}

.hero__trust-number {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: var(--text-h3);
  color: var(--text-primary);
}

.hero__trust-label {
  font-size: var(--text-label);
  color: var(--text-subtle);
}

.hero__visual {
  position: relative;
  z-index: 1;
}

.hero__image-wrapper {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  transform: translateX(2rem);
}

.hero__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image-glow {
  position: absolute;
  top: -20%;
  right: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(235, 94, 40, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* ================================================================== */
/*  TRUST STRIP                                                        */
/* ================================================================== */

.trust-strip {
  background: var(--surface-container-low);
  padding: var(--space-2xl) 0;
}

.trust-strip__grid {
  display: flex;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

/* ================================================================== */
/*  HOE HET WERKT (Process)                                            */
/* ================================================================== */

.process {
  background: var(--surface-bright);
  padding: var(--space-section) 0;
}

.process__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.process__header h2 {
  margin-bottom: var(--space-md);
}

.process__header p {
  margin-inline: auto;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  position: relative;
}

.process__line {
  position: absolute;
  top: 3rem;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--surface-container-high);
  z-index: 0;
}

.process__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process__step-number {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: var(--surface-container-highest);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  position: relative;
  transition:
    background-color var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
}

.process__step:hover .process__step-number {
  background: var(--color-accent-subtle);
  box-shadow: 0 8px 32px rgba(235, 94, 40, 0.1);
}

.process__step-number .material-symbols-outlined {
  font-size: 1.75rem;
  color: var(--color-accent);
}

.process__step-label {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: var(--text-eyebrow);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.process__step h3 {
  margin-bottom: var(--space-sm);
}

.process__step p {
  font-size: var(--text-small);
  max-width: 22ch;
  margin-inline: auto;
}

/* ================================================================== */
/*  DIENSTEN (Services)                                                */
/* ================================================================== */

.services {
  background: var(--surface-container-low);
  padding: var(--space-section) 0;
}

.services__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-3xl);
  gap: var(--space-xl);
}

.services__header h2 {
  margin-bottom: var(--space-sm);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

/* ================================================================== */
/*  WAAROM FIETSDIRECT (Why us)                                        */
/* ================================================================== */

.why-us {
  background: var(--surface-bright);
  padding: var(--space-section) 0;
}

.why-us__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.why-us__visual {
  position: relative;
}

.why-us__image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.why-us__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-us__badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
}

.why-us__content h2 {
  margin-bottom: var(--space-2xl);
}

.why-us__points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

.why-us__point {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.why-us__point-icon {
  font-size: 1.75rem;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.why-us__point h4 {
  font-size: var(--text-h4);
}

.why-us__point p {
  font-size: var(--text-small);
}

/* ================================================================== */
/*  DOELGROEPEN (Audience)                                             */
/* ================================================================== */

.audience {
  background: var(--surface-container-low);
  padding: var(--space-section) 0;
}

.audience__header {
  margin-bottom: var(--space-3xl);
}

.audience__header h2 {
  margin-bottom: var(--space-sm);
}

.audience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

/* ================================================================== */
/*  SERVICEGEBIED (Coverage)                                           */
/* ================================================================== */

.coverage {
  background: var(--surface-bright);
  padding: var(--space-section) 0;
}

.coverage__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  align-items: center;
}

.coverage__content h2 {
  margin-bottom: var(--space-xl);
}

.coverage__text {
  font-size: var(--text-body-lg);
  margin-bottom: var(--space-2xl);
}

.coverage__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.coverage__city {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: var(--text-body-lg);
  color: var(--text-primary);
  padding-bottom: var(--space-md);
  position: relative;
}

.coverage__city::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 2.5rem;
  right: 0;
  height: 1px;
  background: var(--surface-container-high);
}

.coverage__city:last-child::after {
  display: none;
}

.coverage__city .material-symbols-outlined {
  color: var(--color-accent);
  font-size: 1.25rem;
}

.coverage__visual {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  position: relative;
}

.coverage__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coverage__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 36, 34, 0.05) 0%, rgba(235, 94, 40, 0.08) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* ================================================================== */
/*  REVIEWS                                                            */
/* ================================================================== */

.reviews {
  background: var(--surface-container-low);
  padding: var(--space-section) 0;
}

.reviews__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.reviews__header h2 {
  margin-bottom: var(--space-sm);
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

/* ================================================================== */
/*  FAQ                                                                */
/* ================================================================== */

.faq {
  background: var(--surface-bright);
  padding: var(--space-section) 0;
}

.faq__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.faq__header h2 {
  margin-bottom: var(--space-sm);
}

/* ================================================================== */
/*  FINAL CTA                                                          */
/* ================================================================== */

.final-cta {
  background: var(--color-primary-dark);
  padding: var(--space-section) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(235, 94, 40, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta__content {
  position: relative;
  z-index: 1;
}

.final-cta h2 {
  color: var(--text-inverse);
  font-size: var(--text-h1);
  margin-bottom: var(--space-lg);
  max-width: 20ch;
  margin-inline: auto;
}

.final-cta p {
  color: var(--color-muted);
  font-size: var(--text-body-lg);
  max-width: 50ch;
  margin-inline: auto;
  margin-bottom: var(--space-2xl);
}

.final-cta .btn--primary {
  font-size: var(--text-body-lg);
  padding: 1.25rem 2.75rem;
}

/* ================================================================== */
/*  SECTION UTILITIES                                                  */
/* ================================================================== */

.section-header--left {
  text-align: left;
}

.section-header--left h2 {
  margin-bottom: var(--space-sm);
}
