@charset "utf-8";

/* ── WHY CHOOSE PROFESSIONALS PAGE STYLES ── */
/* Matches pricing/about/services design system */

/* ── HERO ── */
.wc-hero {
  background-image: linear-gradient(180deg, #779eab 0%, #ffffff 70%);
  padding: 40px 20px 50px;
  text-align: center;
}
.wc-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}
.wc-eyebrow {
  font-size: 0.72rem;
  font-weight: bold;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2b3a4b;
  margin-bottom: 8px;
}
.wc-eyebrow-center { text-align: center; }
.wc-eyebrow-gold { color: #f9a525; }
.wc-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: bold;
  color: #2b3a4b;
  margin-bottom: 12px;
  line-height: 1.15;
}
.wc-hero p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: #2b3a4b;
  font-weight: bold;
  max-width: 580px;
  margin: 0 auto 24px;
  line-height: 1.5;
}
.wc-hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── STAT STRIP ── */
.wc-stats {
  background: #ffffff;
  border-top: 1px solid #d0e4ea;
  border-bottom: 1px solid #d0e4ea;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.wc-stat-item {
  flex: 1;
  min-width: 130px;
  padding: 22px 16px;
  text-align: center;
  border-right: 1px solid #e0ecf0;
}
.wc-stat-item:last-child { border-right: none; }
.wc-stat-num {
  font-size: 1.9rem;
  font-weight: bold;
  color: #779eab;
  line-height: 1;
}
.wc-stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #777777;
  font-weight: bold;
  margin-top: 5px;
}

/* ── SHARED SECTION ── */
.wc-section {
  padding: 50px 20px;
  background: #ffffff;
}
.wc-section-alt { background: #f7f7f8; }
.wc-section-inner {
  max-width: 960px;
  margin: 0 auto;
}
.wc-divider {
  height: 1px;
  background: #d0e4ea;
  border: none;
  margin: 0;
}
.wc-h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #2b3a4b;
  font-weight: bold;
  margin-bottom: 14px;
  text-shadow: -1px 1px 2px rgba(72,72,72,0.15);
  line-height: 1.2;
}
.wc-h2-center { text-align: center; }
.wc-intro-p {
  font-size: 0.97rem;
  color: #555555;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: center;
}
.wc-body-p {
  font-size: 0.97rem;
  color: #555555;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 720px;
}

