/* =====================================================
   AD 9 — General Cancer Hospital (the workhorse)
   Page-specific styles. Inherits from cion-base.css
   ===================================================== */

/* ========================================
   TOP RIBBON — trust signals at the very top
   ======================================== */
.cion-top-ribbon {
  background: var(--cion-purple-deep);
  color: var(--white);
  padding: var(--s-2) var(--s-4);
  font-size: 0.875rem;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.cion-top-ribbon strong { color: var(--cion-pink-light); }

/* ========================================
   NAVBAR
   ======================================== */
.cion-nav {
  position: sticky;
  top: 2rem;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--cion-pink-light);
  padding: var(--s-3) 0;
  box-shadow: var(--shadow-sm);
}

.cion-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
}

.cion-nav-logo img { height: 40px; width: auto; }

.cion-nav-call {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  background: linear-gradient(135deg, var(--cion-purple-light), var(--cion-purple));
  color: var(--white) !important;
  padding: var(--s-3) var(--s-5);
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.9375rem;
  box-shadow: var(--shadow-sm);
}

.cion-nav-call svg { width: 18px; height: 18px; }

@media (max-width: 480px) {
  .cion-nav-logo img { height: 32px; }
  .cion-nav-call { padding: var(--s-2) var(--s-4); font-size: 0.875rem; }
}

/* ========================================
   HERO
   ======================================== */
.cion-hero {
  background: linear-gradient(135deg, var(--cion-lavender) 0%, var(--white) 60%);
  padding: var(--s-7) 0 var(--s-8);
  position: relative;
  overflow: hidden;
}

.cion-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(199, 82, 127, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cion-hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--s-7);
  align-items: center;
  position: relative;
}

.cion-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-2) var(--s-4);
  background: var(--white);
  border: 1px solid var(--cion-pink-light);
  border-radius: var(--r-pill);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cion-purple);
  margin-bottom: var(--s-4);
  box-shadow: var(--shadow-sm);
}

.cion-hero-eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: cionDotPulse 1.4s ease-in-out infinite;
}

.cion-hero-title {
  font-size: clamp(1.875rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: var(--s-4);
  color: var(--cion-purple);
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.cion-hero-title .cion-highlight {
  background: linear-gradient(120deg, transparent 0%, transparent 30%, var(--cion-pink-light) 30%, var(--cion-pink-light) 100%);
  padding: 0 0.2em;
  white-space: nowrap;
}

.cion-hero-sub {
  font-size: 1.125rem;
  color: var(--ink-500);
  margin-bottom: var(--s-5);
  line-height: 1.55;
  text-wrap: balance;
}

.cion-hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-5);
  display: grid;
  gap: var(--s-2);
}

.cion-hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  font-size: 0.9375rem;
  color: var(--ink-700);
  font-weight: 500;
}

.cion-hero-bullets svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px; }

.cion-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  align-items: center;
  margin-top: var(--s-5);
}

.cion-hero-rating {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 0.875rem;
  color: var(--ink-500);
}
.cion-hero-rating img { height: 18px; }
.cion-hero-rating strong { color: var(--ink-900); }

@media (max-width: 968px) {
  .cion-hero-grid { grid-template-columns: 1fr; gap: var(--s-5); }
  .cion-hero { padding: var(--s-5) 0 var(--s-6); }
}

/* ========================================
   HERO FORM
   ======================================== */
.cion-hero-form {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--cion-pink-light);
  position: relative;
}

.cion-hero-form::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(135deg, var(--cion-purple-light), var(--cion-pink));
  border-radius: var(--r-lg);
  z-index: -1;
  opacity: 0.3;
  filter: blur(8px);
}

.cion-hero-form-flag {
  display: inline-block;
  background: linear-gradient(135deg, var(--cion-pink), var(--cion-purple-light));
  color: var(--white);
  padding: var(--s-1) var(--s-3);
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--s-3);
}

.cion-hero-form h3 {
  font-size: 1.375rem;
  margin-bottom: var(--s-2);
  color: var(--cion-purple);
}

.cion-hero-form-value {
  font-size: 0.875rem;
  color: var(--ink-500);
  margin-bottom: var(--s-4);
}

