/* =============================================================
   SUVIRA HOSPITAL — LASER PILES / FISSURE / FISTULA — v3
   Complete stylesheet. Organised by section.
============================================================= */

:root {
  --navy-950: #050f30;
  --navy-900: #0b1a42;
  --navy-800: #14285c;
  --navy-700: #1e3a7e;
  --navy-600: #2c4a91;

  --gold-700: #8a6318;
  --gold-600: #a37820;
  --gold-500: #c89a3f;
  --gold-400: #d9a441;
  --gold-300: #e8bf5e;
  --gold-200: #f3d486;
  --gold-100: #fdf5e1;

  --teal-800: #0e6b62;
  --teal-700: #1a8279;
  --teal-600: #26a69a;
  --teal-500: #4ec4b9;
  --teal-300: #a3dcd5;
  --teal-200: #cce9e6;
  --teal-100: #e0f2f0;

  --red-600: #c42020;
  --red-500: #dd4040;

  --ink-900: #0b1a42;
  --ink-800: #1f2a47;
  --ink-700: #37415a;
  --ink-600: #5a6478;
  --ink-500: #7a8094;
  --ink-400: #9aa0b4;
  --ink-300: #c3c8d6;
  --ink-200: #dee2ec;
  --ink-100: #eef0f6;
  --ink-50: #f6f8fc;

  --white: #ffffff;
  --bg: #ffffff;
  --bg-soft: #f8f9fc;
  --bg-cream: #fbf8f3;

  --f-display: 'DM Serif Display', Georgia, serif;
  --f-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --shadow-xs: 0 1px 2px rgba(11, 26, 66, 0.05);
  --shadow-sm: 0 2px 8px rgba(11, 26, 66, 0.06);
  --shadow-md: 0 6px 20px rgba(11, 26, 66, 0.08);
  --shadow-lg: 0 14px 40px rgba(11, 26, 66, 0.12);
  --shadow-xl: 0 24px 60px rgba(11, 26, 66, 0.16);

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-pill: 999px;

  --max: 1280px;

  --t-fast: 0.18s ease;
  --t-med: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1240px;
}

/* =============================================================
   RESET
============================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-800);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg,
iframe {
  max-width: 100%;
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: transparent;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.15;
}

p {
  margin: 0 0 12px;
}

em,
.italic {
  font-style: italic;
}

blockquote {
  margin: 0;
}

.container {
  width: min(100% - 32px, var(--container));
  max-width: var(--max);
  margin: 0 auto;
}

.hide-sm {
  display: inline;
}

.hide-md {
  display: inline;
}

/* =============================================================
   TOPBAR
============================================================= */
.topbar {
  background: var(--navy-950);
  color: #c6ccde;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar__left span,
.topbar__right a,
.topbar__right span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar__right a {
  transition: color var(--t-fast);
}

.topbar__right a:hover {
  color: var(--gold-300);
}

.topbar__emerg {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-950);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-weight: 700;
}

.topbar__emerg a {
  color: var(--navy-950);
}

/* =============================================================
   HEADER
============================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  transition: box-shadow var(--t-med);
}

.header.is-scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.header__logo img {
  height: 44px;
  width: auto;
}

.header__nav {
  display: flex;
  gap: 4px;
}

.header__nav a {
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-700);
  border-radius: var(--r-md);
  transition: background var(--t-fast), color var(--t-fast);
}

.header__nav a:hover {
  background: var(--teal-100);
  color: var(--teal-700);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__phone {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__phone-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-600), var(--teal-700));
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(38, 166, 154, 0.3);
}

.header__phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.header__phone-text small {
  font-size: 10px;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.header__phone-text strong {
  font-size: 15px;
  color: var(--navy-900);
  font-weight: 700;
}

.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform var(--t-fast), opacity var(--t-fast);
}

.header__toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.header__toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =============================================================
   BUTTONS
============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 14px;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  white-space: nowrap;
  text-align: center;
  border: 2px solid transparent;
  line-height: 1;
}

.btn--primary {
  background: linear-gradient(135deg, var(--teal-600), var(--teal-700));
  color: var(--white);
  box-shadow: 0 6px 16px rgba(38, 166, 154, 0.32);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(38, 166, 154, 0.4);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-950);
  box-shadow: 0 6px 16px rgba(217, 164, 65, 0.32);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(217, 164, 65, 0.4);
}

.btn--outline {
  border-color: var(--ink-300);
  color: var(--navy-900);
}

.btn--outline:hover {
  border-color: var(--navy-900);
  background: var(--ink-50);
}

.btn--ghost-white {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.btn--ghost-white:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.btn--sm {
  padding: 9px 16px;
  font-size: 13px;
}

.btn--lg {
  padding: 15px 28px;
  font-size: 15px;
}

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

/* =============================================================
   COMMON SECTION HEADER
============================================================= */
.section {
  padding: 60px 0;
  position: relative;
}

.section__head {
  margin-bottom: 30px;
}

.section__head--center {
  text-align: center;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--teal-700);
  background: var(--teal-100);
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}

.eyebrow--dark {
  background: rgba(78, 196, 185, 0.15);
  color: var(--teal-500);
}

.section__title {
  font-family: var(--f-display);
  font-size: 36px;
  color: var(--navy-900);
  line-height: 1.1;
  margin-bottom: 18px;
}

.section__title--light {
  color: var(--white);
}

.section__title .accent {
  color: var(--teal-700);
  font-style: italic;
}

.section__title .accent-gold {
  color: var(--gold-400);
  font-style: italic;
}

.section__desc {
  font-size: 16px;
  color: var(--ink-600);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
}

.section__desc--light {
  color: rgba(255, 255, 255, 0.75);
}

