:root {
  --rbmc-blue: #1d4f77;
  --rbmc-blue-deep: #143c5d;
  --rbmc-blue-light: #2d82ab;
  --rbmc-teal: #2ca7a0;
  --rbmc-teal-soft: #dff3f1;
  --rbmc-gold: #d9b267;
  --rbmc-slate: #1f2d3d;
  --rbmc-surface: #f7fafb;
  --rbmc-border: rgba(29, 79, 119, 0.12);
  --rbmc-text: #1d2733;
  --rbmc-muted: #5a6775;
  --rbmc-white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(22, 51, 72, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #f4f8fb;
  color: var(--rbmc-text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

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

/* ===== Announcement bar ===== */
.announce-bar {
  background: var(--rbmc-blue-deep);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  padding: 0.55rem 1rem;
}

.announce-bar a {
  color: var(--rbmc-white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.announce-bar .divider {
  opacity: 0.4;
  margin: 0 0.6em;
}

/* ===== Header ===== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rbmc-border);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.brand-logo.small {
  width: 42px;
  height: 42px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--rbmc-slate);
  line-height: 1.2;
}

.brand-tag {
  font-size: 0.72rem;
  color: var(--rbmc-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--rbmc-slate);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--rbmc-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

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

.phone-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 700;
  background: var(--rbmc-blue);
  color: var(--rbmc-white);
  padding: 0.8rem 1.1rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.phone-pill:hover {
  transform: translateY(-1px);
}

/* ===== Hero ===== */
.hero-section {
  background: linear-gradient(135deg, #12293e 0%, var(--rbmc-blue-deep) 45%, var(--rbmc-blue-light) 100%);
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.3;
  pointer-events: none;
}

.hero-section::before {
  width: 460px;
  height: 460px;
  background: rgba(255, 255, 255, 0.14);
  right: 4%;
  top: -120px;
}

.hero-section::after {
  width: 420px;
  height: 420px;
  background: rgba(44, 167, 160, 0.4);
  left: 8%;
  bottom: -100px;
}

.ring-decor {
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 360px;
  height: 360px;
  pointer-events: none;
  opacity: 0.18;
}

.ring-decor circle {
  stroke: #ffffff;
}

.hero-copy .eyebrow {
  color: var(--rbmc-white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-copy .lead {
  color: rgba(255, 255, 255, 0.84);
}

.hero-copy .benefits-list li {
  color: var(--rbmc-white);
}

.hero-copy .benefits-list li::before {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.hero-copy .social-proof {
  color: rgba(255, 255, 255, 0.78);
}

.hero-copy .avatars span {
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker,
.mini-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rbmc-blue);
  background: rgba(29, 79, 119, 0.08);
  border: 1px solid rgba(29, 79, 119, 0.12);
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
}

.eyebrow .dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rbmc-teal);
  margin-right: 8px;
  animation: dotPulse 2.4s ease-out infinite;
}

@keyframes dotPulse {
  0% { box-shadow: 0 0 0 0 rgba(44, 167, 160, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(44, 167, 160, 0); }
  100% { box-shadow: 0 0 0 0 rgba(44, 167, 160, 0); }
}

.hero-copy h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
  color: var(--rbmc-white);
}

.hero-copy h1 span {
  color: #f4cf8f;
}

.lead {
  font-size: 1.12rem;
  color: var(--rbmc-muted);
  max-width: 620px;
  margin: 0 0 22px;
}

.hero-team-photo-mobile {
  display: none;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 12px;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--rbmc-slate);
  font-weight: 600;
}

.benefits-list li::before {
  content: "\2713";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--rbmc-teal-soft);
  color: var(--rbmc-blue);
  font-weight: 800;
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 700;
  padding: 1rem 1.4rem;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--rbmc-blue), var(--rbmc-blue-deep));
  color: var(--rbmc-white);
  box-shadow: 0 16px 30px rgba(29, 79, 119, 0.22);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(29, 79, 119, 0.15);
  color: var(--rbmc-blue);
}

.button-secondary.light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--rbmc-white);
  border-color: rgba(255, 255, 255, 0.22);
}