.cion-hero-form-value s { color: var(--ink-400); }
.cion-hero-form-value strong { color: var(--success); font-size: 1rem; }

.cion-form-tags {
  display: grid;
  gap: var(--s-2);
  margin-bottom: var(--s-4);
}

.cion-form-tag-row {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 0.8125rem;
  color: var(--ink-500);
}

.cion-form-tag-row svg { width: 16px; height: 16px; flex-shrink: 0; }

.cion-hero-form-or {
  text-align: center;
  margin: var(--s-3) 0 var(--s-2);
  position: relative;
  font-size: 0.75rem;
  color: var(--ink-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cion-hero-form-or::before,
.cion-hero-form-or::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 22px);
  height: 1px;
  background: var(--ink-200);
}
.cion-hero-form-or::before { left: 0; }
.cion-hero-form-or::after { right: 0; }

.cion-hero-form-callbtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: var(--s-3);
  background: var(--white);
  border: 1.5px solid var(--cion-purple);
  border-radius: var(--r-md);
  color: var(--cion-purple) !important;
  font-weight: 600;
  font-size: 0.9375rem;
  width: 100%;
}

.cion-hero-form-callbtn:hover { background: var(--cion-lavender); }
.cion-hero-form-callbtn svg { width: 18px; height: 18px; }

/* ========================================
   PROOF STRIP
   ======================================== */
.cion-proof-strip {
  background: var(--cion-purple-deep);
  color: var(--white);
  padding: var(--s-5) 0;
}

.cion-proof-strip .cion-stat-value {
  background: linear-gradient(135deg, #fff, var(--cion-pink-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cion-proof-strip .cion-stat-label {
  color: rgba(255, 255, 255, 0.85);
}

/* ========================================
   SECOND OPINION SECTION (hero converter)
   ======================================== */
.cion-second-opinion {
  background: var(--cion-lavender);
  position: relative;
  overflow: hidden;
}

.cion-second-opinion::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(199, 82, 127, 0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cion-second-opinion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: center;
  position: relative;
}

.cion-second-opinion-image {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.cion-second-opinion-image img {
  width: 100%;
  height: auto;
  display: block;
}

.cion-second-opinion-badge {
  position: absolute;
  bottom: 16px; right: 16px;
  background: var(--white);
  padding: var(--s-3) var(--s-4);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cion-purple);
}

.cion-second-opinion-badge svg { width: 24px; height: 24px; }

.cion-second-opinion h2 {
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  margin-bottom: var(--s-4);
}

.cion-points-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-5);
  display: grid;
  gap: var(--s-3);
}

.cion-points-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  font-size: 1rem;
  color: var(--ink-700);
}

.cion-points-list li svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; }

.cion-points-list li strong { color: var(--cion-purple); }

@media (max-width: 768px) {
  .cion-second-opinion-grid { grid-template-columns: 1fr; gap: var(--s-5); }
}

/* ========================================
   LOCATIONS / OUR NETWORK
   ======================================== */
.cion-locations h2 {
  text-align: center;
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  margin-bottom: var(--s-2);
}

.cion-locations-sub {
  text-align: center;
  color: var(--ink-500);
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto var(--s-6);
}

.cion-locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s-4);
}

.cion-loc-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--cion-pink-light);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cion-loc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cion-loc-img-wrap {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: var(--cion-lavender);
}

.cion-loc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cion-loc-img-wrap::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(98, 24, 111, 0.6) 100%);
}

.cion-loc-body {
  padding: var(--s-4);
}

.cion-loc-name {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--cion-purple);
  margin-bottom: var(--s-2);
}

.cion-loc-name svg { width: 18px; height: 18px; flex-shrink: 0; }

.cion-loc-meta {
  font-size: 0.8125rem;
  color: var(--ink-500);
  margin-bottom: var(--s-3);
}

.cion-loc-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cion-pink);
}

/* ========================================
   DOCTORS PANEL
   ======================================== */
.cion-doctors {
  background: linear-gradient(180deg, var(--white) 0%, var(--cion-lavender) 100%);
}

.cion-doctors-header {
  text-align: center;
  margin-bottom: var(--s-6);
}

.cion-doctors-header h2 {
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  margin-bottom: var(--s-2);
}

