/* Center section-head text */
.section-head {
  text-align: center;
  margin-bottom: 2rem;
}
/* Center service-actions button */
.service-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}
/* Services Overview Grid */
.services-row-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 860px) {
  .services-row-grid {
    grid-template-columns: 1fr;
  }
}
/* What It Is Component - Scoped styles */
.what-is-section {
  background: #ffffff;
  border-top: 1px solid rgba(11,18,32,.10);
  border-bottom: 1px solid rgba(11,18,32,.10);
  padding-top: clamp(24px, 4vw, 40px);
  padding-bottom: clamp(56px, 7vw, 92px);
}

.what-is-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 28px);
}

.what-is-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(11,18,32,.62);
  margin: 0 0 14px 0;
}

.what-is-separator {
  opacity: 0.45;
}

.what-is-heading {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

.what-is-lead {
  font-size: 1.125rem;
  margin: 0 0 2rem 0;
  color: #2c3e50;
  max-width: 70ch;
  line-height: 1.7;
}

.what-is-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}

@media (max-width: 860px) {
  .what-is-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .what-is-card {
    padding: 2rem;
  }
  
  .what-is-practice-card {
    padding: 1.5rem;
  }
}

.what-is-card {
  border: 2px solid #f1f5f9;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.what-is-card:hover {
  border-color: #007bff;
  box-shadow: 0 8px 30px rgba(0,123,255,0.15);
  transform: translateY(-2px);
}

.what-is-stack {
  display: grid;
  gap: 12px;
}

.what-is-practice-card {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-left: 4px solid #007bff;
  border: 1px solid rgba(11,18,32,.08);
  border-radius: 12px;
  padding: 1.75rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.what-is-practice-card:hover {
  border-left-color: #0056b3;
  box-shadow: 0 4px 12px rgba(0,123,255,0.1);
}

.what-is-kicker {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #007bff;
  margin-bottom: 0.75rem;
}

.what-is-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

.what-is-content {
  max-width: 70ch;
}

.what-is-content p {
  margin: 0 0 1.25rem 0;
  color: #2c3e50;
  font-size: 1.125rem;
  line-height: 1.7;
}

.what-is-content p:last-child {
  margin-bottom: 0;
}

.what-is-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 26px;
}

.what-is-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #2196f3;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  font-size: 14px;
  font-weight: 600;
  color: #1565c0;
  user-select: none;
  transition: all 0.3s ease;
}

.what-is-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(33,150,243,0.2);
}

.what-is-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2196f3;
}

.what-is-card-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.what-is-icon {
  display: none;
}

.what-is-practice-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
  color: #1a1a1a;
}

.what-is-practice-content {
  margin: 0;
  color: #495057;
  font-size: 1rem;
  line-height: 1.65;
}

/* Audience Component - Matching what-it-is design */
.audience-section {
  background: #fff;
  padding: clamp(56px, 7vw, 92px) 0;
}

.audience-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 28px);
}

.audience-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(11,18,32,.62);
  margin: 0 0 14px 0;
}

.audience-heading {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

.audience-lead {
  font-size: 1.125rem;
  margin: 0 0 2rem 0;
  color: #2c3e50;
  max-width: 70ch;
  line-height: 1.7;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
  margin-top: 26px;
}

@media (max-width: 860px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }
}

.audience-card {
  background: rgba(11,18,32,.02);
  border: 1px solid rgba(11,18,32,.10);
  border-radius: 14px;
  padding: 20px;
  transition: all 0.2s ease;
}

.audience-card:hover {
  background: rgba(11,18,32,.04);
  border-color: rgba(11,18,32,.15);
}

.audience-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.audience-icon {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0,115,230,.18), rgba(0,91,181,.16));
  border: 1px solid rgba(0,115,230,.22);
  flex: 0 0 auto;
  margin-top: 2px;
}

.audience-text {
  margin: 0;
  color: rgba(11,18,32,.86);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
}

/* Audience Banner Layout */
.audience-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.audience-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.5)); */ 
  background: linear-gradient(135deg, rgba(11, 18, 32, 0.85) 0%, rgba(11, 18, 32, 0.7) 50%, rgba(0, 115, 230, 0.6) 100%);
  display: flex;
  align-items: center;
}
 
