/* ═══════════════════════════════════════════════════════
   ONCOLOGIST PAGE — best-oncologist-in-jaipur
   Matches the site-wide purple/pink theme (style.css, cancer.css)
   Content unchanged; presentation only.
   ═══════════════════════════════════════════════════════ */

.onco-page {
  /* Matches the site-wide palette used by style.css / cancer.css */
  --o-cream: #f8f9fc;          /* light section background */
  --o-cream-deep: #eef0f8;     /* slightly deeper light tone */
  --o-paper: #FFFFFF;
  --o-ink: #0F172A;            /* heading colour, site-wide */
  --o-teal: #4a3faa;           /* deep purple (site accent, dark) */
  --o-teal-soft: #7c72ff;      /* primary purple accent */
  --o-gold: #7c72ff;           /* eyebrow accent = site purple */
  --o-muted: #64748B;          /* body text, site-wide */
  --o-line: rgba(124, 114, 255, 0.16);
  --o-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

/* Page-scoped eyebrow — matches .c-card-tag on other pages */
.onco-page .section-eyebrow,
.onco-page .o-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--o-teal-soft);
  margin-bottom: 0.8rem;
}

/* Headings use the site font (Poppins) at the site's weight, not a serif */
.onco-page .o-serif {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--o-ink);
}

.onco-page .o-section {
  padding: clamp(3.5rem, 7vw, 6.5rem) 1.25rem;
}

.onco-page .o-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.onco-page .o-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}

.onco-page .o-head h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--o-ink);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.onco-page .o-head p {
  color: var(--o-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
}

.onco-page .o-bg-cream { background: var(--o-cream); }
.onco-page .o-bg-paper { background: var(--o-paper); }

/* ═══════════════════════════════
   1. HERO
═══════════════════════════════ */
.o-hero {
  /* Same gradient the other pages use for .c-hero */
  background: linear-gradient(135deg, #f0eeff 0%, #e8f0ff 100%);
  padding: clamp(2rem, 4vw, 3rem) 1.25rem clamp(0rem, 2vw, 1rem);
  overflow: hidden;
}

.o-hero-shell {
  max-width: 1180px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--o-line);
  border-radius: 20px;
  box-shadow: var(--o-shadow);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  overflow: hidden;
}

.o-hero-copy {
  padding: clamp(2rem, 4.5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.o-hero-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  font-weight: 800;
  color: var(--o-ink);
  margin: 0 0 1.15rem;
  letter-spacing: -0.02em;
}

/* Gradient accent word — same treatment as .c-title-accent site-wide */
.o-hero-title .o-hero-accent {
  display: block;
  background: linear-gradient(90deg, #7c72ff, #a89dff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #7c72ff;
}

.o-hero-sub {
  color: var(--o-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 1.85rem;
  max-width: 46ch;
}

.o-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}

.o-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.65rem;
  border-radius: 8px;
  font-size: 0.93rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  cursor: pointer;
}

/* Primary CTA uses the site's pink gradient (.sh-btn) */
.o-btn-primary {
  background: linear-gradient(90deg, #EC4899, #BE185D);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.1);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.o-btn-primary:hover {
  background: linear-gradient(90deg, #BE185D, #9b1248);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(190, 24, 93, 0.25), 0 10px 36px rgba(0, 0, 0, 0.12);
}

/* Secondary button matches the purple outline used on other pages */
.o-btn-ghost {
  background: var(--o-paper);
  color: #4a3faa;
  border-color: #7c72ff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.o-btn-ghost:hover {
  color: #fff;
  background: #7c72ff;
  border-color: #7c72ff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(124, 114, 255, 0.28);
}

/* Trust strip */
.o-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 3vw, 2.75rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--o-line);
}

.o-trust-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.o-trust-item svg {
  flex: none;
  width: 26px;
  height: 26px;
  stroke: var(--o-teal-soft);
}

.o-trust-item span {
  display: block;
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--o-ink);
  font-weight: 600;
}

.o-trust-item small {
  display: block;
  font-size: 0.74rem;
  color: var(--o-muted);
  font-weight: 400;
}

.o-hero-figure {
  position: relative;
  min-height: 340px;
  background: var(--o-cream-deep);
}

.o-hero-figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.o-hero-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--o-cream) 0%, rgba(240, 238, 255, 0.35) 22%, transparent 55%);
  pointer-events: none;
}

@media (max-width: 900px) {
  .o-hero-shell { grid-template-columns: 1fr; }
  .o-hero-figure { min-height: 300px; order: -1; }
  .o-hero-figure::after {
    background: linear-gradient(180deg, transparent 55%, var(--o-cream) 100%);
  }
}

/* ═══════════════════════════════
   2. SERVICES GRID
═══════════════════════════════ */
.o-svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}

.o-svc-card {
  display: block;
  background: var(--o-paper);
  border: 1px solid var(--o-line);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.o-svc-icon {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: rgba(124, 114, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
}

.o-svc-icon svg { width: 22px; height: 22px; stroke: var(--o-teal); }

.o-svc-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--o-ink);
  margin-bottom: 0.6rem;
}