.cion-doctors-header p {
  color: var(--ink-500);
  max-width: 640px;
  margin: 0 auto;
}

.cion-doctors-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 640px;
  margin: 0 auto var(--s-6);
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--s-5) var(--s-4);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cion-pink-light);
}

.cion-doctor-stat-cell {
  text-align: center;
  padding: 0 var(--s-3);
  border-right: 1px solid var(--cion-pink-light);
}
.cion-doctor-stat-cell:last-child { border-right: none; }

.cion-doctor-stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--cion-purple);
  line-height: 1;
  margin-bottom: var(--s-2);
}

.cion-doctor-stat-label {
  font-size: 0.8125rem;
  color: var(--ink-500);
  font-weight: 500;
}

@media (max-width: 480px) {
  .cion-doctors-stats { padding: var(--s-3) var(--s-2); }
  .cion-doctor-stat-cell { padding: 0 var(--s-2); }
  .cion-doctor-stat-num { font-size: 1.375rem; }
  .cion-doctor-stat-label { font-size: 0.75rem; }
}

/* ========================================
   PATIENT STORIES
   ======================================== */
.cion-stories h2 {
  text-align: center;
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  margin-bottom: var(--s-2);
}

.cion-stories-sub {
  text-align: center;
  color: var(--ink-500);
  margin-bottom: var(--s-6);
}

.cion-stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}

.cion-story-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cion-pink-light);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.cion-story-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cion-story-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: var(--cion-pink-light);
  position: relative;
}

.cion-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.cion-story-body {
  padding: var(--s-4);
}

.cion-story-quote {
  color: var(--ink-700);
  font-size: 0.9375rem;
  line-height: 1.55;
  margin-bottom: var(--s-3);
  font-style: italic;
}

.cion-story-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--cion-pink-light);
  padding-top: var(--s-3);
}

.cion-story-name {
  font-weight: 600;
  color: var(--cion-purple);
  font-size: 0.875rem;
}

.cion-story-condition {
  font-size: 0.75rem;
  color: var(--ink-500);
  background: var(--cion-pink-light);
  padding: 2px 8px;
  border-radius: var(--r-pill);
}

@media (max-width: 968px) {
  .cion-stories-grid { grid-template-columns: 1fr; }
}

/* ========================================
   CALLBACK BAND (mid-page CTA)
   ======================================== */
.cion-callback-band {
  background: linear-gradient(135deg, var(--cion-purple) 0%, var(--cion-purple-deep) 100%);
  color: var(--white);
  padding: var(--s-7) 0;
  position: relative;
  overflow: hidden;
}

.cion-callback-band::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(199, 82, 127, 0.4) 0%, transparent 70%);
  border-radius: 50%;
}

.cion-callback-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--s-6);
  align-items: center;
  position: relative;
}

.cion-callback-band h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--s-3);
}

.cion-callback-band p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin-bottom: var(--s-4);
}

.cion-callback-form {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  box-shadow: var(--shadow-lg);
}

.cion-callback-form h3 {
  font-size: 1.25rem;
  margin-bottom: var(--s-4);
  color: var(--cion-purple);
}

@media (max-width: 768px) {
  .cion-callback-grid { grid-template-columns: 1fr; }
}

/* ========================================
   INSURANCE STRIP
   ======================================== */
.cion-insurance {
  background: var(--cion-pink-light);
  padding: var(--s-6) 0;
  text-align: center;
}

.cion-insurance-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--cion-purple);
  margin-bottom: var(--s-4);
}

.cion-insurance-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  justify-content: center;
  align-items: center;
}

.cion-insurance-list span {
  background: var(--white);
  padding: var(--s-3) var(--s-5);
  border-radius: var(--r-pill);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--cion-purple);
  border: 1px solid var(--cion-pink-light);
}

/* ========================================
   FAQS
   ======================================== */
.cion-faqs {
  background: var(--white);
}

.cion-faqs h2 {
  text-align: center;
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  margin-bottom: var(--s-2);
}

.cion-faqs-sub {
  text-align: center;
  color: var(--ink-500);
  margin-bottom: var(--s-6);
}

