.page-provider {
  --accent: var(--color-provider);
}

.provider-hero {
  background: radial-gradient(circle at 50% 82%, rgba(30, 58, 95, 0.08), transparent 36%), var(--color-white);
}

.proof-title {
  margin-bottom: 0;
  color: var(--color-black);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.provider-app-mockup {
  animation: floatSoft 4s ease-in-out infinite;
}

.mac-window {
  overflow: hidden;
  border: 0.5px solid rgba(210, 210, 215, 0.95);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: none;
}

.window-bar {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 8px;
  border-bottom: 0.5px solid var(--color-hairline);
  padding: 0 18px;
  background: rgba(245, 245, 247, 0.8);
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d2d2d7;
}

.window-content {
  display: grid;
  grid-template-columns: 174px 1fr;
  min-height: 396px;
}

.app-sidebar {
  border-right: 0.5px solid var(--color-hairline);
  padding: 28px;
  background: #fbfbfd;
}

.sidebar-logo {
  width: 34px;
  height: 34px;
  margin-bottom: 46px;
  border-radius: 10px;
  background: var(--color-provider);
}

.sidebar-line {
  width: 94px;
  height: 8px;
  margin-bottom: 16px;
  border-radius: var(--radius-pill);
  background: #d2d2d7;
}

.sidebar-line.active {
  background: rgba(30, 58, 95, 0.32);
}

.sidebar-line.short {
  width: 62px;
}

.app-main {
  padding: 34px;
  text-align: left;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0.5px solid rgba(30, 58, 95, 0.16);
  border-radius: var(--radius-pill);
  background: rgba(30, 58, 95, 0.06);
  color: var(--color-provider);
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
}

.status-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-success);
}

.earnings-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.mock-label {
  margin-bottom: 8px;
  color: var(--color-gray);
  font-size: 13px;
}

.mock-number {
  margin-bottom: 0;
  color: var(--color-black);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.activity-chart {
  display: flex;
  height: 132px;
  align-items: end;
  gap: 12px;
  margin-top: 42px;
  border-bottom: 0.5px solid var(--color-hairline);
}

.activity-chart span {
  flex: 1;
  min-width: 10px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, rgba(30, 58, 95, 0.72), rgba(30, 58, 95, 0.18));
}

.mock-footer-line {
  width: 58%;
  height: 8px;
  margin-top: 26px;
  border-radius: var(--radius-pill);
  background: #d2d2d7;
}

.calculator-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  padding: 42px;
}

.calculator-controls {
  display: grid;
  gap: 30px;
}

.field-label,
.range-head span {
  color: var(--color-gray);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.select-field {
  width: 100%;
  min-height: 54px;
  margin-top: 9px;
  border: 0.5px solid var(--color-hairline);
  border-radius: 14px;
  background: var(--color-white);
  color: var(--color-black);
  padding: 0 16px;
  outline: none;
}

.select-field:focus,
input[type="range"]:focus-visible {
  outline: 2px solid rgba(30, 58, 95, 0.22);
  outline-offset: 3px;
}

.range-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

input[type="range"] {
  width: 100%;
  height: 4px;
  appearance: none;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--color-provider), var(--color-provider)) 0/var(--range-progress, 67%) 100% no-repeat, #d2d2d7;
}

input[type="range"]::-webkit-slider-thumb {
  width: 24px;
  height: 24px;
  appearance: none;
  border: 0.5px solid rgba(210, 210, 215, 0.9);
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: none;
}

input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border: 0.5px solid rgba(210, 210, 215, 0.9);
  border-radius: 50%;
  background: var(--color-white);
}

.calculator-result {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-radius: 18px;
  background: #f5f5f7;
  padding: 34px;
}

.result-label {
  margin-bottom: 14px;
  color: var(--color-gray);
  font-size: 13px;
}

.result-month {
  margin-bottom: 10px;
  color: var(--color-black);
  font-size: clamp(42px, 5vw, 58px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.result-year {
  margin-bottom: 34px;
  color: var(--color-gray);
  font-size: 21px;
  font-weight: 300;
}

.calculator-result .micro-copy {
  margin: 18px 0 0;
}

.feature-grid .feature-card {
  background: var(--color-white);
}

.testimonial-card {
  margin: 0;
}

.testimonial-card blockquote {
  margin: 0 0 24px;
  color: var(--color-black);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.36;
}

.testimonial-card figcaption {
  color: var(--color-gray);
  font-size: 13px;
  line-height: 1.5;
}

.final-cta .dark-subline {
  color: rgba(255, 255, 255, 0.7);
}

.apple-badge {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

@media (max-width: 900px) {
  .window-content,
  .calculator-card {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    display: none;
  }

  .calculator-card {
    padding: 28px;
  }
}

@media (max-width: 767px) {
  .provider-app-mockup {
    animation: none;
  }

  .window-content {
    min-height: 340px;
  }

  .app-main {
    padding: 24px;
  }

  .earnings-row {
    grid-template-columns: 1fr;
  }

  .activity-chart {
    gap: 8px;
    height: 96px;
  }

  .calculator-result {
    min-height: auto;
    align-items: stretch;
    padding: 26px;
  }
}