/* ── COMPARE CARDS ── */
.wc-compare-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}
.wc-compare-card {
  flex: 1;
  min-width: 280px;
  max-width: 370px;
  border-radius: 10px;
  padding: 28px 24px;
  position: relative;
}
.wc-compare-diy {
  background: #fff8f7;
  border: 2px solid #f5c4bc;
}
.wc-compare-pro {
  background: #f2f9f2;
  border: 2px solid #b0cdd6;
  box-shadow: rgba(119,158,171,0.2) 0px 8px 24px;
}
.wc-compare-pro::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #779eab;
  border-radius: 10px 10px 0 0;
}
.wc-compare-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #f9a525;
  color: #ffffff;
  font-weight: bold;
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
  text-shadow: -1px 1px 2px rgba(0,0,0,0.25);
}
.wc-compare-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.wc-compare-icon { font-size: 1.4rem; }
.wc-compare-header h3 {
  font-size: 1.05rem;
  font-weight: bold;
  color: #2b3a4b;
}
.wc-compare-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.wc-compare-list li {
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}
.wc-good { color: #2b4a2b; }
.wc-good span { color: #8bb839; font-weight: bold; flex-shrink: 0; }
.wc-bad { color: #5a2a2a; }
.wc-bad span { color: #cc4444; font-weight: bold; flex-shrink: 0; }

/* ── ICON CARDS (risks section) ── */
.wc-icon-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.wc-icon-card {
  background: #ffffff;
  border: 1px solid #b0cdd6;
  border-radius: 8px;
  padding: 22px 18px;
  width: 100%;
  max-width: 210px;
  text-align: center;
}
.wc-icon-card-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.wc-icon-card h4 {
  font-size: 0.97rem;
  font-weight: bold;
  color: #2b3a4b;
  margin-bottom: 8px;
}
.wc-icon-card p {
  font-size: 0.85rem;
  color: #666666;
  line-height: 1.6;
}

/* ── BENEFITS LIST ── */
.wc-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.wc-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f7f7f8;
  border: 1px solid #d0e4ea;
  border-radius: 8px;
  padding: 18px 16px;
}
.wc-check {
  color: #8bb839;
  font-weight: bold;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.wc-benefit-item strong {
  display: block;
  color: #2b3a4b;
  font-size: 0.95rem;
  margin-bottom: 5px;
}
.wc-benefit-item p {
  font-size: 0.87rem;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

/* ── EXPERTISE SECTION ── */
.wc-expertise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.wc-expertise-text {
  flex: 1;
  min-width: 280px;
}
.wc-expertise-text p {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.8;
  margin-bottom: 12px;
}
.wc-text-link {
  color: #779eab;
  font-weight: bold;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-block;
  margin-top: 6px;
}
.wc-text-link:hover { text-decoration: underline; }
.wc-expertise-stats {
  flex: 1;
  min-width: 240px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.wc-expertise-stat {
  background: #ffffff;
  border: 2px solid #d0e4ea;
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
  position: relative;
}
.wc-expertise-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #779eab;
  border-radius: 10px 10px 0 0;
}
.wc-expertise-stat-num {
  font-size: 1.7rem;
  font-weight: bold;
  color: #779eab;
  line-height: 1;
}
.wc-expertise-stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #777777;
  font-weight: bold;
  margin-top: 5px;
}

/* ── REVIEWS BAND ── */
.wc-reviews-band {
  background-image: linear-gradient(135deg, #779eab 0%, #5c8d9d 100%);
  padding: 50px 20px;
  color: #ffffff;
}
.wc-reviews-band .wc-eyebrow { text-align: center; }
.wc-reviews-h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  margin-bottom: 30px;
  text-shadow: -1px 1px 2px rgba(0,0,0,0.25);
}
.wc-reviews-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto 28px;
}
.wc-reviews-cta { text-align: center; }

/* ── WHITE REVIEW CARDS ── */
.wc-review-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  padding: 22px;
  width: 100%;
  max-width: 390px;
  box-shadow: rgba(0,0,0,0.1) 0px 4px 16px;
  color: #ffffff;
}
.wc-review-card .rev_btm_sec { padding: 0 0 10px; }
.wc-review-card .rev_lt_nm_ct { display: flex; align-items: center; padding-bottom: 8px; }
.wc-review-card .rev_lt_cir { display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: bold; height: 40px; width: 40px; min-width: 40px; color: #ffffff; border-radius: 50%; }
.wc-review-card .rev_cir_bg_mb { background-color: #5c6bc0; }
.wc-review-card .rev_cir_bg_gg { background-color: #33691e; }
.wc-review-card .rev_cir_bg_wa { background-color: #ef6c00; }
.wc-review-card .rev_lt { margin: 0; color: #ffffff; font-weight: bold; }
.wc-review-card .rev_nm_ct { align-self: center; padding-left: 10px; line-height: 1.2; }
.wc-review-card .rev_nm cite { font-style: normal; font-weight: bold; font-size: 0.97rem; color: #ffffff; }
.wc-review-card .rev_a { text-decoration: none; color: #ffffff; }
.wc-review-card .rev_a:hover { text-decoration: underline; }
.wc-review-card .rev_ct { font-size: 0.82rem; }
.wc-review-card .rev_txt_color { color: rgba(255,255,255,0.6); }
.wc-review-card .review-stars { display: flex; align-items: center; padding: 4px 0 8px; gap: 8px; }
.wc-review-card .review-via p { font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.wc-review-card blockquote p { font-size: 0.9rem; color: rgba(255,255,255,0.9); line-height: 1.7; margin-top: 4px; }
.wc-review-card .highlight {
  background: linear-gradient(90deg, rgba(247,245,11,0) 0, rgba(247,245,11,0.75) 5%, rgba(247,245,11,0.25) 95%, rgba(247,245,11,0) 100%);
  border-radius: 0.1rem;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  display: inline;
  margin-left: -0.2em; margin-right: -0.2em;
  padding-left: 0.2em; padding-right: 0.2em;
  color: #2b3a4b;
}

/* ── BOTTOM CTA BAND ── */
.wc-cta-band {
  background-image: linear-gradient(135deg, #2b3a4b 0%, #1a2a38 100%);
  color: #ffffff;
  padding: 50px 20px;
}
.wc-cta-h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 10px;
  text-shadow: -1px 1px 2px rgba(0,0,0,0.25);
}
.wc-cta-sub {
  color: rgba(255,255,255,0.8);
  font-size: 0.97rem;
  max-width: 540px;
  margin: 0 auto 20px;
  line-height: 1.7;
}
.wc-cta-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  margin-bottom: 10px;
}
.wc-cta-list span {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: bold;
}

/* ── BUTTONS ── */
.btn-wc-primary {
  display: inline-block;
  background: #f9a525;
  color: #ffffff;
  font-weight: bold;
  font-size: 0.97rem;
  padding: 13px 28px;
  border-radius: 6px;
  text-decoration: none;
  text-shadow: -1px 1px 2px rgba(0,0,0,0.25);
  box-shadow: rgba(0,0,0,0.15) 0px 4px 12px;
  transition: background 0.18s, transform 0.15s;
}
.btn-wc-primary:hover { background: #e0941a; transform: translateY(-1px); }
.btn-wc-ghost {
  display: inline-block;
  background: transparent;
  color: #2b3a4b;
  font-weight: bold;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 6px;
  border: 2px solid rgba(43,58,75,0.3);
  text-decoration: none;
  transition: border-color 0.18s;
}
.btn-wc-ghost:hover { border-color: rgba(43,58,75,0.6); }
.btn-wc-ghost-light {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  font-weight: bold;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.5);
  text-decoration: none;
  transition: border-color 0.18s, background 0.18s;
}
.btn-wc-ghost-light:hover { border-color: #ffffff; background: rgba(255,255,255,0.1); }
.btn-wc-outline {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  font-weight: bold;
  font-size: 0.88rem;
  padding: 10px 22px;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.6);
  text-decoration: none;
  transition: background 0.18s;
}
.btn-wc-outline:hover { background: rgba(255,255,255,0.1); }

/* ── RESPONSIVE ── */
@media screen and (max-width: 700px) {
  .wc-compare-card { max-width: 100%; }
  .wc-icon-card { max-width: 100%; }
  .wc-benefits-grid { grid-template-columns: 1fr; }
  .wc-expertise-grid { flex-direction: column; }
  .wc-expertise-stats { min-width: 100%; }
  .wc-review-card { max-width: 100%; }
  .wc-stat-item { min-width: 110px; padding: 16px 10px; }
}