.cion-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.cion-faq-item {
  background: var(--white);
  border: 1px solid var(--cion-pink-light);
  border-radius: var(--r-md);
  margin-bottom: var(--s-3);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.cion-faq-item[open] {
  box-shadow: var(--shadow-sm);
  border-color: var(--cion-purple-light);
}

.cion-faq-summary {
  padding: var(--s-4) var(--s-5);
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--cion-purple);
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.cion-faq-summary::-webkit-details-marker { display: none; }

.cion-faq-summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--cion-pink);
  transition: transform 0.2s ease;
}

.cion-faq-item[open] .cion-faq-summary::after {
  transform: rotate(45deg);
}

.cion-faq-body {
  padding: 0 var(--s-5) var(--s-4);
  color: var(--ink-500);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ========================================
   FINAL CTA
   ======================================== */
.cion-final-cta {
  background: linear-gradient(135deg, var(--cion-lavender) 0%, var(--cion-pink-light) 100%);
  padding: var(--s-8) 0;
  text-align: center;
}

.cion-final-cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: var(--s-3);
}

.cion-final-cta p {
  font-size: 1.125rem;
  color: var(--ink-500);
  max-width: 640px;
  margin: 0 auto var(--s-5);
}

.cion-final-cta .cion-btn {
  font-size: 1.125rem;
  padding: var(--s-5) var(--s-7);
}

/* ========================================
   FOOTER
   ======================================== */
.cion-footer {
  background: var(--cion-purple-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: var(--s-6) 0 var(--s-4);
  font-size: 0.875rem;
}

.cion-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--s-6);
  margin-bottom: var(--s-5);
}

.cion-footer h4 {
  color: var(--white);
  font-size: 0.9375rem;
  margin-bottom: var(--s-3);
}

.cion-footer-logo { margin-bottom: var(--s-3); }
.cion-footer-logo img {
  height: 40px;
  filter: brightness(0) invert(1);
}

.cion-footer p { line-height: 1.55; margin-bottom: var(--s-3); }

.cion-footer ul { list-style: none; padding: 0; margin: 0; }
.cion-footer ul li { margin-bottom: var(--s-2); }
.cion-footer ul a { color: rgba(255, 255, 255, 0.85); }
.cion-footer ul a:hover { color: var(--white); }

.cion-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: var(--s-3);
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .cion-footer-grid { grid-template-columns: 1fr; gap: var(--s-4); }
}

/* ========================================
   POPUP / MODAL OVERRIDES (sweet alert)
   ======================================== */
.swal2-popup { border-radius: var(--r-lg) !important; padding: var(--s-5) !important; }
.swal2-html-container { padding: 0 !important; }

.cion-popup-form { display: flex; flex-direction: column; gap: var(--s-3); }
.cion-popup-form h3 {
  font-size: 1.25rem;
  color: var(--cion-purple);
  margin: 0 0 var(--s-3);
  text-align: center;
}

.cion-popup-close {
  position: absolute;
  top: var(--s-2); right: var(--s-2);
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--cion-pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--cion-purple);
  cursor: pointer;
}

/* ========================================
   RESPONSIVE TWEAKS
   ======================================== */
@media (max-width: 480px) {
  .cion-hero-form { padding: var(--s-4); }
  .cion-hero-title { font-size: 1.625rem; }
  .cion-hero-sub { font-size: 1rem; }
  .cion-section { padding: var(--s-6) 0; }
}

/* ====================================================================
   ╔═════════════════════════════════════════════════════════════════╗
   ║  MOBILE OVERHAUL — PAGE-SPECIFIC                                 ║
   ╚═════════════════════════════════════════════════════════════════╝
   ==================================================================== */

/* -------- TOP RIBBON — wraps cleanly on mobile (v3 below overrides) -------- */
.cion-top-ribbon {
  font-size: 0.8125rem;
  padding: 0.625rem 1rem;
}

@media (max-width: 480px) {
  .cion-top-ribbon { font-size: 0.75rem; }
}

/* -------- NAVBAR — tighter on mobile -------- */
@media (max-width: 480px) {
  .cion-nav { padding: 0.625rem 0; }
  .cion-nav-logo img { height: 30px; }
  .cion-nav-call {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    gap: 0.375rem;
  }
  .cion-nav-call svg { width: 14px; height: 14px; }
}