.audience-banner .audience-container {
  position: relative;
  z-index: 10;
  color: white;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 28px);
}

.audience-banner .audience-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 14px 0;
}

.audience-banner .audience-heading {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.02em;
}

.audience-banner .audience-lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin: 0 0 2rem 0;
  max-width: 70ch;
  line-height: 1.7;
}

.audience-content-banner {
  margin-top: 2rem;
}

.audience-grid-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
}

.audience-point-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex: 1;
  min-width: 250px;
}

@media (max-width: 768px) {
  .audience-grid-banner {
    flex-direction: column;
  }
  
  .audience-point-banner {
    min-width: auto;
  }
}

.audience-point-icon-banner {
  width: 12px;
  height: 12px;
  background-color: #0073e6;
  border-radius: 50%;
  flex-shrink: 0;
}

.audience-point-text-banner {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.65;
}

/* Benefits Component - Matching what-it-is design */
.benefits-section {
  background: linear-gradient(180deg, rgba(20, 70, 160, .05), transparent 60%);
  border-top: 1px solid rgba(11,18,32,.10);
  border-bottom: 1px solid rgba(11,18,32,.10);
  padding: clamp(56px, 7vw, 92px) 0;
}

.benefits-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 28px);
}

.benefits-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(11,18,32,.62);
  margin: 0 0 14px 0;
}

.benefits-heading {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

.benefits-lead {
  font-size: 1.125rem;
  margin: 0 0 2rem 0;
  color: #2c3e50;
  max-width: 70ch;
  line-height: 1.7;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 26px;
}

@media (max-width: 860px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.benefits-card {
  border: 1px solid rgba(11,18,32,.10);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(11,18,32,.08);
  padding: 22px;
  transition: all 0.2s ease;
}

.benefits-card:hover {
  box-shadow: 0 15px 35px rgba(11,18,32,.12);
  transform: translateY(-2px);
}

.benefits-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.benefits-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(0,115,230,.18), rgba(0,91,181,.16));
  border: 1px solid rgba(0,115,230,.22);
  flex: 0 0 auto;
  margin-top: 2px;
}

.benefits-content {
  flex: 1;
}

.benefits-title {
  font-size: 1.125rem;
  margin: 0 0 0.75rem 0;
  letter-spacing: -0.01em;
  color: #1a1a1a;
  font-weight: 700;
}

.benefits-text {
  margin: 0;
  color: #495057;
  font-size: 1rem;
  line-height: 1.65;
}

/* Challenges Component - Matching what-it-is design */
.challenges-section {
  background: #fff;
  padding: clamp(56px, 7vw, 92px) 0;
}

.challenges-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 28px);
}

.challenges-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(11,18,32,.62);
  margin: 0 0 14px 0;
}

.challenges-heading {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

.challenges-lead {
  font-size: 1.125rem;
  margin: 0 0 2rem 0;
  color: #2c3e50;
  max-width: 70ch;
  line-height: 1.7;
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
  margin-top: 26px;
}

@media (max-width: 860px) {
  .challenges-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.challenges-card {
  background: rgba(11,18,32,.02);
  border: 1px solid rgba(11,18,32,.10);
  border-radius: 14px;
  padding: 22px;
  transition: all 0.2s ease;
}

.challenges-card:hover {
  background: rgba(11,18,32,.04);
  border-color: rgba(11,18,32,.15);
}

.challenges-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.challenges-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,107,107,.18), rgba(255,69,58,.16));
  border: 1px solid rgba(255,107,107,.22);
  flex: 0 0 auto;
  margin-top: 2px;
}

.challenges-content {
  flex: 1;
}

.challenges-problem {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.challenges-solution {
  font-size: 1rem;
  color: #495057;
  line-height: 1.65;
  margin: 0;
}

/* Why It Matters Banner Component - Full width horizontal banner */
.why-matters-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.why-matters-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg, 
    rgba(11, 18, 32, 0.85) 0%, 
    rgba(11, 18, 32, 0.70) 50%, 
    rgba(0, 115, 230, 0.60) 100%
  );
  display: flex;
  align-items: center;
  padding: clamp(60px, 8vw, 100px) 0;
}

.why-matters-banner .why-matters-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 28px);
  position: relative;
  z-index: 2;
}