.full-width {
  width: 100%;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 520px;
  color: var(--rbmc-muted);
  font-size: 0.96rem;
}

.social-proof p {
  margin: 0;
}

.avatars {
  display: flex;
  align-items: center;
}

.avatars span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: block;
  overflow: hidden;
  background: linear-gradient(135deg, var(--rbmc-blue), var(--rbmc-teal));
  margin-left: -8px;
  border: 3px solid var(--rbmc-white);
  flex-shrink: 0;
}

.avatars span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.avatars span:first-child {
  margin-left: 0;
}

.form-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(29, 79, 119, 0.1);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.form-header {
  margin-bottom: 18px;
}

.form-header h2 {
  margin: 12px 0 6px;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.2;
  color: var(--rbmc-slate);
}

.form-header p {
  margin: 0;
  color: var(--rbmc-muted);
}

#tmsForm {
  display: grid;
  gap: 16px;
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-group label {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--rbmc-slate);
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  border: 1px solid rgba(29, 79, 119, 0.15);
  background: #f8fafb;
  border-radius: 12px;
  padding: 0.82rem 0.9rem;
  color: var(--rbmc-slate);
  resize: vertical;
}

.field-group textarea {
  min-height: 100px;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  outline: 3px solid rgba(44, 167, 160, 0.15);
  border-color: rgba(44, 167, 160, 0.5);
}

.privacy-note {
  margin: 0;
  color: var(--rbmc-muted);
  font-size: 0.76rem;
  line-height: 1.5;
  text-align: center;
}

.privacy-note a {
  color: var(--rbmc-blue);
  font-weight: 700;
}

/* ===== Content sections ===== */
.content-section {
  padding: 88px 0;
}

.content-section.alt {
  background: #edf6fb;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.image-panel {
  position: relative;
}

.tms-photo {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.floating-badge {
  position: absolute;
  top: -18px;
  right: -18px;
  background: var(--rbmc-white);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.floating-badge .icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--rbmc-teal);
  color: var(--rbmc-white);
  display: grid;
  place-items: center;
  font-weight: 800;
  flex-shrink: 0;
}

.floating-badge strong {
  display: block;
  font-size: 0.85rem;
  color: var(--rbmc-slate);
}

.floating-badge span {
  font-size: 0.72rem;
  color: var(--rbmc-muted);
}

.text-panel h2,
.section-heading h2,
.cta-box h2 {
  margin: 14px 0 16px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.05em;
  color: var(--rbmc-slate);
}

.text-panel p {
  margin: 0 0 18px;
  color: var(--rbmc-muted);
  font-size: 1.02rem;
}

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

.check-item {
  background: rgba(44, 167, 160, 0.08);
  color: var(--rbmc-slate);
  border: 1px solid rgba(44, 167, 160, 0.18);
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 600;
  font-size: 0.95rem;
}

.section-heading {
  margin-bottom: 36px;
}

.section-heading.center {
  text-align: center;
}

.section-heading p.sub {
  color: var(--rbmc-muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto;
}

.science-heading-logo {
  height: 84px;
  width: auto;
  margin: 20px auto 24px;
}

/* ===== Steps ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  position: relative;
}

.step-card {
  background: var(--rbmc-white);
  border: 1px solid var(--rbmc-border);
  border-radius: 22px;
  padding: 24px 20px 20px;
  box-shadow: 0 12px 28px rgba(29, 79, 119, 0.06);
  position: relative;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--rbmc-blue), var(--rbmc-teal));
  font-weight: 800;
  color: var(--rbmc-white);
  margin-bottom: 16px;
}

.step-card h3,
.provider-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: var(--rbmc-slate);
}

.step-card p {
  margin: 0;
  color: var(--rbmc-muted);
  font-size: 0.95rem;
}

/* ===== CTA strip ===== */
.cta-strip {
  background: var(--rbmc-teal);
  padding: 22px 0;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--rbmc-white);
}

