/* ================================================================
   HOW WE WORK PAGE CSS
   Scoped under .hw-* — no global body/* font-family overrides.
   Dark theme + #91d904 green accent palette.
   ================================================================ */

.hw-sec,
.hw-hero {
  --g:     #91d904;
  --g2:    #6aaa00;
  --g-dim: rgba(145,217,4,0.12);
  --g-bdr: rgba(145,217,4,0.22);
  --bg:    #0d0d0d;
  --s1:    #141414;
  --s2:    #1a1a1a;
  --s3:    #222222;
  --bd:    rgba(255,255,255,0.07);
  --tx:    #e8e8e8;
  --mt:    #888;
  --wt:    #fff;
  --r:     14px;
  --rs:    8px;
  --tr:    .3s cubic-bezier(.4,0,.2,1);
}

/* ── Section backgrounds ── */
.hw-sec      { background: var(--bg); padding: 80px 0; }
.hw-sec--alt { background: var(--s1); padding: 80px 0; }
.hw-hero     {
  background: var(--s1);
  border-bottom: 1px solid var(--bd);
  padding: 88px 0 80px;
  position: relative;
  overflow: hidden;
}
.hw-hero::before {
  content: '';
  position: absolute;
  top: -160px; right: -160px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(145,217,4,.13) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Label chip ── */
.hw-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--g);
  background: var(--g-dim);
  border: 1px solid var(--g-bdr);
  padding: 5px 16px;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

/* ── Headings ── */
.hw-h1 {
  font-family: 'Teko', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--wt);
  margin-bottom: .5rem;
}
.hw-h1 span { color: var(--g); }

.hw-h2 {
  font-family: 'Teko', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 500;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--wt);
  margin-bottom: .8rem;
}
.hw-h2 span { color: var(--g); }

.hw-h3 {
  font-family: 'Teko', sans-serif;
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--wt);
  margin-bottom: .6rem;
}

/* ── Paragraphs ── */
.hw-sec p, .hw-sec--alt p, .hw-hero p {
  color: var(--tx);
  font-size: .93rem;
  line-height: 1.8;
  margin-bottom: .9rem;
  text-align:justify;
}

/* ── Section head ── */
.hw-sec-head {
  text-align: center;
  margin-bottom: 2.75rem;
}
.hw-sec-head .hw-label { justify-content: center; }
.hw-sec-head p {
  color: var(--mt);
  font-size: .93rem;
  line-height: 1.75;
  max-width: 720px;
  margin: .75rem auto 0;
}

/* ─────────────────────────────────────────
   HERO – CEO Card
───────────────────────────────────────── */
.hw-hero__tagline {
  font-size: .9rem;
  font-style: italic;
  color: var(--g);
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 1.25rem;
}

.hw-quote-block {
  background: var(--s2);
  border-left: 3px solid var(--g);
  border-radius: var(--rs);
  padding: 1.1rem 1.4rem;
  margin: 1.25rem 0 1.25rem;
  font-size: .97rem;
  color: var(--wt);
  line-height: 1.7;
}

.hw-ceo-card {
  background: var(--s2);
  border: 1px solid var(--bd);
  border-top: 3px solid var(--g);
  border-radius: var(--r);
  padding: 1.75rem;
  box-shadow: 0 0 40px rgba(145,217,4,.09);
}
.hw-ceo-card__top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--bd);
}
.hw-ceo-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--g-dim);
  border: 1px solid var(--g-bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--g);
  flex-shrink: 0;
}
.hw-ceo-card__top strong { display: block; color: var(--wt); font-size: .95rem; margin-bottom: 2px; }
.hw-ceo-card__top span  { font-size: .78rem; color: var(--mt); }
.hw-ceo-card__body {
  font-style: italic;
  color: var(--tx);
  font-size: .93rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--bd);
}
.hw-ceo-card__stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: .75rem;
}
.hw-stat { text-align: center; }
.hw-stat strong {
  display: block;
  font-family: 'Teko', sans-serif;
  font-size: 1.8rem;
  color: var(--g);
  line-height: 1;
}
.hw-stat span { font-size: .72rem; color: var(--mt); text-transform: uppercase; letter-spacing: .05em; }