/* -------- HERO — refined mobile layout -------- */
@media (max-width: 768px) {
  .cion-hero { padding: 2rem 0 2.5rem !important; }
  .cion-hero-grid { gap: 2rem !important; }

  .cion-hero-eyebrow {
    font-size: 0.75rem;
    padding: 0.4rem 0.875rem;
    margin-bottom: 1rem;
  }

  .cion-hero-title {
    font-size: 1.625rem !important;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
  }

  .cion-hero-title br { display: none; }   /* let it flow naturally */
  .cion-hero-title .cion-highlight {
    white-space: normal;   /* allow wrap on mobile */
    padding: 0 0.15em;
  }

  .cion-hero-sub {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
  }

  .cion-hero-bullets {
    gap: 0.875rem !important;
    margin-bottom: 1.75rem;
  }
  .cion-hero-bullets li {
    font-size: 0.9375rem;
    line-height: 1.5;
    gap: 0.625rem;
  }

  .cion-hero-rating {
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
    font-size: 0.8125rem;
  }
}

@media (max-width: 480px) {
  .cion-hero-title { font-size: 1.5rem !important; }
}

/* -------- HERO FORM — cleaner mobile -------- */
@media (max-width: 768px) {
  .cion-hero-form { padding: 1.5rem !important; }
  .cion-hero-form h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
  .cion-hero-form-flag {
    font-size: 0.6875rem;
    padding: 0.25rem 0.75rem;
    margin-bottom: 0.75rem;
  }
  .cion-hero-form-value { font-size: 0.875rem; margin-bottom: 1.125rem; }
  .cion-form-tags { gap: 0.625rem !important; margin-bottom: 1.25rem; }
  .cion-form-tag-row {
    font-size: 0.8125rem;
    line-height: 1.4;
  }
}

/* -------- PROOF STRIP — proper 2-col mobile -------- */
@media (max-width: 768px) {
  .cion-proof-strip { padding: 2.5rem 0 !important; }
}

/* -------- SECOND OPINION — better mobile spacing -------- */
@media (max-width: 768px) {
  .cion-second-opinion-grid { gap: 1.75rem !important; }
  .cion-second-opinion h2 {
    font-size: 1.5rem !important;
    line-height: 1.25;
    margin-bottom: 1rem;
  }
  .cion-second-opinion-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
  }
  .cion-points-list { gap: 0.875rem !important; margin-bottom: 1.75rem; }
  .cion-points-list li {
    font-size: 0.9375rem;
    line-height: 1.5;
    gap: 0.625rem;
  }
  .cion-second-opinion-image { border-radius: 12px; }
  .cion-second-opinion-badge {
    bottom: 12px;
    right: 12px;
    padding: 0.625rem 0.875rem;
    font-size: 0.8125rem;
  }
}

/* -------- LOCATIONS — clean 1-col mobile cards -------- */
.cion-locations h2 {
  text-align: center;
  font-size: clamp(1.625rem, 3.5vw, 2.25rem);
  margin-bottom: var(--s-2);
}

.cion-locations-sub {
  text-align: center;
  color: var(--ink-500);
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto var(--s-6);
}

.cion-locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s-4);
}

.cion-loc-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--cion-pink-light);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cion-loc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.cion-loc-img-wrap {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: var(--cion-lavender);
}

/* .cion-loc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cion-loc-img-wrap::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(98, 24, 111, 0.6) 100%);
} */

.cion-loc-body {
  position: relative;
  padding: var(--s-4);
}

.cion-loc-name {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--cion-purple);
  margin-bottom: var(--s-2);
}

.cion-loc-name svg { width: 18px; height: 18px; flex-shrink: 0; }

.cion-loc-meta {
  font-size: 0.8125rem;
  color: var(--ink-500);
  margin-bottom: var(--s-3);
}

.cion-loc-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cion-pink);
}

/* -------- INSURANCE STRIP -------- */
@media (max-width: 768px) {
  .cion-insurance { padding: 2.5rem 0 !important; }
  .cion-insurance-title {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 1.25rem;
    padding: 0 0.5rem;
  }
  .cion-insurance-list { gap: 0.5rem; }
  .cion-insurance-list span {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }
}

