/* =========================================================
   Triple O Medical — Conversion Landing Page
   Brand palette extracted from logo:
     Primary blue   #5260AB
     Accent orange  #EF9000
     Accent red     #E24A23
     Ink (text)     #1B1F2A
   ========================================================= */

:root {
  --blue: #5260AB;
  --blue-dark: #3F4C8E;
  --blue-soft: #EEF1FA;
  --orange: #EF9000;
  --orange-dark: #D17F00;
  --red: #E24A23;
  --ink: #1B1F2A;
  --ink-soft: #4A5160;
  --muted: #6B7280;
  --line: #E6E8EE;
  --bg: #FFFFFF;
  --bg-soft: #F7F8FB;
  --bg-tint: #FBFAF6;
  --shadow-sm: 0 1px 2px rgba(16,24,40,.06), 0 1px 3px rgba(16,24,40,.08);
  --shadow-md: 0 4px 8px -2px rgba(16,24,40,.08), 0 12px 28px -8px rgba(16,24,40,.10);
  --shadow-lg: 0 12px 24px -8px rgba(16,24,40,.10), 0 24px 48px -12px rgba(16,24,40,.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --container: 1180px;
  --header-h: 72px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }

h1,h2,h3,h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 .4em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.4vw, 3.2rem); line-height: 1.1; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); line-height: 1.18; }
h3 { font-size: 1.2rem; line-height: 1.3; font-weight: 700; }
p { margin: 0 0 1em; color: var(--ink-soft); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.section { padding: clamp(56px, 8vw, 96px) 0; }

.eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section-desc { color: var(--ink-soft); font-size: 1.05rem; }
.section-title { color: var(--ink); }
.section-cta { text-align: center; margin-top: 36px; }
.section-cta .muted { margin-top: 10px; color: var(--muted); font-size: .9rem; }

/* =================== BUTTONS =================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 6px 14px -4px rgba(239,144,0,.5), inset 0 -2px 0 rgba(0,0,0,.08);
}
.btn-primary:hover { background: var(--orange-dark); color:#fff; box-shadow: 0 10px 20px -6px rgba(239,144,0,.55); }
.btn-secondary {
  background: var(--blue);
  color: #fff;
}
.btn-secondary:hover { background: var(--blue-dark); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-ghost:hover { background: var(--blue-soft); }
.btn-sm  { padding: 10px 16px; font-size: .9rem; }
.btn-lg  { padding: 16px 28px; font-size: 1.05rem; }
.btn-xl  { padding: 20px 36px; font-size: 1.15rem; }

/* =================== HEADER =================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 16px -8px rgba(16,24,40,.10);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--header-h);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand-logo { width: 44px; height: 44px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--ink); }
.brand-text small { color: var(--muted); font-size: .72rem; letter-spacing: .03em; }

.header-nav { display: flex; gap: 28px; }
.nav-link { color: var(--ink-soft); font-weight: 500; font-size: .95rem; }
.nav-link:hover { color: var(--blue); }

@media (max-width: 820px) {
  .header-nav { display: none; }
  .brand-text small { display: none; }
}
@media (max-width: 480px) {
  .header-cta span { display: none; }
  .header-cta { padding: 10px 12px; }
}

/* =================== HERO =================== */
.hero {
  position: relative;
  padding: clamp(36px, 6vw, 72px) 0 clamp(56px, 8vw, 96px);
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(82,96,171,.08), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, rgba(239,144,0,.08), transparent 60%),
    var(--bg);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.hero-content { padding-top: 8px; }
.badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff;
  color: var(--blue);
  border: 1px solid var(--line);
  font-size: .8rem; font-weight: 600;
  padding: 6px 12px; border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.badge svg { color: #18A957; }

.hero-title { color: var(--ink); margin-bottom: .35em; }
.hero-title .accent { color: var(--blue); }
.hero-sub {
  font-size: clamp(1.02rem, 1.5vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 22px;
}
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 10px;
}
.hero-bullets li {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink);
  font-weight: 500;
}
.hero-bullets svg { color: var(--blue); flex: 0 0 auto; }

.hero-actions {
  display: flex; align-items: center; gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-meta {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--muted); font-size: .9rem;
}
.hero-meta svg { color: var(--muted); }

.trust-strip {
  display: flex; align-items: center; gap: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; line-height: 1.1; }
.trust-item strong { color: var(--ink); font-size: 1.05rem; font-weight: 700; }
.trust-item span { color: var(--muted); font-size: .82rem; }
.trust-divider { width: 1px; height: 28px; background: var(--line); }
@media (max-width: 480px) {
  .trust-divider { display: none; }
  .trust-strip { gap: 14px; }
}

/* =================== FORM CARD =================== */
.form-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.form-header {
  padding: 22px 24px 14px;
  background: linear-gradient(180deg, #fff, #FBFAFD);
  border-bottom: 1px solid var(--line);
}
.form-eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  background: #FFF6E5;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin: 4px 0 6px;
}
.form-desc {
  margin: 0;
  color: var(--ink-soft);
  font-size: .95rem;
}
.form-frame {
  position: relative;
  background: #fff;
  min-height: 540px;
}
.form-frame iframe {
  width: 1px;
  min-width: 100%;
  border: 0;
  display: block;
  min-height: 540px;
}
.form-loader {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  color: var(--muted);
  background: #fff;
  font-size: .9rem;
}
.spinner {
  width: 36px; height: 36px;
  border: 3px solid var(--blue-soft);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-footnote {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 22px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-size: .85rem;
  border-top: 1px solid #E1E5F2;
}

/* =================== TRUST BAR =================== */
.trust-bar {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}
.trust-bar-label {
  color: var(--muted);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.trust-bar-items {
  display: flex; flex-wrap: wrap; gap: 22px;
}
.trust-bar-item {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink);
  font-weight: 600;
  font-size: .92rem;
}
.trust-bar-item svg { color: var(--blue); }
@media (max-width: 720px) {
  .trust-bar-inner { justify-content: center; text-align: center; }
}

/* =================== ABOUT =================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; }
}
.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.about-image-tag {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.about-image-tag strong { font-size: .92rem; color: var(--ink); }
.about-image-tag span { font-size: .8rem; color: var(--muted); }
.lead { font-size: 1.1rem; color: var(--ink); }

/* =================== SERVICES =================== */
.services { background: var(--bg-soft); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 920px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #D6DAE8;
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--icon-bg, var(--blue-soft));
  color: var(--icon-fg, var(--blue));
  margin-bottom: 14px;
}
.service-card h3 { color: var(--ink); margin-bottom: 8px; font-family: 'Inter', sans-serif; font-size: 1.08rem; font-weight: 700; }
.service-card p { color: var(--ink-soft); font-size: .94rem; margin: 0; }

/* =================== WE WORK WITH YOU =================== */
.work-with-you {
  background:
    radial-gradient(800px 400px at 0% 0%, rgba(82,96,171,.06), transparent 60%),
    radial-gradient(700px 350px at 100% 100%, rgba(239,144,0,.06), transparent 60%),
    var(--bg);
}
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
@media (max-width: 880px) { .work-grid { grid-template-columns: 1fr; } }

.work-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.work-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.work-image-tag {
  position: absolute;
  left: 16px; bottom: 16px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.work-image-tag strong { font-size: .92rem; color: var(--ink); }
.work-image-tag span { font-size: .8rem; color: var(--muted); }

.work-pillars {
  display: grid;
  gap: 14px;
  margin: 22px 0 22px;
}
.work-pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
}
.work-pillar-icon {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--icon-bg, var(--blue-soft));
  color: var(--icon-fg, var(--blue));
}
.work-pillar strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 2px;
}
.work-pillar span {
  display: block;
  color: var(--ink-soft);
  font-size: .92rem;
  line-height: 1.5;
}
.work-cta-line {
  color: var(--ink);
  font-weight: 500;
  margin: 0 0 14px;
}

