/* ════════════════════════════════════════════════════════════════
   how_we_work.css — Page-specific styles for /how-we-work/
   Brand: navy #0a1628, amber #f59e0b, white/light #ffffff/#f8fafc
   Rules: 0px border-radius everywhere, Inter font, British English
════════════════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --how-navy:   #0a1628;
  --how-amber:  #f59e0b;
  --how-amber-light: #fbbf24;
  --how-white:  #ffffff;
  --how-light:  #f8fafc;
  --how-slate:  #64748b;
  --how-border: #e2e8f0;
}

/* ── Shared utilities ── */
.how-section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--how-amber);
  margin-bottom: 1rem;
}

/* ════════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════════ */
.how-hero {
  position: relative;
  background: var(--how-navy);
  padding: 8rem 0 5rem;
  overflow: hidden;
}

.how-hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% -10%, rgba(245, 158, 11, 0.12), transparent);
  pointer-events: none;
}

.how-hero__grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.how-hero__inner {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.how-hero__h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: var(--how-white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.how-hero__sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 44rem;
  margin: 0 auto 2.25rem;
}

/* ════════════════════════════════════════════════════════════════
   CTA BUTTON
════════════════════════════════════════════════════════════════ */
.how-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: var(--how-amber);
  color: var(--how-white);
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(245,158,11,0.35);
}

.how-btn:hover {
  background: var(--how-amber-light);
  box-shadow: 0 6px 20px rgba(245,158,11,0.45);
  color: var(--how-white);
  text-decoration: none;
}

/* ════════════════════════════════════════════════════════════════
   PHASE TIMELINE SECTION
════════════════════════════════════════════════════════════════ */
.how-phases {
  background: var(--how-white);
  padding: 5rem 0;
}

.how-phases__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.how-phases__heading {
  text-align: center;
  margin-bottom: 4rem;
}

.how-phases__heading h2 {
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--how-navy);
  margin-bottom: 0.75rem;
}

.how-phases__heading p {
  font-size: 1rem;
  color: var(--how-slate);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── Individual phase row ── */
.how-phase {
  border-top: 2px solid var(--how-border);
  padding: 3rem 0;
}

.how-phase:last-child {
  border-bottom: 2px solid var(--how-border);
}

.how-phase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .how-phase-grid {
    grid-template-columns: 240px 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

/* ── Phase identifier (left column) ── */
.how-phase-id {
  /* intentionally minimal */
}

.how-phase-num {
  font-size: 4rem;
  font-weight: 900;
  color: var(--how-amber);
  line-height: 1;
  margin-bottom: 0.375rem;
  letter-spacing: -0.02em;
}

.how-phase-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--how-navy);
  margin-bottom: 0.5rem;
}

.how-phase-days {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--how-white);
  background: var(--how-navy);
  padding: 0.25rem 0.625rem;
  border-radius: 0;
}

/* ── What we do (middle column) ── */
.how-what-we-do {
  /* no extra wrapper style needed */
}

.how-col-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--how-slate);
  margin-bottom: 0.875rem;
}

.how-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.how-list li {
  font-size: 0.9375rem;
  color: #334155;
  line-height: 1.55;
  padding-left: 1.25rem;
  position: relative;
}

.how-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--how-amber);
  font-weight: 700;
}

/* ── What you receive / what we need (right column) ── */
.how-right-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.how-what-you-get {
  border-left: 3px solid var(--how-amber);
  padding-left: 1.25rem;
}

.how-what-we-need {
  border-left: 3px solid var(--how-border);
  padding-left: 1.25rem;
}

.how-what-you-get .how-col-label {
  color: var(--how-amber);
}

/* ════════════════════════════════════════════════════════════════
   "WHAT'S NOT IN THE TIMELINE" CALLOUT
════════════════════════════════════════════════════════════════ */
.how-caveat {
  background: var(--how-navy);
  padding: 4rem 0;
}

.how-caveat__inner {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.how-caveat__box {
  border: 2px solid var(--how-amber);
  padding: 2rem 2.25rem;
}

.how-caveat__box h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--how-white);
  margin-bottom: 1.25rem;
}

.how-caveat__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.how-caveat__list li {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}

.how-caveat__list li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: var(--how-amber);
  font-weight: 700;
  font-size: 1rem;
}

/* ════════════════════════════════════════════════════════════════
   AFTER DELIVERY SECTION
════════════════════════════════════════════════════════════════ */
.how-after {
  background: var(--how-light);
  padding: 5rem 0;
}

.how-after__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.how-after__heading {
  text-align: center;
  margin-bottom: 3rem;
}

.how-after__heading h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--how-navy);
}

.how-after__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .how-after__cards {
    grid-template-columns: 1fr 1fr;
  }
}

.how-after__card {
  background: var(--how-white);
  border: 1px solid var(--how-border);
  padding: 2rem 2.25rem;
  border-radius: 0;
}

.how-after__card-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--how-amber);
  background: rgba(245,158,11,0.08);
  padding: 0.25rem 0.625rem;
  margin-bottom: 1rem;
  border-radius: 0;
}

.how-after__card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--how-navy);
  margin-bottom: 0.75rem;
}

.how-after__card p {
  font-size: 0.9375rem;
  color: var(--how-slate);
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════════
   FINAL CTA
════════════════════════════════════════════════════════════════ */
.how-final-cta {
  background: var(--how-navy);
  padding: 5rem 0;
}

.how-final-cta__inner {
  max-width: 44rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.how-final-cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--how-white);
  margin-bottom: 1rem;
}

.how-final-cta p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.how-final-cta__reassurance {
  margin-top: 1.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.01em;
}

.how-final-cta__reassurance span {
  color: rgba(255,255,255,0.5);
}

.how-final-cta__reassurance .sep {
  margin: 0 0.625rem;
  color: rgba(255,255,255,0.2);
}