/* -------- DOCTORS — fix the broken stat row -------- */
@media (max-width: 768px) {
  .cion-doctors-header { margin-bottom: 2rem !important; }
  .cion-doctors-header h2 {
    font-size: 1.5rem !important;
    margin-bottom: 0.75rem;
  }
  .cion-doctors-header p {
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  /* Doctor stats — KEEP horizontal 3-col on mobile, scale down */
  .cion-doctors-stats {
    grid-template-columns: repeat(3, 1fr) !important;
    padding: 1.5rem 0.75rem !important;
    margin-bottom: 2rem !important;
  }
  .cion-doctor-stat-cell {
    padding: 0 0.5rem !important;
  }
  .cion-doctor-stat-num {
    font-size: 1.75rem;
    margin-bottom: 0.375rem;
  }
  .cion-doctor-stat-label {
    font-size: 0.75rem;
    line-height: 1.3;
  }
}

/* -------- CALLBACK BAND — fix the tiny icons + labels -------- */
@media (max-width: 768px) {
  .cion-callback-band { padding: 3rem 0 !important; }
  .cion-callback-grid { gap: 2rem !important; }
  .cion-callback-band h2 {
    font-size: 1.5rem !important;
    line-height: 1.25;
    margin-bottom: 1rem;
  }
  .cion-callback-band > .cion-container > .cion-callback-grid > div > p {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }

  /* The 3-icon row inside callback band — completely rebuild */
  .cion-callback-band .cion-grid-3 {
    grid-template-columns: 1fr !important;
    gap: 0.875rem !important;
    margin-top: 1.5rem !important;
  }
  .cion-callback-band .cion-grid-3 > div {
    display: flex !important;
    align-items: center;
    gap: 0.875rem;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 12px;
  }
  .cion-callback-band .cion-grid-3 > div img,
  .cion-callback-band .cion-grid-3 > div svg {
    width: 28px !important;
    height: 28px !important;
    flex-shrink: 0;
    margin: 0 !important;
  }
  .cion-callback-band .cion-grid-3 > div > div {
    margin-top: 0 !important;
    font-size: 0.9375rem !important;
  }
}

/* -------- CALLBACK FORM ON MOBILE -------- */
@media (max-width: 768px) {
  .cion-callback-form { padding: 1.5rem !important; }
  .cion-callback-form h3 { font-size: 1.125rem; margin-bottom: 1rem; }
}

/* -------- OUTCOMES (the 4 question cards) -------- */
@media (max-width: 768px) {
  .cion-card-feature {
    padding: 1.5rem !important;
  }
  /* The icon-circle inside outcomes cards */
  .cion-card-feature > div:first-child {
    width: 48px !important;
    height: 48px !important;
    margin-bottom: 0.875rem !important;
  }
  .cion-card-feature > div:first-child img,
  .cion-card-feature > div:first-child svg {
    width: 28px !important;
    height: 28px !important;
  }
  .cion-card-feature h3 {
    font-size: 1rem !important;
    margin-bottom: 0.5rem;
  }
  .cion-card-feature p {
    font-size: 0.875rem;
    line-height: 1.55;
  }
}

/* -------- STORIES -------- */
@media (max-width: 768px) {
  .cion-stories-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  .cion-stories-sub {
    font-size: 0.9375rem;
    margin-bottom: 2rem !important;
  }
  .cion-story-image { height: 200px; }
  .cion-story-body { padding: 1.25rem; }
  .cion-story-quote {
    font-size: 0.9375rem;
    line-height: 1.5;
    margin-bottom: 0.875rem;
  }
  .cion-story-meta { padding-top: 0.75rem; }
}

/* -------- FAQS -------- */
@media (max-width: 768px) {
  .cion-faqs-sub {
    font-size: 0.9375rem;
    margin-bottom: 2rem !important;
  }
  .cion-faq-summary {
    padding: 1rem 1.125rem;
    font-size: 0.9375rem;
    line-height: 1.4;
    gap: 0.75rem;
  }
  .cion-faq-summary::after { font-size: 1.375rem; }
  .cion-faq-body {
    padding: 0 1.125rem 1rem;
    font-size: 0.875rem;
    line-height: 1.6;
  }
}

/* -------- FINAL CTA -------- */
@media (max-width: 768px) {
  .cion-final-cta { padding: 3rem 0 !important; }
  .cion-final-cta h2 {
    font-size: 1.625rem !important;
    line-height: 1.25;
  }
  .cion-final-cta p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .cion-final-cta > div > div {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }
  .cion-final-cta .cion-btn {
    width: 100%;
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }
}

/* -------- FOOTER -------- */
@media (max-width: 768px) {
  .cion-footer { padding: 2.5rem 0 1.5rem; }
  .cion-footer-grid { gap: 2rem !important; }
  .cion-footer h4 { font-size: 0.9375rem; margin-bottom: 0.875rem; }
  .cion-footer ul li { margin-bottom: 0.625rem; font-size: 0.875rem; }
  .cion-footer p { font-size: 0.875rem; line-height: 1.55; }
}

/* -------- SECTION HEADINGS GLOBAL — better hierarchy -------- */
@media (max-width: 768px) {
  .cion-locations h2,
  .cion-stories h2,
  .cion-faqs h2 {
    font-size: 1.5rem !important;
    line-height: 1.25;
    margin-bottom: 0.75rem;
  }

  /* Header chip + heading + subhead spacing */
  .cion-text-center .cion-chip,
  .cion-text-center .cion-chip-purple {
    margin-bottom: 0.875rem;
  }
}

/* ====================================================================
   ╔═════════════════════════════════════════════════════════════════╗
   ║  v3 — PAGE-SPECIFIC FIXES                                        ║
   ╚═════════════════════════════════════════════════════════════════╝
   ==================================================================== */

/* -------- FIX: Top ribbon — wraps cleanly on mobile, no animation -------- */
.cion-top-ribbon {
  font-size: 0.8125rem;
  padding: 0.625rem 1rem;
  text-align: center;
  line-height: 1.55;
  white-space: normal;
}

.cion-top-ribbon-track {
  display: inline;
  white-space: normal;
}

/* On mobile shrink the font slightly and tighten so all 4 points show on 2 lines */
@media (max-width: 480px) {
  .cion-top-ribbon {
    font-size: 0.6875rem;
    padding: 0.5rem 0.75rem;
    line-height: 1.5;
    letter-spacing: -0.005em;
  }
}

/* -------- FIX: Hero proof strip stat row — fallback for older browsers -------- */
/* Use flexbox as fallback since some older browsers don't render auto-fit grid right */
.cion-stat-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.cion-stat {
  flex: 1 1 200px;
  min-width: 140px;
  max-width: 240px;
  padding: var(--s-4);
  text-align: center;
}

@media (max-width: 768px) {
  .cion-stat-row {
    display: flex !important;
    flex-wrap: wrap;
    gap: 1.25rem 0 !important;
    justify-content: center;
  }
  .cion-stat {
    flex: 0 0 50% !important;
    max-width: 50%;
    min-width: 0;
    padding: 0.5rem !important;
    box-sizing: border-box;
  }
}

/* -------- FIX: Doctor stats row using flex (more reliable) -------- */
.cion-doctors-stats {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 1.75rem 1rem;
  max-width: 640px;
  margin: 0 auto var(--s-6);
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cion-pink-light);
}

