/* ============================================================
   Ramakrishna Hospital — Urology page (PAGE-SPECIFIC styles only)
   Load AFTER the global css/style.css. Header, footer, nav, form,
   buttons base & floating buttons live in the global stylesheet.
   Responsive: Desktop (>1100px) · Tablet (768–1100px) · Mobile (<768px)

   COLOR TOKENS (edit here to re-theme)
   ------------------------------------------------------------
   --navy-900  #0a1f4d   dark header / footer
   --navy-800  #0d2a52   headings, stat card
   --navy-700  #102a55   doctor card
   --blue-600  #2a7fd4   primary brand blue
   --blue-700  #1f6bb8   hover blue
   --blue-900  #09318A   hero / conditions panel
   --gold      #EFBB4B   appointment / accents
   --teal      #1aa39a   highlight accent
   ============================================================ */

:root {
  --navy-900: #0a1f4d;
  --navy-800: #0d2a52;
  --navy-700: #102a55;
  --blue-600: #2a7fd4;
  --blue-700: #1f6bb8;
  --blue-900: #09318A;
  --gold: #EFBB4B;
  --gold-hover: #f3c869;
  --teal: #1aa39a;
  --ink: #1a1a1a;
  --muted: #4a5a6a;
  --page-max: 1320px;
  --nav-max: 1880px;
  --pad-x: 56px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ---------- Shared building blocks ---------- */
.section-title {
  font-size: 44px;
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--navy-800);
  text-wrap: balance;
}
.section-title--light { color: #ffffff; }
.accent-blue { color: var(--blue-600); }
.section-sub {
  margin-top: 16px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--muted);
}
.section-head--center { text-align: center; max-width: 900px; margin: 0 auto 56px; }
.lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}
.lead + .lead { margin-top: 14px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 54px;
  padding: 0 30px;
  border: none;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn--primary { background: var(--blue-600); color: #fff; }
.btn--primary:hover { background: var(--blue-700); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(42,127,212,.65); }
.btn--secondary { background: var(--gold); color: #000; font-weight: 600; }
.btn--secondary:hover { background: var(--gold-hover); transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(239,187,75,.6); }
.btn--appointment { height: 44px; padding: 0 24px; background: var(--gold); color: #000; font-weight: 600; }
.btn--appointment:hover { background: var(--gold-hover); color: #000; transform: translateY(-2px); box-shadow: 0 12px 24px -10px rgba(239,187,75,.7); }
.btn--lg { height: 60px; padding: 0 38px; font-size: 17px; box-shadow: 0 22px 44px -18px rgba(42,127,212,.6); }
.btn--nowrap { flex-shrink: 0; }

/* Decorative shapes (reused) */
.blob, .ring { position: absolute; border-radius: 50%; pointer-events: none; }
.ring { border: 1.5px solid; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; background: #fff; }
.hero__panel { position: absolute; top: 0; left: 0; right: 0; height: 430px; background: var(--blue-900); overflow: hidden; }
.hero__particles { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.hero__overlay { position: absolute; inset: 0; pointer-events: none; }
.hero__sheen { position: absolute; inset: 0; background: linear-gradient(120deg,rgba(255,255,255,.06),transparent 38%,transparent 62%,rgba(8,24,58,.22)); }
.blob--a { top: -120px; left: -80px; width: 420px; height: 420px; background: radial-gradient(circle,rgba(255,255,255,.12),transparent 68%); }
.blob--b { bottom: -180px; left: 34%; width: 480px; height: 480px; background: radial-gradient(circle,rgba(8,24,58,.30),transparent 70%); }
.ring--a { top: -60px; right: 18%; width: 260px; height: 260px; border-color: rgba(239,187,75,.55); }
.ring--b { bottom: 40px; left: 8%; width: 160px; height: 160px; border-color: rgba(239,187,75,.45); }

.hero__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  max-width: var(--nav-max);
  margin: 0 auto;
  padding: 0 200px;
  height: 500px;
}
.hero__copy { display: flex; align-items: flex-start; gap: 28px; flex-shrink: 0; margin-bottom: 40px; }
.hero__accent { width: 7px; height: 120px; border-radius: 8px; background: var(--gold); margin-top: 6px; flex-shrink: 0; }
.hero__headline { font-size: 56px; line-height: 1.04; font-weight: 800; color: #fff; letter-spacing: -.01em; }
.hero__visual { position: relative; flex-shrink: 0; }
.hero__image-frame { width: 430px; height: 430px; border-radius: 50%; background: var(--gold); padding: 12px; box-shadow: 0 30px 70px -25px rgba(10,31,77,.5); }
.hero__image-clip { width: 100%; height: 100%; border-radius: 50%; overflow: hidden; }
.hero__image { width: 100%; height: 100%; object-fit: cover; object-position: center; background: #dfe6ee; transform: scale(1.32); }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: #fff; padding: 40px var(--pad-x) 64px; }
.about__container {
  max-width: var(--page-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 72px;
  align-items: center;
}
.about__visual { position: relative; padding-bottom: 44px; padding-right: 44px; }
.about__photo { width: 100%; height: 540px; border-radius: 24px; object-fit: cover; background: #dfe6ee; box-shadow: 0 30px 60px -28px rgba(13,42,82,.35); }
.stat-card {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; border-radius: 18px; background: var(--navy-800);
  box-shadow: 0 24px 48px -18px rgba(13,42,82,.5); white-space: nowrap;
}
.stat-card__num { font-size: 40px; font-weight: 900; color: #fff; letter-spacing: -.02em; }
.stat-card__title { font-size: 15px; font-weight: 700; color: #fff; }
.stat-card__sub { font-size: 13px; font-weight: 500; color: #9fb4d4; margin-top: 2px; }

.highlight { margin-top: 28px; display: flex; gap: 16px; padding: 20px 24px; border-radius: 14px; background: #f1f6fc; border-left: 4px solid var(--teal); }
.highlight p { font-size: 16.5px; line-height: 1.55; font-weight: 600; color: var(--navy-800); }
.about__ctas { display: flex; align-items: center; gap: 16px; margin-top: 32px; flex-wrap: wrap; }

/* ============================================================
   SIGNS
   ============================================================ */
.signs { position: relative; background: #f3f7fc; padding: 56px var(--pad-x); overflow: hidden; }
.signs__particles { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.signs__overlay { position: absolute; inset: 0; pointer-events: none; }
.blob--c { top: -140px; right: -120px; width: 460px; height: 460px; background: radial-gradient(circle,rgba(42,127,212,.10),transparent 70%); }
.blob--d { bottom: -180px; left: -140px; width: 520px; height: 520px; background: radial-gradient(circle,rgba(26,163,154,.08),transparent 70%); }
.ring--c { top: 80px; left: 6%; width: 200px; height: 200px; border-color: rgba(42,127,212,.10); }
.ring--d { bottom: 120px; right: 9%; width: 140px; height: 140px; border-color: rgba(239,187,75,.18); }
.signs__container { position: relative; max-width: var(--page-max); margin: 0 auto; }
.signs__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 24px; }

.sign-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid #e3eaf3; border-radius: 20px; overflow: hidden;
  box-shadow: 0 10px 28px -20px rgba(13,42,82,.4);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
.sign-card__img { width: 100%; height: 172px; object-fit: cover; background: #e8f1fc; }
.sign-card__body { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 22px 24px 26px; transition: background .25s ease; }
.sign-card__title { font-size: 18px; font-weight: 700; color: var(--navy-800); transition: color .25s ease; }
.sign-card__arrow { width: 38px; height: 38px; flex-shrink: 0; border-radius: 50%; background: #e8f1fc; color: var(--blue-600); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; transition: background .25s ease, color .25s ease, transform .25s ease; }
.sign-card:hover { background: var(--blue-600); border-color: var(--blue-600); transform: translateY(-4px); box-shadow: 0 22px 44px -18px rgba(42,127,212,.55); }
.sign-card:hover .sign-card__body { background: var(--blue-600); }
.sign-card:hover .sign-card__title { color: #fff; }
.sign-card:hover .sign-card__arrow { background: #fff; color: var(--blue-600); transform: translateX(3px); }

.signs__closing { display: flex; align-items: center; justify-content: space-between; gap: 40px; margin-top: 48px; padding: 32px 40px; border-radius: 20px; background: #fff; border: 1px solid #e3eaf3; }
.signs__closing p { font-size: 17px; line-height: 1.55; color: #3a4a5a; max-width: 760px; }

/* ============================================================
   CONDITIONS (accordion)
   ============================================================ */
.conditions { background: var(--blue-900); padding: 56px var(--pad-x); }
.conditions__container { max-width: var(--page-max); margin: 0 auto; }
.conditions__row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 48px; align-items: start; }
.accordion { display: flex; flex-direction: column; gap: 16px; }
.acc-item { border: 1px solid rgba(255,255,255,.16); border-radius: 18px; overflow: hidden; background: rgba(255,255,255,.05); transition: border-color .2s, background .2s; }
.acc-item.is-open { border: 1.5px solid var(--gold); background: rgba(255,255,255,.10); }
.acc-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 26px 28px; cursor: pointer; user-select: none; }
.acc-head__title { font-size: 22px; font-weight: 700; color: #fff; }
.acc-sign { width: 34px; height: 34px; flex-shrink: 0; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 700; line-height: 1; background: rgba(255,255,255,.14); color: #fff; }
.acc-item.is-open .acc-sign { background: var(--gold); color: var(--blue-900); }
.acc-body { display: none; padding: 0 28px 28px; }
.acc-item.is-open .acc-body { display: block; }
.acc-body__img { width: 100%; height: 190px; object-fit: cover; border-radius: 12px; background: #dfe6ee; margin-bottom: 14px; }  /* shown on mobile/tablet only */
.acc-body__desc { font-size: 16px; line-height: 1.6; color: #c3d3ef; margin-bottom: 18px; }
.acc-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.acc-tag { display: flex; align-items: center; gap: 9px; padding: 9px 16px 9px 12px; border-radius: 999px; background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.2); font-size: 14.5px; font-weight: 600; color: #fff; }
.acc-tag__dot { width: 7px; height: 7px; flex-shrink: 0; border-radius: 50%; background: var(--gold); }

.conditions__visual { position: sticky; top: 40px; }
.cond-panel { display: none; }
.cond-panel.is-active { display: block; }
.cond-panel__frame { position: relative; border-radius: 24px; overflow: hidden; background: var(--navy-800); padding: 14px; box-shadow: 0 30px 60px -28px rgba(13,42,82,.45); }
.cond-panel__frame img { width: 100%; height: 600px; object-fit: cover; border-radius: 14px; background: #dfe6ee; }
.conditions__bottom { margin-top: 48px; font-size: 17px; line-height: 1.6; color: #c3d3ef; max-width: 920px; }
/* image that appears inside each accordion body — desktop hides it (uses sticky panel) */
.acc-body__img { display: none; }

/* ============================================================
   PROCEDURES
   ============================================================ */
.procedures { background: #F4F7FC; padding: 56px var(--pad-x); }
.procedures__container { max-width: var(--page-max); margin: 0 auto; }
.procedures__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.proc-card { display: flex; align-items: center; gap: 18px; padding: 22px 24px; border-radius: 16px; background: #fff; border: 1px solid #e2e9f2; box-shadow: 0 4px 16px -10px rgba(13,42,82,.28); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.proc-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px -16px rgba(13,42,82,.4); border-color: var(--blue-600); }
.proc-num { display: flex; align-items: center; justify-content: center; flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; background: #eef4fc; color: var(--blue-600); font-size: 17px; font-weight: 800; letter-spacing: -.02em; transition: background .25s ease, color .25s ease; }
.proc-card:hover .proc-num { background: var(--blue-600); color: #fff; }
.proc-card span:last-child { font-size: 16.5px; line-height: 1.35; font-weight: 700; color: var(--navy-800); }
.procedures__bottom { margin-top: 44px; font-size: 17px; line-height: 1.6; color: #3a4a5a; }

/* ============================================================
   TEAM
   ============================================================ */
.team { position: relative; background: var(--navy-900); padding: 24px var(--pad-x) 56px; overflow: hidden; }
.team__particles { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.team__glow { position: absolute; border-radius: 50%; pointer-events: none; }
.team__glow--a { top: -160px; right: -120px; width: 520px; height: 520px; background: radial-gradient(circle,rgba(42,127,212,.32),transparent 70%); }
.team__glow--b { bottom: -200px; left: -140px; width: 560px; height: 560px; background: radial-gradient(circle,rgba(26,163,154,.22),transparent 70%); }
.team__container { position: relative; max-width: var(--page-max); margin: 0 auto; }
.team .section-head--center { margin: 24px auto 32px; max-width: 680px; }
.team .section-title { font-size: 46px; line-height: 1.1; }
/* Single featured specialist card: portrait lifted out of the card on desktop */
.doc-featured {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 44px;
  align-items: start;
  max-width: 900px;
  margin: 96px auto 0;
  background: var(--navy-700);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 32px;
  padding: 0 44px 44px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.6);
}
.doc-featured__frame {
  margin-top: -72px;
  border-radius: 30px;
  overflow: hidden;
  padding: 7px;
  background: linear-gradient(160deg,#3aa6ea,#2a7fd4);
  box-shadow: 0 24px 48px -18px rgba(0,0,0,.55);
}
.doc-featured__frame img { width: 100%; height: 360px; display: block; object-fit: cover; object-position: center top; border-radius: 24px; background: #d8dade; }
.doc-featured__details { padding-top: 44px; }
.doc-featured__name { font-size: 30px; font-weight: 800; color: #fff; letter-spacing: -.02em; }
.doc-featured__degree { font-size: 15px; font-weight: 600; color: #7fb0e6; margin-top: 10px; line-height: 1.5; }
.doc-featured__role { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #c79a37; margin-top: 14px; }
.doc-featured__rule { height: 1px; border: 0; background: rgba(255,255,255,.1); margin: 26px 0; }
.doc-featured__note { font-size: 16px; line-height: 1.6; color: #aebbd2; }

/* ============================================================
   TRUST
   ============================================================ */
.trust { position: relative; background: #F4F7FC; padding: 56px var(--pad-x); overflow: hidden; }
.trust__particles { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.trust__container { position: relative; max-width: var(--page-max); margin: 0 auto; }
.trust .section-head--center { margin: 0 auto 72px; max-width: var(--page-max); }
.trust__composition { display: grid; grid-template-columns: 1fr 1.12fr 1fr; gap: 36px; align-items: center; }
.trust__points { display: flex; flex-direction: column; gap: 22px; }
.trust-point { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid #e4ebf5; border-radius: 18px; padding: 18px 20px; box-shadow: 0 14px 34px -22px rgba(13,42,82,.5); }
.trust-point--offset { margin-right: -12px; }
.trust-point--offset-r { margin-left: -12px; }
.trust-point__icon { width: 46px; height: 46px; flex-shrink: 0; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; }
.trust-point__icon--blue { background: #e8f1fc; color: var(--blue-600); }
.trust-point__icon--teal { background: #e8f5f3; color: #0e7a73; }
.trust-point span:last-child { font-size: 15.5px; font-weight: 600; line-height: 1.45; color: #16304f; }
.trust__visual { position: relative; display: flex; justify-content: center; }
.trust__blob { position: absolute; top: -26px; left: 50%; transform: translateX(-50%); width: 108%; height: 108%; border-radius: 42% 58% 52% 48%/48% 42% 58% 52%; background: linear-gradient(150deg,#2a7fd4,#1aa39a); opacity: .14; pointer-events: none; }
.trust__frame { position: relative; width: 100%; border-radius: 28px; padding: 12px; background: #fff; box-shadow: 0 40px 80px -34px rgba(13,42,82,.5); }
.trust__frame img { width: 100%; height: 560px; object-fit: cover; border-radius: 20px; background: #dfe6ee; }
.trust__badge { position: absolute; bottom: 30px; left: -26px; width: 78px; height: 78px; border-radius: 22px; background: var(--navy-800); display: flex; align-items: center; justify-content: center; box-shadow: 0 24px 48px -18px rgba(13,42,82,.55); color: #fff; font-size: 34px; font-weight: 300; }
.trust__closing { max-width: 920px; margin: 72px auto 0; text-align: center; font-size: 18px; line-height: 1.65; color: #3a4a5a; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta { position: relative; background: #fff; padding: 112px var(--pad-x); overflow: hidden; }
.final-cta__glow { position: absolute; top: 50%; right: -160px; transform: translateY(-50%); width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle,rgba(26,163,154,.12),transparent 70%); pointer-events: none; }
.final-cta__container { position: relative; max-width: var(--page-max); margin: 0 auto; display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center; }
.final-cta__visual { position: relative; display: flex; justify-content: center; }
.final-cta__blob { position: absolute; top: -30px; left: -30px; width: 104%; height: 106%; border-radius: 46% 54% 50% 50%/52% 46% 54% 48%; background: linear-gradient(150deg,#2a7fd4,#1aa39a); opacity: .12; pointer-events: none; }
.final-cta__frame { position: relative; width: 100%; border-radius: 30px; padding: 12px; background: #fff; box-shadow: 0 44px 88px -38px rgba(13,42,82,.45); }
.final-cta__frame img { width: 100%; height: 600px; object-fit: cover; border-radius: 22px; background: #dfe6ee; }
.final-cta__badge { position: absolute; bottom: -24px; right: 30px; display: flex; align-items: center; gap: 12px; padding: 16px 22px; border-radius: 18px; background: var(--navy-800); box-shadow: 0 26px 52px -20px rgba(13,42,82,.55); font-size: 14.5px; font-weight: 700; color: #fff; }
.final-cta__badge-icon { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.12); color: #7fe3da; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.final-cta__content .section-title { font-size: 48px; line-height: 1.12; }
.final-cta__content .lead:first-of-type { margin-top: 26px; }
.final-cta__emphasis { margin-top: 14px; font-size: 26px; line-height: 1.3; font-weight: 800; color: var(--teal); letter-spacing: -.01em; }
.final-cta__content .btn { margin-top: 36px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
[data-reveal] { opacity: 0; transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
[data-reveal="left"] { transform: translateX(-90px); }
[data-reveal="right"] { transform: translateX(90px); }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   TABLET  (768px – 1100px)
   ============================================================ */
@media (max-width: 1100px) {
  :root { --pad-x: 40px; }

  /* Header collapses to mobile nav */

  /* Mobile menu */

  /* Hero */
  .hero__inner { padding: 0 40px; height: auto; flex-direction: column; align-items: center; text-align: center; gap: 32px; padding-top: 48px; padding-bottom: 48px; }
  .hero__panel { height: 100%; }
  .hero__copy { margin-bottom: 0; }
  .hero__headline { font-size: 46px; }
  .hero__image-frame { width: 340px; height: 340px; }

  /* About */
  .about__container { grid-template-columns: 1fr; gap: 48px; }
  .about__visual { max-width: 620px; margin: 0 auto; width: 100%; }
  .about__photo { height: 440px; }

  /* Signs closing stacks */
  .signs__closing { flex-direction: column; align-items: flex-start; gap: 24px; }

  /* Conditions: single column, use in-body image, hide sticky panel */
  .conditions__row { grid-template-columns: 1fr; gap: 28px; }
  .conditions__visual { display: none; }
  .acc-body__img { display: block; }

  /* Procedures 2-up */
  .procedures__grid { grid-template-columns: repeat(2, 1fr); }

  /* Featured specialist: portrait above details */
  .doc-featured { grid-template-columns: 1fr; gap: 24px; padding: 0 32px 36px; margin-top: 88px; }
  .doc-featured__details { padding-top: 0; text-align: center; }
  .doc-featured__frame img { height: 340px; }

  /* Trust: stack points below image */
  .trust__composition { grid-template-columns: 1fr; gap: 28px; max-width: 640px; margin: 0 auto; }
  .trust__points { flex-direction: column; }
  .trust-point--offset, .trust-point--offset-r { margin: 0; }
  .trust__visual { order: -1; }
  .trust__frame img { height: 420px; }

  /* Final CTA stacks */
  .final-cta { padding: 72px var(--pad-x); }
  .final-cta__container { grid-template-columns: 1fr; gap: 56px; }
  .final-cta__visual { order: -1; max-width: 620px; margin: 0 auto; }
  .final-cta__frame img { height: 440px; }
  .final-cta__content .section-title { font-size: 40px; }

  /* Footer 2-col */

  .section-title { font-size: 36px; }
  .team .section-title, .final-cta__content .section-title { font-size: 38px; }
}

/* ============================================================
   MOBILE  (< 768px)  — follows the mobile design
   ============================================================ */
@media (max-width: 767px) {
  :root { --pad-x: 20px; }

  /* Utility bar: email + socials only */

  /* Nav */

  /* Hero */
  .hero__panel { background: var(--blue-900); }
  .hero__inner { padding: 36px 20px 40px; gap: 28px; align-items: stretch; text-align: left; }
  .hero__copy { gap: 16px; }
  .hero__accent { width: 5px; height: 72px; }
  .hero__headline { font-size: 36px; line-height: 1.08; }
  .hero__visual { align-self: center; }
  .hero__image-frame { width: 260px; height: 260px; padding: 9px; }
  .ring--a { width: 160px; height: 160px; top: -40px; }
  .ring--b { width: 100px; height: 100px; }

  /* About */
  .about { padding: 36px 20px 44px; }
  .about__container { gap: 0; }
  .about__visual { padding: 0 0 36px 0; order: 2; margin-top: 24px; }
  .about__photo { height: 300px; border-radius: 18px; }
  .stat-card { padding: 14px 18px; border-radius: 14px; gap: 12px; }
  .stat-card__num { font-size: 30px; }
  .stat-card__title { font-size: 13px; }
  .stat-card__sub { font-size: 11.5px; }
  .about__copy { order: 1; }
  .section-title { font-size: 26px; line-height: 1.22; }
  .lead { font-size: 14.5px; line-height: 1.65; }
  .highlight { padding: 16px 18px; }
  .highlight p { font-size: 14px; }
  .about__ctas { flex-direction: column; gap: 12px; }
  .about__ctas .btn { width: 100%; height: 52px; }

  /* Signs: single column */
  .signs { padding: 40px 20px; }
  .signs__grid { grid-template-columns: 1fr; gap: 16px; }
  .sign-card { border-radius: 16px; }
  .sign-card__img { height: 150px; }
  .sign-card__body { padding: 16px 18px 18px; }
  .sign-card__title { font-size: 15px; }
  .sign-card__arrow { width: 34px; height: 34px; font-size: 16px; }
  .section-sub { font-size: 14.5px; }
  .signs__closing { padding: 22px; border-radius: 16px; margin-top: 28px; }
  .signs__closing p { font-size: 14px; }
  .signs__closing .btn { width: 100%; height: 50px; font-size: 14.5px; }

  /* Conditions */
  .conditions { padding: 40px 20px; }
  .conditions__row { margin-top: 24px; }
  .acc-head { padding: 18px; }
  .acc-head__title { font-size: 16.5px; line-height: 1.3; }
  .acc-sign { width: 30px; height: 30px; font-size: 19px; }
  .acc-body { padding: 0 18px 20px; }
  .acc-body__desc { font-size: 14px; }
  .acc-tag { font-size: 12.5px; }
  .conditions__bottom { margin-top: 24px; font-size: 14px; }

  /* Procedures: single column */
  .procedures { padding: 40px 20px; }
  .procedures__grid { grid-template-columns: 1fr; gap: 12px; margin-top: 24px; }
  .proc-card { padding: 16px 18px; gap: 14px; border-radius: 14px; }
  .proc-num { width: 40px; height: 40px; border-radius: 11px; font-size: 15px; }
  .proc-card span:last-child { font-size: 14.5px; }
  .procedures__bottom { margin-top: 24px; font-size: 14.5px; }

  /* Team: single column */
  .team { padding: 36px 20px 44px; }
  .team .section-title { font-size: 27px; }
  .doc-featured { margin-top: 92px; padding: 0 22px 26px; border-radius: 22px; gap: 18px; }
  .doc-featured__frame { margin-top: -64px; border-radius: 24px; padding: 6px; }
  .doc-featured__frame img { height: 276px; border-radius: 19px; }
  .doc-featured__name { font-size: 22px; }
  .doc-featured__degree { font-size: 13.5px; margin-top: 6px; }
  .doc-featured__role { font-size: 11px; margin-top: 9px; }
  .doc-featured__rule { margin: 20px 0; }
  .doc-featured__note { font-size: 14px; text-align: center; }

  /* Trust */
  .trust { padding: 40px 20px; }
  .trust .section-head--center { margin-bottom: 26px; }
  .trust__composition { gap: 32px; }
  .trust__frame { border-radius: 20px; padding: 9px; }
  .trust__frame img { height: 280px; border-radius: 14px; }
  .trust__blob { display: none; }
  .trust__badge { width: 58px; height: 58px; border-radius: 16px; left: 14px; bottom: -18px; font-size: 26px; }
  .trust-point { border-radius: 15px; padding: 15px 16px; gap: 13px; }
  .trust-point__icon { width: 40px; height: 40px; border-radius: 11px; font-size: 17px; }
  .trust-point span:last-child { font-size: 13.5px; }
  .trust__closing { margin-top: 28px; font-size: 14.5px; }

  /* Final CTA */
  .final-cta { padding: 48px 20px; }
  .final-cta__container { gap: 24px; }
  .final-cta__glow { display: none; }
  .final-cta__blob { display: none; }
  .final-cta__frame { border-radius: 20px; padding: 9px; border: 1px solid #e8eef6; }
  .final-cta__frame img { height: 280px; border-radius: 14px; }
  .final-cta__badge { bottom: -16px; right: 14px; padding: 12px 16px; border-radius: 14px; font-size: 12.5px; }
  .final-cta__badge-icon { width: 30px; height: 30px; font-size: 14px; }
  .final-cta__content .section-title { font-size: 28px; }
  .final-cta__content .lead { font-size: 15px; }
  .final-cta__emphasis { font-size: 22px; }
  .final-cta__content .btn { width: 100%; margin-top: 24px; height: 54px; }

  /* Footer: single column */
}

/* Small phones */
@media (max-width: 380px) {
  .hero__image-frame { width: 220px; height: 220px; }
}

/* ============================================================
   UROLOGY-SPECIFIC OVERRIDES
   ============================================================ */
/* This page's Trust section has 3 points on the left, 2 on the right —
   keep both columns visually centred against the image. */
.trust__points--right { justify-content: center; }
