*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red: #e63000;
  --red-soft: #e6300012;
  --red-border: #e6300028;
  --navy: #111827;
  --text: #1f2937;
  --text-mid: #4b5563;
  --text-mute: #6b7280;
  --bg: #ffffff;
  --bg-off: #f9fafb;
  --border: #e5e7eb;
  --gold: #f59e0b;
}

/* ── BASE ── */
html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.78;
  -webkit-font-smoothing: antialiased;
}

/* ── HEADER ── */
.hi-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.hi-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.hi-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--red);
  text-decoration: none;
  letter-spacing: -.3px;
}

.hi-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.hi-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: color .2s;
}

.hi-nav a:hover {
  color: var(--red);
}

/* ── TAG BAR ── */
.hi-tag-bar {
  background: linear-gradient(135deg, #e6300010, #e6300006);
  border-bottom: 1px solid var(--border);
  padding: 9px 20px;
  text-align: center;
}

.hi-tag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}

/* ── ARTICLE ── */
.hi-article {
  max-width: 820px;
  margin: 0 auto;
  padding: 36px 22px 72px;
}

/* ── META ── */
.hi-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 22px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.hi-meta-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--red);
}

.hi-meta-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hi-meta-author {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.hi-meta-details {
  font-size: 12px;
  color: var(--text-mute);
}

.hi-meta-badge {
  margin-left: auto;
  background: #fef3c7;
  color: #92400e;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .5px;
  border: 1px solid #fde68a;
}

/* ── SECTIONS ── */
.hi-sections .section-block {
  margin-bottom: 52px;
}

.hi-sections .section-block:last-child {
  margin-bottom: 0;
}

/* ── HEADINGS ── */
.hi-sections h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(26px, 4.5vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -.4px;
  margin: 0 0 18px;
}

.hi-sections h1 em {
  font-style: normal;
  color: var(--red);
  font-weight: 800;
}

.hi-sections h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  color: var(--navy);
  margin: 44px 0 18px;
  padding-left: 16px;
  border-left: 4px solid var(--red);
  line-height: 1.3;
}

.hi-sections h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin: 28px 0 10px;
  line-height: 1.35;
}

/* ── BODY TEXT ── */
.hi-sections p {
  margin-bottom: 22px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.78;
}

.hi-sections p.lead {
  font-size: clamp(18px, 2.5vw, 20px);
  color: var(--text);
  line-height: 1.7;
  font-weight: 400;
}

/* ── STRONG / HIGHLIGHT ── */
.hi-sections strong {
  color: var(--navy);
  font-weight: 700;
}

.hi-sections .hl {
  background: linear-gradient(120deg, #fef08a 0%, #fde047 100%);
  padding: 1px 4px;
  border-radius: 3px;
  color: var(--navy);
  font-weight: 600;
}

.hi-sections .hl-red {
  color: var(--red);
  font-weight: 700;
}

/* ── CHECKLIST ── */
.checklist {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  transition: background .15s;
}

.checklist li:first-child {
  border-top: 1px solid var(--border);
}

.checklist li:hover {
  background: #fafafa;
}

.checklist .ck-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 12px;
  color: #fff;
  font-weight: 800;
}

.checklist li .ck-text {
  flex: 1;
}

.checklist li .ck-text strong {
  color: var(--navy);
  display: block;
  margin-bottom: 2px;
  font-size: 16px;
}

/* ── CAPTION / SUBHEADLINE ── */
.caption-box {
  background: var(--navy);
  border-radius: 8px;
  padding: 22px 24px;
  margin: 6px 0 24px;
}

.caption-box p {
  font-size: clamp(16px, 2.2vw, 18px);
  color: rgba(255, 255, 255, .88);
  line-height: 1.68;
  margin: 0;
}

.caption-box strong {
  color: #fff;
}

/* ── CTA BUTTON ── */
.cta-wrap {
  text-align: center;
  margin: 28px 0 8px;
}

.cta-main {
  display: inline-block;
  background: var(--red);
  color: #fff !important;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 7px;
  letter-spacing: .2px;
  box-shadow: 0 4px 18px rgba(230, 48, 0, .35);
  transition: transform .15s, box-shadow .15s, background .2s;
  border: none;
  cursor: pointer;
  line-height: 1.3;
}

.cta-main:hover {
  background: #c42800;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(230, 48, 0, .45);
}

