/* ─── Why Work With Us — page styles ─────────────────────────────────────
   All brand tokens (fonts, colors) live in pms-theme.css / styles.css.
   This file only adds page-specific layout and component styles.
   ─────────────────────────────────────────────────────────────────────── */

:root {
  --wwu-ink:       #0f172a;
  --wwu-slate:     #1e293b;
  --wwu-body:      #475569;
  --wwu-muted:     #64748b;
  --wwu-border:    #e2e8f0;
  --wwu-bg:        #f8fafc;
  --wwu-white:     #ffffff;
  --wwu-blue:      #0ea5e9;
  --wwu-indigo:    #6366f1;
  --wwu-teal:      #14b8a6;
  --wwu-radius:    14px;
  --wwu-shadow:    0 1px 3px rgba(15,23,42,.07), 0 4px 12px rgba(15,23,42,.05);
  --wwu-shadow-lg: 0 8px 28px rgba(15,23,42,.12);
  --wwu-pad:       4.5rem 0;
}

/* ─── Section base ──────────────────────────────────────────────────── */
.wwu-section        { padding: var(--wwu-pad); background: var(--wwu-white); }
.wwu-section--alt   { padding: var(--wwu-pad); background: var(--wwu-bg); }

/* ─── Section header ────────────────────────────────────────────────── */
.wwu-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.wwu-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .35rem 1rem;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 9999px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.wwu-eyebrow--light {
  background: rgba(255,255,255,.15);
  color: #e0f2fe;
}
.wwu-section-title  { color: var(--wwu-ink); margin-bottom: .875rem; }
.wwu-section-desc   { color: var(--wwu-body); font-size: 1.05rem; line-height: 1.75; margin: 0; }

/* ─── HERO ──────────────────────────────────────────────────────────── */
.wwu-hero {
  padding: 7rem 0 5rem;
  background: linear-gradient(160deg, #ffffff 0%, #f0f9ff 60%, #eff6ff 100%);
  position: relative;
  overflow: hidden;
}
.wwu-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(99,102,241,.07) 0%, transparent 70%);
  pointer-events: none;
}
.wwu-hero-content {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.wwu-hero-title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--wwu-ink);
  margin: 0 0 1.25rem;
}
.wwu-hero-kicker {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--wwu-slate);
  line-height: 1.5;
  max-width: 640px;
  margin: 0 auto 1rem;
}
.wwu-hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--wwu-body);
  line-height: 1.75;
  max-width: 660px;
  margin: 0 auto 2.5rem;
}
.wwu-hero-subtitle a {
  color: #0284c7;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.wwu-hero-subtitle a:hover { color: #0369a1; }
.wwu-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.wwu-hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2.5rem;
  border-top: 1px solid var(--wwu-border);
}
.wwu-stat { text-align: center; }
.wwu-stat-number {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--wwu-ink);
  line-height: 1;
  margin-bottom: .25rem;
}
.wwu-stat-label {
  font-size: .82rem;
  color: var(--wwu-muted);
  font-weight: 500;
  letter-spacing: .02em;
  text-transform: uppercase;
}

/* ─── PROOF STRIP ───────────────────────────────────────────────────── */
.wwu-proof-strip {
  padding: 1.25rem 0;
  background: var(--wwu-ink);
}
.wwu-proof-grid {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.wwu-proof-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: #cbd5e1;
  font-size: .9rem;
  font-weight: 500;
}
.wwu-proof-item svg { color: var(--wwu-blue); flex-shrink: 0; }

/* ─── CLIENT BLOCKS ─────────────────────────────────────────────────── */
.wwu-client-block {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 5rem;
  align-items: start;
  padding: 4rem 0;
  border-bottom: 1px solid var(--wwu-border);
}
.wwu-client-block:last-child { border-bottom: none; }
.wwu-client-block--reverse {
  grid-template-columns: 420px 1fr;
}
.wwu-client-block--reverse .wwu-client-text { order: 2; }
.wwu-client-block--reverse .wwu-client-image { order: 1; }