.why-matters-banner .why-matters-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.80);
  margin: 0 0 14px 0;
}

.why-matters-banner .why-matters-heading {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.02em;
  color: white;
}

.why-matters-banner .why-matters-lead {
  font-size: 1.125rem;
  margin: 0 0 2rem 0;
  color: rgba(255, 255, 255, 0.90);
  max-width: 70ch;
  line-height: 1.7;
}

.why-matters-content-banner {
  max-width: 800px;
}

.why-matters-banner .why-matters-text {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 2rem;
  font-weight: 400;
}

.why-matters-banner .why-matters-text p {
  margin: 0 0 16px 0;
}

.why-matters-banner .why-matters-text p:last-child {
  margin-bottom: 0;
}



.why-matters-points-banner {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

@media (max-width: 640px) {
  .why-matters-points-banner {
    grid-template-columns: 1fr;
  }
}

.why-matters-point-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.10);
  padding: 12px 16px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.20);
}

.why-matters-point-icon-banner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.90);
  flex: 0 0 auto;
}

.why-matters-point-text-banner {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.65;
  font-weight: 700;
}

/* Steps Component - Matching what-it-is design */
.steps-section {
  background: #fff;
  padding: clamp(56px, 7vw, 92px) 0;
}

.steps-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 28px);
}

.steps-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(11,18,32,.62);
  margin: 0 0 14px 0;
}

.steps-heading {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

.steps-lead {
  font-size: 1.125rem;
  margin: 0 0 2rem 0;
  color: #2c3e50;
  max-width: 70ch;
  line-height: 1.7;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 26px;
}

@media (max-width: 860px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.steps-card {
  background: rgba(11,18,32,.02);
  border: 1px solid rgba(11,18,32,.10);
  border-radius: 14px;
  padding: 24px;
  transition: all 0.2s ease;
  position: relative;
}

.steps-card:hover {
  background: rgba(11,18,32,.04);
  border-color: rgba(11,18,32,.15);
  transform: translateY(-2px);
}

.steps-card--active {
  background: rgba(0,115,230,.08);
  border-color: rgba(0,115,230,.20);
  box-shadow: 0 10px 28px rgba(0,115,230,.12);
}

.steps-card--active:hover {
  background: rgba(0,115,230,.12);
  border-color: rgba(0,115,230,.25);
}

.steps-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}

.steps-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(11,18,32,.08);
  border: 2px solid rgba(11,18,32,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 14px;
  font-weight: 600;
  color: rgba(11,18,32,.68);
  flex: 0 0 auto;
  margin-top: 2px;
}

.steps-number--active {
  background: linear-gradient(135deg, #0073e6, #005bb5);
  border-color: #0073e6;
  color: white;
}

.steps-content {
  flex: 1;
}

.steps-kicker {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 11px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(11,18,32,.58);
  margin-bottom: 4px;
}

.steps-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
  color: #1a1a1a;
  line-height: 1.4;
}

.steps-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.steps-link:hover {
  color: #0073e6;
}

.steps-description {
  font-size: 1rem;
  color: #495057;
  line-height: 1.65;
  margin: 0 0 1rem 0;
  padding-left: 48px;
}

.steps-current {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #0073e6;
  font-weight: 600;
  padding-left: 48px;
}

/* FAQ Component - Matching design system */
.faq-section {
  background: #fff;
  padding: 0 0 clamp(56px, 7vw, 92px) 0;
}

.faq-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 28px);
}

.faq-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(11,18,32,.62);
  margin: 0 0 14px 0;
}