.section__desc a {
  color: var(--teal-700);
  font-weight: 600;
}

/* =============================================================
   BANNER (CHANGE 1) — split hero with short inquiry form
============================================================= */
.banner {
  position: relative;
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 50%, var(--navy-900) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 60px 0 70px;
}

.banner__bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(78, 196, 185, 0.15), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(217, 164, 65, 0.13), transparent 45%);
  pointer-events: none;
}

.banner__pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
  pointer-events: none;
}

.banner__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  z-index: 1;
}

/* LEFT LEAD */
.banner__lead {
  max-width: 640px;
}

.banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.banner__eyebrow i {
  color: var(--teal-500);
}

.banner__title {
  font-family: var(--f-display);
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.05;
  margin-bottom: 14px;
}

.banner__title em {
  font-style: italic;
  color: var(--gold-300);
}

.banner__title-sub {
  display: block;
  font-family: var(--f-body);
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
  line-height: 1.45;
}

.banner__lede {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 560px;
}

.banner__lede strong {
  color: var(--white);
  font-weight: 600;
}

.banner__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.banner__chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 13px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-pill);
  font-size: 12.5px;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

.banner__chips i {
  color: var(--teal-500);
  font-size: 11px;
}

.banner__docchip {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  padding: 12px 16px 12px 12px;
  max-width: 440px;
  backdrop-filter: blur(12px);
}

.banner__docchip img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-400);
  flex-shrink: 0;
}

.banner__docchip strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}

.banner__docchip span {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 4px;
}

.banner__stars {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
}

.banner__stars i {
  color: var(--gold-300);
  font-size: 10px;
}

.banner__stars span {
  margin-left: 4px;
}

/* RIGHT FORM */
.banner__form {
  background: var(--white);
  color: var(--ink-800);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
}

.banner__form-top {
  margin-bottom: 20px;
  text-align: center;
}

.banner__form-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-950);
  border-radius: var(--r-pill);
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
}

.banner__form-top h2 {
  font-family: var(--f-display);
  font-size: 26px;
  color: var(--navy-900);
  margin-bottom: 6px;
}

.banner__form-top p {
  font-size: 13px;
  color: var(--ink-600);
  margin: 0;
  line-height: 1.45;
}

.banner__form-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.banner__form-body .field {
  position: relative;
}

.banner__form-body .field i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-400);
  font-size: 14px;
  pointer-events: none;
}

.banner__form-body input,
.banner__form-body select {
  width: 100%;
  padding: 13px 16px 13px 44px;
  border: 1.5px solid var(--ink-200);
  border-radius: var(--r-md);
  font-size: 14px;
  background: var(--white);
  color: var(--ink-900);
  transition: border var(--t-fast), box-shadow var(--t-fast);
}

.banner__form-body input:focus,
.banner__form-body select:focus {
  outline: none;
  border-color: var(--teal-600);
  box-shadow: 0 0 0 3px rgba(38, 166, 154, 0.12);
}

.banner__form-body select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%235a6478' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.banner__form-body button {
  margin-top: 4px;
}

.banner__form-or {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 6px 0 2px;
  color: var(--ink-400);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.banner__form-or::before,
.banner__form-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--ink-200);
}

.banner__form-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 16px;
  border: 2px solid var(--navy-900);
  color: var(--navy-900);
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 15px;
  transition: background var(--t-fast), color var(--t-fast);
}

.banner__form-phone:hover {
  background: var(--navy-900);
  color: var(--white);
}

.banner__form-priv {
  text-align: center;
  font-size: 11px;
  color: var(--ink-500);
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.banner__form-priv i {
  color: var(--teal-600);
}

/* =============================================================
   INSURANCE STRIP
============================================================= */
.strip {
  background: var(--bg-soft);
  padding: 18px 0;
  border-bottom: 1px solid var(--ink-100);
}

.strip__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.strip__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--navy-900);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.strip__logos {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.strip__logos span {
  font-size: 13px;
  color: var(--ink-600);
  font-weight: 500;
}

/* =============================================================
   CONDITIONS INTRO (CHANGE 2) — cards with medical illustrations
============================================================= */
.conditions-intro {
  background: var(--bg-soft);
}

.cond-triad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
}

.cond-card {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-med), box-shadow var(--t-med);
  border-top: 6px solid var(--ink-200);
}

.cond-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.cond-card--piles {
  border-top-color: var(--gold-400);
}

.cond-card--fissure {
  border-top-color: var(--teal-600);
}

.cond-card--fistula {
  border-top-color: var(--navy-700);
}

.cond-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 4px 11px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-950);
  border-radius: var(--r-pill);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  z-index: 2;
}

.cond-card__media {
  padding: 24px 24px 0;
}

.cond-card__media img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--r-lg);
  background: var(--bg-cream);
}

.cond-card__content {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cond-card__content h3 {
  font-family: var(--f-display);
  font-size: 26px;
  color: var(--navy-900);
  margin-bottom: 6px;
}

.cond-card__content h3 span {
  display: block;
  font-size: 14px;
  font-style: italic;
  color: var(--ink-500);
  font-family: var(--f-body);
  margin-top: 2px;
}

.cond-card__what {
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.55;
  margin-bottom: 16px;
}

.cond-card__signs {
  background: var(--bg-soft);
  border-radius: var(--r-md);
  padding: 14px 16px;
  margin-bottom: 16px;
}

.cond-card__signs strong {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: var(--ink-700);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.cond-card__signs ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.cond-card__signs li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-700);
  line-height: 1.45;
}

.cond-card__signs i {
  color: var(--teal-600);
  margin-top: 4px;
  font-size: 11px;
  flex-shrink: 0;
}