.wwu-client-badge {
  display: inline-flex;
  padding: .25rem .85rem;
  border-radius: 9999px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.wwu-badge--blue   { background: #eff6ff; color: #1d4ed8; }
.wwu-badge--indigo { background: #eef2ff; color: #4338ca; }
.wwu-badge--teal   { background: #f0fdfa; color: #0f766e; }

.wwu-client-text h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--wwu-ink);
  margin: 0 0 1rem;
  line-height: 1.25;
}
.wwu-client-text > p {
  color: var(--wwu-body);
  line-height: 1.75;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}
.wwu-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.wwu-feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.wwu-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: #f1f5f9;
  border-radius: 10px;
  color: var(--wwu-blue);
  flex-shrink: 0;
  margin-top: .1rem;
}
.wwu-feature-item strong {
  display: block;
  font-weight: 600;
  color: var(--wwu-ink);
  margin-bottom: .3rem;
  font-size: .98rem;
}
.wwu-feature-item p {
  margin: 0;
  color: var(--wwu-body);
  font-size: .93rem;
  line-height: 1.6;
}

.wwu-client-image img {
  width: 100%;
  height: auto;
  border-radius: var(--wwu-radius);
  box-shadow: var(--wwu-shadow-lg);
  transition: transform .3s ease, box-shadow .3s ease;
}
.wwu-client-image img:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15,23,42,.16);
}

/* ─── PARALLAX ──────────────────────────────────────────────────────── */
.wwu-parallax {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.wwu-parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,20,40,.68);
  display: flex;
  align-items: center;
  width: 100%;
}
.wwu-parallax-overlay .container { position: relative; z-index: 1; width: 100%; }
.wwu-parallax-content {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.wwu-parallax-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.wwu-parallax-content p {
  color: #cbd5e1;
  font-size: 1.1rem;
  line-height: 1.75;
  margin: 0;
}

/* ─── PROCESS GRID ──────────────────────────────────────────────────── */
.wwu-process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.wwu-process-step {
  background: var(--wwu-white);
  border: 1px solid var(--wwu-border);
  border-radius: var(--wwu-radius);
  padding: 1.75rem 1.25rem;
  position: relative;
  transition: box-shadow .2s ease, transform .2s ease;
}
.wwu-process-step:hover {
  box-shadow: var(--wwu-shadow-lg);
  transform: translateY(-3px);
}
.wwu-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background: var(--wwu-ink);
  color: #fff;
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.wwu-process-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--wwu-ink);
  margin: 0 0 .75rem;
}
.wwu-process-step p {
  font-size: .88rem;
  color: var(--wwu-body);
  line-height: 1.65;
  margin: 0;
}

/* ─── ENGAGEMENT CARDS ──────────────────────────────────────────────── */
.wwu-engage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.wwu-engage-card {
  background: var(--wwu-white);
  border: 1px solid var(--wwu-border);
  border-radius: var(--wwu-radius);
  padding: 2.5rem;
  box-shadow: var(--wwu-shadow);
  transition: box-shadow .2s ease, transform .2s ease;
}
.wwu-engage-card:hover {
  box-shadow: var(--wwu-shadow-lg);
  transform: translateY(-3px);
}
.wwu-engage-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  background: #f1f5f9;
  border-radius: 12px;
  color: var(--wwu-blue);
  margin-bottom: 1.25rem;
}
.wwu-engage-tag {
  display: inline-flex;
  padding: .2rem .75rem;
  background: #f1f5f9;
  color: var(--wwu-muted);
  border-radius: 9999px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .03em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.wwu-engage-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--wwu-ink);
  margin: 0 0 .3rem;
}
.wwu-engage-subtitle {
  color: var(--wwu-blue);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.wwu-engage-card > p:not(.wwu-engage-subtitle) {
  color: var(--wwu-body);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.wwu-engage-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.wwu-engage-list li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--wwu-body);
  font-size: .93rem;
  line-height: 1.6;
}
.wwu-engage-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wwu-blue);
}