/* =================== PROCESS =================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 880px) { .process-grid { grid-template-columns: 1fr; } }
.process-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.step-image {
  width: 84px; height: 84px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--blue-soft);
  margin-bottom: 16px;
}
.step-image img { width: 100%; height: 100%; object-fit: cover; }
.step-number {
  position: absolute;
  top: 22px; right: 24px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 2rem;
  color: rgba(82,96,171,.18);
  line-height: 1;
}
.process-step h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.process-step p { color: var(--ink-soft); font-size: .95rem; margin: 0; }

/* =================== TESTIMONIALS =================== */
.testimonials { background: var(--bg-tint); }
.rating-row {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: .95rem;
}
.stars {
  color: var(--orange);
  letter-spacing: .08em;
  font-size: 1.05rem;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 720px) { .testimonial-grid { grid-template-columns: 1fr; } }

.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 0;
  box-shadow: var(--shadow-sm);
}
.testimonial.featured {
  background: linear-gradient(180deg, #fff, #FBF8F1);
  border-color: #F0E5C5;
  box-shadow: var(--shadow-md);
}
.testimonial blockquote {
  margin: 12px 0 16px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
  font-style: normal;
}
.testimonial figcaption { display: flex; flex-direction: column; }
.t-name { font-weight: 700; color: var(--ink); }
.t-loc { color: var(--muted); font-size: .85rem; }

/* =================== EXPECTATIONS =================== */
.expect-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 980px) { .expect-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .expect-grid { grid-template-columns: 1fr; } }

