:root {
  --bg: #f4f7fc;
  --surface: #ffffff;
  --surface-soft: #eef3fb;
  --ink: #18304d;
  --ink-soft: #4b617c;
  --line: #d7e2f0;
  --brand: #295b8f;
  --brand-deep: #183f67;
  --accent: #7aa6d1;
  --success: #ebf6ef;
  --success-ink: #256144;
  --shadow: 0 24px 60px rgba(24, 48, 77, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

.blog-page .blog-hero {
  padding: 46px 0 22px;
}

.blog-hero-inner {
  max-width: 820px;
  text-align: center;
}

.blog-hero-inner .eyebrow {
  justify-content: center;
}

.blog-page .blog-hero h1 {
  max-width: 760px;
  margin-inline: auto;
  font-size: clamp(38px, 4.5vw, 58px);
}

.blog-page .blog-hero .lead {
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 0;
}

.blog-featured-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 243, 251, 0.98));
  border: 1px solid rgba(41, 91, 143, 0.12);
  box-shadow: var(--shadow);
  animation: fadeUp 0.8s ease both;
}

.blog-featured-card img {
  width: 100%;
  min-height: 360px;
  border-radius: 22px;
  object-fit: cover;
}

.blog-featured-card h2 {
  max-width: 720px;
  color: var(--ink);
}

.blog-topics-section .section-head p {
  max-width: 650px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 24px;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(41, 91, 143, 0.08);
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 800;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 12px 26px rgba(24, 48, 77, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  animation: fadeUp 0.8s ease both;
}

.blog-card:nth-child(2) {
  animation-delay: 0.08s;
}

.blog-card:nth-child(3) {
  animation-delay: 0.16s;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(41, 91, 143, 0.2);
  box-shadow: 0 18px 34px rgba(24, 48, 77, 0.1);
}

.blog-card h3 {
  margin-top: 12px;
}

.blog-card p {
  flex: 1;
}

.blog-card-meta {
  margin: 4px 0 18px;
}

.blog-card-meta span {
  min-height: 30px;
  padding: 5px 10px;
  font-size: 12px;
}

.blog-card .btn-secondary {
  align-self: flex-start;
  margin-top: 12px;
}

.blog-signpost-section {
  background: #f4f8fc;
}

.blog-signpost-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 42px;
  align-items: start;
}

.blog-signpost-list {
  display: grid;
  gap: 14px;
}

.blog-signpost-list a {
  display: grid;
  gap: 6px;
  padding: 20px 22px;
  border: 1px solid rgba(41, 91, 143, 0.14);
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 24px rgba(24, 48, 77, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.blog-signpost-list a:hover {
  transform: translateY(-3px);
  border-color: rgba(41, 91, 143, 0.26);
  box-shadow: 0 18px 34px rgba(24, 48, 77, 0.1);
}

.blog-signpost-list span {
  color: var(--muted);
  font-size: 15px;
}

.blog-signpost-list strong {
  color: var(--brand-deep);
  font-size: 18px;
}

.blog-post-hero {
  padding: 70px 0 30px;
}

.blog-post-hero h1 {
  max-width: 820px;
}

.blog-back-link {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--brand-deep);
  font-size: 14px;
  font-weight: 800;
}

.blog-post-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 44px;
  align-items: start;
  padding-bottom: 84px;
}

.blog-post-content {
  max-width: 820px;
}

.blog-post-image {
  width: 100%;
  max-height: 430px;
  margin-bottom: 34px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.blog-post-content p,
.blog-post-content li {
  font-size: 19px;
  line-height: 1.75;
}

.blog-post-content h2 {
  margin-top: 38px;
  font-size: clamp(28px, 3vw, 40px);
}

.blog-intro {
  color: var(--ink);
  font-size: 22px !important;
  font-weight: 700;
}

.blog-post-content blockquote {
  margin: 34px 0;
  padding: 24px 28px;
  border-left: 5px solid var(--brand);
  border-radius: 0 18px 18px 0;
  background: rgba(41, 91, 143, 0.08);
}

.blog-post-content blockquote p {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

.blog-post-sidebar {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 18px;
}

.blog-post-sidebar .btn {
  width: 100%;
  justify-content: center;
}

.blog-post-sidebar a:not(.btn) {
  color: var(--brand-deep);
  font-weight: 800;
}

@media (prefers-reduced-motion: reduce) {
  .blog-featured-card,
  .blog-card {
    animation: none;
    transition: none;
  }

  .blog-card:hover {
    transform: none;
  }
}

@media (max-width: 980px) {
  .blog-featured-card,
  .blog-card-grid,
  .blog-signpost-grid,
  .blog-post-layout {
    grid-template-columns: 1fr;
  }

  .blog-post-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .blog-page .blog-hero {
    padding: 32px 0 18px;
  }

  .blog-featured-card {
    padding: 18px;
    border-radius: 22px;
  }

  .blog-featured-card img,
  .blog-post-image {
    min-height: 240px;
    border-radius: 18px;
  }

  .blog-post-hero {
    padding: 46px 0 24px;
  }

  .blog-post-layout {
    padding-bottom: 56px;
  }

  .blog-post-content p,
  .blog-post-content li {
    font-size: 17px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(122, 166, 209, 0.16), transparent 28%),
    linear-gradient(180deg, #f7faff 0%, #f3f7fb 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
  filter: blur(12px);
  opacity: 0.45;
}

body::before {
  width: 280px;
  height: 280px;
  top: 120px;
  right: -100px;
  background: radial-gradient(circle, rgba(122, 166, 209, 0.26), transparent 68%);
  animation: driftOne 14s ease-in-out infinite;
}

body::after {
  width: 220px;
  height: 220px;
  left: -60px;
  bottom: 80px;
  background: radial-gradient(circle, rgba(41, 91, 143, 0.18), transparent 70%);
  animation: driftTwo 16s ease-in-out infinite;
}

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

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

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

.topbar {
  background: var(--brand-deep);
  color: #eef5ff;
  font-size: 14px;
}

.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
}

.topbar-item {
  opacity: 0.95;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(244, 247, 252, 0.92);
  border-bottom: 1px solid rgba(41, 91, 143, 0.08);
  animation: slideDown 0.8s ease both;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.site-header .nav-wrap {
  width: min(calc(100% - 48px), 1320px);
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0;
}

.brand img {
  display: block;
}

.brand-logo {
  width: clamp(178px, 18vw, 245px);
  max-width: 245px;
  height: auto;
  flex: 0 0 auto;
}

.brand-subtitle {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.35;
}

.nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 10px 20px;
  align-items: center;
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(41, 91, 143, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(24, 48, 77, 0.08);
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-deep);
  transition: transform 0.22s ease, opacity 0.22s ease;
  content: "";
}

.nav-toggle-bar {
  position: relative;
}

.nav-toggle-bar::before {
  position: absolute;
  top: -6px;
}

.nav-toggle-bar::after {
  position: absolute;
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after {
  transform: translateY(-6px) rotate(-45deg);
}

.nav a {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 10px 0;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav a.active {
  color: var(--ink);
  font-weight: 600;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}

.btn,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 600;
  padding: 14px 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(41, 91, 143, 0.24);
}

.btn-secondary {
  background: #fff;
  color: var(--brand-deep);
  border: 1px solid var(--line);
}

.btn-ghost {
  background: transparent;
  color: var(--brand-deep);
  border: 1px dashed rgba(41, 91, 143, 0.35);
}

.btn:hover,
.btn-secondary:hover,
.btn-ghost:hover {
  transform: translateY(-1px);
}

.btn::before,
.btn-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.28) 50%, transparent 80%);
  transform: translateX(-120%);
}

.btn:hover::before,
.btn-secondary:hover::before {
  animation: sheen 0.8s ease;
}

.hero,
.page-hero {
  padding: 72px 0 40px;
}

.hero-grid,
.page-hero-grid,
.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(41, 91, 143, 0.08);
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.1;
}

h1 {
  font-size: clamp(38px, 5vw, 64px);
  max-width: 11ch;
}

h2 {
  font-size: clamp(30px, 3.6vw, 48px);
}

h3 {
  font-size: 24px;
}

p {
  margin: 0 0 16px;
  color: var(--ink-soft);
}

.lead {
  font-size: 18px;
  max-width: 60ch;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.card-hero {
  position: relative;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(238, 243, 251, 0.98));
  border: 1px solid rgba(41, 91, 143, 0.1);
  box-shadow: var(--shadow);
  animation: riseIn 0.95s ease both;
}

.card-hero img {
  border-radius: 22px;
  width: 100%;
  object-fit: cover;
  max-height: 540px;
}

.floating-note {
  position: absolute;
  left: -18px;
  bottom: 26px;
  max-width: 240px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(24, 48, 77, 0.14);
  animation: bob 4s ease-in-out infinite;
}