.cond-card__cta {
  margin-top: auto;
  font-size: 14px;
  font-weight: 700;
  color: var(--teal-700);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--t-fast);
}

.cond-card--piles .cond-card__cta {
  color: var(--gold-600);
}

.cond-card--fistula .cond-card__cta {
  color: var(--navy-700);
}

.cond-card:hover .cond-card__cta {
  gap: 10px;
}

.cond-note {
  background: var(--teal-100);
  border: 1px solid var(--teal-200);
  border-radius: var(--r-lg);
  padding: 8px 22px;
  font-size: 14px;
  color: var(--teal-800);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1.5;
}

.cond-note i {
  color: var(--teal-600);
  flex-shrink: 0;
}

/* =============================================================
   THIN CTA (CHANGE 10)
============================================================= */
.thin-cta {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  padding: 22px 0;
  position: relative;
  overflow: hidden;
}

.thin-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-400), var(--teal-500), var(--gold-400));
}

.thin-cta--teal {
  background: linear-gradient(135deg, var(--teal-800), var(--teal-700));
}

.thin-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.thin-cta__text {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 280px;
}

.thin-cta__text>i {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  color: var(--gold-300);
  font-size: 18px;
  flex-shrink: 0;
}

.thin-cta--teal .thin-cta__text>i {
  color: var(--gold-300);
}

.thin-cta__text span {
  font-size: 15px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
}

.thin-cta__text strong {
  color: var(--white);
  font-weight: 700;
}

.thin-cta__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* =============================================================
   SYMPTOM SELF-CHECK (dark)
============================================================= */
.symptom-check {
  background: linear-gradient(180deg, var(--navy-950), var(--navy-900));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.symptom-check__bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(38, 166, 154, 0.1), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(217, 164, 65, 0.08), transparent 50%);
  pointer-events: none;
}

.symptom-check__glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.symptom-check__glow--top {
  top: -150px;
  left: -100px;
  background: rgba(78, 196, 185, 0.2);
}

.symptom-check__glow--bot {
  bottom: -150px;
  right: -100px;
  background: rgba(217, 164, 65, 0.12);
}

.symptom-check>.container {
  position: relative;
  z-index: 1;
}

.symcheck-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.symcheck {
  display: flex;
  gap: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  cursor: pointer;
  transition: background var(--t-fast), border-color var(--t-fast);
}

.symcheck:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(78, 196, 185, 0.3);
}

.symcheck input {
  display: none;
}

.symcheck__box {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
  transition: background var(--t-fast), border-color var(--t-fast);
}

.symcheck__box i {
  color: var(--navy-950);
  font-size: 11px;
  opacity: 0;
  transition: opacity var(--t-fast);
}

.symcheck input:checked+.symcheck__box {
  background: var(--teal-500);
  border-color: var(--teal-500);
}

.symcheck input:checked+.symcheck__box i {
  opacity: 1;
}

.symcheck__text {
  flex: 1;
}

.symcheck__text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--white);
}

.symcheck__text span {
  display: block;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.45;
}

.symcheck--danger {
  background: rgba(196, 32, 32, 0.1);
  border-color: rgba(221, 64, 64, 0.3);
}

.symcheck--danger .symcheck__box {
  border-color: var(--red-500);
}

.symcheck--danger input:checked+.symcheck__box {
  background: var(--red-500);
  border-color: var(--red-500);
}

.symcheck--danger .symcheck__box i {
  color: var(--white);
}

.symcheck__danger-text {
  color: var(--red-500) !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
}

.symcheck-cta {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  border-radius: var(--r-xl);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 20px 50px rgba(217, 164, 65, 0.25);
}

.symcheck-cta__left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 300px;
}

.symcheck-cta__left>i {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy-950);
  color: var(--gold-300);
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}

.symcheck-cta__left strong {
  display: block;
  font-size: 20px;
  color: var(--navy-950);
  font-family: var(--f-display);
  margin-bottom: 4px;
}

.symcheck-cta__left span {
  display: block;
  font-size: 14px;
  color: rgba(11, 26, 66, 0.82);
  line-height: 1.5;
}

/* =============================================================
   WHY LASER (CHANGE 3) — 4 blocks + image right
============================================================= */
.why-laser {
  background: var(--bg-cream);
}

.why-laser__layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.why-laser__blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.lb {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med), box-shadow var(--t-med);
  border: 1px solid var(--ink-100);
}

.lb:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-200);
}

.lb__ic {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--teal-100), var(--teal-200));
  color: var(--teal-700);
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.lb h4 {
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--navy-900);
  margin-bottom: 8px;
}

.lb p {
  font-size: 13.5px;
  color: var(--ink-600);
  line-height: 1.55;
  margin: 0;
}

.why-laser__media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--navy-900);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

.why-laser__media img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  flex: 1;
}

.why-laser__media-caption {
  background: rgba(11, 26, 66, 0.85);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  line-height: 1.4;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.why-laser__media-caption i {
  color: var(--gold-300);
  flex-shrink: 0;
}

/* =============================================================
   HOSPITAL (CHANGE 6 & 9) — moved up, new image+vertical-strips layout
============================================================= */
.why-suvira {
  background: var(--white);
}

.hospital-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.hospital-layout__media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 520px;
}

.hospital-layout__media img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.hospital-layout__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 55%, rgba(5, 15, 48, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--white);
}

.hospital-layout__badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--white);
  color: var(--navy-900);
  border-radius: var(--r-md);
  padding: 10px 16px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  box-shadow: var(--shadow-md);
}

.hospital-layout__badge strong {
  font-family: var(--f-display);
  font-size: 32px;
  color: var(--navy-900);
  line-height: 1;
}