.cta-strip-inner p {
  margin: 0;
  font-weight: 700;
  font-size: 1.05rem;
}

.cta-strip .button-primary {
  background: var(--rbmc-white);
  color: var(--rbmc-teal);
  box-shadow: none;
}

/* ===== Science section ===== */
.science-section {
  background: linear-gradient(180deg, #ffffff 0%, #eef7fa 100%);
}

.science-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.science-card {
  background: var(--rbmc-white);
  border: 1px solid var(--rbmc-border);
  border-radius: 22px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 12px 28px rgba(29, 79, 119, 0.06);
}

.science-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--rbmc-blue), var(--rbmc-teal));
  color: var(--rbmc-white);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 16px;
}

.science-card h3 {
  margin: 0 0 8px;
  color: var(--rbmc-slate);
  font-size: 1.15rem;
}

.science-card p {
  margin: 0;
  color: var(--rbmc-muted);
  font-size: 0.95rem;
}

.science-stats {
  background: linear-gradient(135deg, var(--rbmc-blue), var(--rbmc-blue-deep));
  border-radius: 28px;
  padding: 44px;
  color: var(--rbmc-white);
  margin-bottom: 32px;
}

.science-stats-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.science-stats-text,
.science-stats-photo {
  min-width: 0;
}

.science-stats-text h3 {
  margin: 0 0 14px;
  font-size: 1.7rem;
  line-height: 1.2;
}

.science-stats-lead {
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
  line-height: 1.55;
}

.science-stats-photo {
  position: relative;
}

.science-stats-photo img:first-child {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.science-neurostar-badge {
  position: absolute;
  bottom: -16px;
  left: 16px;
  width: 160px;
  background: var(--rbmc-white);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: var(--shadow-soft);
  z-index: 2;
}

.stats-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.stat-circle {
  width: 148px;
  min-width: 0;
}

.stat-circle span {
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  margin: 0 0 14px;
  border-radius: 50%;
  border: 4px solid #f4cf8f;
  background: rgba(255, 255, 255, 0.06);
  font-size: 1.8rem;
  font-weight: 800;
  color: #f4cf8f;
}

.stat-circle p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.stats-substrip {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stats-substrip strong {
  display: block;
  font-size: 1.3rem;
  color: #f4cf8f;
}

.stats-substrip span {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 160px;
  display: block;
}

.stats-footnote {
  margin: 20px 0 0;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.stats-footnote a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
}

/* ===== Insurance ===== */
.insurance-box {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--rbmc-white);
  border: 1px solid var(--rbmc-border);
  border-radius: 26px;
  padding: 32px;
  box-shadow: 0 12px 28px rgba(29, 79, 119, 0.06);
}

.insurance-box p {
  margin: 0 0 24px;
  color: var(--rbmc-muted);
  font-size: 1.02rem;
  text-align: center;
}

.insurance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.insurance-marquee {
  display: none;
}

.brand-badge {
  min-height: 78px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--rbmc-white);
  border: 1px solid var(--rbmc-border);
  box-shadow: 0 8px 18px rgba(29, 79, 119, 0.05);
  padding: 14px 18px;
}

.brand-badge img {
  max-height: 34px;
  width: auto;
  object-fit: contain;
}

.brand-badge-wordmark span {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--rbmc-slate);
}