.floating-note strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.stat-card,
.panel,
.info-card,
.contact-card,
.resource-card,
.cta-band,
.section-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 26px rgba(24, 48, 77, 0.06);
}

.stat-card {
  padding: 20px;
  animation: fadeUp 0.8s ease both;
}

.stat-card strong {
  display: block;
  font-size: 28px;
  margin-bottom: 8px;
}

.section {
  padding: 34px 0 74px;
}

.doctify-section {
  padding-top: 18px;
}

.doctify-widget-wrap {
  min-height: 230px;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 12px 26px rgba(24, 48, 77, 0.06);
  overflow: hidden;
}

.section-head {
  max-width: 740px;
  margin-bottom: 26px;
}

.grid-3,
.grid-2,
.resource-grid {
  display: grid;
  gap: 18px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.panel,
.info-card,
.resource-card,
.contact-card,
.section-card {
  padding: 24px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  animation: fadeUp 0.8s ease both;
}

.panel:hover,
.info-card:hover,
.resource-card:hover,
.contact-card:hover,
.section-card:hover,
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(24, 48, 77, 0.1);
  border-color: rgba(41, 91, 143, 0.2);
}

.info-card h3,
.resource-card h3,
.contact-card h3,
.section-card h3 {
  margin-bottom: 10px;
}

.icon-chip {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: linear-gradient(145deg, #ffffff 0%, #e7f1fa 100%);
  border: 1px solid rgba(122, 166, 209, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 14px 24px rgba(24, 48, 77, 0.1);
}

.icon-chip img {
  width: 52px;
  height: 52px;
}

ul.clean-list,
.check-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

ul.clean-list li,
.check-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  color: var(--ink-soft);
}

ul.clean-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.emphasis-box {
  padding: 22px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(41, 91, 143, 0.08), rgba(122, 166, 209, 0.12));
  border: 1px solid rgba(41, 91, 143, 0.12);
}

.price-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--success);
  color: var(--success-ink);
  font-weight: 700;
  margin-bottom: 16px;
}

.split-grid .media-card img,
.page-hero-grid .media-card img,
.contact-grid .media-card img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  min-height: 340px;
}

.media-card {
  position: relative;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(238, 243, 251, 0.98));
  border: 1px solid rgba(41, 91, 143, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  animation: riseIn 1s ease both;
}

.quote-strip {
  display: flex;
  gap: 16px;
  align-items: start;
}

.quote-mark {
  font-size: 42px;
  line-height: 1;
  color: var(--accent);
}

.mini-cta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cta-band {
  padding: 28px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  animation: fadeUp 0.85s ease both;
}

.cta-band p {
  margin-bottom: 0;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.contact-hero-copy h1 {
  font-size: clamp(36px, 4.2vw, 54px);
  max-width: 13ch;
}

.contact-list-primary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.contact-list-primary .contact-row:last-child {
  grid-column: 1 / -1;
}

.contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-row img {
  width: 18px;
  margin-top: 4px;
}

.form {
  display: grid;
  gap: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--ink-soft);
}

input,
textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.small {
  font-size: 14px;
}

.form-status {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: #eef5fb;
  color: #29445f;
  font-weight: 700;
}

.form-status.is-success,
.form-status.is-error {
  display: block;
}

.form-status.is-success {
  background: var(--success);
  color: var(--success-ink);
}

.form-status.is-error {
  background: #fff1f1;
  color: #8a2f2f;
}

.site-footer {
  margin-top: 50px;
  padding: 42px 0 24px;
  background:
    linear-gradient(180deg, rgba(238, 243, 251, 0.96), rgba(228, 236, 247, 0.98)),
    url("../img/63c4ce0d8cd075b1721deb61_footer-bg.svg") center/cover no-repeat;
  border-top: 1px solid var(--line);
  animation: fadeUp 0.9s ease both;
}

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

.footer-nav {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(41, 91, 143, 0.12);
  margin-top: 28px;
  padding-top: 18px;
  font-size: 14px;
  color: var(--ink-soft);
}

.page-label {
  margin-bottom: 12px;
}

.helper-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.hero-grid > *,
.page-hero-grid > *,
.split-grid > *,
.contact-grid > * {
  animation: fadeUp 0.85s ease both;
}

.hero-grid > *:nth-child(2),
.page-hero-grid > *:nth-child(2),
.split-grid > *:nth-child(2),
.contact-grid > *:nth-child(2) {
  animation-delay: 0.12s;
}

.grid-3 > *:nth-child(1),
.grid-2 > *:nth-child(1),
.resource-grid > *:nth-child(1) {
  animation-delay: 0.02s;
}

.grid-3 > *:nth-child(2),
.grid-2 > *:nth-child(2),
.resource-grid > *:nth-child(2) {
  animation-delay: 0.12s;
}

.grid-3 > *:nth-child(3),
.resource-grid > *:nth-child(3) {
  animation-delay: 0.2s;
}

.resource-grid > *:nth-child(4) {
  animation-delay: 0.28s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sheen {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(120%);
  }
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes driftOne {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-18px, 18px, 0);
  }
}

@keyframes driftTwo {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(22px, -16px, 0);
  }
}

@keyframes wetAmdDryBarIn {
  from {
    width: 0;
  }
  to {
    width: 90%;
  }
}

@keyframes wetAmdWetBarIn {
  from {
    width: 0;
  }
  to {
    width: 10%;
  }
}

/* Homepage conversion refresh */
.home-refresh h1,
.home-refresh h2,
.home-refresh h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: #123250;
  letter-spacing: 0;
}

.home-refresh .btn,
.home-refresh .btn-secondary {
  min-height: 58px;
  border-radius: 16px;
  font-size: 17px;
  padding-inline: 26px;
}

.home-refresh .btn {
  background: #0f3a62;
  box-shadow: 0 16px 28px rgba(15, 58, 98, 0.18);
}

.home-refresh .btn-secondary {
  border-color: #0f3a62;
  color: #0f3a62;
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 64px;
  border-bottom: 1px solid rgba(15, 58, 98, 0.06);
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.84fr);
  gap: 58px;
  align-items: center;
}

.home-hero-copy {
  max-width: 680px;
}

.home-hero h1 {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(46px, 5.5vw, 72px);
  line-height: 0.98;
}

.home-hero p {
  max-width: 620px;
  font-size: 20px;
  line-height: 1.7;
  color: #29445f;
}

.home-hero .button-row {
  margin-top: 34px;
}

.home-hero-image {
  position: relative;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(238, 245, 251, 0.98));
  border: 1px solid rgba(41, 91, 143, 0.1);
  box-shadow: 0 18px 46px rgba(18, 50, 80, 0.12);
}

.home-hero-image img {
  width: 100%;
  max-height: 560px;
  border-radius: 16px;
  object-fit: cover;
  object-position: center top;
}

.home-hero-note {
  position: absolute;
  left: -18px;
  bottom: 28px;
  max-width: 300px;
  padding: 18px 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(41, 91, 143, 0.12);
  box-shadow: 0 14px 32px rgba(18, 50, 80, 0.14);
  color: #123250;
  font-weight: 800;
  line-height: 1.35;
}

.home-section {
  padding: 76px 0;
}

.home-answers {
  background: rgba(255, 255, 255, 0.5);
}

.home-section-head {
  max-width: 780px;
  margin-bottom: 36px;
}

.home-section-head-centered {
  margin-inline: auto;
  text-align: center;
}

.home-section-head h2 {
  margin-top: 14px;
  margin-bottom: 16px;
  font-size: clamp(32px, 3vw, 44px);
}

.home-section-head p {
  font-size: 18px;
  line-height: 1.75;
  color: #29445f;
}

.home-card-grid,
.home-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-card,
.home-route-card {
  padding: 26px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(41, 91, 143, 0.1);
  box-shadow: 0 12px 28px rgba(18, 50, 80, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.home-card p:last-child,
.home-route-card p:last-of-type {
  margin-bottom: 0;
}

.home-card:hover,
.home-route-card:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 58, 98, 0.18);
  box-shadow: 0 18px 36px rgba(18, 50, 80, 0.1);
}

.home-card h3,
.home-route-card h3 {
  font-size: 24px;
  line-height: 1.16;
}

.home-card p,
.home-route-card p {
  color: #29445f;
  font-size: 17px;
  line-height: 1.65;
}

.home-blue-band {
  border-top: 1px solid rgba(41, 91, 143, 0.08);
  border-bottom: 1px solid rgba(41, 91, 143, 0.08);
  background: #eef5fb;
}

.home-reviews {
  background: #fff;
}

.home-reviews .doctify-widget-wrap {
  max-width: 1120px;
  min-height: 180px;
  margin: 0 auto;
  padding: 12px;
  border-radius: 18px;
}

.home-reviews .doctify-widget-wrap iframe {
  max-height: 260px;
}

.home-routes {
  background: #eef5fb;
}

.home-route-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 340px;
  text-align: center;
}