.cta-main.wide {
  width: 100%;
  max-width: 480px;
  text-align: center;
  display: block;
  margin: 0 auto;
}

.cta-sub {
  font-size: 13px;
  color: var(--text-mute);
  text-align: center;
  margin-top: 8px;
}

/* ── INLINE CTA BLOCK ── */
.cta-block-inline {
  text-align: center;
  margin: 32px 0;
  padding: 28px 20px;
  background: var(--red-soft);
  border: 1px solid var(--red-border);
  border-radius: 10px;
}

/* ── DOBRA 4 — key phrase box ── */
.key-box {
  background: var(--bg-off);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: 0 8px 8px 0;
  padding: 18px 22px;
  margin: 24px 0;
}

.key-box p {
  margin: 0;
  font-size: 17px;
  color: var(--text);
  line-height: 1.65;
}

/* ── DOBRA 5 — key phrase box reuse ── */

/* ── TESTIMONIALS ── */
.testimonials-breakout {
  background: var(--bg-off);
  padding: 52px 22px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
}

.testimonials-breakout h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin: 0 0 6px;
  border-left: none;
  padding-left: 0;
}

.testimonials-breakout .sub {
  text-align: center;
  color: var(--text-mute);
  font-size: 14px;
  margin: 0 0 36px;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 22px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, .06);
  display: flex;
  flex-direction: column;
}

.testi-top {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 16px;
}

.testi-av {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e5e7eb;
  flex-shrink: 0;
}

.testi-av-info p:first-child {
  font-weight: 700;
  font-size: 14px;
  color: #111;
  margin: 0;
}

.testi-av-info p:last-child {
  color: var(--text-mute);
  font-size: 12px;
  margin: 2px 0 5px;
}

.testi-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 1px;
}

.testi-quote {
  font-size: 15px;
  line-height: 1.72;
  color: #374151;
  font-style: normal;
  flex: 1;
}

.testi-quote strong {
  font-style: normal;
  color: var(--navy);
}

/* ── FAQ ACCORDION ── */
.faq-section h2 {
  margin-bottom: 24px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow .2s;
}

.faq-item:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
}

.faq-item.open {
  border-color: #e6300040;
  box-shadow: 0 2px 16px rgba(230, 48, 0, .1);
}

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  transition: background .15s;
}

.faq-btn:hover {
  background: #fafafa;
}

.faq-item.open .faq-btn {
  background: var(--red-soft);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-mid);
  transition: transform .3s, background .2s, color .2s;
  line-height: 1;
}

.faq-item.open .faq-icon {
  background: var(--red);
  color: #fff;
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s ease;
  padding: 0 20px;
}

.faq-item.open .faq-body {
  max-height: 300px;
  padding: 0 20px 18px;
}

.faq-body p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.68;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ── FINAL CTA DOBRA ── */
.final-dobra {
  background: var(--navy);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  margin-top: 52px;
}

.final-dobra h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(20px, 3vw, 27px);
  font-weight: 700;
  color: #fff;
  border-left: none;
  padding-left: 0;
  margin: 0 0 16px;
  line-height: 1.3;
}

.final-dobra p {
  font-size: 17px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.65;
  margin: 0 0 26px;
}

/* ── FOOTER ── */
.site-footer {
  background: #111;
  color: #999;
  font-size: 12px;
  line-height: 1.7;
  padding: 36px 24px 28px;
  margin-top: 40px;
}

.site-footer .inner {
  max-width: 860px;
  margin: 0 auto;
}

.footer-disc {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 18px 20px;
  margin-bottom: 22px;
}

.footer-disc strong {
  color: #bbb;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .8px;
  display: block;
  margin-bottom: 8px;
}

.footer-disc p {
  color: #777;
  margin: 0 0 8px;
}

