/* ===== SECTIONS — Phase 04A: hero, about preview ===== */
/* Later phases append their section rules to this file. */

.wdf-hero {
  position: relative;
  background: var(--wdf-navy);
  color: #fff;
  overflow: hidden;
}
.wdf-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: var(--wdf-space-6);
  padding-block: var(--wdf-space-9) var(--wdf-space-8);
  position: relative;
  z-index: 2;
}
.wdf-hero__kicker { color: #8fc4ea; font-weight: 700; font-size: 15px; margin-bottom: var(--wdf-space-3); }
.wdf-hero__title { color: #fff; font-size: 44px; margin-bottom: var(--wdf-space-3); }
.wdf-hero__text { color: #b9cfe0; font-size: 17px; max-width: 460px; margin-bottom: var(--wdf-space-6); }
.wdf-hero__actions { display: flex; gap: var(--wdf-space-3); flex-wrap: wrap; }

.wdf-hero__visual {
  position: relative;
  min-height: 320px;
  border-radius: var(--wdf-radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, var(--wdf-blue) 0%, var(--wdf-blue-dark) 100%);
}
.wdf-hero__image { width: 100%; height: 100%; object-fit: cover; }

.wdf-hero__swoosh { line-height: 0; }
.wdf-hero__swoosh svg { width: 100%; height: 46px; display: block; }

/* about preview */
.wdf-about-preview { padding-block: var(--wdf-section-pad); background: var(--wdf-sky); }
.wdf-about-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--wdf-space-8);
  align-items: start;
}
.wdf-about-preview__values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--wdf-space-4);
}

@media (max-width: 900px) {
  .wdf-hero__inner { grid-template-columns: 1fr; padding-block: var(--wdf-space-7); }
  .wdf-hero__visual { min-height: 200px; order: -1; }
  .wdf-about-preview__grid { grid-template-columns: 1fr; }
}

@media (max-width: 782px) {
  .wdf-about-preview { padding-block: var(--wdf-section-pad-mobile); }
}

/* ===== SECTIONS — Phase 04B: services, recruitment services, packages ===== */

.wdf-section-head { max-width: 640px; margin-bottom: var(--wdf-space-6); }
.wdf-section-desc { font-size: 16px; }

/* services */
.wdf-services { padding-block: var(--wdf-section-pad); background: #fff; }
.wdf-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--wdf-space-5);
}
.wdf-service-card {
  background: #fff;
  border: 1px solid var(--wdf-border);
  border-radius: var(--wdf-radius-md);
  padding: var(--wdf-space-5);
  box-shadow: var(--wdf-shadow);
  transition: box-shadow .25s, transform .25s;
}
.wdf-service-card:hover { box-shadow: var(--wdf-shadow-hover); transform: translateY(-3px); }
.wdf-service-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--wdf-sky-mid);
  color: var(--wdf-blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--wdf-space-4);
}
.wdf-service-card h3 { font-size: 17px; margin-bottom: 8px; }
.wdf-service-card__desc { font-size: 14px; color: var(--wdf-slate); }
.wdf-service-card__desc p { margin: 0; font-size: 14px; }

/* recruitment services — process list */
.wdf-recruitment-services { padding-block: var(--wdf-section-pad); background: var(--wdf-sky); }
.wdf-process-list {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--wdf-space-4);
}
.wdf-process-list__item {
  background: #fff;
  border: 1px solid var(--wdf-border);
  border-radius: var(--wdf-radius-sm);
  padding: var(--wdf-space-4);
  display: flex;
  align-items: center;
  gap: var(--wdf-space-3);
}
.wdf-process-list__num { font-weight: 800; color: var(--wdf-blue); font-size: 14px; font-family: monospace; flex-shrink: 0; }
.wdf-process-list__text { font-size: 14px; font-weight: 600; color: var(--wdf-navy); }

/* packages */
.wdf-packages { padding-block: var(--wdf-section-pad); background: #fff; }
.wdf-packages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--wdf-space-5);
  margin-bottom: var(--wdf-space-8);
}
.wdf-pkg-card {
  background: #fff;
  border: 1px solid var(--wdf-border);
  border-radius: var(--wdf-radius-lg);
  padding: var(--wdf-space-6) var(--wdf-space-5);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--wdf-shadow);
}
.wdf-pkg-card--featured { border: 2px solid var(--wdf-navy); box-shadow: var(--wdf-shadow-hover); }
.wdf-pkg-card__badge {
  position: absolute;
  top: -14px;
  inset-inline-end: var(--wdf-space-5);
  background: var(--wdf-navy);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 999px;
}
.wdf-pkg-card__title { font-size: 20px; margin: 10px 0 4px; }
.wdf-pkg-card__subtitle { font-size: 13px; color: var(--wdf-blue); font-weight: 700; margin-bottom: var(--wdf-space-4); }
.wdf-pkg-card__social-note {
  font-size: 11.5px;
  color: var(--wdf-slate-light);
  background: var(--wdf-sky);
  border-radius: 8px;
  padding: 8px 10px;
  margin-bottom: var(--wdf-space-4);
}
.wdf-pkg-card__features { list-style: none; margin: 0 0 var(--wdf-space-5); padding: 0; flex: 1; }
.wdf-pkg-card__features li {
  font-size: 13.5px;
  color: var(--wdf-slate);
  padding: 8px 0;
  border-bottom: 1px dashed var(--wdf-border);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.wdf-pkg-card__features li:last-child { border-bottom: none; }
.wdf-pkg-card__check { color: var(--wdf-blue); font-weight: 800; flex-shrink: 0; }
.wdf-pkg-card__price { font-size: 13px; color: var(--wdf-slate-light); font-weight: 700; margin-bottom: var(--wdf-space-3); }
.wdf-pkg-card__guarantee {
  background: var(--wdf-sky-mid);
  border: 1.5px solid var(--wdf-blue);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: var(--wdf-space-4);
  font-size: 13px;
  color: var(--wdf-navy);
}
.wdf-pkg-card__guarantee p { font-size: 11.5px; color: var(--wdf-slate); margin: 4px 0 0; }
.wdf-btn--block { width: 100%; justify-content: center; }

/* comparison table */
.wdf-comparison { overflow-x: auto; }
.wdf-comparison__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  font-size: 13.5px;
}
.wdf-comparison__table th, .wdf-comparison__table td {
  padding: 12px 14px;
  text-align: center;
  border-bottom: 1px solid var(--wdf-border);
}
.wdf-comparison__table th:first-child, .wdf-comparison__table td:first-child { text-align: start; font-weight: 600; color: var(--wdf-navy); }
.wdf-comparison__table thead th { background: var(--wdf-sky); color: var(--wdf-navy); font-size: 13px; }

@media (max-width: 900px) {
  .wdf-packages__grid { grid-template-columns: 1fr; }
}
@media (max-width: 782px) {
  .wdf-services, .wdf-recruitment-services, .wdf-packages { padding-block: var(--wdf-section-pad-mobile); }
}
