:root {
  --bg: #f8fafc;
  --text: #111827;
  --muted: #64748b;
  --line: #dbe3ef;
  --card: #ffffff;
  --navy: #07111f;
  --blue: #2563eb;
  --teal: #14b8a6;
  --gold: #f59e0b;
  --shadow: 0 22px 70px rgba(15, 23, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 8%;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
}

.logo-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 8px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.nav-cta,
.btn.primary {
  color: white;
  background: var(--blue);
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.25);
}

.btn.secondary,
.btn.ghost {
  color: var(--text);
  background: white;
  border: 1px solid var(--line);
}

.menu-btn {
  display: none;
  min-height: 42px;
  padding: 0 14px;
  color: white;
  background: var(--navy);
  border: 0;
  border-radius: 8px;
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 56px;
  align-items: center;
  min-height: 700px;
  padding: 76px 8%;
  color: white;
  background:
    radial-gradient(circle at 80% 18%, rgba(20, 184, 166, 0.28), transparent 30%),
    linear-gradient(135deg, #07111f 0%, #111827 58%, #172554 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow.disclaimer {
  color: red;
}

.hero h1,
.page-hero h1,
.section-heading h2 {
  margin: 0;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 850px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.02;
}

.hero-text {
  max-width: 670px;
  margin: 22px 0 0;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-card {
  padding: 26px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.status-line {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dbeafe;
  font-weight: 800;
}

.pulse {
  width: 11px;
  height: 11px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(20, 184, 166, 0.16);
}

/* .printer-box {
  position: relative;
  height: 260px;
  margin: 26px 0;
  background: #0f172a;
  border-radius: 8px;
  overflow: hidden;
}

.printer-top {
  position: absolute;
  left: 26%;
  right: 26%;
  top: 48px;
  height: 72px;
  background: #e2e8f0;
  border-radius: 8px 8px 0 0;
}

.printer-body {
  position: absolute;
  left: 15%;
  right: 15%;
  top: 112px;
  height: 104px;
  background: linear-gradient(180deg, #ffffff, #cbd5e1);
  border-radius: 8px;
}

.printer-paper {
  position: absolute;
  left: 31%;
  right: 31%;
  bottom: 24px;
  height: 78px;
  background: white;
  border-radius: 5px; */
/* } */
.printer-box {
  margin: 26px 0;
  border-radius: 12px;
  overflow: hidden;
}

.printer-box img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}
.mini-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.mini-stats div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.mini-stats strong {
  display: block;
  font-size: 28px;
}

.mini-stats span {
  color: #cbd5e1;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 20px 8%;
  background: white;
  border-bottom: 1px solid var(--line);
}

.trust-bar span {
  padding: 10px 14px;
  color: #334155;
  background: #eef6ff;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  font-weight: 800;
}

.wizard-section,
.features,
.page-hero,
.contact-layout {
  padding: 72px 8%;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2,
.page-hero h1 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
}

.page-hero {
  color: white;
  background: linear-gradient(135deg, #07111f, #172554);
}

.page-hero p {
  max-width: 760px;
  color: #cbd5e1;
  line-height: 1.7;
}

.wizard,
.contact-form,
.contact-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.08);
}

.wizard {
  max-width: 1080px;
  padding: 28px;
}

.progress {
  height: 8px;
  margin-bottom: 30px;
  background: #e2e8f0;
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  width: 20%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transition: width 0.25s ease;
}

.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
}

.wizard-step h3 {
  margin: 0 0 20px;
  font-size: 28px;
}

.step-subheading {
  margin-top: 30px !important;
}

.model-inline {
  max-width: 520px;
  margin-bottom: 10px;
}

.option-grid,
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.option-card,
.card {
  padding: 22px;
  color: var(--text);
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.option-card {
  min-height: 82px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease;
}

.option-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.option-card:hover {
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.38);
  background: #ffffff;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.14);
}

.option-card:hover::before {
  opacity: 1;
}

.option-grid.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.option-grid.compact .option-card {
  min-height: 56px;
}

.option-card.selected {
  color: white;
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 22px 54px rgba(7, 17, 31, 0.24);
}

.option-card.selected:hover {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 24px 60px rgba(7, 17, 31, 0.3);
}

.diagnosis-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 28px;
  align-items: start;
}

.question-panel {
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(15, 23, 42, 0.08);
}