.faq-heading {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

.faq-lead {
  font-size: 1.125rem;
  margin: 0 0 2rem 0;
  color: #2c3e50;
  max-width: 70ch;
  line-height: 1.7;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 26px;
}

.faq-item {
  background: rgba(11,18,32,.02);
  border: 1px solid rgba(11,18,32,.10);
  border-radius: 14px;
  padding: 20px;
  transition: all 0.2s ease;
}

.faq-item:hover {
  background: rgba(11,18,32,.04);
  border-color: rgba(11,18,32,.15);
}

.faq-item[open] {
  border-color: #0073e6;
  background: rgba(0,115,230,.05);
}

.faq-question {
  cursor: pointer;
  font-weight: 700;
  color: #1a1a1a;
  font-size: 1.125rem;
  line-height: 1.4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question-text {
  flex: 1;
}

.faq-toggle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0073e6;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-toggle::before {
  content: "+";
}

.faq-item[open] .faq-toggle::before {
  content: "−";
}

.faq-answer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(11,18,32,.10);
  color: #495057;
  font-size: 1.25rem;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .why-matters-banner {
    min-height: 600px;  /* Increased from 500px */
  }
}

@media (max-width: 640px) {
  .why-matters-banner {
    min-height: 650px;  /* Even taller for narrow screens */
  }
  
  .why-matters-points {
    min-height: 350px;  /* More space for 4 stacked points */
  }
}

/* Single Page Typography - Matches Service Page Typography System */

/* Apply consistent typography to single page content */

/* Container styling to match service pages */
.wrapper.style1 #content article {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 28px);
}

/* Headings using service page typography system */
.wrapper.style1 #content article h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

.wrapper.style1 #content article h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 2rem 0 1.5rem 0;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

.wrapper.style1 #content article h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 1.5rem 0 1rem 0;
  letter-spacing: -0.01em;
  color: #1a1a1a;
}

/* Body text using service page system */
.wrapper.style1 #content article p {
  font-size: 1rem;
  color: #495057;
  line-height: 1.65;
  margin: 0 0 1rem 0;
  max-width: 70ch;
}

/* First content paragraph as lead text */
.wrapper.style1 #content article > p:nth-of-type(2) {
  font-size: 1.125rem;
  color: #2c3e50;
  line-height: 1.7;
  margin: 0 0 2rem 0;
  font-weight: 500;
}

/* Lists */
.wrapper.style1 #content article ul,
.wrapper.style1 #content article ol {
  color: #495057;
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 1rem 0;
  max-width: 70ch;
}

.wrapper.style1 #content article li {
  margin: 0.25rem 0;
}

/* Strong text */
.wrapper.style1 #content article strong {
  color: #1a1a1a;
  font-weight: 700;
}

/* Links */
.wrapper.style1 #content article a {
  color: #007bff;
  font-weight: 600;
}

.wrapper.style1 #content article a:hover {
  color: #0056b3;
}

/* Blockquotes */
.wrapper.style1 #content article blockquote {
  border-left: 4px solid #007bff;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border-radius: 0 12px 12px 0;
  font-size: 1.125rem;
  color: #2c3e50;
  line-height: 1.6;
  font-style: italic;
  max-width: 70ch;
}

.wrapper.style1 #content article blockquote p {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}

.wrapper.style1 #content article blockquote p:last-child {
  margin-bottom: 0;
}

/* Code elements */
.wrapper.style1 #content article code {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 0.2em 0.4em;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.875em;
  color: #e83e8c;
}

/* Pre-formatted blocks */
.wrapper.style1 #content article pre {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 1rem;
  overflow-x: auto;
  margin: 1rem 0;
  max-width: 70ch;
}

.wrapper.style1 #content article pre code {
  background: none;
  border: none;
  padding: 0;
  color: #495057;
}

/* Last updated text styling */
.wrapper.style1 #content article p:first-child {
  font-size: 0.875rem;
  color: #6c757d;
  font-style: italic;
  margin-bottom: 2rem;
  max-width: none;
}

/* Override for actual first content paragraph */
.wrapper.style1 #content article p:nth-of-type(2) {
  font-size: 1.125rem;
  color: #2c3e50;
  line-height: 1.7;
  margin: 0 0 2rem 0;
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .wrapper.style1 #content article h1 {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }
  
  .wrapper.style1 #content article h2 {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
  }
}

/* Ensure privacy policy and other single pages use consistent styling */
.wrapper.style1 .container #content article h1,
.wrapper.style1 .container #content article h2,
.wrapper.style1 .container #content article h3 {
  font-family: inherit;
}

.wrapper.style1 .container #content article h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

.wrapper.style1 .container #content article h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 2rem 0 1.5rem 0;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

.wrapper.style1 .container #content article h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 1.5rem 0 1rem 0;
  letter-spacing: -0.01em;
  color: #1a1a1a;
}

.wrapper.style1 .container #content article p {
  font-size: 1rem;
  color: #495057;
  line-height: 1.65;
  margin: 0 0 1rem 0;
  max-width: 70ch;
}