.o-svc-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--o-muted);
  margin: 0;
}

.o-svc-card:hover {
  transform: translateY(-6px);
  border-color: var(--o-teal);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.10);
}

/* ═══════════════════════════════
   3. MEET THE DOCTOR
═══════════════════════════════ */
.o-meet-shell {
  background: var(--o-paper);
  border: 1px solid var(--o-line);
  border-radius: 20px;
  box-shadow: var(--o-shadow);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.75rem, 4vw, 3.25rem);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  align-items: start;
}

.o-meet-photo {
  border-radius: 14px;
  overflow: hidden;
  background: var(--o-cream-deep);
  aspect-ratio: 4 / 5;
}

.o-meet-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.o-meet-body { padding-top: 0.5rem; }

.o-meet-name {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.6rem, 3.2vw, 2.25rem);
  font-weight: 800;
  color: var(--o-teal);
  margin: 0 0 0.3rem;
}

.o-meet-role {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--o-ink);
  margin: 0 0 0.9rem;
}

.o-meet-rule {
  width: 54px;
  height: 3px;
  background: var(--o-gold);
  border-radius: 2px;
  margin-bottom: 1.75rem;
}

.o-meet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem 2rem;
}

.o-meet-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.o-meet-ico {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(124, 114, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
}

.o-meet-ico svg { width: 18px; height: 18px; stroke: var(--o-teal); }

.o-meet-item h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--o-ink);
  margin: 0 0 0.3rem;
}

.o-meet-item p {
  font-size: 0.83rem;
  line-height: 1.65;
  color: var(--o-muted);
  margin: 0;
}

/* Value strip along the bottom */
.o-meet-strip {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--o-line);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.o-meet-strip-item svg {
  width: 24px;
  height: 24px;
  stroke: var(--o-teal-soft);
  margin-bottom: 0.6rem;
}

.o-meet-strip-item span {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--o-ink);
  line-height: 1.45;
}

@media (max-width: 860px) {
  .o-meet-shell { grid-template-columns: 1fr; }
  .o-meet-photo { max-width: 340px; margin: 0 auto; }
}

/* ═══════════════════════════════
   4. COMPREHENSIVE CARE (split card)
═══════════════════════════════ */
.o-care-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
  background: var(--o-paper);
  border: 1px solid var(--o-line);
  border-radius: 20px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--o-shadow);
}

.o-care-figure {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--o-cream-deep);
}

.o-care-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.o-care-body h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 800;
  color: var(--o-teal);
  line-height: 1.22;
  margin: 0 0 1rem;
}

.o-care-body > p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--o-muted);
  margin: 0 0 1.1rem;
}

.o-care-sub {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--o-ink);
  margin: 1.5rem 0 0.75rem;
}

/* Pill list — the four chips in the reference */
.o-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  padding: 0;
  margin: 1.35rem 0 0;
}

.o-pills li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.05rem;
  background: var(--o-cream);
  border: 1px solid var(--o-line);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--o-teal);
  line-height: 1.35;
}

.o-pills li svg { width: 14px; height: 14px; stroke: var(--o-gold); flex: none; }

@media (max-width: 860px) {
  .o-care-shell { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════
   5. MODALITIES + EXPERTISE
═══════════════════════════════ */
.o-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.o-mod-item {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--o-line);
}

.o-mod-item:last-child { border-bottom: none; }

.o-mod-item h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--o-ink);
  margin: 0 0 0.45rem;
}

.o-mod-item p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--o-muted);
  margin: 0;
}

.o-panel {
  background: var(--o-paper);
  border: 1px solid var(--o-line);
  border-radius: 18px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--o-shadow);
}

.o-panel h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--o-teal);
  margin: 0 0 0.85rem;
}

.o-panel > p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--o-muted);
  margin: 0 0 1.5rem;
}

.o-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.o-link-list li + li { border-top: 1px solid var(--o-line); }

.o-link-list a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 0;
  text-decoration: none;
  color: var(--o-ink);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.22s ease, transform 0.22s ease;
}

.o-link-list a svg { width: 17px; height: 17px; stroke: var(--o-gold); flex: none; }

.o-link-list a:hover { color: var(--o-teal); transform: translateX(5px); }

@media (max-width: 860px) {
  .o-split { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════
   6. PALLIATIVE / SUPPORTIVE
═══════════════════════════════ */
.o-support {
  /* Same purple gradient the site uses for its dark CTA bands */
  background: linear-gradient(135deg, #4a3faa, #7c72ff);
}

.o-support .o-head h2,
.o-support .o-eyebrow { color: #fff; }

.o-support .o-eyebrow { color: #c9c2ff; }

.o-support .o-head p { color: rgba(255, 255, 255, 0.75); }

.o-support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.35rem;
}

.o-support-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 1.9rem 1.6rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.o-support-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.11);
}

.o-support-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.65rem;
}

.o-support-card p {
  font-size: 0.86rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

/* ═══════════════════════════════
   7. WHY CHOOSE / WHEN TO SEE
═══════════════════════════════ */
.o-why-list { margin-top: 1.75rem; }

.o-why-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--o-line);
}

