/* =============================================
   OUTBOUND — Pricing Page Styles
   ============================================= */

/* ---- Pricing Nav ---- */
.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav__link:hover {
  color: var(--white);
  background: var(--surface-2);
}

.nav__link--active {
  color: var(--white);
}

.nav__cta-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: var(--orange);
  padding: 7px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav__cta-link:hover {
  opacity: 0.88;
}

/* ---- Pricing Hero ---- */
.pricing-hero {
  padding: 72px 24px 56px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.pricing-hero__inner {
  max-width: 600px;
  margin: 0 auto;
}

.pricing-hero__badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  font-family: var(--font-display);
  margin-bottom: 20px;
}

.pricing-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
}

.pricing-hero__sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
}

/* ---- Pricing Grid ---- */
.pricing-grid-section {
  padding: 64px 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: start;
  }
}

/* ---- Tier Cards ---- */
.tier-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.tier-card:hover {
  border-color: var(--muted-2);
}

.tier-card--featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange), 0 0 40px rgba(255, 92, 0, 0.08);
}

.tier-card__badge-popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-display);
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.tier-card__header {
  margin-bottom: 28px;
}

.tier-card__name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.tier-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 10px;
}

.tier-card__amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
}

.tier-card__period {
  font-size: 16px;
  color: var(--muted);
}

.tier-card__tagline {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.tier-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}

.tier-card__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--white);
}

.tier-card__feature svg {
  color: var(--orange);
  flex-shrink: 0;
}

.tier-card__action {
  margin-top: auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s, transform 0.1s;
  width: 100%;
}

.btn:active {
  transform: scale(0.98);
}

.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
}

.btn--primary:hover:not(:disabled) {
  opacity: 0.88;
}

.btn--secondary {
  background: var(--surface-2);
  color: var(--white);
  border: 1px solid var(--border);
}

.btn--secondary:hover:not(:disabled) {
  background: #222228;
  border-color: var(--muted-2);
}

.btn--full {
  width: 100%;
}

/* ---- Pricing Note ---- */
.pricing-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.pricing-note svg {
  color: var(--orange);
  flex-shrink: 0;
}

/* ---- Quote Section ---- */
.quote-section {
  padding: 80px 24px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.quote-section__inner {
  max-width: 680px;
  margin: 0 auto;
}

.quote-section__header {
  text-align: center;
  margin-bottom: 48px;
}

.quote-section__badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  font-family: var(--font-display);
  margin-bottom: 16px;
}

.quote-section__headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 12px;
}

.quote-section__sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

/* ---- Quote Form ---- */
.quote-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.quote-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .quote-form__row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.form-field__optional {
  font-weight: 400;
  color: var(--muted-2);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--muted-2);
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2371717A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--orange);
}

.form-field__error {
  font-size: 12px;
  color: #EF4444;
  display: none;
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: #EF4444;
}

.form-field.has-error .form-field__error {
  display: block;
}

/* ---- Quote Success ---- */
.quote-success {
  text-align: center;
  padding: 48px 32px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.quote-success__icon {
  margin-bottom: 20px;
}

.quote-success__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.quote-success__body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* ---- FAQ ---- */
.faq-section {
  padding: 80px 24px;
  max-width: 880px;
  margin: 0 auto;
}

.faq-section__headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 40px;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 640px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.faq-item__q {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.faq-item__a {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}