/* =========================================================================
   /why-ignyte — dynamic value page. Navy throughout; the phone + floating
   replies stack cleanly on mobile (phone on top, replies below).
   ========================================================================= */

.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; padding: 0; margin: -1px; }

/* ---- Industry selector -------------------------------------------------- */
.why-select { padding: 40px 0 0; }
.why-select .wrap { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.why-select-label { font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--text2); font-weight: 600; }
.why-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 760px; }
.why-btn {
	appearance: none; cursor: pointer; font: inherit; padding: 9px 18px; border-radius: 999px;
	background: transparent; color: var(--text2); border: 1px solid var(--border);
	transition: color .15s, background .15s, border-color .15s;
}
.why-btn:hover { color: var(--text); border-color: color-mix(in srgb, var(--accent) 50%, var(--border)); }
.why-btn.is-active { background: var(--accent); color: var(--navy); border-color: var(--accent); font-weight: 600; }
.why-btn:focus-visible { outline: 2px solid var(--mint); outline-offset: 2px; }
.why-dropdown { display: none; width: 100%; max-width: 340px; }
.why-dropdown select { width: 100%; padding: 12px 14px; border-radius: 10px; background: var(--surface); color: var(--text); border: 1px solid var(--border); font: inherit; }

/* ---- Hero (dynamic) ----------------------------------------------------- */
.why-hero { padding: 40px 0 52px; text-align: center; }
.why-hero h1 { font-size: clamp(30px, 5vw, 52px); line-height: 1.08; max-width: 860px; margin: 0 auto; }
.why-hero-sub { max-width: 680px; margin: 20px auto 0; font-size: 18px; line-height: 1.6; color: var(--text2); }
.why-hero-cta { margin-top: 28px; }

/* ---- Proof: phone + floating replies ------------------------------------ */
.why-proof { padding: 44px 0 84px; border-top: 1px solid var(--border); text-align: center; }
.why-proof-intro { font-size: clamp(22px, 3vw, 30px); font-weight: 700; color: var(--text); margin: 0; }
.why-proof-outro { max-width: 680px; margin: 40px auto 0; font-size: 16px; line-height: 1.6; color: var(--text2); }
.why-stage { display: flex; align-items: center; justify-content: center; gap: 44px; margin-top: 40px; }

.why-phone { flex: none; width: 280px; background: var(--surface); border: 1px solid var(--border); border-radius: 32px; padding: 14px; box-shadow: 0 22px 54px rgba(0, 0, 0, .45); }
.why-phone-notch { width: 96px; height: 6px; border-radius: 999px; background: var(--border); margin: 4px auto 12px; }
.why-phone-screen { background: var(--navy); border-radius: 22px; padding: 20px 16px; min-height: 230px; display: flex; }
.why-msg-out { margin-left: auto; max-width: 92%; }
.why-msg-out p { margin: 0; text-align: left; font-size: 13.5px; line-height: 1.5; font-weight: 500; color: var(--navy); background: var(--accent); padding: 12px 14px; border-radius: 16px 16px 4px 16px; white-space: pre-line; }

.why-replies { display: flex; flex-direction: column; gap: 16px; width: 340px; text-align: left; }
.why-reply { background: var(--surface); border: 1px solid var(--border); border-radius: 16px 16px 16px 4px; padding: 13px 16px; }
.why-reply-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--mint); margin-bottom: 6px; }
.why-reply-text { margin: 0; font-size: 14.5px; line-height: 1.5; color: var(--text); }

/* ---- Cadence (universal) ------------------------------------------------ */
.why-cadence { padding: 72px 0; border-top: 1px solid var(--border); }
.why-steps { list-style: none; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.why-step { padding: 24px 20px; }
.why-day { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .06em; color: var(--accent); background: color-mix(in srgb, var(--accent) 12%, transparent); padding: 4px 11px; border-radius: 999px; margin-bottom: 12px; }
.why-step h3 { font-size: 16px; color: var(--text); margin-bottom: 8px; }
.why-step p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--text2); }
.why-close-line { margin-top: 28px; font-size: 16.5px; font-weight: 600; color: var(--text); }

/* ---- Close + CTA -------------------------------------------------------- */
.why-final { padding: 72px 0 88px; border-top: 1px solid var(--border); text-align: center; }
.why-final-copy { max-width: 720px; margin: 0 auto; font-size: 18px; line-height: 1.6; color: var(--text2); }
.why-final-copy strong { color: var(--text); }
.why-final .why-hero-cta { margin-top: 26px; }

/* ---- Responsive --------------------------------------------------------- */
@media (max-width: 900px) { .why-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 760px) {
	.why-stage { flex-direction: column; gap: 28px; }
	.why-phone { width: 100%; max-width: 300px; }
	.why-replies { width: 100%; max-width: 420px; }
	.why-proof, .why-cadence, .why-final { padding-top: 52px; padding-bottom: 52px; }
}
@media (max-width: 640px) {
	.why-btns { display: none; }
	.why-dropdown { display: block; }
}
@media (max-width: 480px) { .why-steps { grid-template-columns: 1fr; } }