.expect-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
  text-align: left;
}
.expect-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.expect-item h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.expect-item p { font-size: .9rem; margin: 0; color: var(--ink-soft); }

/* =================== FAQ =================== */
.faq { background: var(--bg-soft); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
@media (max-width: 880px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-intro p { color: var(--ink-soft); margin-bottom: 22px; }

.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item[open] {
  border-color: #D6DAE8;
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 4px 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--blue);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1;
  transition: transform .25s ease;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  margin: 10px 0 4px;
  color: var(--ink-soft);
  font-size: .95rem;
}

/* =================== FINAL CTA =================== */
.final-cta {
  background:
    radial-gradient(800px 400px at 100% 0%, rgba(239,144,0,.18), transparent 60%),
    radial-gradient(900px 500px at 0% 100%, rgba(226,74,35,.10), transparent 60%),
    linear-gradient(135deg, #2A3170 0%, #5260AB 100%);
  color: #fff;
  text-align: center;
}
.final-cta-inner { max-width: 720px; margin: 0 auto; padding: clamp(20px, 4vw, 40px) 0; }
.final-cta h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.4rem); }
.final-cta p { color: rgba(255,255,255,.88); font-size: 1.1rem; }
.final-cta .micro { color: rgba(255,255,255,.7); font-size: .85rem; margin-top: 20px; }
.final-cta .btn-primary {
  box-shadow: 0 12px 24px -8px rgba(0,0,0,.4), inset 0 -2px 0 rgba(0,0,0,.12);
}

/* =================== FOOTER =================== */
.site-footer {
  background: #0F1424;
  color: rgba(255,255,255,.78);
  padding: 36px 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 720px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-brand {
  display: flex; gap: 14px; align-items: flex-start;
}
.footer-brand img {
  background: #fff;
  border-radius: 10px;
  padding: 4px;
  width: 48px; height: 48px;
}
.footer-brand strong { color: #fff; display: block; margin-bottom: 4px; }
.footer-brand p { color: rgba(255,255,255,.7); font-size: .9rem; margin: 0; }
.footer-meta { font-size: .85rem; color: rgba(255,255,255,.6); }
.footer-meta p { color: rgba(255,255,255,.6); margin: 0 0 8px; }
.footer-meta .micro { font-size: .78rem; color: rgba(255,255,255,.45); }

/* =================== MOBILE STICKY CTA =================== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 60;
  background: var(--orange);
  color: #fff;
  padding: 16px 22px;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 12px 28px -6px rgba(239,144,0,.55), 0 8px 16px -4px rgba(0,0,0,.2);
  align-items: center; justify-content: center;
  gap: 8px;
}
.mobile-sticky-cta:hover { background: var(--orange-dark); color: #fff; }
@media (max-width: 720px) {
  .mobile-sticky-cta { display: inline-flex; }
  body { padding-bottom: 84px; }
  /* Hide on the form section so the user isn't covered when filling */
  body.on-form .mobile-sticky-cta { opacity: 0; pointer-events: none; transform: translateY(20px); transition: .25s ease; }
}

/* =========================================================
   THANK YOU PAGE
   ========================================================= */
.thanks-page { background: var(--bg); }

.ty-hero {
  padding: clamp(40px, 6vw, 72px) 0 clamp(40px, 5vw, 64px);
  background:
    radial-gradient(900px 500px at 90% -10%, rgba(82,96,171,.10), transparent 60%),
    radial-gradient(800px 400px at -10% 30%, rgba(24,169,87,.10), transparent 60%),
    var(--bg);
}
.ty-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
@media (max-width: 880px) { .ty-grid { grid-template-columns: 1fr; } }

.ty-check { margin-bottom: 18px; }
.ty-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1.15;
  margin-bottom: .35em;
}
.ty-sub {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 28px;
}