.cion-doctor-stat-cell {
  flex: 1;
  text-align: center;
  padding: 0 0.5rem;
  border-right: 1px solid var(--cion-pink-light);
}
.cion-doctor-stat-cell:last-child { border-right: none; }

@media (max-width: 768px) {
  .cion-doctors-stats {
    padding: 1.25rem 0.5rem !important;
  }
  .cion-doctor-stat-cell {
    padding: 0 0.25rem !important;
  }
  .cion-doctor-stat-num {
    font-size: 1.625rem !important;
    margin-bottom: 0.25rem;
  }
  .cion-doctor-stat-label {
    font-size: 0.6875rem !important;
    line-height: 1.3;
  }
}

/* -------- FIX: Locations grid using flex (more reliable cross-browser) -------- */
.cion-locations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}
.cion-loc-card {
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 320px;
}

@media (max-width: 768px) {
  .cion-locations-grid {
    flex-direction: column;
    gap: 1rem !important;
  }
  .cion-loc-card {
    max-width: none;
    min-width: 0;
    width: 100%;
  }
}

/* On mid-screen, allow 2-3 cards per row */
@media (min-width: 769px) and (max-width: 1100px) {
  .cion-loc-card { max-width: calc(50% - 0.625rem); }
}

/* -------- FIX: Outcome cards (4 question cards) using flex -------- */
.cion-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.cion-grid > * { flex: 1 1 220px; min-width: 0; }