.home-route-card p {
  margin-bottom: 18px;
}

.home-route-card .btn,
.home-route-card .btn-secondary {
  margin-top: auto;
}

.home-route-card-featured {
  border-color: rgba(15, 58, 98, 0.22);
  background: linear-gradient(180deg, #fff 0%, #f3f8fc 100%);
  box-shadow: 0 18px 44px rgba(18, 50, 80, 0.14);
}

.home-card-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #e9f3fb;
  color: #123a5c;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-final-section {
  padding: 86px 0;
  border-top: 1px solid rgba(15, 58, 98, 0.12);
  border-bottom: 1px solid rgba(15, 58, 98, 0.12);
  background: linear-gradient(135deg, #123250 0%, #0f3a62 62%, #183f67 100%);
}

.home-final-cta {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.home-final-cta h2 {
  font-size: clamp(32px, 3vw, 44px);
  color: #fff;
}

.home-final-cta p {
  max-width: 760px;
  margin-inline: auto;
  font-size: 20px;
  line-height: 1.7;
  color: #e9f3fb;
}

.home-final-cta .button-row {
  justify-content: center;
}

.home-final-cta .btn {
  background: #fff;
  color: #0f3a62;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.16);
}

.home-final-cta .btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
}

.home-refresh .site-footer {
  margin-top: 0;
}

@media (max-width: 980px) {
  .home-hero-grid,
  .home-card-grid,
  .home-route-grid {
    grid-template-columns: 1fr;
  }

  .home-hero {
    padding: 56px 0 48px;
  }

  .home-hero-grid {
    gap: 32px;
  }

  .home-hero-copy {
    max-width: none;
  }

  .home-hero h1 {
    max-width: 720px;
  }

  .home-hero-note {
    position: static;
    max-width: none;
    margin-top: 16px;
  }

  .home-section,
  .home-final-section {
    padding: 64px 0;
  }

}

@media (max-width: 640px) {
  .home-refresh .btn,
  .home-refresh .btn-secondary {
    min-height: 54px;
    border-radius: 14px;
  }

  .home-hero {
    padding-top: 42px;
  }

  .home-hero h1 {
    max-width: none;
    font-size: clamp(40px, 12vw, 54px);
  }

  .home-hero p,
  .home-section-head p,
  .home-final-cta p {
    font-size: 16px;
  }

  .home-section,
  .home-final-section {
    padding: 52px 0;
  }

  .home-section-head {
    margin-bottom: 24px;
  }

  .home-card,
  .home-route-card {
    padding: 22px;
  }

  .home-route-card {
    min-height: 0;
  }

  .home-card h3,
  .home-route-card h3 {
    font-size: 22px;
  }

}

@keyframes riskV2HeroCopyIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes riskV2HeroImageIn {
  from {
    opacity: 0;
    transform: translateX(28px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.risk-v2-page.has-scroll-reveal .risk-v2-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.risk-v2-page.has-scroll-reveal .risk-v2-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.risk-v2-page.has-scroll-reveal .risk-v2-benefits .risk-v2-reveal:nth-child(2) {
  transition-delay: 0.08s;
}

.risk-v2-page.has-scroll-reveal .risk-v2-benefits .risk-v2-reveal:nth-child(3) {
  transition-delay: 0.16s;
}

.risk-v2-page.has-scroll-reveal .risk-v2-benefits .risk-v2-reveal:nth-child(4) {
  transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
  .risk-v2-hero-copy > *,
  .risk-v2-hero-image img {
    animation: none;
  }

  .risk-v2-page.has-scroll-reveal .risk-v2-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .risk-v2-benefits article,
  .risk-v2-icon,
  .risk-v2-audience-grid article,
  .risk-v2-pathway-card,
  .risk-v2-step-card,
  .risk-v2-faq-list details {
    transition: none;
  }

  .risk-v2-benefits article:hover,
  .risk-v2-benefits article:hover .risk-v2-icon,
  .risk-v2-audience-grid article:hover,
  .risk-v2-pathway-card:hover,
  .risk-v2-step-card:hover,
  .risk-v2-faq-list details:hover {
    transform: none;
  }

  .wet-amd-narrative > div,
  .wet-amd-infographic,
  .wet-amd-split,
  .wet-amd-mini-pathway li,
  .wet-amd-care-panel,
  .wet-amd-price-grid article,
  .wet-amd-drug-prices div {
    animation: none;
  }

  .wet-amd-infographic,
  .wet-amd-ring,
  .wet-amd-mini-pathway li,
  .wet-amd-care-panel,
  .wet-amd-price-grid article,
  .wet-amd-drug-prices div {
    transition: none;
  }

  .wet-amd-infographic:hover,
  .wet-amd-infographic:hover .wet-amd-ring,
  .wet-amd-mini-pathway li:hover,
  .wet-amd-care-panel:hover,
  .wet-amd-price-grid article:hover,
  .wet-amd-drug-prices div:hover {
    transform: none;
  }

  .wet-amd-split {
    opacity: 1;
    transform: none;
  }

  .wet-amd-split-dry {
    width: 90%;
  }

  .wet-amd-split-wet {
    width: 10%;
  }

  .wet-amd-split.is-visible .wet-amd-split-dry,
  .wet-amd-split.is-visible .wet-amd-split-wet {
    animation: none;
  }

  .pbm-overview-grid > div,
  .pbm-light-panel,
  .pbm-evidence-panel,
  .pbm-assessment-grid article,
  .about-value-grid article,
  .about-mission-grid article,
  .about-focus-grid span,
  .about-location-panel {
    animation: none;
  }

  .pbm-light-panel,
  .pbm-light-orbit,
  .pbm-evidence-panel,
  .pbm-assessment-grid article,
  .about-value-grid article,
  .about-mission-grid article,
  .about-focus-grid span,
  .about-location-panel {
    transition: none;
  }

  .pbm-light-panel:hover,
  .pbm-light-panel:hover .pbm-light-orbit,
  .pbm-evidence-panel:hover,
  .pbm-assessment-grid article:hover,
  .about-value-grid article:hover,
  .about-mission-grid article:hover,
  .about-focus-grid span:hover,
  .about-location-panel:hover {
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .page-hero-grid,
  .split-grid,
  .contact-grid,
  .footer-grid,
  .grid-3,
  .grid-2,
  .resource-grid {
    grid-template-columns: 1fr;
  }

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

  .topbar {
    font-size: 13px;
  }

  .topbar-inner {
    justify-content: flex-start;
  }

  .nav-wrap {
    position: relative;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
  }

  .site-header .nav-wrap {
    width: min(calc(100% - 20px), var(--container));
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 12px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(41, 91, 143, 0.12);
    border-radius: 22px;
    box-shadow: 0 22px 40px rgba(24, 48, 77, 0.12);
    justify-content: stretch;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav a {
    padding: 16px 12px;
    border-bottom: 1px solid rgba(41, 91, 143, 0.08);
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .nav a::after {
    display: none;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .contact-list-primary {
    grid-template-columns: 1fr;
  }

  .floating-note {
    position: static;
    margin-top: 18px;
    max-width: none;
  }

  .hero,
  .page-hero {
    padding: 56px 0 28px;
  }

  .section {
    padding: 26px 0 56px;
  }

  .card-hero,
  .media-card,
  .section-card,
  .info-card,
  .resource-card,
  .panel,
  .contact-card,
  .cta-band,
  .stat-card {
    border-radius: 22px;
  }

  .split-grid .media-card img,
  .page-hero-grid .media-card img,
  .contact-grid .media-card img {
    min-height: 280px;
  }

  .footer-grid > div {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .topbar-inner {
    justify-content: flex-start;
  }

  .topbar-item {
    width: 100%;
  }

  .hero,
  .page-hero {
    padding-top: 42px;
  }

  h1 {
    max-width: none;
    font-size: clamp(34px, 10vw, 46px);
  }

  h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .button-row,
  .mini-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn-secondary,
  .btn-ghost {
    width: 100%;
  }

  .doctify-widget-wrap {
    min-height: 260px;
    padding: 12px;
    border-radius: 22px;
  }

  .nav {
    top: calc(100% + 8px);
    border-radius: 18px;
  }

  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .card-hero,
  .media-card,
  .section-card,
  .info-card,
  .resource-card,
  .panel,
  .contact-card,
  .cta-band,
  .stat-card {
    padding: 18px;
  }

  .section-head {
    margin-bottom: 20px;
  }

  .split-grid .media-card img,
  .page-hero-grid .media-card img,
  .contact-grid .media-card img {
    min-height: 220px;
  }
}

/* AMD Risk Assessment comparison page */
.risk-v2-page h1,
.risk-v2-page h2,
.risk-v2-page h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: #123250;
  letter-spacing: 0;
}

.risk-v2-page .btn,
.risk-v2-page .btn-secondary {
  min-height: 58px;
  border-radius: 16px;
  padding-inline: 26px;
}

.risk-v2-page .btn {
  background: #0f3a62;
  box-shadow: 0 16px 28px rgba(15, 58, 98, 0.18);
}

.risk-v2-page .btn-secondary {
  border-color: #0f3a62;
  color: #0f3a62;
}

.risk-v2-hero {
  position: relative;
  overflow: hidden;
  background: transparent;
  border-bottom: 1px solid rgba(15, 58, 98, 0.06);
}

.risk-v2-hero-grid {
  width: 100%;
  max-width: none;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: center;
  padding-left: max(16px, calc((100vw - var(--container)) / 2 + 16px));
  padding-right: 0;
}

.risk-v2-hero-copy {
  position: relative;
  z-index: 2;
  padding: 66px 0;
}

.risk-v2-hero-copy > * {
  animation: riskV2HeroCopyIn 0.72s ease both;
}

.risk-v2-hero-copy > *:nth-child(2) {
  animation-delay: 0.1s;
}

.risk-v2-hero-copy > *:nth-child(3) {
  animation-delay: 0.2s;
}

.risk-v2-hero-copy > *:nth-child(4) {
  animation-delay: 0.3s;
}

.risk-v2-hero-copy > *:nth-child(5) {
  animation-delay: 0.4s;
}

.risk-v2-pill {
  display: inline-flex;
  align-items: center;
  margin-bottom: 28px;
  padding: 10px 22px;
  border-radius: 999px;
  background: #eaf3fb;
  color: #123a5c;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.risk-v2-hero h1 {
  max-width: 610px;
  margin-bottom: 24px;
  font-size: clamp(46px, 5.5vw, 76px);
  line-height: 0.98;
}

.risk-v2-hero p {
  max-width: 560px;
  font-size: 20px;
  line-height: 1.7;
  color: #29445f;
}

.risk-v2-price-note {
  margin-top: -6px;
  font-size: 16px !important;
  font-weight: 800;
  color: #123a5c !important;
}

.risk-v2-hero-image {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-width: 0;
  overflow: hidden;
  padding-top: 0;
}

.risk-v2-hero-image::before {
  display: none;
}

.risk-v2-hero-image img {
  position: relative;
  width: auto;
  height: 100%;
  max-width: none;
  max-height: 620px;
  object-fit: contain;
  object-position: bottom right;
  animation: riskV2HeroImageIn 0.95s 0.16s ease both;
}

.risk-v2-section {
  padding: 76px 0;
}

.risk-v2-intro {
  padding-top: 56px;
  background: rgba(255, 255, 255, 0.72);
}

.risk-v2-section-head {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}

.risk-v2-section-head h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 3vw, 44px);
}

.risk-v2-section-head p {
  font-size: 18px;
  line-height: 1.75;
}

.risk-v2-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
}

.risk-v2-benefits article {
  min-width: 0;
  border-radius: 16px;
  transition: transform 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease;
}

.risk-v2-benefits article:hover {
  transform: translateY(-6px);
}

.risk-v2-benefits article:hover .risk-v2-icon {
  background: #dfeef8;
  box-shadow: inset 0 0 0 1px rgba(18, 58, 92, 0.1), 0 12px 24px rgba(18, 50, 80, 0.1);
  transform: translateY(-2px) scale(1.04);
}

.risk-v2-icon {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: #edf5fb;
  color: #123a5c;
  box-shadow: inset 0 0 0 1px rgba(18, 58, 92, 0.07);
  transition: transform 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease;
}

.risk-v2-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.risk-v2-benefits h3 {
  min-height: 66px;
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 1.15;
}

.risk-v2-benefits p {
  color: #29445f;
}

.risk-v2-audience {
  padding-top: 76px;
}

.risk-v2-audience-grid,
.risk-v2-pathway-grid,
.risk-v2-step-grid {
  display: grid;
  gap: 18px;
}

.risk-v2-audience-grid,
.risk-v2-pathway-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.risk-v2-audience-grid article,
.risk-v2-pathway-card,
.risk-v2-step-card,
.risk-v2-faq-list details {
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(41, 91, 143, 0.1);
  box-shadow: 0 12px 28px rgba(18, 50, 80, 0.06);
}

.risk-v2-audience-grid article,
.risk-v2-pathway-card,
.risk-v2-step-card {
  padding: 26px;
}

.risk-v2-audience-grid article,
.risk-v2-pathway-card,
.risk-v2-step-card,
.risk-v2-faq-list details {
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.risk-v2-audience-grid article:hover,
.risk-v2-pathway-card:hover,
.risk-v2-step-card:hover,
.risk-v2-faq-list details:hover {
  transform: translateY(-5px);
  border-color: rgba(15, 58, 98, 0.18);
  box-shadow: 0 18px 36px rgba(18, 50, 80, 0.1);
}

.risk-v2-audience-grid h3,
.risk-v2-pathway-card h3,
.risk-v2-step-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.16;
}

.risk-v2-audience-grid p,
.risk-v2-pathway-card p,
.risk-v2-step-card p,
.risk-v2-faq-list p {
  color: #29445f;
}

.risk-v2-pathways {
  padding-top: 0;
}

.risk-v2-pathway-card {
  display: flex;
  flex-direction: column;
}

.risk-v2-pathway-card a {
  margin-top: auto;
  padding-top: 18px;
  color: #0f3a62;
  font-weight: 800;
  text-decoration: none;
}

.risk-v2-pathway-card a:hover {
  text-decoration: underline;
}

.risk-v2-pathways .risk-v2-section-head {
  margin-bottom: 22px;
}

.risk-v2-pathways .risk-v2-pathway-grid {
  max-width: 960px;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0 auto;
}

.risk-v2-pathways .risk-v2-pathway-card {
  position: relative;
  display: block;
  padding: 24px 0 24px 46px;
  border: 0;
  border-top: 1px solid rgba(41, 91, 143, 0.14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.risk-v2-pathways .risk-v2-pathway-card:first-child {
  border-top: 0;
}

.risk-v2-pathways .risk-v2-pathway-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 29px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #e9f3fb;
  box-shadow: inset 0 0 0 1px rgba(18, 58, 92, 0.08);
}

.risk-v2-pathways .risk-v2-pathway-card::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 37px;
  width: 7px;
  height: 4px;
  border-left: 2px solid #123a5c;
  border-bottom: 2px solid #123a5c;
  transform: rotate(-45deg);
}

.risk-v2-pathways .risk-v2-pathway-card:hover {
  transform: none;
  border-color: rgba(41, 91, 143, 0.14);
  box-shadow: none;
}

.risk-v2-feature-band,
.risk-v2-final-section {
  width: 100%;
  border-top: 1px solid rgba(41, 91, 143, 0.08);
  border-bottom: 1px solid rgba(41, 91, 143, 0.08);
}

.risk-v2-feature-band {
  background: #eef5fb;
}

.risk-v2-pathways {
  margin-top: 34px;
}

.risk-v2-steps {
  padding-top: 76px;
}

.risk-v2-step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.risk-v2-step-card span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #e9f3fb;
  color: #123a5c;
  font-weight: 800;
}

.risk-v2-feature-card,
.risk-v2-final-cta {
  border-radius: 18px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.risk-v2-feature-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 44px;
  align-items: center;
  padding: 42px 54px;
}

.risk-v2-feature-card h2,
.risk-v2-visit-grid h2,
.risk-v2-final-cta h2 {
  font-size: clamp(32px, 3vw, 44px);
}

.risk-v2-feature-card p {
  max-width: 720px;
  margin-bottom: 18px;
  color: #29445f;
}

.risk-v2-feature-card img,
.risk-v2-visit-grid img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 12px 32px rgba(18, 50, 80, 0.1);
}

.risk-v2-feature-card img {
  aspect-ratio: 16 / 9;
}

.risk-v2-visit-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.1fr) minmax(0, 0.9fr);
  gap: 68px;
  align-items: center;
}

.risk-v2-visit-grid > div {
  padding-left: 0;
  padding-right: 34px;
}

.risk-v2-visit-grid p {
  font-size: 18px;
}

.risk-v2-visit-grid img {
  aspect-ratio: 16 / 10;
}

.risk-v2-check-list {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.risk-v2-check-list li {
  position: relative;
  padding-left: 42px;
  color: #29445f;
  font-size: 18px;
}

.risk-v2-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #e9f3fb;
}

.risk-v2-check-list li::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 8px;
  width: 8px;
  height: 5px;
  border-left: 3px solid #123a5c;
  border-bottom: 3px solid #123a5c;
  transform: rotate(-45deg);
}