.hospital-layout__badge span {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-700);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hospital-layout__label {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.hospital-layout__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hfeat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-left: 3px solid var(--teal-600);
  border-radius: var(--r-md);
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-left-color var(--t-fast);
}

.hfeat:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
  border-left-color: var(--gold-400);
}

.hfeat__ic {
  width: 38px;
  height: 38px;
  border-radius: var(--r-sm);
  background: var(--teal-100);
  color: var(--teal-700);
  display: grid;
  place-items: center;
  font-size: 15px;
  flex-shrink: 0;
}

.hfeat__text strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 3px;
}

.hfeat__text span {
  display: block;
  font-size: 12.5px;
  color: var(--ink-600);
  line-height: 1.5;
}

/* =============================================================
   TREATMENTS — per-condition deep dives
============================================================= */
.treatments {
  background: var(--bg-cream);
}

.treat-block {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 24px;
  border-top: 4px solid var(--ink-200);
  position: relative;
}

.treat-block:last-child {
  margin-bottom: 0;
}

.treat-block--piles {
  border-top-color: var(--gold-400);
}

.treat-block--fissure {
  border-top-color: var(--teal-600);
}

.treat-block--fistula {
  border-top-color: var(--navy-700);
}

.treat-block__side {
  display: flex;
  flex-direction: column;
}

.treat-block__badge {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 14px;
}

.treat-block--piles .treat-block__badge {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
}

.treat-block--fissure .treat-block__badge {
  background: linear-gradient(135deg, var(--teal-600), var(--teal-700));
}

.treat-block--fistula .treat-block__badge {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
}

.treat-block__tag {
  font-size: 10.5px;
  font-weight: 800;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 8px;
}

.treat-block h3 {
  font-family: var(--f-display);
  font-size: 30px;
  color: var(--navy-900);
  margin-bottom: 4px;
}

.treat-block h3 em {
  font-style: italic;
  color: var(--ink-500);
  font-size: 18px;
  font-weight: 400;
}

.treat-block h4 {
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
}

.treat-block--piles h4 {
  color: var(--gold-600);
}

.treat-block--fissure h4 {
  color: var(--teal-700);
}

.treat-block--fistula h4 {
  color: var(--navy-700);
}

.treat-block p {
  font-size: 14.5px;
  color: var(--ink-700);
  line-height: 1.65;
  margin-bottom: 18px;
}

.treat-block__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.treat-block__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--ink-700);
  line-height: 1.5;
}

.treat-block__list i {
  color: var(--teal-600);
  margin-top: 4px;
  font-size: 12px;
  flex-shrink: 0;
}

.treat-block__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.tstat {
  background: var(--bg-soft);
  border-radius: var(--r-md);
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tstat>i {
  width: 34px;
  height: 34px;
  border-radius: var(--r-sm);
  background: var(--white);
  color: var(--teal-700);
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0;
}

.tstat strong {
  display: block;
  font-size: 13.5px;
  color: var(--navy-900);
  font-weight: 700;
  line-height: 1.2;
}

.tstat span {
  display: block;
  font-size: 11.5px;
  color: var(--ink-500);
  margin-top: 2px;
}

/* =============================================================
   VS TABLE
============================================================= */
.vs-section {
  background: var(--white);
}

.vs-table {
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
  border: 1px solid var(--ink-100);
}

.vs-table__row {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  border-bottom: 1px solid var(--ink-100);
}

.vs-table__row:last-child {
  border-bottom: 0;
}

.vs-table__row>div {
  padding: 16px 20px;
  font-size: 14px;
}

.vs-table__row--head>div {
  font-weight: 700;
  font-size: 13px;
  color: var(--white);
  background: var(--navy-900);
}

.vs-table__row--head .vs-table__col--rirs {
  background: linear-gradient(135deg, var(--teal-700), var(--teal-800));
}

.vs-table__label {
  font-weight: 600;
  color: var(--navy-900);
  background: var(--bg-soft);
}

.vs-table__col--old {
  color: var(--ink-600);
}

.vs-table__col--old i {
  color: var(--red-500);
  margin-right: 6px;
}

.vs-table__col--rirs {
  color: var(--teal-800);
  font-weight: 600;
  background: rgba(78, 196, 185, 0.06);
}

.vs-table__col--rirs i {
  color: var(--teal-600);
  margin-right: 6px;
}

.vs-note {
  margin: 28px auto 0;
  max-width: 960px;
  background: var(--teal-100);
  border: 1px solid var(--teal-200);
  border-radius: var(--r-md);
  padding: 14px 20px;
  font-size: 13.5px;
  color: var(--teal-800);
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.vs-note i {
  color: var(--teal-600);
  margin-top: 3px;
  flex-shrink: 0;
}

/* =============================================================
   YOUR VISIT (CHANGE 4) — no times/days, clean phases
============================================================= */
.your-day {
  background: var(--bg-soft);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  margin-bottom: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 84px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--ink-300) 0, var(--ink-300) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}

.timeline__step {
  position: relative;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ink-100);
  z-index: 1;
}

.timeline__step--hero {
  background: linear-gradient(180deg, var(--gold-100), rgba(253, 245, 225, 0.5));
  border-color: var(--gold-300);
  box-shadow: 0 10px 30px rgba(217, 164, 65, 0.15);
}

.timeline__num {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-500);
  background: var(--bg-soft);
  border: 1px solid var(--ink-100);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.timeline__step--hero .timeline__num {
  background: var(--gold-300);
  color: var(--navy-950);
  border-color: var(--gold-400);
  font-weight: 700;
}

.timeline__dot {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--ink-200);
  color: var(--teal-700);
  display: grid;
  place-items: center;
  font-size: 20px;
  margin: 0 auto 14px;
  position: relative;
  z-index: 1;
}