.cion-grid-2 > * { flex-basis: calc(50% - 0.625rem); }
.cion-grid-3 > * { flex-basis: calc(33.333% - 0.834rem); }
.cion-grid-4 > * { flex-basis: calc(25% - 0.94rem); }

@media (max-width: 968px) {
  .cion-grid-3 > *, .cion-grid-4 > * { flex-basis: calc(50% - 0.625rem); }
}
@media (max-width: 768px) {
  .cion-grid > * { flex-basis: 100% !important; }
}

/* -------- FIX: Hero grid — flex fallback, wider content area -------- */
.cion-hero-grid {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}
.cion-hero-left { flex: 1 1 auto; min-width: 0; }
.cion-hero-form { flex: 0 0 420px; }

@media (max-width: 968px) {
  .cion-hero-grid {
    flex-direction: column;
    gap: 2rem;
  }
  .cion-hero-form { flex: 1 1 auto; width: 100%; }
}

/* -------- FIX: Second opinion grid — flex layout -------- */
.cion-second-opinion-grid {
  display: flex;
  gap: 3rem;
  align-items: center;
}
.cion-second-opinion-grid > * { flex: 1 1 0; min-width: 0; }

@media (max-width: 768px) {
  .cion-second-opinion-grid {
    flex-direction: column;
    gap: 2rem !important;
  }
}

/* -------- FIX: Stories grid -------- */
.cion-stories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.cion-stories-grid > * {
  flex: 1 1 280px;
  min-width: 0;
}

@media (max-width: 768px) {
  .cion-stories-grid {
    flex-direction: column;
    gap: 1.25rem !important;
  }
}

/* -------- FIX: Callback band grid -------- */
.cion-callback-grid {
  display: flex;
  gap: 3rem;
  align-items: center;
}
.cion-callback-grid > * { flex: 1 1 0; min-width: 0; }

@media (max-width: 768px) {
  .cion-callback-grid {
    flex-direction: column;
    gap: 2rem !important;
  }
}

/* -------- FIX: Sticky mobile CTA — shorter text fits on small screens -------- */
.cion-mobile-cta-book {
  font-size: 0.875rem;
}
@media (max-width: 360px) {
  .cion-mobile-cta-book {
    font-size: 0.75rem;
    letter-spacing: -0.01em;
  }
}

/* ====================================================================
   v4 — SECTION HOOKS (pattern breaks)
   Lines and quotes that catch the eye at the top of each section,
   fighting scroll fatigue.
   ==================================================================== */

.cion-section-hook {
    text-align: center;
    margin-bottom: var(--s-4);
}
.cion-section-hook-quote {
    display: block;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.0625rem;
    color: var(--cion-purple);
    line-height: 1.45;
    max-width: 600px;
    margin: 0 auto;
}
.cion-section-hook-quote em {
    font-style: italic;
    color: var(--cion-pink);
    font-weight: 600;
}
.cion-section-hook-attr {
    display: block;
    font-size: 0.8125rem;
    color: var(--ink-500);
    margin-top: 0.5rem;
    font-weight: 500;
}

.cion-section-hook-line {
    text-align: center;
    color: var(--cion-pink);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9375rem;
    margin: 0 auto 0.75rem;
    letter-spacing: 0.01em;
}

.cion-insurance-prelude {
    text-align: center;
    color: var(--cion-purple-deep);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.0625rem;
    margin: 0 0 0.625rem;
    letter-spacing: -0.005em;
}

@media (max-width: 768px) {
    .cion-section-hook-quote { font-size: 0.9375rem; }
    .cion-section-hook-line { font-size: 0.875rem; }
    .cion-insurance-prelude { font-size: 0.9375rem; }
}