.risk-v2-final-section {
  padding: 86px 0;
  border-top: 1px solid rgba(15, 58, 98, 0.12);
  border-bottom: 1px solid rgba(15, 58, 98, 0.12);
  background: linear-gradient(135deg, #123250 0%, #0f3a62 62%, #183f67 100%);
}

.risk-v2-faq {
  padding-top: 0;
}

.risk-v2-faq-list {
  max-width: 900px;
  display: grid;
  gap: 14px;
  margin: 0 auto;
}

.risk-v2-faq-list details {
  padding: 0;
  overflow: hidden;
}

.risk-v2-faq-list summary {
  cursor: pointer;
  padding: 22px 26px;
  color: #123250;
  font-weight: 800;
}

.risk-v2-faq-list p {
  margin: -4px 26px 24px;
}

.risk-v2-reviews {
  padding-top: 44px;
}

.risk-v2-reviews .risk-v2-section-head h2 {
  font-size: clamp(24px, 2.4vw, 34px);
}

.risk-v2-reviews .doctify-widget-wrap {
  max-width: 900px;
  min-height: 180px;
  margin: 0 auto;
  padding: 12px;
}

.risk-v2-reviews .doctify-widget-wrap iframe {
  max-height: 260px;
}

.risk-v2-final-cta {
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.risk-v2-final-cta > div {
  padding: 54px 62px;
  width: 100%;
  text-align: center;
}

.risk-v2-final-cta p {
  font-size: 20px;
  color: #e9f3fb;
}

.risk-v2-final-cta h2 {
  color: #fff;
}

.risk-v2-cta-note {
  margin-top: -6px;
  margin-bottom: 0;
  font-size: 16px !important;
}

.risk-v2-reassurance-note {
  max-width: 760px;
  margin: 18px auto 0;
  font-size: 16px !important;
  line-height: 1.7;
}

.risk-v2-final-cta .button-row {
  justify-content: center;
}

.risk-v2-final-cta .btn {
  background: #fff;
  color: #0f3a62;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.16);
}

.risk-v2-final-cta .btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
}

.risk-v2-sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: block;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(41, 91, 143, 0.12);
  box-shadow: 0 16px 40px rgba(18, 50, 80, 0.18);
  backdrop-filter: blur(12px);
}

