/* ============================================
   ATT — Solution Finder Block
   ============================================ */

.att-finder {
  --att-navy: #00053e;
  --att-orange: #f57f29;
  --att-cream: #f5f0eb;

  padding: clamp(64px, 7vw, 96px) 0;
}

.att-finder--bg-white {
  background-color: #ffffff;
}
.att-finder--bg-cream {
  background-color: var(--att-cream);
}
.att-finder--bg-navy {
  background-color: var(--att-navy);
}

.att-finder__container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding-inline: 15px;
}

@media (min-width: 992px) {
  .att-finder__container {
    padding-inline: 30px;
  }
}

/* --- Panel ---------------------------------- */
.att-finder__panel {
  border-radius: 20px;
  padding: clamp(28px, 4vw, 40px);
  box-shadow: 0 12px 40px rgba(0, 5, 62, 0.08);
}

.att-finder--bg-white .att-finder__panel {
  background: var(--att-cream);
}

.att-finder--bg-cream .att-finder__panel {
  background: #ffffff;
}

.att-finder--bg-navy .att-finder__panel {
  background: #ffffff;
}

/* Options: white on cream panel, cream on white panel */
.att-finder--bg-white .att-finder__option,
.att-finder--bg-navy .att-finder__option {
  background: #ffffff;
}

.att-finder--bg-cream .att-finder__option {
  background: var(--att-cream);
}

.att-finder__step:focus,
.att-finder__outcome:focus {
  outline: none;
}

/* --- Question ------------------------------- */
.att-finder__step-label {
  color: var(--att-orange);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.att-finder__question {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 28px;
  color: var(--att-navy);
}

/* --- Options -------------------------------- */
.att-finder__options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.att-finder__option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  text-align: left;
  padding: 22px;
  border: 2px solid rgba(0, 5, 62, 0.08);
  border-radius: 16px;
  background: #ffffff;
  cursor: pointer;
  font-family: inherit;
  transition:
    border-color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease;
}

.att-finder__option:hover,
.att-finder__option:focus-visible {
  border-color: var(--att-orange);
  background: rgba(245, 127, 41, 0.06);
  outline: none;
}

.att-finder__option-indicator {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(0, 5, 62, 0.18);
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease;
}

.att-finder__option-indicator svg {
  opacity: 0;
  transition: opacity 0.2s ease;
}

.att-finder__option:hover .att-finder__option-indicator,
.att-finder__option:focus-visible .att-finder__option-indicator {
  border-color: var(--att-orange);
  background: var(--att-orange);
}

.att-finder__option:hover .att-finder__option-indicator svg,
.att-finder__option:focus-visible .att-finder__option-indicator svg {
  opacity: 1;
}

.att-finder__option-title {
  display: block;
  font-weight: 700;
  font-size: 1rem;
  color: var(--att-navy);
  margin-bottom: 4px;
}

.att-finder__option-desc {
  display: block;
  font-size: 0.92rem;
  line-height: 1.6;
  color: #666666;
}

/* --- Nav ------------------------------------ */
.att-finder__nav {
  margin-top: 24px;
}

.att-finder__back,
.att-finder__restart {
  background: none;
  border: none;
  color: var(--att-navy);
  font-weight: 600;
  font-family: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 4px 0;
}

.att-finder__back:hover,
.att-finder__restart:hover {
  color: var(--att-orange);
}

/* --- Outcome -------------------------------- */
.att-finder__outcome {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.att-finder__outcome-eyebrow {
  color: var(--att-orange);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.att-finder__outcome-title {
  color: var(--att-navy);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 12px;
}

.att-finder__outcome-tagline {
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--att-navy);
  line-height: 1.5;
  margin: 0 0 10px;
}

.att-finder__outcome-desc {
  color: #555555;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 22px;
}

.att-finder__outcome-desc p:last-child {
  margin-bottom: 0;
}

.att-finder__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--att-orange);
  color: #ffffff;
  padding: 14px 26px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition:
    background-color 0.22s ease,
    transform 0.18s ease,
    box-shadow 0.22s ease;
  box-shadow: 0 4px 16px rgba(245, 127, 41, 0.3);
}

.att-finder__cta:hover,
.att-finder__cta:focus-visible {
  background: var(--att-navy);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 5, 62, 0.25);
}

.att-finder__cta-arrow {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.att-finder__cta:hover .att-finder__cta-arrow {
  transform: translateX(4px);
}

.att-finder__nav--outcome {
  margin-top: 28px;
}

/* --- Responsive ----------------------------- */
@media (max-width: 767px) {
  .att-finder {
    padding: 48px 0;
  }
  .att-finder__option {
    padding: 18px;
  }
}