.timeline__step--hero .timeline__dot {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  border-color: var(--gold-400);
  color: var(--navy-950);
  box-shadow: 0 8px 20px rgba(217, 164, 65, 0.3);
}

.timeline__step h4 {
  font-family: var(--f-display);
  font-size: 17px;
  color: var(--navy-900);
  margin-bottom: 8px;
  line-height: 1.2;
}

.timeline__step p {
  font-size: 16px;
  color: var(--ink-600);
  line-height: 1.55;
  margin: 0;
}

.aftercare {
  background: var(--white);
  border: 1px solid var(--teal-200);
  border-left: 4px solid var(--teal-600);
  border-radius: var(--r-lg);
  padding: 22px 28px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: var(--shadow-xs);
}

.aftercare h4 {
  font-family: var(--f-display);
  font-size: 20px;
  color: var(--teal-800);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.aftercare h4 i {
  color: var(--teal-600);
}

.aftercare ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

.aftercare li {
  font-size: 13.5px;
  color: var(--ink-700);
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
}

.aftercare li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-600);
}

.aftercare li strong {
  color: var(--navy-900);
  font-weight: 700;
}

/* =============================================================
   DOCTOR (CHANGE 5) — new layout with floating credential cards
============================================================= */
.doc-section {
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-800) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.doc-section::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78, 196, 185, 0.15), transparent 70%);
  pointer-events: none;
}

.doc-section .section__head {
  position: relative;
  z-index: 2;
}

.doc-section .section__head .eyebrow {
  background: rgba(78, 196, 185, 0.15);
  color: var(--teal-500);
}

.doc-section .section__title {
  color: var(--white);
}

.doc-section .section__title .accent {
  color: var(--gold-300);
}

.doc-section .section__desc {
  color: rgba(255, 255, 255, 0.72);
}

.doc-section__main {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.doc-hero {
  position: relative;
  padding: 24px 60px 24px 24px;
}

.doc-hero__photo {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  border: 4px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 4/5;
  background: var(--navy-900);
}

.doc-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.doc-hero__float {
  position: absolute;
  background: var(--white);
  color: var(--navy-900);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  padding: 14px 18px;
}

.doc-hero__float--top {
  bottom: 50px;
  right: 0;
  text-align: center;
}

.doc-hero__float--top strong {
  font-family: var(--f-display);
  font-size: 32px;
  color: var(--navy-900);
  display: block;
  line-height: 1;
}

.doc-hero__float--top strong span {
  color: var(--gold-500);
}

.doc-hero__float--top em {
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.doc-hero__float--mid {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 220px;
}

.doc-hero__float--mid>i {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-950);
  display: grid;
  place-items: center;
  font-size: 16px;
  flex-shrink: 0;
}

.doc-hero__float--mid strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: var(--navy-900);
}

.doc-hero__float--mid em {
  display: block;
  font-style: normal;
  font-size: 11px;
  color: var(--ink-600);
  line-height: 1.35;
  margin-top: 2px;
}

.doc-hero__float--bot {
  bottom: 40px;
  right: 0;
  text-align: center;
}

.doc-hero__float--bot strong {
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--navy-900);
  display: block;
  line-height: 1;
}

.doc-hero__float--bot strong span {
  color: var(--teal-600);
}

.doc-hero__float--bot em {
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.doc-body {
  color: var(--white);
}

.doc-body__id {
  margin-bottom: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.doc-body__id h3 {
  font-family: var(--f-display);
  font-size: 40px;
  color: var(--white);
  margin-bottom: 8px;
}

.doc-body__creds {
  font-style: italic;
  font-size: 14px;
  color: var(--teal-300);
  margin-bottom: 8px;
}

.doc-body__role {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.doc-body__bio {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 18px;
}

.doc-body__bio strong {
  color: var(--white);
}

.doc-body__edu {
  margin-bottom: 22px;
}

.doc-body__edu h5,
.doc-body__expertise h5 {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 800;
  color: var(--gold-300);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.doc-body__edu ul {
  display: flex;
  flex-direction: column;
}

.doc-body__edu li {
  display: flex;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 6px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13.5px;
}

.doc-body__edu li:first-child {
  border-top: 0;
  padding-top: 0;
}

.doc-body__edu li>span {
  font-size: 12px;
  color: var(--gold-300);
  font-weight: 600;
}

.doc-body__edu li>strong {
  display: block;
  color: var(--white);
  font-weight: 700;
}

.doc-body__edu li>em {
  display: block;
  font-style: normal;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  margin-top: 2px;
}

.doc-body__expertise {
  margin-bottom: 22px;
}

.doc-body__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.doc-body__chips span {
  padding: 7px 13px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-pill);
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.doc-body__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.doc-body__ctas .btn--outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.doc-body__ctas .btn--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* =============================================================
   STORIES (CHANGE 8) — icons aligned
============================================================= */
.stories {
  background: var(--bg-soft);
}

.pstories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.pstory {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ink-100);
}

.pstory__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.pstory__avi {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 400;
  flex-shrink: 0;
  aspect-ratio: 1;
}

.pstory__meta {
  flex: 1;
  min-width: 0;
}

.pstory__meta strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-900);
}

.pstory__meta span {
  display: block;
  font-size: 12px;
  color: var(--ink-500);
  margin-top: 2px;
}

.pstory__g {
  font-size: 18px;
  color: var(--ink-300);
  flex-shrink: 0;
}

.pstory__stars {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.pstory__stars-row {
  display: inline-flex;
  gap: 2px;
}

.pstory__stars-row i {
  color: var(--gold-400);
  font-size: 13px;
}

.pstory__stars em {
  font-style: normal;
  font-size: 11px;
  color: var(--ink-500);
}

.pstory blockquote {
  font-size: 13.5px;
  color: var(--ink-700);
  line-height: 1.65;
  font-style: italic;
  padding-left: 12px;
  border-left: 3px solid var(--teal-600);
}

.stories__foot {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.stories__foot img {
  width: 30px;
}

.stories__rating {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stories__rating>strong {
  font-family: var(--f-display);
  font-size: 36px;
  color: var(--navy-900);
  line-height: 1;
}

.stories__rating-bits {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stories__rating-stars {
  display: inline-flex;
  gap: 3px;
}

.stories__rating-stars i {
  color: var(--gold-400);
  font-size: 14px;
}

.stories__rating-bits span {
  font-size: 13px;
  color: var(--ink-600);
}

/* =============================================================
   FAQ (CHANGE 11) — accordion left, image+help right
============================================================= */
.faq-section {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}

.faq-layout__qa {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qa {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-md);
  padding: 0;
  overflow: hidden;
  transition: box-shadow var(--t-fast), border-color var(--t-fast);
}

.qa[open] {
  border-color: var(--teal-300);
  box-shadow: var(--shadow-sm);
}

.qa summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy-900);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

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

.qa summary i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal-700);
  display: grid;
  place-items: center;
  font-size: 11px;
  flex-shrink: 0;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast);
}

.qa[open] summary i {
  transform: rotate(45deg);
  background: var(--teal-600);
  color: var(--white);
}

.qa p {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--ink-600);
  line-height: 1.65;
  margin: 0;
}