.risk-v2-sticky-cta a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.risk-v2-sticky-book {
  background: #0f3a62;
  color: #fff;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.booking-modal.is-open {
  display: flex;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 50, 80, 0.52);
  backdrop-filter: blur(8px);
}

.booking-modal-panel {
  position: relative;
  width: min(100%, 620px);
  max-height: min(92vh, 860px);
  overflow-y: auto;
  padding: 28px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(41, 91, 143, 0.14);
  box-shadow: 0 28px 80px rgba(18, 50, 80, 0.28);
}

.booking-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(41, 91, 143, 0.16);
  border-radius: 50%;
  background: #f4f8fc;
  color: #123250;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.booking-modal-head {
  padding-right: 42px;
}

.booking-modal-head h2 {
  margin-top: 18px;
  font-size: clamp(28px, 2.8vw, 38px);
}

.booking-modal-head p {
  max-width: 620px;
  font-size: 17px;
  line-height: 1.7;
}

.booking-modal-callout {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  margin: 24px 0;
  padding: 0;
  color: #123250;
}

.booking-modal-callout span {
  font-size: 17px;
  font-weight: 800;
}

.booking-modal-callout a {
  color: #0f3a62;
  font-size: 17px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.booking-form {
  display: grid;
  gap: 16px;
}

.booking-form .btn {
  width: fit-content;
  font-size: 17px;
  font-weight: 800;
}

.booking-form-note {
  display: none;
  margin: 0;
  padding: 14px 16px;
  border-radius: 14px;
  background: #eef5fb;
  color: #29445f;
  font-size: 15px;
}

.booking-form-note.is-visible {
  display: block;
}

.booking-form-note a {
  color: #0f3a62;
  font-weight: 800;
}

body.booking-modal-open {
  overflow: hidden;
}

.wet-amd-page .site-footer {
  margin-top: 0;
}

.wet-amd-page h1,
.wet-amd-page h2,
.wet-amd-page h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: #123250;
  letter-spacing: 0;
}

.wet-amd-page main .container {
  width: min(calc(100% - 56px), 1280px);
}

.wet-amd-page .btn,
.wet-amd-page .btn-secondary {
  min-height: 54px;
  border-radius: 16px;
  padding-inline: 24px;
}

.wet-amd-page .page-hero {
  padding: 86px 0 88px;
}

.wet-amd-intro {
  padding-top: 84px;
  background: rgba(255, 255, 255, 0.5);
}

.wet-amd-page .risk-v2-section {
  padding-block: 92px;
}

.wet-amd-page .risk-v2-section-head {
  max-width: 920px;
  margin-bottom: 52px;
}

.wet-amd-page .risk-v2-section-head h2 {
  font-size: clamp(38px, 3.4vw, 56px);
}

.wet-amd-page .risk-v2-section-head p {
  max-width: 760px;
  margin-inline: auto;
  font-size: 20px;
}

.wet-amd-narrative {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.75fr);
  gap: 70px;
  align-items: center;
}

.wet-amd-narrative > div {
  animation: fadeUp 0.85s ease both;
}

.wet-amd-narrative p,
.wet-amd-treatment-grid p,
.wet-amd-care-panel p,
.wet-amd-price-note p {
  font-size: 20px;
  line-height: 1.75;
}

.wet-amd-narrative p {
  max-width: 760px;
}

.wet-amd-infographic {
  min-height: 420px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px 28px;
  align-content: center;
  padding: 38px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbff 0%, #eaf3fb 100%);
  border: 1px solid rgba(41, 91, 143, 0.16);
  box-shadow: 0 18px 42px rgba(18, 50, 80, 0.09);
  animation: riseIn 0.9s 0.12s ease both;
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.wet-amd-infographic:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 58, 98, 0.24);
  box-shadow: 0 24px 52px rgba(18, 50, 80, 0.13);
}

.wet-amd-ring {
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #f8fbff 0 54%, transparent 55%),
    conic-gradient(#123a5c 0 10%, #d5e7f5 10% 100%);
  box-shadow: inset 0 0 0 1px rgba(18, 58, 92, 0.08), 0 16px 30px rgba(18, 50, 80, 0.1);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.wet-amd-infographic:hover .wet-amd-ring {
  transform: scale(1.04);
  box-shadow: inset 0 0 0 1px rgba(18, 58, 92, 0.1), 0 18px 34px rgba(18, 50, 80, 0.14);
}

.wet-amd-ring span {
  color: #123250;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
}

.wet-amd-info-copy {
  align-self: center;
}

.wet-amd-info-copy strong {
  display: block;
  margin-bottom: 10px;
  color: #123250;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.05;
}

.wet-amd-info-copy p {
  margin-bottom: 0;
  color: #29445f;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.wet-amd-split {
  grid-column: 1 / -1;
  display: flex;
  height: 16px;
  overflow: hidden;
  border-radius: 999px;
  background: #d5e7f5;
  box-shadow: inset 0 0 0 1px rgba(18, 58, 92, 0.08);
}

.wet-amd-split-dry {
  width: 0;
  background: #a9cce7;
}

.wet-amd-split-wet {
  width: 0;
  background: #123a5c;
}

.wet-amd-split.is-visible .wet-amd-split-dry {
  animation: wetAmdDryBarIn 4.2s 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.wet-amd-split.is-visible .wet-amd-split-wet {
  animation: wetAmdWetBarIn 1.8s 4.15s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.wet-amd-split-labels {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #29445f;
  font-size: 14px;
  font-weight: 800;
}

.wet-amd-mini-pathway {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.wet-amd-mini-pathway li {
  position: relative;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(41, 91, 143, 0.1);
  color: #123250;
  text-align: center;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
  animation: fadeUp 0.7s ease both;
  transition: transform 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.wet-amd-mini-pathway li:nth-child(1) {
  animation-delay: 0.1s;
}

.wet-amd-mini-pathway li:nth-child(2) {
  animation-delay: 0.2s;
}

.wet-amd-mini-pathway li:nth-child(3) {
  animation-delay: 0.3s;
}

.wet-amd-mini-pathway li:hover {
  transform: translateY(-4px);
  background: #fff;
  border-color: rgba(15, 58, 98, 0.18);
  box-shadow: 0 14px 28px rgba(18, 50, 80, 0.1);
}

.wet-amd-mini-pathway li::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -27px;
  width: 20px;
  height: 2px;
  background: #9fc4df;
  transform: translateY(-50%);
}

.wet-amd-mini-pathway li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -34px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #9fc4df;
  border-right: 2px solid #9fc4df;
  transform: translateY(-50%) rotate(45deg);
}

.wet-amd-mini-pathway li:last-child::before,
.wet-amd-mini-pathway li:last-child::after {
  display: none;
}

.wet-amd-urgent-band {
  padding-top: 96px;
  padding-bottom: 96px;
}

.wet-amd-page .risk-v2-feature-card {
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.92fr);
  gap: 84px;
  padding: 18px 0;
}

.wet-amd-page .risk-v2-feature-card h2,
.wet-amd-page .risk-v2-visit-grid h2,
.wet-amd-page .risk-v2-final-cta h2 {
  font-size: clamp(38px, 3.8vw, 58px);
}

.wet-amd-page .risk-v2-feature-card p {
  max-width: 760px;
  font-size: 20px;
}

.wet-amd-page .risk-v2-feature-card img {
  aspect-ratio: 5 / 3.4;
  min-height: 360px;
}

.wet-amd-warning-section {
  padding-top: 104px;
}

.wet-amd-page .risk-v2-visit-grid {
  grid-template-columns: minmax(460px, 1fr) minmax(0, 0.95fr);
  gap: 88px;
}

.wet-amd-page .risk-v2-visit-grid p,
.wet-amd-page .risk-v2-check-list li {
  font-size: 19px;
}

.wet-amd-page .risk-v2-visit-grid img {
  aspect-ratio: 4 / 3;
  min-height: 410px;
}

.wet-amd-treatment-section {
  padding-top: 26px;
}

.wet-amd-treatment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr);
  gap: 92px;
  align-items: center;
  padding-block: 10px;
}

.wet-amd-treatment-grid h2 {
  max-width: 820px;
  font-size: clamp(38px, 3.6vw, 58px);
}

.wet-amd-treatment-grid h3,
.wet-amd-care-panel h3 {
  font-size: clamp(30px, 2.7vw, 40px);
}

.wet-amd-injection-band {
  padding-top: 96px;
  padding-bottom: 96px;
}

.wet-amd-injection-card {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.62fr);
}