.footer-disc p:last-child {
  margin: 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.footer-links a {
  color: #555;
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover {
  color: #999;
}

.footer-copy {
  text-align: center;
  color: #444;
}

/* ── RESPONSIVE ── */
/* ── HERO IMAGE SLOT ── */
.hero-image-wrap {
  margin: 24px 0 0;
  border-radius: 10px;
  /*overflow: hidden;*/
  background: #f3f4f6;
  border: 1px solid var(--border);
  position: relative;
  width: 100%;
  aspect-ratio: 5/4;
}

.hero-img {
  width: 99%;
  height: 99%;
  object-fit: cover;
  display: block;
}

/* Placeholder state when no image is loaded */
.hero-image-wrap:not(:has(img[src^="YOUR"]))::after {
  display: none;
}

.hero-image-wrap:has(img[src^="YOUR"]),
.hero-image-wrap:has(img:not([src])) {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

.hero-image-wrap:has(img[src^="YOUR"])::before {
  content: "[ Image ]";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  color: #9ca3af;
  letter-spacing: .5px;
  text-transform: uppercase;
  background: repeating-linear-gradient(45deg,
      #f9fafb,
      #f9fafb 10px,
      #f3f4f6 10px,
      #f3f4f6 20px);
}

/* ── RESPONSIVE — mobile-first ── */

/* Tablet portrait (max 900px) */
@media(max-width:900px) {
  .testi-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Large phone / small tablet (max 768px) */
@media(max-width:768px) {
  body {
    font-size: 17px;
    line-height: 1.72;
  }

  .hi-article {
    padding: 24px 18px 60px;
  }

  .hi-nav {
    display: none;
  }

  .hi-logo {
    font-size: 18px;
  }

  .hi-sections h1 {
    font-size: clamp(22px, 6vw, 32px);
    letter-spacing: -.3px;
  }

  .hi-sections h2 {
    font-size: clamp(19px, 4.5vw, 22px);
    margin: 32px 0 14px;
    padding-left: 12px;
  }

  .hi-sections h3 {
    font-size: 17px;
  }

  .hi-sections p {
    font-size: 17px;
  }

  .caption-box {
    padding: 18px 18px;
  }

  .caption-box p {
    font-size: 16px;
  }

  .checklist li {
    font-size: 16px;
    padding: 12px 14px;
  }

  .cta-main {
    font-size: 16px;
    padding: 16px 28px;
    width: 100%;
    display: block;
    text-align: center;
    box-sizing: border-box;
  }

  .cta-block-inline {
    padding: 22px 16px;
    margin: 24px 0;
  }

  .final-dobra {
    padding: 30px 20px;
  }

  .final-dobra h2 {
    font-size: clamp(18px, 4.5vw, 22px);
  }

  .faq-btn {
    font-size: 15px;
    padding: 16px 16px;
  }

  .testimonials-breakout {
    padding: 40px 16px;
  }

  .testi-card {
    padding: 22px 18px;
  }

  .testi-quote {
    font-size: 14px;
  }

  .key-box {
    padding: 16px 18px;
  }

  .key-box p {
    font-size: 16px;
  }
}

/* Phone (max 580px) */
@media(max-width:580px) {
  body {
    font-size: 16px;
    line-height: 1.7;
  }

  .hi-article {
    padding: 16px 14px 52px;
  }

  .hi-header-inner {
    height: 52px;
    padding: 0 14px;
  }

  .hi-tag-bar {
    padding: 8px 14px;
  }

  .hi-sections h1 {
    font-size: clamp(21px, 7vw, 28px);
    margin: 0 0 14px;
  }

  .hi-sections h2 {
    font-size: clamp(17px, 5vw, 18px);
    font-weight: 600;
    margin: 28px 0 12px;
    border-left-width: 3px;
    padding-left: 10px;
  }

  .hi-sections p,
  .hi-sections p.lead {
    font-size: 16px;
  }

  .caption-box {
    padding: 16px 14px;
    border-radius: 6px;
  }

  .caption-box p {
    font-size: 15px;
    line-height: 1.65;
  }

  .checklist li {
    font-size: 15px;
    padding: 11px 12px;
    gap: 10px;
  }

  .ck-icon {
    width: 20px;
    height: 20px;
    font-size: 11px;
    flex-shrink: 0;
  }

  .cta-main {
    font-size: 15px;
    padding: 15px 20px;
    border-radius: 6px;
  }

  .cta-block-inline {
    padding: 18px 14px;
    margin: 20px 0;
    border-radius: 8px;
  }

  .testi-grid {
    grid-template-columns: 1fr !important;
  }

  .testi-card {
    padding: 20px 16px;
    border-radius: 10px;
  }

  .testi-av {
    width: 48px;
    height: 48px;
  }

  .testi-quote {
    font-size: 14px;
    line-height: 1.65;
  }

  .testi-av-info p:first-child {
    font-size: 13px;
  }

  .testi-stars {
    font-size: 14px;
  }

  .testimonials-breakout {
    padding: 32px 14px;
  }

  .testimonials-breakout h2 {
    font-size: 18px;
  }

  .faq-btn {
    font-size: 14px;
    padding: 14px 14px;
    gap: 10px;
  }

  .faq-icon {
    width: 24px;
    height: 24px;
    font-size: 16px;
  }

  .faq-body p {
    font-size: 14px;
  }

  .final-dobra {
    padding: 24px 16px;
    border-radius: 8px;
  }

  .final-dobra h2 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .final-dobra p {
    font-size: 15px;
  }

  .key-box {
    padding: 14px 16px;
  }

  .key-box p {
    font-size: 15px;
  }

  .hi-meta {
    gap: 8px;
    padding-bottom: 16px;
    margin-bottom: 22px;
  }

  .hi-meta-badge {
    margin-left: 0;
  }

  .hi-meta-author {
    font-size: 13px;
  }

  .hi-meta-details {
    font-size: 11px;
  }
}

/* Extra small (max 380px — small Android devices) */
@media(max-width:380px) {
  body {
    font-size: 15px;
  }

  .hi-article {
    padding: 14px 12px 48px;
  }

  .hi-sections h1 {
    font-size: 20px;
  }

  .hi-sections h2 {
    font-size: 17px;
  }

  .caption-box p {
    font-size: 14px;
  }

  .checklist li {
    font-size: 14px;
  }

  .cta-main {
    font-size: 14px;
    padding: 14px 16px;
  }

  .faq-btn {
    font-size: 13px;
  }
}

/* Cards Stage */
.stage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 0 0 28px;
}

@media(max-width:600px) {
  .stage-grid {
    grid-template-columns: 1fr;
  }
}

.stage-card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
}

.stage-card-head {
  padding: 16px 18px 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.stage-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  margin-top: 2px;
  flex-shrink: 0;
}

.stage-card-title {
  font-size: 17px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin: 0;
}

.stage-card-sub {
  font-size: 13px;
  font-weight: 600;
  margin: 3px 0 0;
  opacity: .75;
}

.stage-card-body {
  padding: 0 18px 16px;
}

.stage-symptoms {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}

.stage-symptoms li {
  font-size: 14px;
  color: #333;
  padding: 5px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}

.stage-symptoms li:last-child {
  border-bottom: none;
}

.stage-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

.stage-footer {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  padding: 12px 14px;
  border-radius: 6px;
  margin-top: 2px;
}

/* S1 - green */
.s1 .stage-card-head {
  background: #f0fdf4;
  border-bottom: 1px solid #dcfce7;
}

.s1 .stage-badge {
  background: #dcfce7;
  color: #15803d;
}

.s1 .stage-card-sub {
  color: #16a34a;
}

.s1 .stage-dot {
  background: #22c55e;
}

.s1 .stage-footer {
  background: #f0fdf4;
  color: #15803d;
}

/* S2 - amber */
.s2 .stage-card-head {
  background: #fffbeb;
  border-bottom: 1px solid #fef3c7;
}

.s2 .stage-badge {
  background: #fef3c7;
  color: #b45309;
}

.s2 .stage-card-sub {
  color: #d97706;
}

.s2 .stage-dot {
  background: #f59e0b;
}

.s2 .stage-footer {
  background: #fffbeb;
  color: #b45309;
}

/* S3 - orange */
.s3 .stage-card-head {
  background: #fff7ed;
  border-bottom: 1px solid #fed7aa;
}

.s3 .stage-badge {
  background: #fed7aa;
  color: #9a3412;
}

.s3 .stage-card-sub {
  color: #ea580c;
}

.s3 .stage-dot {
  background: #f97316;
}

.s3 .stage-footer {
  background: #fff7ed;
  color: #9a3412;
}

/* S4 - red */
.s4 .stage-card-head {
  background: #fff1f0;
  border-bottom: 1px solid #fecaca;
}

.s4 .stage-badge {
  background: #fecaca;
  color: #991b1b;
}

.s4 .stage-card-sub {
  color: #e63000;
}

.s4 .stage-dot {
  background: #e63000;
}

.s4 .stage-footer {
  background: #fff1f0;
  color: #991b1b;
}