/* ─────────────────────────────────────────
   WE LISTEN SECTION
───────────────────────────────────────── */
.hw-listen-questions {
  background: var(--s2);
  border: 1px solid var(--bd);
  border-left: 3px solid var(--g);
  border-radius: var(--r);
  padding: 1.75rem;
  height: 100%;
}
.hw-listen-title {
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--g);
  margin-bottom: 1rem;
}
.hw-question-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .88rem;
  color: var(--tx);
  padding: .6rem 0;
  border-bottom: 1px solid var(--bd);
  line-height: 1.5;
}
.hw-question-item:last-of-type { border-bottom: none; }
.hw-question-item i { color: var(--g); flex-shrink: 0; margin-top: 2px; }
.hw-listen-note {
  margin-top: 1rem;
  font-size: .82rem;
  color: var(--mt);
  font-style: italic;
  line-height: 1.6;
}

/* Solution Cards */
.hw-solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 1.25rem;
}
.hw-solution-card {
  background: var(--s2);
  border: 1px solid var(--bd);
  border-radius: var(--r);
  padding: 1.4rem;
  transition: transform var(--tr), border-color var(--tr), box-shadow var(--tr);
}
.hw-solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(145,217,4,.3), 0 0 40px rgba(145,217,4,.12);
}
.hw-solution-card--blue  { border-top: 2px solid #91d904; }
.hw-solution-card--green { border-top: 2px solid var(--g); }
.hw-solution-card--purple{ border-top: 2px solid #91d904; }
.hw-solution-card--orange{ border-top: 2px solid #91d904; }
.hw-solution-card--blue:hover  { border-color: #91d904; }
.hw-solution-card--green:hover { border-color: #91d904; }
.hw-solution-card--purple:hover{ border-color: #91d904; }
.hw-solution-card--orange:hover{ border-color: #91d904; }

.hw-solution-icon {
  width: 44px; height: 44px;
  border-radius: var(--rs);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: .85rem;
  flex-shrink: 0;
}
.hw-solution-card--blue   .hw-solution-icon { background: rgba(25,118,210,.15); color: #64b5f6; }
.hw-solution-card--green  .hw-solution-icon { background: var(--g-dim);          color: var(--g);   }
.hw-solution-card--purple .hw-solution-icon { background: rgba(124,58,237,.15);  color: #a78bfa; }
.hw-solution-card--orange .hw-solution-icon { background: rgba(245,158,11,.15);  color: #fcd34d; }

.hw-solution-card h4 {
  font-family: 'Teko', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--wt);
  margin-bottom: .4rem;
}
.hw-solution-card > p {
  font-size: .81rem;
  color: var(--mt);
  margin-bottom: .75rem;
  line-height: 1.6;
}
.hw-solution-card ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: .35rem;
}
.hw-solution-card ul li {
  font-size: .78rem; color: var(--tx);
  display: flex; align-items: center; gap: .4rem; line-height: 1.4;
}
.hw-solution-card ul li::before { content: '✓'; color: var(--g); font-weight: 700; flex-shrink: 0; }

.hw-quality-note {
  margin-top: .85rem;
  background: var(--g-dim);
  border: 1px solid var(--g-bdr);
  border-radius: var(--rs);
  padding: .6rem .9rem;
  font-size: .78rem;
  color: var(--g);
  font-weight: 600;
  font-style: italic;
}

/* ─────────────────────────────────────────
   TIMELINE – 12 STEPS
───────────────────────────────────────── */
.hw-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

/* Vertical guide line */
.hw-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--g), rgba(145,217,4,.1));
  border-radius: 2px;
}

.hw-step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 3rem;
  position: relative;
  /* default: left side */
  padding-right: calc(50% + 2rem);
  padding-left: 0;
  justify-content: flex-end;
}
.hw-step--right {
  padding-right: 0;
  padding-left: calc(50% + 2rem);
  justify-content: flex-start;
}

/* Step number bubble */
.hw-step__num {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--g);
  color: #0d0d0d;
  font-family: 'Teko', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(145,217,4,.45);
  z-index: 2;
  flex-shrink: 0;
}

.hw-step__card {
  background: var(--s2);
  border: 1px solid var(--bd);
  border-radius: var(--r);
  padding: 1.75rem;
  max-width: 540px;
  width: 100%;
  transition: border-color var(--tr), box-shadow var(--tr);
}
.hw-step__card:hover {
  border-color: var(--g);
  box-shadow: 0 0 24px rgba(145,217,4,.3), 0 0 48px rgba(145,217,4,.12);
}
.hw-step__card--final {
  border-top: 3px solid var(--g);
  box-shadow: 0 0 40px rgba(145,217,4,.12);
}

.hw-step__icon {
  width: 50px; height: 50px;
  border-radius: var(--rs);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.hw-step__icon--blue  { background: rgba(25,118,210,.15);  color: #64b5f6; }
.hw-step__icon--green { background: rgba(145,217,4,.12);   color: var(--g); }
.hw-step__icon--purple{ background: rgba(124,58,237,.15);  color: #a78bfa; }
.hw-step__icon--orange{ background: rgba(245,158,11,.15);  color: #fcd34d; }
.hw-step__icon--cyan  { background: rgba(2,132,199,.15);   color: #38bdf8; }
.hw-step__icon--red   { background: rgba(239,68,68,.15);   color: #f87171; }

.hw-step__content h3 {
  font-size: 1.1rem;
  margin-bottom: .65rem;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.hw-step__content p {
  font-size: .86rem;
  color: var(--mt);
  margin-bottom: .9rem;
}

/* Step questions */
.hw-step__questions {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.hw-sq {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .82rem;
  color: var(--tx);
  line-height: 1.5;
}
.hw-sq i { color: var(--g); flex-shrink: 0; margin-top: 2px; }

/* Scope checklist */
.hw-scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
  margin-bottom: 1rem;
}
.hw-scope-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .79rem;
  color: var(--tx);
  line-height: 1.4;
}
.hw-scope-item i { color: var(--g); font-size: .85rem; flex-shrink: 0; }

/* Approval cards */
.hw-approval-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 1rem 0;
}
.hw-approval-item {
  background: var(--s1);
  border: 1px solid var(--bd);
  border-radius: var(--rs);
  padding: 1.1rem;
}
.hw-approval-icon {
  width: 40px; height: 40px;
  border-radius: var(--rs);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  margin-bottom: .7rem;
}
.hw-approval-icon--blue   { background: rgba(25,118,210,.15);  color: #64b5f6; }
.hw-approval-icon--green  { background: rgba(145,217,4,.12);   color: var(--g); }
.hw-approval-icon--purple { background: rgba(124,58,237,.15);  color: #a78bfa; }
.hw-approval-item strong {
  display: block;
  font-size: .8rem;
  color: var(--wt);
  font-weight: 700;
  margin-bottom: .55rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.hw-approval-item ul { list-style: none; margin: 0; padding: 0; }
.hw-approval-item ul li {
  font-size: .75rem; color: var(--mt);
  padding: 3px 0; border-bottom: 1px solid var(--bd);
  display: flex; align-items: flex-start; gap: .4rem; line-height: 1.4;
}
.hw-approval-item ul li:last-child { border-bottom: none; }
.hw-approval-item ul li::before { content: '–'; color: var(--g); flex-shrink: 0; }

/* Philosophy quote */
.hw-philosophy-quote {
  background: var(--g-dim);
  border: 1px solid var(--g-bdr);
  border-radius: var(--rs);
  padding: 1rem 1.25rem;
  font-size: .85rem;
  color: var(--g);
  font-weight: 600;
  font-style: italic;
  line-height: 1.65;
  margin-top: 1rem;
}

/* ─────────────────────────────────────────
   FRESHORA DIFFERENCE
───────────────────────────────────────── */
.hw-difference-box {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  background: var(--s2);
  border: 1px solid var(--bd);
  border-top: 3px solid var(--g);
  border-radius: var(--r);
  padding: 2.75rem 2.5rem;
  box-shadow: 0 0 50px rgba(145,217,4,.09);
}
.hw-difference-box p { color: var(--tx); font-size: .93rem; line-height: 1.75; }

.hw-difference-highlight {
  font-family: 'Teko', sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: var(--g) !important;
  margin: 1rem 0 1.5rem !important;
}

.hw-commitment-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 1.5rem 0 1.75rem;
}
.hw-commitment-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--s1);
  border: 1px solid var(--g-bdr);
  border-radius: 9999px;
  padding: .6rem 1.1rem;
  font-size: .82rem;
  color: var(--wt);
  font-weight: 600;
  transition: all var(--tr);
}
.hw-commitment-item i { color: var(--g); font-size: 1rem; }
.hw-commitment-item:hover {
  background: var(--g-dim);
  transform: translateY(-3px);
  box-shadow: 0 0 14px rgba(145,217,4,.3);
}

.hw-difference-sub {
  font-style: italic;
  color: var(--mt) !important;
  font-size: .9rem !important;
  margin-top: 1rem !important;
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.hw-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .85rem;
  margin-top: 2rem;
}
.hw-btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: .87rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-decoration: none;
  transition: all var(--tr);
  border: none; cursor: pointer;
}
.hw-btn--primary {
  background: var(--g);
  color: #0d0d0d;
  box-shadow: 0 4px 20px rgba(145,217,4,.28);
}
.hw-btn--primary:hover {
  background: var(--g2);
  color: #0d0d0d;
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(145,217,4,.45);
}
.hw-btn--outline {
  background: transparent;
  color: var(--g);
  border: 1.5px solid var(--g);
}
.hw-btn--outline:hover {
  background: var(--g);
  color: #0d0d0d;
  transform: translateY(-3px);
}
.hw-btn--wa {
  background: linear-gradient(135deg,#25d366,#128c7e);
  color: #fff;
  box-shadow: 0 4px 18px rgba(37,211,102,.3);
}
.hw-btn--wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

/* ── Tablet ≤ 991px ── */
@media (max-width: 991px) {
  .hw-sec, .hw-sec--alt, .hw-hero { padding: 60px 0; }

  /* Flatten timeline to single column */
  .hw-timeline::before { left: 26px; }
  .hw-step,
  .hw-step--right {
    padding-left: 70px;
    padding-right: 0;
    justify-content: flex-start;
  }
  .hw-step__num {
    left: 0;
    transform: translateX(0);
    width: 44px; height: 44px;
    font-size: 1rem;
  }
  .hw-step__card { max-width: 100%; }

  .hw-approval-row { grid-template-columns: 1fr; }
  .hw-solution-grid { grid-template-columns: 1fr; }
}

/* ── Large Mobile ≤ 767px ── */
@media (max-width: 767px) {
  .hw-sec, .hw-sec--alt, .hw-hero { padding: 46px 0; }
  .hw-scope-grid { grid-template-columns: 1fr; }
  .hw-cta-row { flex-direction: column; align-items: stretch; }
  .hw-btn { justify-content: center; }
  .hw-commitment-row { gap: 10px; }
  .hw-commitment-item { font-size: .78rem; padding: .5rem .9rem; }
  .hw-difference-box { padding: 2rem 1.25rem; }
  .hw-solution-grid { grid-template-columns: 1fr; }
}

/* ── Small Mobile ≤ 480px ── */
@media (max-width: 480px) {
  .hw-sec, .hw-sec--alt, .hw-hero { padding: 36px 0; }
  .hw-step { padding-left: 60px; }
  .hw-step__num { width: 38px; height: 38px; font-size: .9rem; }
  .hw-step__card { padding: 1.25rem; }
  .hw-ceo-card__stats { grid-template-columns: 1fr 1fr 1fr; }
  .hw-approval-row { grid-template-columns: 1fr; }
}