.wrapper.style1 .container #content article ul,
.wrapper.style1 .container #content article ol {
  color: #495057;
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 1rem 0;
  max-width: 70ch;
}

.wrapper.style1 .container #content article strong {
  color: #1a1a1a;
  font-weight: 700;
}

.wrapper.style1 .container #content article a {
  color: #007bff;
  font-weight: 600;
}

@media (max-width: 480px) {
  .why-matters-banner {
    min-height: 700px;  /* Maximum height for very small screens */
  }
}

/* ========================================================================
   Services Overview Grid
   ======================================================================== */

.services-overview-section {
  padding: clamp(48px, 6vw, 80px) 0;
  background: #f8fafc;
  border-top: 1px solid rgba(11,18,32,.08);
  border-bottom: 1px solid rgba(11,18,32,.08);
}

.services-overview-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 32px);
}

.services-overview-head {
  margin-bottom: 2.5rem;
}

.services-overview-eyebrow {
  display: inline-block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0073e6;
  margin-bottom: 12px;
}

.services-overview-head h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #1a1a1a;
  margin: 0 0 14px;
}

.services-overview-head p {
  font-size: 1.05rem;
  color: #4B5563;
  max-width: 1200%;
  margin: 0;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  background: #ffffff;
  border: 1px solid rgba(11,18,32,.10);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  box-shadow: 0 8px 30px rgba(0,115,230,0.13);
  transform: translateY(-2px);
}

.service-top {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.service-number {
  width: 120px;
  height: 120px;
  flex: 0 0 120px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(0,115,230,.10), rgba(0,115,230,.18));
  border: 1px solid rgba(0,115,230,.18);
  color: #0073e6;
  font-weight: 700;
  font-size: 0.8rem;
  font-family: "Plus Jakarta Sans", -apple-system, sans-serif;
  text-align: center;
  line-height: 1.1;
  padding: 8px;
}

.service-top-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin: 0 0 6px;
}

.service-top-text p {
  font-size: 0.95rem;
  color: #4B5563;
  margin: 0;
  line-height: 1.5;
}

.service-explanation {
  font-size: 0.97rem;
  color: #374151;
  line-height: 1.65;
  margin: 0;
}

.service-card-considerations h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #6B7280;
  margin: 0 0 10px;
}

.service-card-considerations ul {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-card-considerations li {
  font-size: 0.93rem;
  color: #4B5563;
  line-height: 1.5;
}

.service-actions {
  margin-top: auto;
  padding-top: 6px;
}

.service-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  font-family: "Plus Jakarta Sans", -apple-system, sans-serif;
  border: 1px solid transparent;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
  border-bottom: none !important;
  text-align: center;
}

.service-actions .btn-primary {
  background: #0073e6;
  color: #ffffff;
  border-color: #0073e6;
}

.service-actions .btn-primary:hover {
  background: #005bb5;
  border-color: #005bb5;
  transform: translateY(-1px);
  color: #ffffff;
}

@media (max-width: 860px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.checklist-row {
  margin: 2.5rem 0;
}
.section-card {
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.012));
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
}
.checklist-item {
  margin-bottom: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid #eaeaea;
}
.checklist-item:last-child {
  border-bottom: none;
}

/* ========================================================================
   Decision Comparison Component
   ======================================================================== */

.comparison-section {
  background: #fff;
  padding: clamp(56px, 7vw, 92px) 0;
}

.comparison-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 28px);
}

.comparison-section .section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.comparison-section .eyebrow {
  display: inline-block;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0073e6;
  margin-bottom: 12px;
}

.comparison-section h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #1a1a1a;
  margin: 0;
}

.comparison-table-wrapper {
  background: #ffffff;
  border: 1px solid rgba(11,18,32,.10);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Plus Jakarta Sans", -apple-system, sans-serif;
}