.wet-amd-care-panel {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(41, 91, 143, 0.12);
  animation: fadeUp 0.8s 0.12s ease both;
  transition: transform 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.wet-amd-care-panel:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(15, 58, 98, 0.2);
  box-shadow: 0 18px 36px rgba(18, 50, 80, 0.11);
}

.wet-amd-pricing-section {
  padding-top: 102px;
}

.wet-amd-price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.wet-amd-price-grid article {
  padding: 34px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(41, 91, 143, 0.1);
  box-shadow: 0 12px 28px rgba(18, 50, 80, 0.06);
  animation: fadeUp 0.76s ease both;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
}

.wet-amd-price-grid article:nth-child(2) {
  animation-delay: 0.1s;
}

.wet-amd-price-grid article:nth-child(3) {
  animation-delay: 0.2s;
}

.wet-amd-price-grid article:hover {
  transform: translateY(-10px);
  background: #f8fbff;
  border-color: rgba(15, 58, 98, 0.34);
  box-shadow: 0 26px 52px rgba(18, 50, 80, 0.18);
}

.wet-amd-price-grid article:hover strong {
  color: #0f3a62;
  transform: translateY(-2px);
}

.wet-amd-price-grid span {
  display: block;
  margin-bottom: 14px;
  color: #29445f;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wet-amd-price-grid strong {
  display: block;
  margin-bottom: 14px;
  color: #123250;
  font-size: clamp(36px, 3.2vw, 50px);
  line-height: 1;
  transition: color 0.24s ease, transform 0.24s ease;
}

.wet-amd-price-grid p {
  margin-bottom: 0;
  font-size: 17px;
}

.wet-amd-drug-prices {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1040px;
  margin: 28px auto 0;
}

.wet-amd-drug-prices div {
  padding: 22px 24px;
  border-radius: 16px;
  background: #eef5fb;
  border: 1px solid rgba(41, 91, 143, 0.1);
  text-align: center;
  animation: fadeUp 0.72s ease both;
  transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.wet-amd-drug-prices div:nth-child(2) {
  animation-delay: 0.08s;
}

.wet-amd-drug-prices div:nth-child(3) {
  animation-delay: 0.16s;
}

.wet-amd-drug-prices div:nth-child(4) {
  animation-delay: 0.24s;
}

.wet-amd-drug-prices div:hover {
  transform: translateY(-7px);
  background: #fff;
  border-color: rgba(15, 58, 98, 0.3);
  box-shadow: 0 18px 34px rgba(18, 50, 80, 0.13);
}

.wet-amd-drug-prices div:hover strong {
  color: #0f3a62;
}

.wet-amd-drug-prices span {
  display: block;
  margin-bottom: 8px;
  color: #29445f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wet-amd-drug-prices strong {
  display: block;
  color: #123250;
  font-size: 28px;
  line-height: 1;
  transition: color 0.22s ease;
}

.wet-amd-price-note {
  max-width: 760px;
  margin: 18px auto 0;
  padding: 24px 28px;
  border-radius: 16px;
  background: transparent;
  border: 1px solid rgba(41, 91, 143, 0.14);
  text-align: center;
}

.wet-amd-price-note p:last-child {
  margin-bottom: 0;
}

.wet-amd-page .risk-v2-final-section {
  padding: 112px 0;
}

.wet-amd-page .risk-v2-final-cta {
  min-height: 300px;
}

.wet-amd-page .risk-v2-final-cta p {
  max-width: 860px;
  margin-inline: auto;
  font-size: 21px;
}

.pbm-page .site-footer {
  margin-top: 0;
}

.pbm-page h1,
.pbm-page h2,
.pbm-page h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: #123250;
  letter-spacing: 0;
}

.pbm-page main .container {
  width: min(calc(100% - 56px), 1280px);
}

.pbm-page .btn,
.pbm-page .btn-secondary {
  min-height: 54px;
  border-radius: 16px;
  padding-inline: 24px;
}

.pbm-page .page-hero {
  padding: 86px 0 88px;
}

.pbm-page .risk-v2-section {
  padding-block: 92px;
}

.pbm-page .risk-v2-section-head {
  max-width: 920px;
  margin-bottom: 52px;
}

.pbm-page .risk-v2-section-head h2 {
  font-size: clamp(38px, 3.4vw, 56px);
}

.pbm-page .risk-v2-section-head p {
  max-width: 780px;
  margin-inline: auto;
  font-size: 20px;
}

.pbm-intro {
  padding-top: 84px;
  background: rgba(255, 255, 255, 0.5);
}

.pbm-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.75fr);
  gap: 70px;
  align-items: center;
}

.pbm-overview-grid > div {
  animation: fadeUp 0.85s ease both;
}

.pbm-overview-grid p,
.pbm-course-grid p,
.pbm-evidence-panel p {
  font-size: 20px;
  line-height: 1.75;
}

.pbm-overview-grid p {
  max-width: 760px;
}

.pbm-light-panel {
  min-height: 430px;
  display: grid;
  gap: 24px;
  align-content: center;
  padding: 38px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbff 0%, #eaf3fb 100%);
  border: 1px solid rgba(41, 91, 143, 0.16);
  box-shadow: 0 18px 42px rgba(18, 50, 80, 0.09);
  animation: riseIn 0.9s 0.12s ease both;
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.pbm-light-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 58, 98, 0.24);
  box-shadow: 0 24px 52px rgba(18, 50, 80, 0.13);
}

.pbm-light-orbit {
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
  margin: 0 auto 4px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #f8fbff 0 45%, transparent 46%),
    conic-gradient(from 25deg, #f2c94c 0 52%, #c65353 52% 100%);
  box-shadow: inset 0 0 0 1px rgba(18, 58, 92, 0.08), 0 16px 30px rgba(18, 50, 80, 0.1);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.pbm-light-panel:hover .pbm-light-orbit {
  transform: scale(1.04);
  box-shadow: inset 0 0 0 1px rgba(18, 58, 92, 0.1), 0 18px 34px rgba(18, 50, 80, 0.14);
}

.pbm-light-orbit span {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(18, 58, 92, 0.08);
}

.pbm-wave-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.pbm-wave-list div {
  padding: 16px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(41, 91, 143, 0.1);
  text-align: center;
}

.pbm-wave-list strong {
  display: block;
  margin-bottom: 4px;
  color: #123250;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  line-height: 1;
}

.pbm-wave-list span {
  color: #29445f;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.pbm-light-panel p {
  margin-bottom: 0;
  color: #29445f;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.pbm-feature-band,
.pbm-expectations-band {
  padding-top: 96px;
  padding-bottom: 96px;
}

.pbm-page .risk-v2-feature-card {
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.92fr);
  gap: 84px;
  padding: 18px 0;
}

.pbm-page .risk-v2-feature-card h2,
.pbm-page .risk-v2-visit-grid h2,
.pbm-page .risk-v2-final-cta h2 {
  font-size: clamp(38px, 3.8vw, 58px);
}

.pbm-page .risk-v2-feature-card p {
  max-width: 760px;
  font-size: 20px;
}

.pbm-page .risk-v2-feature-card img {
  aspect-ratio: 5 / 3.4;
  min-height: 360px;
}

.pbm-suitability-section {
  padding-top: 104px;
}

.pbm-page .risk-v2-visit-grid {
  grid-template-columns: minmax(460px, 1fr) minmax(0, 0.95fr);
  gap: 88px;
}

.pbm-page .risk-v2-visit-grid p,
.pbm-page .risk-v2-check-list li {
  font-size: 19px;
}

.pbm-page .risk-v2-visit-grid img {
  aspect-ratio: 4 / 3;
  min-height: 410px;
}

.pbm-course-section {
  padding-top: 26px;
}

.pbm-course-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr);
  gap: 92px;
  align-items: center;
  padding-block: 10px;
}