.question-panel h3 {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.question-block {
  margin-top: 22px;
}

.question-block p {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
}

.choice-row {
  display: flex;
  gap: 10px;
}

.choice-btn {
  min-height: 42px;
  padding: 0 18px;
  color: var(--text);
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  cursor: pointer;
}

.choice-btn.selected {
  color: white;
  background: #404852;
  border-color: #404852;
}

.check-line {
  display: flex;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  color: var(--text);
  font-weight: 800;
}

.check-line input {
  width: auto;
  min-width: 16px;
}

.wizard-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 24px;
}

.wizard-error {
  min-height: 22px;
  margin: 14px 0 0;
  color: #dc2626;
  font-weight: 800;
}

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

.form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

label {
  display: grid;
  gap: 8px;
  color: #334155;
  font-weight: 800;
}

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

input,
textarea {
  width: 100%;
  padding: 13px;
  color: var(--text);
  background: white;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(37, 99, 235, 0.18);
  border-color: var(--blue);
}

.review-box,
.solution-box {
  padding: 24px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.review-note {
  max-width: 760px;
  margin: -8px 0 22px;
  color: var(--muted);
  line-height: 1.65;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.review-item {
  padding: 16px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.review-item span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.review-item strong {
  display: block;
  color: var(--text);
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.solution-box ol {
  color: #334155;
  line-height: 1.8;
}

.features {
  background: #eef6ff;
}

.reviews-section {
  padding: 76px 8%;
  color: white;
  background: #0b111d;
}

.reviews-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.reviews-section h2 {
  margin: 0 0 56px;
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.review-card,
.review-form {
  background: #141c2d;
  border: 1px solid #25314a;
  border-radius: 18px;
}

.review-card {
  padding: 30px;
}

.stars {
  color: #f59e0b;
  font-size: 18px;
  letter-spacing: 1px;
}

.review-card p {
  color: #9db4d8;
  font-style: italic;
  line-height: 1.65;
}

.review-card strong {
  color: white;
}

.review-form {
  max-width: 580px;
  margin-top: 48px;
  padding: 34px 36px;
}

.review-form h3 {
  margin: 0 0 22px;
  font-size: 20px;
}

.review-form input,
.review-form textarea {
  margin-bottom: 14px;
  color: white;
  background: #0b111d;
  border-color: #25314a;
}

.review-form .btn {
  width: 100%;
  background: linear-gradient(135deg, #2f6df6, #5b4df5);
}

.review-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--teal);
  font-weight: 800;
}

.card {
  background: white;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.card:hover::before {
  opacity: 1;
}

.card h3 {
  margin: 0 0 10px;
  color: #172554;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
}

.contact-form,
.contact-card {
  padding: 26px;
}

.contact-card h2 {
  margin-top: 0;
}

.contact-card p,
.contact-card li {
  color: var(--muted);
  line-height: 1.7;
}

.form-message {
  margin: 0;
  color: #047857;
  font-weight: 800;
}

.footer {
  padding: 60px 8% 40px;
  color: #90a8cf;
  background: #0f1929;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1300px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid #1e3a5f;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  color: white;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo span:last-child {
  display: flex;
  align-items: center;
  gap: 4px;
}

.footer-logo span:last-child span:first-child {
  color: white;
}

.footer-logo span:last-child span:last-child {
  color: #2563eb;
}

.footer-brand p {
  max-width: 280px;
  line-height: 1.6;
  font-size: 14px;
  color: #94a3b8;
}

.footer-associates {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}

.footer-associates span {
  color: white;
  font-weight: 600;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-col h4 {
  margin: 0;
  color: white;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.footer-col a,
.footer-col-contact a {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.8;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-col a:hover,
.footer-col-contact a:hover {
  color: white;
}

.footer-col a::before {
  content: '›';
  font-size: 18px;
  font-weight: bold;
}

.footer-col-contact {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-col-contact h4 {
  margin: 0;
  color: white;
  font-size: 16px;
  font-weight: 800;
}

.footer-col-contact p {
  margin: 0;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col-contact a {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.8;
}

.footer-btn {
  width: fit-content;
  background: linear-gradient(135deg, #2f6df6, #5b4df5);
}

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 40px;
}

.footer-disclaimer {
  background: rgba(30, 58, 95, 0.3);
  border: 1px solid #1e3a5f;
  border-radius: 8px;
  padding: 24px;
  margin-top: 24px;
}

.footer-disclaimer p {
  margin: 0;
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.6;
}

.footer-disclaimer strong {
  color: white;
}

@media (max-width: 900px) {
  .header {
    align-items: flex-start;
    flex-direction: column;
  }

  .menu-btn {
    display: inline-flex;
    align-items: center;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav.open {
    display: flex;
  }

  .hero,
  .contact-layout,
  .diagnosis-grid {
    grid-template-columns: 1fr;
  }

  .option-grid,
  .cards,
  .reviews-grid,
  .footer-inner,
  .form,
  .review-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 38px;
  }

  .btn,
  .hero-actions {
    width: 100%;
  }
}

/* ═══════════════════════════════════════════
   STEP 6 — 3-STAGE PREMIUM FLOW
═══════════════════════════════════════════ */

/* ── 6a: Resolution Center ── */
.rc-wrapper {
  max-width: 780px;
  margin: 0 auto;
  padding: 8px 0 16px;
}
.rc-title-block {
  text-align: center;
  margin-bottom: 24px;
}
.rc-title {
  margin: 0 0 8px;
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 900;
  letter-spacing: 0.06em;
  color: #4f46e5;
}
.rc-sub {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.rc-card {
  background: #fff5f5;
  border: 1px solid #fecaca;
  border-radius: 14px;
  padding: 28px 24px 20px;
  margin-bottom: 28px;
}
.rc-callaway {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.07em;
  color: #b91c1c;
  margin: 0 0 22px;
}
.rc-phone-badge {
  position: relative;
  width: 48px;
  height: 48px;
  background: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(220,38,38,0.15);
}
.rc-one {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: white;
  border: 2px solid #dc2626;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  color: #dc2626;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.rc-phones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
.rc-phone-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: 0 2px 10px rgba(15,23,42,0.06);
}
.rc-flag { font-size: 30px; line-height: 1; }
.rc-country {
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 3px;
}
.rc-number {
  display: block;
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
}
.rc-chat-note {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.rc-continue-wrap {
  display: flex;
  justify-content: center;
}
.rc-continue-btn {
  background: linear-gradient(135deg, #6d28d9, #4f46e5) !important;
  color: white !important;
  border: none !important;
  padding: 16px 36px !important;
  border-radius: 50px !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
  box-shadow: 0 8px 28px rgba(79,70,229,0.4) !important;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.rc-continue-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(79,70,229,0.5) !important;
}

/* ── 6b: Self-Troubleshooting Steps ── */
.st-wrapper {
  padding: 4px 0 16px;
}
.st-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 14px;
  box-shadow: 0 4px 16px rgba(15,23,42,0.06);
}
.st-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.st-icon {
  width: 46px;
  height: 46px;
  background: #eef2ff;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 22px;
  flex-shrink: 0;
}
.st-header-title {
  margin: 0 0 3px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--text);
}
.st-header-sub {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.st-badge {
  white-space: nowrap;
  padding: 8px 14px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  flex-shrink: 0;
}
.st-issue-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 14px;
  box-shadow: 0 4px 16px rgba(15,23,42,0.06);
}
.st-issue-icon {
  font-size: 24px;
  flex-shrink: 0;
}
.st-issue-title {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 2px;
}
.st-issue-sub {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.st-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}
.st-col {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  box-shadow: 0 4px 14px rgba(15,23,42,0.05);
}
.st-col-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.st-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.st-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #334155;
  font-size: 14px;
  line-height: 1.6;
}
.st-chk {
  color: #4f46e5;
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
  font-weight: 900;
}
.st-finish-wrap {
  display: flex;
  justify-content: center;
}

/* ── 6c: Thank You ── */
.ty-wrapper {
  padding: 4px 0 16px;
}
.ty-header-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(15,23,42,0.07);
}
.ty-check {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 26px;
  font-weight: 900;
  flex-shrink: 0;
}
.ty-headline {
  margin: 0 0 6px;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--text);
}
.ty-name {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--muted);
}
.ty-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.ty-card {
  border-radius: 14px;
  padding: 26px;
}
.ty-card-dark {
  background: #07111f;
  color: white;
}
.ty-card-light {
  background: white;
  border: 1px solid var(--line);
  color: var(--text);
  box-shadow: 0 4px 18px rgba(15,23,42,0.07);
  display: flex;
  flex-direction: column;
}
.ty-card-icon-wrap {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 14px;
}
.ty-heart { background: #fef2f2 !important; }
.ty-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
}
.ty-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #94a3b8;
}
.ty-card-light p { color: var(--muted); }
.ty-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.ty-list li {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.5;
}
.ty-footer-note {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin: 4px 0 14px;
}

@media (max-width: 900px) {
  .rc-phones,
  .st-columns,
  .ty-cards-row { grid-template-columns: 1fr; }
  .st-header { flex-direction: column; align-items: flex-start; }
}


/* WHY CHOOSE US NEW DESIGN */

.why-boxes{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.why-box{
  display:flex;
  align-items:flex-start;
  gap:18px;

  padding:28px;

  border-radius:18px;

  transition:.3s ease;
}

.why-box:hover{
  transform:translateY(-5px);
}

.why-icon{
  width:42px;
  height:42px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;

  font-size:22px;
  font-weight:700;
}

.why-box h3{
  margin:0 0 8px;
  font-size:28px;
}

.why-box p{
  margin:0;
  color:#475569;
  line-height:1.6;
}

/* BLUE */

.why-blue{
  background:#eef4ff;
  border:2px solid #bfd6ff;
}

.why-blue .why-icon{
  background:#2563eb;
  color:white;
}

/* GREEN */

.why-green{
  background:#ecfdf3;
  border:2px solid #b8f5cb;
}

.why-green .why-icon{
  background:#059669;
  color:white;
}

/* YELLOW */

.why-yellow{
  background:#fff9df;
  border:2px solid #facc15;
}

.why-yellow .why-icon{
  background:#d97706;
  color:white;
}

/* WHY CHOOSE US NEW DESIGN */

.why-boxes{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.why-box{
  display:flex;
  align-items:flex-start;
  gap:18px;

  padding:28px;

  border-radius:18px;

  transition:.3s ease;
}

.why-box:hover{
  transform:translateY(-5px);
}

.why-icon{
  width:42px;
  height:42px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:50%;

  font-size:22px;
  font-weight:700;
}

.why-box h3{
  margin:0 0 8px;
  font-size:28px;
}

.why-box p{
  margin:0;
  color:#475569;
  line-height:1.6;
}

@media (max-width: 900px) {
  .hero,
  .page-hero,
  .contact-layout,
  .diagnosis-grid,
  .option-grid,
  .cards,
  .reviews-grid,
  .footer-inner,
  .form,
  .review-grid,
  .why-boxes,
  .pricing-cards,
  .pricing-features {
    grid-template-columns: 1fr;
  }

  .hero,
  .page-hero,
  .wizard-section,
  .features,
  .contact-layout,
  .about-hero,
  .contact-hero,
  .pricing-section,
  .pricing-hero {
    padding: 54px 6%;
  }

  .page-hero,
  .pricing-hero {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading h2,
  .page-hero h1,
  .pricing-hero h1,
  .about-content h1,
  .contact-intro h1 {
    font-size: clamp(30px, 6vw, 48px);
  }

  .footer-inner {
    gap: 24px;
    padding-bottom: 32px;
  }

  .footer-col,
  .footer-col-contact,
  .footer-brand,
  .footer-associates {
    width: 100%;
  }

  .footer-bottom {
    padding-top: 28px;
  }

  .hero-actions,
  .form,
  .model-inline,
  .review-grid,
  .progress,
  .option-grid,
  .cards,
  .why-boxes,
  .pricing-features {
    gap: 18px;
  }
}

@media (max-width: 560px) {
  .header {
    padding: 16px 5%;
  }

  .hero,
  .page-hero,
  .pricing-section,
  .contact-layout,
  .about-hero,
  .contact-hero,
  .pricing-hero {
    padding: 48px 5%;
  }

  .hero h1,
  .page-hero h1,
  .pricing-hero h1,
  .section-heading h2 {
    font-size: clamp(26px, 10vw, 38px);
  }

  .hero-text,
  .page-hero p,
  .footer-brand p,
  .why-box p,
  .review-note,
  .pricing-card-title p,
  .pricing-feature-label,
  .pricing-channel,
  .footer-col-contact p,
  .footer-col a,
  .footer-col-contact a {
    font-size: 14px;
  }

  .btn,
  .hero-actions,
  .footer-btn,
  .pricing-btn {
    width: 100%;
  }

  .nav {
    width: 100%;
  }

  .footer-inner {
    display: grid;
    gap: 20px;
  }

  .footer-col,
  .footer-col-contact,
  .footer-brand {
    align-items: flex-start;
  }

  .footer-disclaimer {
    padding: 18px;
  }

  .footer-bottom p {
    font-size: 13px;
  }
}

/* BLUE */

.why-blue{
  background:#eef4ff;
  border:2px solid #bfd6ff;
}

.why-blue .why-icon{
  background:#2563eb;
  color:white;
}

/* GREEN */

.why-green{
  background:#ecfdf3;
  border:2px solid #b8f5cb;
}

.why-green .why-icon{
  background:#059669;
  color:white;
}

/* YELLOW */

.why-yellow{
  background:#fff9df;
  border:2px solid #facc15;
}

.why-yellow .why-icon{
  background:#d97706;
  color:white;
}