.faq-layout__side {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-layout__img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  background: var(--bg-cream);
}

.faq-layout__help {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--white);
  padding: 24px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}

.faq-layout__help h4 {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 8px;
}

.faq-layout__help p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  margin: 0 0 16px;
}

.faq-layout__help .btn+.btn {
  margin-top: 8px;
}

.faq-layout__help .btn--outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.faq-layout__help .btn--outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* =============================================================
   CONTACT (CHANGE 12) — details+map on left, form on right
============================================================= */
.contact {
  background: var(--bg-soft);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.contact-grid__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-xs);
  padding: 15px;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ink-100);
}

.contact-info__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-info__ic {
  width: 42px;
  height: 42px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--teal-100), var(--teal-200));
  color: var(--teal-700);
  display: grid;
  place-items: center;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-info__text {
  flex: 1;
}

.contact-info__text strong {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}

.contact-info__text span {
  display: block;
  font-size: 14px;
  color: var(--navy-900);
  font-weight: 500;
  line-height: 1.5;
}

.contact-info__text a {
  color: var(--teal-700);
  font-weight: 700;
}

.contact-info__text a:hover {
  text-decoration: underline;
}

.contact-map {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--ink-100);
  background: var(--ink-100);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}

.contact-form__top {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ink-100);
}

.contact-form__top h3 {
  font-family: var(--f-display);
  font-size: 26px;
  color: var(--navy-900);
  margin-bottom: 4px;
}

.contact-form__top p {
  font-size: 13px;
  color: var(--ink-600);
  margin: 0;
}

.contact-form__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-700);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-field label em {
  color: var(--red-500);
  font-style: normal;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--ink-200);
  border-radius: var(--r-md);
  font-size: 14px;
  background: var(--white);
  color: var(--ink-900);
  transition: border var(--t-fast), box-shadow var(--t-fast);
}

.form-field textarea {
  resize: vertical;
  min-height: 80px;
  font-family: var(--f-body);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal-600);
  box-shadow: 0 0 0 3px rgba(38, 166, 154, 0.1);
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' fill='none' stroke='%235a6478' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.phone-input {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--ink-200);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border var(--t-fast), box-shadow var(--t-fast);
}

.phone-input:focus-within {
  border-color: var(--teal-600);
  box-shadow: 0 0 0 3px rgba(38, 166, 154, 0.1);
}

.phone-input span {
  padding: 11px 14px;
  background: var(--bg-soft);
  color: var(--ink-700);
  font-weight: 700;
  font-size: 14px;
  border-right: 1px solid var(--ink-200);
  display: flex;
  align-items: center;
}

.phone-input input {
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0;
}

.contact-form__note {
  text-align: center;
  font-size: 11px;
  color: var(--ink-500);
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.contact-form__note i {
  color: var(--teal-600);
}

/* =============================================================
   FOOTER
============================================================= */
.footer {
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.7);
  padding: 70px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer__brand img {
  height: 44px;
  margin-bottom: 18px;
  border-radius: 6px;
}

.footer__brand p {
  font-size: 13.5px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer__brand em {
  color: var(--gold-300);
  font-style: italic;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 14px;
  transition: background var(--t-fast), transform var(--t-fast);
}

.footer__social a:hover {
  background: var(--teal-600);
  transform: translateY(-2px);
}

.footer__col h4 {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col li a,
.footer__col li {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--t-fast);
}

.footer__col li a:hover {
  color: var(--gold-300);
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer__contact i {
  color: var(--teal-500);
  margin-top: 3px;
  font-size: 13px;
  flex-shrink: 0;
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.65);
}

.footer__contact a:hover {
  color: var(--gold-300);
}

.footer__base {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  background: var(--navy-900);
}

.footer__base-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
}

.footer__base-links {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer__base-links a {
  transition: color var(--t-fast);
}

.footer__base-links a:hover {
  color: var(--gold-300);
}

.footer__base-links span {
  color: rgba(255, 255, 255, 0.3);
}

/* =============================================================
   FLOATING ACTIONS + MOBILE STICKY BAR
============================================================= */
.fab {
  position: fixed;
  right: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 22px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
  z-index: 90;
  transition: transform var(--t-fast);
}

.fab:hover {
  transform: translateY(-3px);
}

.fab--wa {
  background: #25d366;
  bottom: 92px;
}

.fab--call {
  background: linear-gradient(135deg, var(--teal-600), var(--teal-800));
  bottom: 22px;
}

.fab__ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(38, 166, 154, 0.4);
  animation: ring 2s ease-out infinite;
  pointer-events: none;
}

@keyframes ring {
  0% {
    transform: scale(0.95);
    opacity: 0.9;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--ink-200);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
  padding: 8px 6px calc(8px + env(safe-area-inset-bottom, 0));
  z-index: 95;
  gap: 6px;
}

.mobile-bar__btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 10px 4px;
  border-radius: var(--r-md);
  font-size: 10.5px;
  font-weight: 700;
  color: #fff;
  transition: background var(--t-fast);
  min-height: 48px;
  gap: 10px;
}