.o-why-item:last-child { border-bottom: none; }

.o-why-item svg { width: 19px; height: 19px; stroke: var(--o-gold); flex: none; margin-top: 2px; }

.o-why-item span {
  font-size: 0.93rem;
  line-height: 1.6;
  color: var(--o-ink);
  font-weight: 500;
}

.o-alert-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.o-alert-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--o-line);
  font-size: 0.9rem;
  color: var(--o-ink);
}

.o-alert-list li:last-child { border-bottom: none; }
.o-alert-list li svg { width: 17px; height: 17px; stroke: var(--o-gold); flex: none; }

/* ═══════════════════════════════
   8. TESTIMONIALS
═══════════════════════════════ */
.o-testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.o-testi-card {
  background: var(--o-paper);
  border: 1px solid var(--o-line);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.o-testi-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.08);
}

.o-testi-mark {
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--o-gold);
  margin-bottom: 0.5rem;
}

.o-testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 0.9rem;
}

.o-testi-stars svg { width: 15px; height: 15px; fill: var(--o-gold); }

.o-testi-card blockquote {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--o-ink);
  margin: 0 0 1.5rem;
  flex: 1;
}

.o-testi-by {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--o-line);
}

.o-testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--o-teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex: none;
}

.o-testi-by strong {
  display: block;
  font-size: 0.86rem;
  color: var(--o-ink);
  font-weight: 700;
}

.o-testi-by small {
  display: block;
  font-size: 0.76rem;
  color: var(--o-muted);
}

/* ═══════════════════════════════
   9. FAQ
═══════════════════════════════ */
.o-faq { max-width: 860px; margin: 0 auto; }

.o-faq .accordion-item {
  border: 1px solid var(--o-line);
  border-radius: 12px !important;
  margin-bottom: 0.85rem;
  overflow: hidden;
  background: var(--o-paper);
}

.o-faq .accordion-button {
  background: var(--o-paper);
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--o-ink);
  padding: 1.3rem 1.5rem;
  box-shadow: none;
}

.o-faq .accordion-button:not(.collapsed) {
  background: var(--o-cream);
  color: var(--o-teal);
}

.o-faq .accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(124, 114, 255, 0.14);
}

.o-faq .accordion-button::after {
  filter: hue-rotate(120deg) saturate(0.5) brightness(0.7);
}

.o-faq .accordion-body {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--o-muted);
  padding: 0 1.5rem 1.4rem;
}

/* ═══════════════════════════════
   10. BLOG / RESOURCES
═══════════════════════════════ */
.o-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.o-blog-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: transparent;
}

.o-blog-thumb {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--o-cream-deep);
  margin-bottom: 1.15rem;
}

.o-blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.o-blog-card:hover .o-blog-thumb img { transform: scale(1.05); }

.o-blog-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--o-teal);
  margin: 0 0 0.5rem;
  transition: color 0.22s ease;
}

.o-blog-card p {
  font-size: 0.87rem;
  line-height: 1.7;
  color: var(--o-muted);
  margin: 0;
}

.o-blog-card:hover h3 { color: var(--o-gold); }

/* ═══════════════════════════════
   11. CTA + FORM
═══════════════════════════════ */
/* Matches the original page's CTA band and the site's gradient */
.o-cta { background: linear-gradient(135deg, #4a3faa, #7c72ff); }

.o-cta-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.o-cta-copy h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 1rem;
}

.o-cta-copy > p {
  font-size: 0.96rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 1.75rem;
}

.o-cta-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.o-cta-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.o-cta-points li svg { width: 17px; height: 17px; stroke: #c9c2ff; flex: none; margin-top: 3px; }

.o-form {
  background: var(--o-paper);
  border-radius: 18px;
  padding: clamp(1.75rem, 3vw, 2.4rem);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}

.o-form h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--o-ink);
  margin: 0 0 1.4rem;
}

.o-form .form-control,
.o-form .form-select {
  border-radius: 9px;
  padding: 0.8rem 1rem;
  border: 1px solid var(--o-line);
  font-size: 0.93rem;
  margin-bottom: 0.9rem;
  color: var(--o-ink);
  background-color: #fff;
}

.o-form .form-control:focus,
.o-form .form-select:focus {
  border-color: var(--o-teal);
  box-shadow: 0 0 0 3px rgba(124, 114, 255, 0.15);
}

.o-form-submit {
  width: 100%;
  padding: 0.95rem 1rem;
  border: none;
  background: linear-gradient(135deg, #4a3faa, #7c72ff);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border-radius: 9px;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.o-form-submit:hover {
  background: linear-gradient(135deg, #3d3390, #6c63ff);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(124, 114, 255, 0.35);
}

.o-form-note {
  font-size: 0.8rem;
  color: var(--o-muted);
  margin: 1rem 0 0;
  text-align: center;
}

@media (max-width: 860px) {
  .o-cta-shell { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .onco-page * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .o-svc-card:hover,
  .o-support-card:hover,
  .o-testi-card:hover { transform: none; }
}