.pbm-course-grid h2 {
  max-width: 820px;
  font-size: clamp(38px, 3.6vw, 58px);
}

.pbm-course-grid h3 {
  font-size: clamp(30px, 2.7vw, 40px);
}

.pbm-expectations-card {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.62fr);
}

.pbm-evidence-panel {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(41, 91, 143, 0.12);
  animation: fadeUp 0.8s 0.12s ease both;
  transition: transform 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.pbm-evidence-panel:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(15, 58, 98, 0.2);
  box-shadow: 0 18px 36px rgba(18, 50, 80, 0.11);
}

.pbm-evidence-panel h3 {
  font-size: clamp(30px, 2.7vw, 40px);
}

.pbm-assessment-section {
  padding-top: 102px;
}

.pbm-assessment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.pbm-assessment-grid article {
  padding: 34px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(41, 91, 143, 0.1);
  box-shadow: 0 12px 28px rgba(18, 50, 80, 0.06);
  animation: fadeUp 0.76s ease both;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
}

.pbm-assessment-grid article:nth-child(2) {
  animation-delay: 0.1s;
}

.pbm-assessment-grid article:nth-child(3) {
  animation-delay: 0.2s;
}

.pbm-assessment-grid article:hover {
  transform: translateY(-8px);
  background: #f8fbff;
  border-color: rgba(15, 58, 98, 0.24);
  box-shadow: 0 22px 44px rgba(18, 50, 80, 0.14);
}

.pbm-assessment-grid h3 {
  font-size: clamp(28px, 2.4vw, 36px);
}

.pbm-assessment-grid p {
  margin-bottom: 0;
  color: #29445f;
  font-size: 17px;
  line-height: 1.7;
}

.pbm-page .risk-v2-final-section {
  padding: 112px 0;
}

.pbm-page .risk-v2-final-cta {
  min-height: 300px;
}

.pbm-page .risk-v2-final-cta p {
  max-width: 860px;
  margin-inline: auto;
  font-size: 21px;
}

.about-page .site-footer {
  margin-top: 0;
}

.about-page h1,
.about-page h2,
.about-page h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: #123250;
  letter-spacing: 0;
}

.about-page main .container {
  width: min(calc(100% - 56px), 1280px);
}

.about-page .btn,
.about-page .btn-secondary {
  min-height: 54px;
  border-radius: 16px;
  padding-inline: 24px;
}

.about-page .page-hero {
  padding: 86px 0 88px;
}

.about-page .risk-v2-section {
  padding-block: 92px;
}

.about-page .risk-v2-section-head {
  max-width: 920px;
  margin-bottom: 52px;
}

.about-page .risk-v2-section-head h2 {
  font-size: clamp(38px, 3.4vw, 56px);
}

.about-page .risk-v2-section-head p {
  max-width: 780px;
  margin-inline: auto;
  font-size: 20px;
}

.about-intro {
  padding-top: 84px;
  background: rgba(255, 255, 255, 0.5);
}

.about-value-grid,
.about-mission-grid,
.about-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.about-value-grid article,
.about-mission-grid article {
  padding: 34px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(41, 91, 143, 0.1);
  box-shadow: 0 12px 28px rgba(18, 50, 80, 0.06);
  animation: fadeUp 0.76s ease both;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
}

.about-value-grid article:nth-child(2),
.about-mission-grid article:nth-child(2) {
  animation-delay: 0.1s;
}

.about-value-grid article:nth-child(3),
.about-mission-grid article:nth-child(3) {
  animation-delay: 0.2s;
}

.about-value-grid article:hover,
.about-mission-grid article:hover {
  transform: translateY(-8px);
  background: #f8fbff;
  border-color: rgba(15, 58, 98, 0.24);
  box-shadow: 0 22px 44px rgba(18, 50, 80, 0.14);
}

.about-value-grid h3,
.about-mission-grid h3 {
  font-size: clamp(28px, 2.4vw, 36px);
}

.about-value-grid p,
.about-mission-grid p {
  margin-bottom: 0;
  color: #29445f;
  font-size: 17px;
  line-height: 1.7;
}

.about-specialist-band,
.about-location-band {
  padding-top: 96px;
  padding-bottom: 96px;
}

.about-page .risk-v2-feature-card {
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.92fr);
  gap: 84px;
  padding: 18px 0;
}

.about-specialist-band .risk-v2-feature-card {
  grid-template-columns: minmax(430px, 0.92fr) minmax(0, 1fr);
}

.about-specialist-card {
  align-items: stretch;
}

.about-specialist-image {
  height: 100%;
  min-height: 620px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.about-page .risk-v2-feature-card h2,
.about-page .risk-v2-visit-grid h2,
.about-page .risk-v2-final-cta h2 {
  font-size: clamp(38px, 3.8vw, 58px);
}

.about-page .risk-v2-feature-card p {
  max-width: 760px;
  font-size: 20px;
}

.about-page .risk-v2-feature-card img {
  aspect-ratio: 5 / 3.4;
  min-height: 360px;
}

.about-care-section {
  padding-top: 104px;
}

.about-experience-section {
  padding: 102px 0;
}

.about-experience-cta {
  min-height: 360px;
}

.about-experience-cta p {
  max-width: 920px;
}

.about-page .risk-v2-visit-grid {
  grid-template-columns: minmax(460px, 1fr) minmax(0, 0.95fr);
  gap: 88px;
}

.about-page .risk-v2-visit-grid p,
.about-page .risk-v2-check-list li {
  font-size: 19px;
}

.about-page .risk-v2-visit-grid img {
  aspect-ratio: 4 / 3;
  min-height: 410px;
}

.about-continuity-section {
  padding-top: 26px;
}

.about-continuity-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr);
  gap: 92px;
  align-items: center;
  padding-block: 10px;
}

.about-continuity-grid h2 {
  max-width: 820px;
  font-size: clamp(38px, 3.6vw, 58px);
}

.about-continuity-grid h3 {
  font-size: clamp(30px, 2.7vw, 40px);
}

.about-continuity-grid p,
.about-location-panel p {
  font-size: 20px;
  line-height: 1.75;
}

.about-location-card {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.62fr);
}

.about-location-panel {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(41, 91, 143, 0.12);
  animation: fadeUp 0.8s 0.12s ease both;
  transition: transform 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.about-location-panel:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(15, 58, 98, 0.2);
  box-shadow: 0 18px 36px rgba(18, 50, 80, 0.11);
}

.about-location-panel h3 {
  font-size: clamp(30px, 2.7vw, 40px);
}

.about-location-panel a {
  color: #0f3a62;
  font-weight: 800;
}

.about-focus-section,
.about-choice-section {
  padding-top: 102px;
}

.about-focus-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-focus-grid span {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(41, 91, 143, 0.1);
  box-shadow: 0 12px 28px rgba(18, 50, 80, 0.06);
  color: #123250;
  text-align: center;
  font-weight: 800;
  line-height: 1.35;
  animation: fadeUp 0.76s ease both;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
}

.about-focus-grid span:hover {
  transform: translateY(-7px);
  background: #f8fbff;
  border-color: rgba(15, 58, 98, 0.24);
  box-shadow: 0 20px 40px rgba(18, 50, 80, 0.13);
}

.about-focus-note {
  max-width: 820px;
  margin: 28px auto 0;
  color: #29445f;
  font-size: 17px;
  line-height: 1.7;
  text-align: center;
}

.about-page .risk-v2-final-section {
  padding: 112px 0;
}

.about-page .risk-v2-final-cta {
  min-height: 300px;
}

.about-page .risk-v2-final-cta h2 {
  color: #fff;
}

.about-page .risk-v2-final-cta p {
  max-width: 860px;
  margin-inline: auto;
  font-size: 21px;
}

.wet-amd-page .risk-v2-final-cta h2,
.pbm-page .risk-v2-final-cta h2 {
  color: #fff;
}

.risk-v2-page .site-footer {
  margin-top: 0;
}

