/* index.html: larger section headings for the landing page */
.section h2 {
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.1;
  color: var(--navy-mid);
  margin-bottom: 0.75rem;
}

/* index.html: blue integration pills (distinct from grey default) */
.int-pill {
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  background: var(--blue-dim);
  border: 1px solid rgba(58, 159, 216, 0.3);
  padding: 7px 16px;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  cursor: default;
}

.int-pill:hover {
  background: rgba(58, 159, 216, 0.18);
  border-color: rgba(58, 159, 216, 0.55);
  transform: translateY(-2px);
}


.why-card-v2 {
  background: #EBF2F8;
  border: 1px solid rgba(58, 159, 216, 0.25);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: border-color 0.25s, transform 0.2s, box-shadow 0.25s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.why-card-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-lt));
  opacity: 0;
  transition: opacity 0.25s;
}

.why-card-v2:hover {
  background: #ddeaf5;
  border-color: rgba(58, 159, 216, 0.55);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(20, 43, 58, 0.12);
}

.why-card-v2:hover::before {
  opacity: 1;
}

.why-icon-v2 {
  font-size: 24px;
  color: var(--blue);
  margin-bottom: 0.25rem;
  transition: color 0.2s, transform 0.2s;
}

.why-card-v2:hover .why-icon-v2 {
  color: var(--blue-lt);
  transform: scale(1.1);
}

.why-title-v2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1A3448;
}

.why-desc-v2 {
  font-size: 14px;
  color: #4A6A82;
  line-height: 1.65;
}


.step-card-v2 {
  background: var(--navy);
  border: 1px solid rgba(58, 159, 216, 0.2);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: border-color 0.25s, transform 0.2s, box-shadow 0.25s;
}

.step-card-v2:hover {
  border-color: rgba(58, 159, 216, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(20, 43, 58, 0.25);
}

.step-card-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-lt));
  opacity: 0;
  transition: opacity 0.25s;
}

.step-card-v2:hover::before {
  opacity: 1;
}

.step-num-v2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: #5BB8E8;
  line-height: 1;
  margin-bottom: 0.75rem;
  transition: color 0.25s;
  user-select: none;
}

.step-card-v2:hover .step-num-v2 {
  color: #3A9FD8;
}

.step-title-v2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: rgba(240, 244, 248, 0.95);
  margin-bottom: 0.5rem;
}

.step-desc-v2 {
  font-size: 14px;
  color: rgba(240, 244, 248, 0.55);
  line-height: 1.65;
  flex: 1;
}

.step-connector {
  display: flex;
  align-items: center;
  color: #3A9FD8;
  font-size: 22px;
  flex-shrink: 0;
  padding-top: 2rem;
  margin: 0 -0.5rem;
}

@media (max-width: 700px) {
  .step-connector {
    display: none;
  }
}