.brand-badge-wordmark em {
  font-style: normal;
  color: var(--rbmc-muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.insurance-note {
  margin: 22px 0 0 !important;
  font-size: 0.85rem !important;
}

/* ===== Team ===== */
.team-photo-banner {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
  margin-top: 48px;
  margin-bottom: 18px;
}

.team-photo-caption {
  text-align: center;
  color: var(--rbmc-muted);
  font-size: 0.88rem;
  margin: 0;
}

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

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

.provider-card {
  background: var(--rbmc-white);
  border: 1px solid var(--rbmc-border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(29, 79, 119, 0.06);
}

.provider-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top center;
}

.provider-photo-sua {
  object-position: center 22% !important;
}

.provider-card-body {
  padding: 20px;
}

.provider-card-body p {
  color: var(--rbmc-muted);
  margin: 0;
  font-size: 0.95rem;
}

.provider-role {
  margin: 0 0 10px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rbmc-blue);
}

.tms-team-divider {
  text-align: center;
  margin: 0 0 28px;
}

/* ===== Reviews carousel ===== */
.reviews-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.google-g {
  width: 26px;
  height: 26px;
}

.reviews-header-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--rbmc-slate);
}

.reviews-stars-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  color: #f0b429;
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.reviews-count {
  font-size: 0.85rem;
  letter-spacing: normal;
  color: var(--rbmc-muted);
  font-weight: 600;
}

.reviews-see-all {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--rbmc-blue);
  margin-bottom: 28px;
}

.reviews-see-all:hover {
  text-decoration: underline;
}

.review-carousel {
  max-width: 640px;
  margin: 0 auto 28px;
}

.review-track-wrap {
  overflow: hidden;
}

.review-track {
  display: flex;
  transition: transform 0.5s ease;
}

.review-card {
  flex: 0 0 100%;
  width: 100%;
  background: var(--rbmc-white);
  border: 1px solid var(--rbmc-border);
  border-radius: 20px;
  padding: 30px 32px;
  box-shadow: 0 12px 28px rgba(29, 79, 119, 0.06);
}

.review-stars {
  color: #f0b429;
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-text {
  color: var(--rbmc-text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 18px;
  min-height: 96px;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--rbmc-white);
  font-weight: 800;
  flex-shrink: 0;
}

.review-name {
  font-weight: 800;
  color: var(--rbmc-slate);
  font-size: 0.92rem;
}

.review-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  color: var(--rbmc-muted);
}

.review-badge svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.review-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 20px;
}

.review-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--rbmc-border);
  background: var(--rbmc-white);
  color: var(--rbmc-blue);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 14px rgba(29, 79, 119, 0.08);
}

.review-arrow:hover {
  background: var(--rbmc-blue);
  color: var(--rbmc-white);
}

.review-dots {
  display: flex;
  gap: 8px;
}

.review-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(29, 79, 119, 0.2);
  cursor: pointer;
}

.review-dots button.active {
  background: var(--rbmc-blue);
}

.reviews-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .review-card {
    padding: 28px 22px;
  }
}

/* ===== Office ===== */
.office-collage {
  display: grid;
  gap: 16px;
  margin-bottom: 40px;
}

.office-collage-main {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 380px;
}

.office-collage-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.office-collage-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.office-collage-top,
.office-collage-bottom {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 340px;
}

.office-collage-top img,
.office-collage-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.office-mobile-carousel {
  display: none;
}

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

.office-card {
  background: var(--rbmc-white);
  border: 1px solid var(--rbmc-border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 28px rgba(29, 79, 119, 0.06);
}

.office-card h3 {
  margin: 0 0 18px;
  font-size: 1.2rem;
  color: var(--rbmc-slate);
}

.office-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 18px;
}

.office-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.office-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(29, 79, 119, 0.08);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.office-list .label {
  font-weight: 700;
  color: var(--rbmc-slate);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.office-list .value {
  color: var(--rbmc-muted);
  line-height: 1.5;
}

.office-list .value a {
  color: var(--rbmc-blue);
  font-weight: 600;
}

.map-frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--rbmc-border);
  min-height: 320px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

/* ===== FAQ ===== */
.narrow {
  max-width: 880px;
}

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

.faq-item {
  background: var(--rbmc-white);
  border: 1px solid var(--rbmc-border);
  border-radius: 18px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--rbmc-slate);
  font: inherit;
  font-size: 1.02rem;
  font-weight: 700;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  display: inline-block;
  font-size: 1.6rem;
  color: var(--rbmc-blue);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--rbmc-muted);
}