.comparison-table caption {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.comparison-table th {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 2px solid rgba(0,115,230,.15);
  background: linear-gradient(135deg, #f8fafc 0%, #edf4fb 100%);
  color: #0073e6;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.comparison-table th:first-child {
  border-top-left-radius: 12px;
}

.comparison-table th:last-child {
  border-top-right-radius: 12px;
}

.comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(11,18,32,.08);
  vertical-align: top;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover {
  background: rgba(0,115,230,.03);
}

.service-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.01em;
}

.service-audience {
  font-size: 0.9rem;
  color: #495057;
  font-weight: 500;
}

.best-for,
.outcome {
  font-size: 1rem;
  color: #495057;
  line-height: 1.55;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .comparison-table-wrapper {
    padding: 20px;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 12px 16px;
  }
  
  .service-name {
    font-size: 1rem;
  }
  
  .service-audience {
    font-size: 0.85rem;
  }
}

@media (max-width: 640px) {
  .comparison-table th,
  .comparison-table td {
    padding: 10px 12px;
  }
  
  .comparison-table th {
    font-size: 0.85rem;
  }
  
  .best-for,
  .outcome {
    font-size: 0.9rem;
  }
}

.selector-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.selector-item {
  background: #f8f9fa;
  border: 1.5px solid #e0e0e0;
  border-radius: 0.75rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: "Plus Jakarta Sans", -apple-system, sans-serif;
}

.selector-item:hover,
.selector-item:focus-within {
  border-color: #0073e6;
  box-shadow: 0 2px 8px rgba(0,115,230,0.08);
}

.selector-item input[type="radio"] {
  accent-color: #0073e6;
  margin-right: 1rem;
  margin-top: 0.2rem;
  width: 1.2em;
  height: 1.2em;
}

.selector-item label {
  font-size: 1.1rem;
  font-weight: 500;
  color: #222;
  cursor: pointer;
  line-height: 1.4;
  font-family: inherit;
}

.notes-section {
  margin-top: 2rem;
  background: #eaf3fb;
  border-left: 4px solid #0073e6;
  padding: 1.25rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  color: #234;
  font-family: "Plus Jakarta Sans", -apple-system, sans-serif;
  font-style: italic;
}


/* ========================================================================
   How to Choose Selector Component - Fast Decision Panel
   ======================================================================== */

.how-to-choose-section {
  background: #fff;
  padding: clamp(56px, 7vw, 92px) 0;
}

.how-to-choose-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 28px);
}

.decision-panel {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 18px;
  border: 1px solid rgba(11,18,32,.08);
  padding: 32px;
}

.decision-header {
  text-align: center;
  margin-bottom: 32px;
}

.decision-header h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #1a1a1a;
  margin: 0 0 8px;
  font-family: "Plus Jakarta Sans", -apple-system, sans-serif;
}

.decision-header p {
  font-size: 1.1rem;
  color: #495057;
  margin: 0;
  font-family: "Plus Jakarta Sans", -apple-system, sans-serif;
}

.scenario-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  max-width: 1000px;
  margin: 0 auto;
}

.scenario-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(11,18,32,.10);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(11,18,32,.04);
}

.scenario-card:hover {
  background: #ffffff;
  border-color: #0073e6;
  box-shadow: 0 4px 20px rgba(0,115,230,0.12);
  transform: translateY(-2px);
  color: inherit;
  text-decoration: none;
}

.scenario-question {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a1a;
  font-family: "Plus Jakarta Sans", -apple-system, sans-serif;
  line-height: 1.4;
}

.scenario-arrow {
  font-size: 1.8rem;
  color: #0073e6;
  font-weight: 700;
  flex-shrink: 0;
  background: linear-gradient(145deg, rgba(0,115,230,.12), rgba(0,115,230,.18));
  border: 1px solid rgba(0,115,230,.25);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.scenario-recommendation {
  text-align: right;
  display: flex;
  align-items: baseline;
  gap: 8px;
  justify-content: flex-end;
}

.rec-label {
  font-size: 0.8rem;
  color: #495057;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.scenario-recommendation strong {
  font-size: 1rem;
  color: #0073e6;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", -apple-system, sans-serif;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .decision-panel {
    padding: 24px 20px;
  }
  
  .decision-header {
    margin-bottom: 24px;
  }
  
  .scenario-card {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: left;
  }
  
  .scenario-recommendation {
    text-align: left;
    justify-content: flex-start;
  }
  
  .scenario-question {
    font-size: 1rem;
  }
  
  .scenario-arrow {
    display: none;
  }
}

/* ========================================================================
   END Services Overview Grid
   ======================================================================== */