/* Big call card */
.call-card {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  background: linear-gradient(135deg, #FFF8EC 0%, #FFF1DA 100%);
  border: 1px solid #F4DDB1;
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
}
.call-card-left { display: flex; flex-direction: column; gap: 4px; }
.call-eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange-dark);
}
.call-phone {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.call-phone:hover { color: var(--blue); }
.call-phone svg { color: var(--orange); }
.call-hint { color: var(--muted); font-size: .85rem; }
.call-btn-mobile { display: none; }
@media (max-width: 600px) {
  .call-card { flex-direction: column; align-items: stretch; text-align: center; }
  .call-card-left { align-items: center; }
  .call-btn-mobile { display: inline-flex; }
}

.save-hint {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted);
  font-size: .92rem;
  margin-bottom: 0;
}
.save-hint svg { color: var(--blue); }

/* Doctors trust card */
.ty-aside { display: flex; }
.doctor-card {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.doctor-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.doctor-card-body { padding: 18px 20px 22px; }
.doctor-card-body span {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
}
.doctor-card-body strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--ink);
  display: block;
  margin-bottom: 6px;
}
.doctor-card-body p { margin: 0; color: var(--ink-soft); font-size: .92rem; }

/* What happens next */
.ty-next { background: var(--bg-soft); }
.next-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .next-grid { grid-template-columns: 1fr; } }

.next-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  position: relative;
}
.next-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 4px 10px -2px rgba(82,96,171,.4);
}
.next-step h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.next-step p { color: var(--ink-soft); font-size: .95rem; margin-bottom: 12px; }
.next-meta {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 4px 10px;
  border-radius: 999px;
}

/* Checklist + privacy */
.ty-checklist-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 880px) { .ty-checklist-grid { grid-template-columns: 1fr; } }

.checklist-card, .privacy-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.checklist-card h2 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 14px;
}
.checklist li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg-soft);
}
.cl-icon {
  flex: 0 0 auto;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.checklist li strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 2px;
}
.checklist li span { color: var(--ink-soft); font-size: .92rem; }

.privacy-card {
  background: linear-gradient(180deg, #fff, #F5F7FE);
}
.privacy-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.privacy-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.privacy-list {
  list-style: none; padding: 0; margin: 14px 0 0;
  display: grid; gap: 8px;
}
.privacy-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: .92rem;
  color: var(--ink);
}
.privacy-list svg { color: #18A957; flex: 0 0 auto; }

/* Final */
.ty-final {
  background:
    radial-gradient(800px 400px at 100% 0%, rgba(239,144,0,.16), transparent 60%),
    linear-gradient(135deg, #2A3170 0%, #5260AB 100%);
  color: #fff;
  text-align: center;
}
.ty-final-inner { max-width: 720px; margin: 0 auto; }
.ty-final h2 { color: #fff; }
.ty-final p { color: rgba(255,255,255,.88); font-size: 1.1rem; }
.ty-final-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-top: 18px;
}
.ty-final .btn-ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.ty-final .btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; }

/* =================== UTILITIES =================== */
.muted { color: var(--muted); }
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}