.faq-item.active .faq-answer {
  max-height: 260px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* ===== Bottom CTA ===== */
.cta-section {
  background: linear-gradient(135deg, #12293e 0%, var(--rbmc-blue-deep) 55%, var(--rbmc-blue) 100%);
  color: var(--rbmc-white);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before,
.cta-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.cta-section::before {
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.12);
  right: -80px;
  top: -160px;
}

.cta-section::after {
  width: 380px;
  height: 380px;
  background: rgba(44, 167, 160, 0.35);
  left: -100px;
  bottom: -160px;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-box h2 {
  margin: 14px 0 0;
  color: var(--rbmc-white);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.05em;
}

.section-kicker.light {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--rbmc-white);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ===== Footer ===== */
.site-footer {
  background: #102736;
  color: var(--rbmc-white);
  padding: 44px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.footer-brand {
  align-items: center;
  margin-bottom: 12px;
}

.footer-brand .brand-name {
  color: var(--rbmc-white);
}

.footer-brand .brand-tag {
  color: rgba(255, 255, 255, 0.65);
}

.site-footer h3 {
  margin: 0 0 10px;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #d8ebf2;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 6px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.9);
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 26px;
  padding-top: 20px;
}

.footer-disclaimer p {
  margin: 0;
  font-size: 0.74rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.5);
}

.footer-disclaimer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 20px;
  padding-top: 16px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
}

/* ===== Fade-up scroll animation ===== */
.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero-grid,
  .two-col,
  .team-grid,
  .steps-grid,
  .science-grid,
  .insurance-grid,
  .office-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .science-stats-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .science-stats-photo img:first-child {
    height: 260px;
  }

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

@media (max-width: 720px) {
  .hero-grid,
  .two-col,
  .team-grid,
  .steps-grid,
  .science-grid,
  .office-grid,
  .footer-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }

  .hero-team-photo-mobile {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center 78%;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    margin-top: 18px;
    margin-bottom: 22px;
  }

  .insurance-grid {
    display: none;
  }

  .insurance-marquee {
    display: block;
    overflow: hidden;
    margin: 0 -24px;
    padding: 0 24px;
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 24px, black calc(100% - 24px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, black 24px, black calc(100% - 24px), transparent 100%);
  }

  .insurance-marquee-track {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: insuranceMarquee 22s linear infinite;
  }

  .insurance-marquee .brand-badge {
    flex: 0 0 150px;
  }

  @keyframes insuranceMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  .office-collage {
    display: none;
  }

  .office-mobile-carousel {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-bottom: 32px;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .office-mobile-carousel img {
    flex: 0 0 78%;
    height: 320px;
    object-fit: contain;
    background: var(--rbmc-white);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    scroll-snap-align: center;
  }

  .science-stats {
    padding: 28px 22px;
  }

  .science-stats-text h3 {
    font-size: 1.35rem;
  }

  .science-stats-lead {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .stats-row {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }

  .stat-circle {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
  }

  .stat-circle span {
    width: 64px;
    height: 64px;
    font-size: 1.05rem;
    border-width: 3px;
    margin: 0;
    flex-shrink: 0;
  }

  .stat-circle p {
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .stats-cite,
  .stats-substrip,
  .stats-footnote {
    display: none;
  }

  .science-stats-photo {
    margin-top: 28px;
  }

  .science-neurostar-badge {
    bottom: 12px;
    left: 12px;
    width: 130px;
    padding: 8px 10px;
  }

  .topbar-inner {
    flex-wrap: wrap;
    padding: 12px 0;
  }

  .phone-pill {
    width: 100%;
  }

  .brand {
    width: 100%;
  }

  .content-section {
    padding: 60px 0;
  }

  .cta-box h2 {
    font-size: 2rem;
  }

  .floating-badge {
    right: 12px;
    top: -14px;
  }

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