/* ============================================
   PROZO HOW WE WORK / CONTACT — Page Styles
   Prefix: hww-  (avoids conflicts with fs-, ct-, etc.)
   Design system: Poppins, #ea6425 orange,
                  #1a1a2e dark, Bootstrap grid, MDI icons
   ============================================ */

/* ---------- Custom Properties ---------- */
:root {
  --hww-dark: #1a1a2e;
  --hww-orange: #ea6425;
  --hww-orange-light: #fff4ed;
  --hww-gray-50: #f9fafb;
  --hww-gray-100: #f3f4f6;
  --hww-gray-200: #e5e7eb;
  --hww-gray-600: #4b5563;
  --hww-gray-900: #111827;
  --hww-radius: 16px;
  --hww-radius-sm: 12px;
  --hww-font: "Poppins", sans-serif;
  --hww-ease: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Section base ---------- */
.hww-page {
  font-family: var(--hww-font);
  color: var(--hww-gray-900);
  overflow-x: hidden;
}

/* ============================================
   S1 — HERO
   ============================================ */
.hww-hero {
  background: var(--hww-dark);
  padding: 100px 0 72px;
  position: relative;
  overflow: hidden;
}
.hww-hero::after {
  content: "";
  position: absolute;
  top: -160px;
  right: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234, 100, 37, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hww-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  font-size: 14px;
  font-weight: 500;
}
.hww-hero__breadcrumb li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hww-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.hww-hero__breadcrumb a:hover {
  color: var(--hww-orange);
  text-decoration: none;
}
.hww-hero__breadcrumb .hww-sep {
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
}
.hww-hero__breadcrumb .hww-current {
  color: #fff;
}
.hww-hero h1 {
  font-family: var(--hww-font);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 20px;
  max-width: 700px;
}
.hww-hero__sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  max-width: 680px;
  margin: 0;
}

/* ============================================
   S2 — PROCESS TIMELINE
   ============================================ */
.hww-process {
  background: #fff;
  padding: 80px 0;
}
.hww-section-tag {
  display: inline-block;
  font-family: var(--hww-font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--hww-orange);
  background: var(--hww-orange-light);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.hww-section-title {
  font-family: var(--hww-font);
  font-size: 36px;
  font-weight: 700;
  color: var(--hww-gray-900);
  margin: 0 0 12px;
  line-height: 1.25;
}
.hww-section-desc {
  font-size: 16px;
  color: var(--hww-gray-600);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 0 48px;
}

/* Timeline wrapper */
.hww-timeline {
  position: relative;
  padding-left: 60px;
  max-width: 800px;
}

/* Vertical line */
.hww-timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: var(--hww-gray-200);
}

/* Timeline item */
.hww-timeline__item {
  position: relative;
  margin-bottom: 32px;
}
.hww-timeline__item:last-child {
  margin-bottom: 0;
}

/* Step number circle */
.hww-timeline__number {
  position: absolute;
  left: -60px;
  top: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--hww-orange);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--hww-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--hww-orange);
  z-index: 2;
}

/* Card */
.hww-timeline__card {
  background: #fff;
  border: 1px solid var(--hww-gray-200);
  border-radius: var(--hww-radius);
  padding: 24px;
  transition: box-shadow var(--hww-ease), transform var(--hww-ease);
}
.hww-timeline__card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

/* Card header row */
.hww-timeline__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.hww-timeline__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--hww-orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--hww-orange);
}
.hww-timeline__title {
  font-family: var(--hww-font);
  font-size: 18px;
  font-weight: 600;
  color: var(--hww-gray-900);
  margin: 0;
}
.hww-timeline__badge {
  display: inline-block;
  font-family: var(--hww-font);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: var(--hww-orange);
  padding: 4px 14px;
  border-radius: 100px;
  margin-left: auto;
  white-space: nowrap;
}
.hww-timeline__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--hww-gray-600);
  margin: 0;
}

/* ============================================
   S3 — WHY PROZO
   ============================================ */