@media (max-width: 980px) {
  .wet-amd-narrative,
  .wet-amd-treatment-grid,
  .wet-amd-injection-card,
  .wet-amd-price-grid,
  .wet-amd-drug-prices,
  .pbm-overview-grid,
  .pbm-course-grid,
  .pbm-expectations-card,
  .pbm-assessment-grid,
  .about-value-grid,
  .about-mission-grid,
  .about-focus-grid,
  .about-continuity-grid,
  .about-location-card {
    grid-template-columns: 1fr;
  }

  .wet-amd-narrative,
  .wet-amd-treatment-grid,
  .wet-amd-page .risk-v2-feature-card,
  .wet-amd-page .risk-v2-visit-grid,
  .pbm-overview-grid,
  .pbm-course-grid,
  .pbm-page .risk-v2-feature-card,
  .pbm-page .risk-v2-visit-grid,
  .about-continuity-grid,
  .about-page .risk-v2-feature-card,
  .about-page .risk-v2-visit-grid {
    gap: 40px;
  }

  .wet-amd-page .page-hero,
  .pbm-page .page-hero,
  .about-page .page-hero {
    padding: 64px 0;
  }

  .wet-amd-page .risk-v2-feature-card,
  .wet-amd-page .risk-v2-visit-grid,
  .pbm-page .risk-v2-feature-card,
  .pbm-page .risk-v2-visit-grid,
  .about-page .risk-v2-feature-card,
  .about-page .risk-v2-visit-grid {
    grid-template-columns: 1fr;
  }

  .wet-amd-page .risk-v2-feature-card img,
  .wet-amd-page .risk-v2-visit-grid img,
  .pbm-page .risk-v2-feature-card img,
  .pbm-page .risk-v2-visit-grid img,
  .about-page .risk-v2-feature-card img,
  .about-page .risk-v2-visit-grid img {
    min-height: 0;
  }

  .about-specialist-image {
    height: auto;
    max-height: 680px;
    aspect-ratio: 4 / 5;
  }

  .risk-v2-hero-grid,
  .risk-v2-feature-card,
  .risk-v2-visit-grid {
    grid-template-columns: 1fr;
  }

  .risk-v2-hero-grid {
    min-height: 0;
    gap: 0;
    padding-right: max(16px, calc((100vw - var(--container)) / 2 + 16px));
  }

  .risk-v2-hero-copy {
    padding: 54px 0 28px;
  }

  .risk-v2-hero h1 {
    max-width: 680px;
  }

  .risk-v2-hero-image {
    justify-content: center;
  }

  .risk-v2-hero-image::before {
    display: none;
  }

  .risk-v2-hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: none;
    aspect-ratio: 16 / 9;
    object-position: center;
  }

  .risk-v2-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .risk-v2-audience-grid,
  .risk-v2-pathway-grid,
  .risk-v2-step-grid {
    grid-template-columns: 1fr;
  }

  .risk-v2-benefits h3 {
    min-height: 0;
  }

  .risk-v2-feature-card {
    padding: 30px;
  }

  .risk-v2-final-section {
    padding: 66px 0;
  }

  .risk-v2-visit-grid {
    gap: 32px;
  }

  .risk-v2-visit-grid > div {
    padding-right: 0;
  }

  .risk-v2-final-cta > div {
    padding: 30px;
  }

  .risk-v2-sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 640px) {
  .wet-amd-page main .container {
    width: min(calc(100% - 32px), 1280px);
  }

  .pbm-page main .container {
    width: min(calc(100% - 32px), 1280px);
  }

  .about-page main .container {
    width: min(calc(100% - 32px), 1280px);
  }

  .wet-amd-page .risk-v2-section,
  .pbm-page .risk-v2-section,
  .about-page .risk-v2-section {
    padding: 54px 0;
  }

  .wet-amd-page .page-hero,
  .pbm-page .page-hero,
  .about-page .page-hero {
    padding: 46px 0;
  }

  .wet-amd-intro,
  .wet-amd-warning-section,
  .wet-amd-pricing-section,
  .pbm-intro,
  .pbm-suitability-section,
  .pbm-assessment-section,
  .about-intro,
  .about-care-section,
  .about-focus-section,
  .about-choice-section {
    padding-top: 52px;
  }

  .wet-amd-urgent-band,
  .wet-amd-injection-band,
  .pbm-feature-band,
  .pbm-expectations-band,
  .about-specialist-band,
  .about-location-band {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .wet-amd-narrative p,
  .wet-amd-treatment-grid p,
  .wet-amd-care-panel p,
  .wet-amd-price-note p,
  .pbm-overview-grid p,
  .pbm-course-grid p,
  .pbm-evidence-panel p,
  .about-continuity-grid p,
  .about-location-panel p {
    font-size: 16px;
  }

  .wet-amd-infographic,
  .wet-amd-care-panel,
  .wet-amd-price-grid article,
  .wet-amd-price-note,
  .pbm-light-panel,
  .pbm-evidence-panel,
  .pbm-assessment-grid article,
  .about-value-grid article,
  .about-mission-grid article,
  .about-focus-grid span,
  .about-location-panel {
    padding: 22px;
  }

  .wet-amd-infographic {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .wet-amd-ring {
    width: 136px;
    height: 136px;
  }

  .wet-amd-mini-pathway {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .wet-amd-mini-pathway li::before {
    top: auto;
    right: 50%;
    bottom: -21px;
    width: 2px;
    height: 16px;
    transform: translateX(50%);
  }

  .wet-amd-mini-pathway li::after {
    top: auto;
    right: 50%;
    bottom: -28px;
    transform: translateX(50%) rotate(135deg);
  }

  .wet-amd-page .risk-v2-section-head {
    margin-bottom: 32px;
  }

  .pbm-page .risk-v2-section-head {
    margin-bottom: 32px;
  }

  .about-page .risk-v2-section-head {
    margin-bottom: 32px;
  }

  .wet-amd-page .risk-v2-section-head p,
  .wet-amd-page .risk-v2-feature-card p,
  .wet-amd-page .risk-v2-visit-grid p,
  .wet-amd-page .risk-v2-check-list li,
  .wet-amd-page .risk-v2-final-cta p,
  .pbm-page .risk-v2-section-head p,
  .pbm-page .risk-v2-feature-card p,
  .pbm-page .risk-v2-visit-grid p,
  .pbm-page .risk-v2-check-list li,
  .pbm-page .risk-v2-final-cta p,
  .about-page .risk-v2-section-head p,
  .about-page .risk-v2-feature-card p,
  .about-page .risk-v2-visit-grid p,
  .about-page .risk-v2-check-list li,
  .about-page .risk-v2-final-cta p {
    font-size: 16px;
  }

  .wet-amd-drug-prices {
    gap: 10px;
  }

  .wet-amd-drug-prices strong {
    font-size: 24px;
  }

  .pbm-wave-list {
    grid-template-columns: 1fr;
  }

  .pbm-light-panel {
    min-height: 0;
  }

  .pbm-light-orbit {
    width: 146px;
    height: 146px;
  }


  .risk-v2-page {
    padding-bottom: 82px;
  }

  .risk-v2-page .btn,
  .risk-v2-page .btn-secondary {
    min-height: 54px;
    border-radius: 14px;
  }

  .risk-v2-hero-copy {
    padding-top: 42px;
  }

  .risk-v2-hero h1 {
    max-width: none;
    font-size: clamp(40px, 12vw, 54px);
  }

  .risk-v2-hero p,
  .risk-v2-section-head p,
  .risk-v2-audience-grid p,
  .risk-v2-pathway-card p,
  .risk-v2-step-card p,
  .risk-v2-visit-grid p,
  .risk-v2-check-list li,
  .risk-v2-faq-list p,
  .risk-v2-final-cta p {
    font-size: 16px;
  }

  .risk-v2-section {
    padding: 48px 0;
  }

  .risk-v2-benefits {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .risk-v2-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 16px;
  }

  .risk-v2-feature-card,
  .risk-v2-final-cta {
    border-radius: 16px;
  }

  .risk-v2-feature-card {
    gap: 24px;
    padding: 24px;
  }

  .risk-v2-feature-band,
  .risk-v2-final-section {
    padding: 54px 0;
  }

  .risk-v2-audience-grid article,
  .risk-v2-pathway-card,
  .risk-v2-step-card {
    padding: 22px;
  }

  .risk-v2-audience-grid h3,
  .risk-v2-pathway-card h3,
  .risk-v2-step-card h3 {
    font-size: 22px;
  }

  .risk-v2-final-cta > div {
    padding: 24px;
  }

  .risk-v2-faq-list summary {
    padding: 20px 22px;
  }

  .risk-v2-faq-list p {
    margin: -4px 22px 22px;
  }

  .risk-v2-sticky-cta {
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 16px;
  }

  .risk-v2-sticky-cta a {
    min-height: 48px;
    padding: 0 16px;
  }

  .booking-modal {
    align-items: flex-end;
    padding: 10px;
  }

  .booking-modal-panel {
    max-height: 92vh;
    padding: 24px;
    border-radius: 18px;
  }

  .booking-modal-head {
    padding-right: 38px;
  }

  .booking-modal-callout {
    width: 100%;
    flex-wrap: wrap;
  }

  .booking-form .btn {
    width: 100%;
  }
}