/* ─── FAQ (native details/summary) ─────────────────────────────────── */
.wwu-faq {
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--wwu-border);
  border-radius: var(--wwu-radius);
  overflow: hidden;
}
.wwu-faq-item {
  border-bottom: 1px solid var(--wwu-border);
}
.wwu-faq-item:last-child { border-bottom: none; }
.wwu-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 1.35rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--wwu-ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background .15s;
}
.wwu-faq-item summary::-webkit-details-marker { display: none; }
.wwu-faq-item summary::after {
  content: '+';
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--wwu-blue);
  flex-shrink: 0;
  line-height: 1;
}
.wwu-faq-item[open] summary::after { content: '\2212'; }
.wwu-faq-item summary:hover { background: var(--wwu-bg); }
.wwu-faq-body {
  padding: 0 1.35rem 1.2rem;
}
.wwu-faq-body p {
  margin: 0;
  color: var(--wwu-body);
  font-size: .95rem;
  line-height: 1.75;
}

/* ─── TESTIMONIAL ───────────────────────────────────────────────────── */
.wwu-testimonial-wrap {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 3.5rem;
  background: var(--wwu-white);
  border-radius: 20px;
  box-shadow: var(--wwu-shadow-lg);
  position: relative;
}
.wwu-testimonial-quote {
  font-size: 5rem;
  line-height: 1;
  color: var(--wwu-blue);
  font-family: Georgia, serif;
  margin-bottom: -.5rem;
  opacity: .5;
}
.wwu-testimonial-text {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 500;
  color: var(--wwu-slate);
  line-height: 1.7;
  margin: 0 0 2rem;
  font-style: italic;
}
.wwu-testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
}
.wwu-testimonial-author strong { font-weight: 700; color: var(--wwu-ink); }
.wwu-testimonial-author span   { font-size: .88rem; color: var(--wwu-muted); }

/* ─── CTA ───────────────────────────────────────────────────────────── */
.wwu-cta {
  padding: var(--wwu-pad);
  background: linear-gradient(150deg, var(--wwu-ink) 0%, #1e3a5f 100%);
  position: relative;
  overflow: hidden;
}
.wwu-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(14,165,233,.15) 0%, transparent 65%);
  pointer-events: none;
}
.wwu-cta-content {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.wwu-cta-content h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: .875rem;
  line-height: 1.2;
}
.wwu-cta-content p {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.wwu-cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  padding: .875rem 2rem;
  background: #0ea5e9;
  color: #fff;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}
.btn-cta-primary:hover { background: #0284c7; transform: translateY(-2px); }
.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: .875rem 2rem;
  background: rgba(255,255,255,.1);
  color: #e2e8f0;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background .2s ease;
}
.btn-cta-secondary:hover { background: rgba(255,255,255,.18); }
.wwu-cta-trust {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.wwu-cta-trust span {
  font-size: .82rem;
  color: #64748b;
  font-weight: 500;
  letter-spacing: .03em;
}

/* ─── RESPONSIVE ────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .wwu-client-block,
  .wwu-client-block--reverse {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .wwu-client-block--reverse .wwu-client-text,
  .wwu-client-block--reverse .wwu-client-image { order: unset; }
  .wwu-process-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .wwu-hero { padding: 5rem 0 3.5rem; }
  .wwu-hero-stats { gap: 1.5rem; }
  .wwu-proof-grid { gap: 1rem 2rem; }
  .wwu-process-grid { grid-template-columns: 1fr 1fr; }
  .wwu-engage-grid { grid-template-columns: 1fr; }
  .wwu-parallax { background-attachment: scroll; }
  .wwu-testimonial-wrap { padding: 2rem; margin: 0 1rem; }
  .wwu-section, .wwu-section--alt { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .wwu-hero-stats { gap: 1.25rem; }
  .wwu-process-grid { grid-template-columns: 1fr; }
  .wwu-engage-card { padding: 1.75rem; }
  .wwu-section, .wwu-section--alt { padding: 3rem 0; }
}