.hww-why {
  background: var(--hww-gray-50);
  padding: 80px 0;
}
.hww-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.hww-why__card {
  background: #fff;
  border: 1px solid var(--hww-gray-200);
  border-radius: var(--hww-radius);
  padding: 32px 28px;
  transition: box-shadow var(--hww-ease), transform var(--hww-ease);
}
.hww-why__card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}
.hww-why__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--hww-orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--hww-orange);
  margin-bottom: 20px;
}
.hww-why__card h3 {
  font-family: var(--hww-font);
  font-size: 18px;
  font-weight: 600;
  color: var(--hww-gray-900);
  margin: 0 0 10px;
}
.hww-why__card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--hww-gray-600);
  margin: 0;
}

/* ============================================
   S4 — CONTACT SECTION
   ============================================ */
.hww-contact {
  background: #fff;
  padding: 80px 0;
}
.hww-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.hww-contact__form {
  min-width: 0;
}
.hww-contact__offices {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hww-office-card {
  background: #fff;
  border: 1px solid var(--hww-gray-200);
  border-radius: var(--hww-radius-sm);
  padding: 24px;
  transition: box-shadow var(--hww-ease);
}
.hww-office-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.hww-office-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.hww-office-card__icon {
  font-size: 22px;
  color: var(--hww-orange);
}
.hww-office-card__label {
  font-family: var(--hww-font);
  font-size: 16px;
  font-weight: 600;
  color: var(--hww-gray-900);
  margin: 0;
}
.hww-office-card__text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--hww-gray-600);
  margin: 0;
}
.hww-office-card a {
  color: var(--hww-orange);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.hww-office-card a:hover {
  color: #c94e16;
  text-decoration: none;
}

/* Social links */
.hww-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  list-style: none;
  padding: 0;
}
.hww-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--hww-gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--hww-gray-600);
  text-decoration: none;
  transition: all 0.25s;
}
.hww-social a:hover {
  color: #fff;
  background: var(--hww-orange);
  border-color: var(--hww-orange);
  text-decoration: none;
}

/* ============================================
   RESPONSIVE — 1024px
   ============================================ */
@media (max-width: 1024px) {
  .hww-hero h1 {
    font-size: 40px;
  }
  .hww-section-title {
    font-size: 30px;
  }
  .hww-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hww-contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================
   RESPONSIVE — 768px
   ============================================ */
@media (max-width: 768px) {
  .hww-hero {
    padding: 80px 0 56px;
  }
  .hww-hero h1 {
    font-size: 32px;
  }
  .hww-hero__sub {
    font-size: 15px;
  }
  .hww-process {
    padding: 56px 0;
  }
  .hww-section-title {
    font-size: 26px;
  }
  .hww-section-desc {
    font-size: 15px;
    margin-bottom: 36px;
  }
  .hww-timeline {
    padding-left: 52px;
  }
  .hww-timeline__number {
    left: -52px;
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
  .hww-timeline::before {
    left: 17px;
  }
  .hww-timeline__header {
    flex-wrap: wrap;
  }
  .hww-timeline__badge {
    margin-left: 0;
  }
  .hww-why {
    padding: 56px 0;
  }
  .hww-why__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .hww-contact {
    padding: 56px 0;
  }
}

/* ============================================
   RESPONSIVE — 480px
   ============================================ */
@media (max-width: 480px) {
  .hww-hero {
    padding: 70px 0 44px;
  }
  .hww-hero h1 {
    font-size: 28px;
  }
  .hww-hero__sub {
    font-size: 14px;
  }
  .hww-hero__breadcrumb {
    font-size: 13px;
    flex-wrap: wrap;
  }
  .hww-process {
    padding: 44px 0;
  }
  .hww-section-title {
    font-size: 23px;
  }

  /* Stack timeline — hide vertical line on small screens */
  .hww-timeline {
    padding-left: 0;
  }
  .hww-timeline::before {
    display: none;
  }
  .hww-timeline__number {
    position: static;
    margin-bottom: 12px;
  }
  .hww-timeline__card {
    padding: 20px;
  }
  .hww-timeline__icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 20px;
  }
  .hww-timeline__title {
    font-size: 16px;
  }
  .hww-timeline__desc {
    font-size: 14px;
  }

  .hww-why {
    padding: 44px 0;
  }
  .hww-why__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .hww-why__card {
    padding: 24px 20px;
  }
  .hww-contact {
    padding: 44px 0;
  }
  .hww-contact__grid {
    gap: 32px;
  }
  .hww-office-card {
    padding: 20px;
  }
}
