/* ============================================
   CV UNIVIART — Style tambahan
   Portfolio dinamis & halaman Verifikasi
   ============================================ */

/* ---- PORTFOLIO ---- */
.portfolio {
  background: var(--dark-900);
  padding: 5rem 0;
}
.portfolio__head {
  max-width: 600px;
  margin: 0 0 3rem;
}
.portfolio__head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.portfolio__head p { color: var(--text-muted); }
.portfolio__empty {
  color: var(--text-muted);
  background: var(--dark-700);
  border: 1px dashed var(--dark-500);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  text-align: center;
}
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.portfolio-card {
  background: var(--dark-700);
  border: 1px solid var(--dark-500);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  transition: border-color var(--transition), transform var(--transition);
}
.portfolio-card:hover {
  border-color: var(--green);
  transform: translateY(-3px);
}
.portfolio-card__date {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-light);
  background: var(--green-glow);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.9rem;
}
.portfolio-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 0.6rem;
}
.portfolio-card__company {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.portfolio-card__company svg { color: var(--green); flex-shrink: 0; }

/* ---- VERIFIKASI ---- */
.verify {
  background: var(--dark-800);
  padding: 5rem 0;
  min-height: 70vh;
}
.verify__head {
  max-width: 620px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.verify__head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.verify__head p { color: var(--text-muted); }
.verify__form {
  display: flex;
  gap: 0.75rem;
  max-width: 540px;
  margin: 0 auto 2.5rem;
  flex-wrap: wrap;
}
.verify__form input {
  flex: 1;
  min-width: 220px;
  background: var(--dark-700);
  border: 1px solid var(--dark-500);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}
.verify__form input:focus { border-color: var(--green); }
.verify__form input::placeholder { color: var(--dark-500); }

.verify-result {
  max-width: 620px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--dark-500);
  background: var(--dark-700);
}
.verify-result__badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.verify-result__badge svg { width: 26px; height: 26px; flex-shrink: 0; }
.verify-result--valid { border-color: rgba(22,163,74,0.5); }
.verify-result--valid .verify-result__badge { color: var(--green-light); }
.verify-result--invalid { border-color: rgba(239,68,68,0.5); }
.verify-result--invalid .verify-result__badge { color: #f87171; }

.verify-result__detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.verify-result__detail dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}
.verify-result__detail dd {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}
.verify-result__note {
  display: block;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
}
.verify-result__msg { color: var(--text-muted); line-height: 1.7; }

/* ---- CONTACT MAPS ---- */
.contact__maps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}
.btn--sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.875rem;
}
.contact__list a {
  color: var(--text-muted);
  transition: color var(--transition);
}
.contact__list a:hover { color: var(--green-light); }

/* ---- EKOSISTEM PERUSAHAAN ---- */
.ecosystem {
  background: var(--dark-800);
  padding: 5rem 0;
}
.ecosystem__head {
  max-width: 600px;
  margin: 0 0 3rem;
}
.ecosystem__head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.ecosystem__head p { color: var(--text-muted); }
.ecosystem__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.ecosystem-card {
  background: var(--dark-700);
  border: 1px solid var(--dark-500);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color var(--transition), transform var(--transition);
}
.ecosystem-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
}
.ecosystem-card__logo {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--dark-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ecosystem-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ecosystem-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin: 0;
}
.ecosystem-card p {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.93rem;
  flex: 1;
}
.ecosystem-card .btn { align-self: flex-start; }

/* ================================================================
   WAWAN FARM PAGE  (prefix: wf-)
   ================================================================ */

/* hero override — gunakan kelas .hero bawaan, hanya override min-height */
.wf-hero { min-height: 80vh; }

/* --- Section 2: Tentang --- */
.wf-about {
  background: var(--dark-800);
  padding: 5rem 0;
}
.wf-about__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: start;
}
.wf-about__text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 2rem;
}
.wf-about__block {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--dark-600);
}
.wf-about__block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.wf-about__block h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 0.75rem;
}
.wf-about__block p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.97rem;
  margin-bottom: 0.6rem;
}
.wf-about__block p:last-child { margin-bottom: 0; }
.wf-about__block strong { color: var(--white); font-weight: 600; }
.wf-about__block em { font-style: italic; color: var(--green-light); }

.wf-about__aside {
  position: sticky;
  top: 100px;
}
.wf-about__logo-wrap {
  width: 100%;
  aspect-ratio: 1;
  max-width: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dark-700);
  border: 1px solid var(--dark-500);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}
.wf-about__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.wf-about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.wf-stat {
  background: var(--dark-700);
  border: 1px solid var(--dark-500);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.wf-stat__num {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--green-light);
  line-height: 1;
}
.wf-stat__label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* --- Section 3: Keunggulan --- */
.wf-features {
  background: var(--dark-900);
  padding: 5rem 0;
}
.wf-features__head {
  max-width: 560px;
  margin: 0 0 3rem;
}
.wf-features__head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.wf-features__head p { color: var(--text-muted); }
.wf-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.wf-feature-card {
  background: var(--dark-700);
  border: 1px solid var(--dark-500);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color var(--transition), transform var(--transition);
}
.wf-feature-card:hover {
  border-color: var(--green);
  transform: translateY(-4px);
}
.wf-feature-card__icon {
  width: 44px;
  height: 44px;
  background: var(--green-glow);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wf-feature-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--green-light);
}
.wf-feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.wf-feature-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

/* --- Section 4: Video --- */
.wf-videos {
  background: var(--dark-800);
  padding: 5rem 0;
}
.wf-videos__head {
  max-width: 560px;
  margin: 0 0 2.5rem;
}
.wf-videos__head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.wf-videos__head p { color: var(--text-muted); }
.wf-videos__horizontal {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.wf-video-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--dark-900);
  aspect-ratio: 16/9;
}
.wf-video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.wf-videos__sub-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.wf-videos__vertical {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.wf-video-embed--vertical { aspect-ratio: 9/16; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1200px) {
  .wf-features__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .portfolio__grid { grid-template-columns: repeat(2, 1fr); }
  .wf-about__inner { grid-template-columns: 1fr; gap: 3rem; }
  .wf-about__aside { position: static; }
  .wf-about__logo-wrap { max-width: 140px; margin: 0 0 1.5rem; }
  .wf-about__stats { grid-template-columns: repeat(4, 1fr); }
  .wf-videos__vertical { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .portfolio__grid { grid-template-columns: 1fr; }
  .topbar__track { animation-duration: 22s; gap: 1.75rem; padding-right: 1.75rem; }
  .ecosystem__grid { grid-template-columns: 1fr; }
  .wf-features__grid { grid-template-columns: 1fr 1fr; }
  .wf-videos__horizontal { grid-template-columns: 1fr; }
  .wf-videos__vertical { grid-template-columns: repeat(2, 1fr); }
  .wf-about__stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .verify-result__detail { grid-template-columns: 1fr; }
  .verify-result { padding: 1.5rem; }
  .contact__maps { flex-direction: column; }
  .topbar__track { animation-duration: 18s; }
  .wf-features__grid { grid-template-columns: 1fr; }
  .wf-videos__vertical { grid-template-columns: 1fr; }
}