.mobile-bar__btn:active {
  background: var(--ink-100);
}

.mobile-bar__btn i {
  font-size: 18px;
  color: #fff;
}


.mobile-bar__btn--wa i {
  color: var(--white);
}


.mobile-bar__btn--book i {
  color: #fff;
}

/* =============================================================
   RESPONSIVE — 1100px breakpoint (tablet)
============================================================= */
@media (max-width: 1100px) {
  .header__nav {
    display: none;
  }

  .header__toggle {
    display: flex;
  }

  .header__nav.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--ink-100);
  }

  .header__phone-text {
    display: none;
  }

  .banner {
    padding: 44px 0 50px;
  }

  .banner__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .banner__form {
    max-width: 520px;
    margin: 0 auto;
  }

  .cond-triad {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .cond-card:last-child {
    grid-column: span 2;
    max-width: 540px;
    margin: 0 auto;
    width: 100%;
  }

  .symcheck-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-laser__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .why-laser__media img {
    min-height: 300px;
    max-height: 380px;
  }

  .hospital-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hospital-layout__media {
    min-height: 380px;
  }

  .treat-block {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px;
  }

  .timeline {
    grid-template-columns: repeat(5, minmax(180px, 1fr));
    gap: 14px;
  }

  .doc-section__main {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 640px;
    margin: 0 auto;
  }

  .doc-hero {
    padding: 0 60px 0 0;
  }

  .doc-hero__float--top {
    top: 20px;
  }

  .doc-hero__float--bot {
    bottom: 20px;
  }

  .pstories {
    grid-template-columns: 1fr 1fr;
  }

  .pstory:last-child {
    grid-column: span 2;
    max-width: 620px;
    margin: 0 auto;
    width: 100%;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-layout__side {
    position: static;
    flex-direction: row;
    gap: 18px;
  }

  .faq-layout__img {
    width: 40%;
    max-height: 280px;
  }

  .faq-layout__help {
    flex: 1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 640px;
    margin: 0 auto;
  }

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

  .topbar .hide-sm,
  .topbar .hide-md {
    display: none;
  }
}

/* =============================================================
   RESPONSIVE — 780px (mobile landscape / tablet portrait)
============================================================= */
@media (max-width: 780px) {
  .section {
    padding: 30px 0;
  }

  .header__actions {
    display: none;
  }

  .header {
    padding: 10px 0;
  }

  .section__head {
    margin-bottom: 20px;
  }

  .topbar__emerg {
    font-size: 11px;
    padding: 3px 10px;
  }

  .topbar__left {
    gap: 10px;
    font-size: 11.5px;
  }

  .header__actions .header__phone {
    display: none;
  }

  .header__actions .btn--primary {
    padding: 9px 14px;
    font-size: 12.5px;
  }

  .header__logo img {
    height: 38px;
  }

  .banner {
    padding: 36px 0 40px;
  }

  .banner__title {
    font-size: 32px;
  }

  .banner__title-sub {
    font-size: 15px;
    margin-top: 8px;
  }

  .banner__lede {
    font-size: 14px;
  }

  .banner__chips {
    gap: 6px;
  }

  .banner__chips li {
    font-size: 11.5px;
    padding: 6px 11px;
  }

  .banner__docchip {
    padding: 10px 14px 10px 10px;
  }

  .banner__docchip img {
    width: 48px;
    height: 48px;
  }

  .banner__form {
    padding: 22px;
    border-radius: var(--r-lg);
  }

  .banner__form-top h2 {
    font-size: 22px;
  }

  .strip__inner {
    gap: 16px;
  }

  .strip__logos {
    gap: 14px;
  }

  .strip__logos span {
    font-size: 12px;
  }

  .cond-triad {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cond-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .cond-card__media {
    padding: 10px 10px 0;
  }

  .cond-card__media img {
    height: 160px;
  }

  .cond-card__content {
    padding: 10px;
  }

  .cond-card__content h3 {
    font-size: 22px;
  }

  .thin-cta {
    padding: 18px 0;
  }

  .thin-cta__inner {
    gap: 14px;
  }

  .thin-cta__text {
    min-width: 0;
  }

  .thin-cta__text>i {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .thin-cta__text span {
    font-size: 13.5px;
  }

  .thin-cta__actions {
    width: 100%;
  }

  .thin-cta__actions .btn {
    flex: 1;
  }

  .symcheck-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .symcheck {
    padding: 14px;
  }

  .symcheck-cta {
    padding: 15px;
  }

  .symcheck-cta__left {
    min-width: 0;
    gap: 14px;
  }

  .symcheck-cta__left>i {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .symcheck-cta__left strong {
    font-size: 17px;
  }

  .symcheck-cta__left span {
    font-size: 13px;
  }

  .symcheck-cta__right {
    width: 100%;
  }

  .symcheck-cta__right .btn {
    width: 100%;
  }

  .why-laser__blocks {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .lb {
    padding: 15px;
  }

  .why-laser__media img {
    min-height: 240px;
    max-height: 320px;
  }

  .hospital-layout__media {
    min-height: 280px;
  }

  .hospital-layout__badge {
    top: 16px;
    left: 16px;
    padding: 8px 12px;
  }

  .hospital-layout__badge strong {
    font-size: 24px;
  }

  .hfeat {
    padding: 14px;
    gap: 12px;
  }

  .hfeat__ic {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .hfeat__text strong {
    font-size: 14px;
  }

  .hfeat__text span {
    font-size: 12px;
  }

  .treat-block {
    padding: 15px;
    border-radius: var(--r-lg);
  }

  .treat-block h3 {
    font-size: 24px;
  }

  .treat-block__stats {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .tstat {
    padding: 11px;
  }

  .tstat>i {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .tstat strong {
    font-size: 12.5px;
  }

  .tstat span {
    font-size: 11px;
  }

  .vs-table__row {
    grid-template-columns: 1.4fr 1fr 1fr;
    font-size: 12.5px;
  }

  .vs-table__row>div {
    padding: 12px 10px;
    font-size: 12.5px;
  }

  .timeline {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 12px;
    margin-left: -24px;
    margin-right: -24px;
    padding-left: 24px;
    padding-right: 24px;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
  }

  .timeline::before {
    display: none;
  }

  .timeline__step {
    min-width: 240px;
    max-width: 260px;
    scroll-snap-align: start;
  }

  .aftercare {
    padding: 15px;
  }

  .aftercare ul {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .doc-hero {
    padding: 0;
    max-width: 400px;
    margin: 0 auto;
  }

  .doc-hero__float {
    position: static;
    margin-top: 12px;
  }

  .doc-hero__float--top,
  .doc-hero__float--bot {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    padding: 10px 14px;
  }

  .doc-hero__float--top strong,
  .doc-hero__float--bot strong {
    font-size: 22px;
    display: inline;
  }

  .doc-hero {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    align-items: start;
  }

  .doc-hero__photo {
    grid-column: span 3;
    height: 240px;
    width: 100%;
    max-width: 100%;
  }

  .doc-section__main {
    gap: 0;
  }

  .doc-hero__float--mid {
    max-width: none;
  }

  .doc-body__id h3 {
    font-size: 32px;
  }

  .doc-body__edu li {
    grid-template-columns: 80px 1fr;
    gap: 12px;
  }

  .pstories {
    grid-template-columns: 1fr;
  }

  .pstory:last-child {
    grid-column: auto;
    max-width: none;
  }

  .faq-layout__side {
    flex-direction: column;
  }

  .faq-layout__img {
    width: 100%;
    max-height: 220px;
  }

  .qa summary {
    padding: 14px 16px;
    font-size: 14px;
  }

  .contact-form {
    padding: 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__base-inner {
    justify-content: center;
    text-align: center;
  }

  .fab--wa {
    bottom: 150px;
    width: 50px;
    height: 50px;
    display: none;
    font-size: 20px;
  }

  .fab--call {
    display: none;
    bottom: 90px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .mobile-bar {
    display: flex;
    background: #132659;
  }

  body {
    padding-bottom: 78px;
  }

  .container {
    width: min(100% - 15px, var(--container));
    padding: 0 10px;
  }


  .footer__base {
    padding: 12px 0;
    margin-top: 15px;
  }

  .topbar {
    padding: 6px 0;
    font-size: 11.5px;
    display: none;
  }

  .topbar__left {
    gap: 8px;
  }

  .topbar__emerg {
    font-size: 10.5px;
    padding: 3px 8px;
  }

  .topbar__right a:nth-child(1) {
    display: none;
  }

  .banner__title {
    font-size: 28px;
  }

  .banner__form {
    padding: 20px;
  }

  .banner__form-top h2 {
    font-size: 20px;
  }

  .section__title {
    font-size: 26px;
  }

  .section__desc {
    font-size: 14.5px;
  }

  .symcheck-cta__right .btn {
    padding: 13px 20px;
    font-size: 13px;
  }

  .treat-block h3 {
    font-size: 22px;
  }

  .treat-block h3 em {
    display: block;
    font-size: 14px;
    margin-top: 2px;
  }


  .doc-hero__float--top,
  .doc-hero__float--mid,
  .doc-hero__float--bot {
    width: 100%;
  }

  .doc-hero__float {
    margin-top: -70px;
    border-radius: 5px;
  }

  .stories__rating>strong {
    font-size: 28px;
  }

  .stories__foot {
    padding: 14px 16px;
  }

  .stories__foot .btn {
    width: 100%;
  }

  .vs-table__row>div {
    padding: 10px 8px;
    font-size: 11.5px;
  }
}

/* =============================================================
   RESPONSIVE — 480px (small phone)
============================================================= */
@media (max-width: 480px) {}

/* =============================================================
   SWIPE-ROWS (horizontal scroll on small screens for key content)
============================================================= */
.swipe-row {
  /* no default styling, kept responsive */
}

@media (max-width: 480px) {
  .swipe-row {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 4px 16px 12px;
    margin-left: -16px;
    margin-right: -16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .swipe-row::-webkit-scrollbar {
    display: none;
  }

  .swipe-row>* {
    scroll-snap-align: start;
    flex: 0 0 85%;
    min-width: 280px;
  }

  .cond-triad.swipe-row>* {
    flex: 0 0 88%;
  }

  .pstories.swipe-row>* {
    flex: 0 0 88%;
  }

  .symcheck-grid.swipe-row {
    grid-template-columns: initial;
  }

  .symcheck-grid.swipe-row>* {
    flex: 0 0 78%;
    min-width: 260px;
  }
}