:root {
  --ink: #081936;
  --muted: #536178;
  --soft: #f5f7fc;
  --line: #dfe4ef;
  --white: #fff;
  --purple: #5030a8;
  --purple-dark: #25135f;
  --green: #35b978;
  --red: #df3029;
  --gold: #d7aa4e;
  --shadow: 0 16px 42px rgba(15, 24, 54, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}
a { color: inherit; }
.wrap { width: min(1280px, calc(100% - 48px)); margin: 0 auto; }
.topbar {
  background: #eef2fb;
  color: #1a2852;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
}
.topbar .wrap {
  display: grid;
  grid-template-columns: 1.35fr 1.15fr 1.15fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 11px 0;
}
.topbar .wrap span:nth-child(2) { text-align: center; }
.topbar .wrap span:nth-child(3) { text-align: right; }
.topbar a {
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.topbar .top-cta {
  padding: 10px 16px;
  color: var(--white);
  background: var(--purple);
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 12px;
  box-shadow: 0 8px 18px rgba(80, 48, 168, .2);
}
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 24px;
}
.brand-image {
  min-width: 240px;
  letter-spacing: 0;
}
.brand-image img {
  display: block;
  width: 236px;
  max-height: 62px;
  object-fit: contain;
  object-position: left center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 250px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.tooth {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--purple);
  border: 3px solid var(--purple);
  border-radius: 12px;
  font-weight: 900;
  letter-spacing: 0;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .25em;
  text-align: center;
}
.links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.links a { text-decoration: none; }
.lang { display: flex; gap: 8px; }
.lang a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfcff;
  color: #263154;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}
.lang a.active { color: var(--white); background: var(--purple); border-color: var(--purple); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  color: var(--white);
  background: var(--purple);
  border: 1px solid var(--purple);
  border-radius: 7px;
  box-shadow: 0 12px 22px rgba(80, 48, 168, .22);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.btn.light { color: var(--purple-dark); background: var(--white); border-color: #c5c9dc; box-shadow: none; }
.home .hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(248, 251, 255, .98) 0%, rgba(248, 251, 255, .92) 33%, rgba(248, 251, 255, .2) 55%, rgba(238, 243, 251, .4) 100%),
    radial-gradient(circle at 63% 45%, rgba(80, 48, 168, .13), transparent 34%);
  border-bottom: 1px solid var(--line);
}
.home .hero .wrap {
  display: grid;
  grid-template-columns: minmax(390px, 500px) minmax(640px, 1fr);
  gap: 0;
  align-items: center;
  min-height: 588px;
  padding: 34px 0 0;
  position: relative;
}
.home .hero-text { position: relative; z-index: 3; padding-bottom: 74px; }
h1 {
  margin: 0;
  font-size: clamp(42px, 4.4vw, 64px);
  line-height: 1.04;
  letter-spacing: 0;
}
.hero-copy {
  margin: 20px 0 0;
  max-width: 590px;
  color: #26324f;
  font-size: 18px;
}
.checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin: 25px 0 30px;
  padding: 0;
  list-style: none;
  font-size: 14px;
  font-weight: 800;
}
.checks li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 9px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(53, 185, 120, .16);
}
.actions { display: flex; flex-wrap: wrap; gap: 14px; }
.home .hero-photo {
  height: 588px;
  margin-right: -24px;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
.home .hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
}
.hero-photo {
  height: 510px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #e8edf5;
}
.hero-photo img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.assistant-card {
  align-self: center;
  background: var(--white);
  border: 1px solid #cfd4e7;
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.home .assistant-card {
  position: absolute;
  right: 8px;
  top: 126px;
  z-index: 6;
  width: 315px;
  border-radius: 9px;
}
.assistant-head {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  font-weight: 900;
}
.assistant-body { padding: 16px; }
.assistant-body p { margin: 0 0 14px; color: var(--muted); font-size: 14px; }
.quick-link {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  padding: 13px 14px;
  background: #f7f8fc;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}
.mini-input {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 42px;
  margin-top: 12px;
  padding: 0 11px;
  color: #9aa3b4;
  background: #fbfcff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
}
.mini-input b {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--white);
  background: var(--purple);
  border-radius: 50%;
}
.feature-row { background: var(--white); border-bottom: 1px solid var(--line); }
.home .feature-row { margin-top: 0; }
.feature-row .wrap { display: grid; grid-template-columns: repeat(5, 1fr); }
.feature {
  min-height: 98px;
  padding: 19px 18px;
  border-right: 1px solid var(--line);
  font-size: 13px;
}
.feature:first-child { border-left: 1px solid var(--line); }
.feature b { display: block; margin-bottom: 5px; font-size: 15px; }
.feature b::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  vertical-align: middle;
  border: 2px solid var(--purple);
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(80, 48, 168, .18), transparent 55%);
}
.feature span { color: var(--muted); }
section { padding: 58px 0; }
.home main > section { padding: 42px 0; }
.home main > .hero { padding: 0; }
.section-title { margin: 0 0 28px; text-align: center; font-size: 30px; line-height: 1.1; }
.section-copy { max-width: 900px; margin: -12px auto 28px; color: var(--muted); text-align: center; }
.services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.home .services {
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(20, 30, 70, .06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(20, 30, 70, .12); }
.service-art {
  position: relative;
  display: grid;
  place-items: end start;
  min-height: 174px;
  padding: 18px;
  color: var(--white);
  background: linear-gradient(135deg, #7b62cf, var(--purple));
  font-size: 46px;
  font-weight: 900;
}
.service-art::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 54px;
  height: 54px;
  border: 2px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  background: rgba(255, 255, 255, .13);
}
.service-art.gold { color: #1e1738; background: linear-gradient(135deg, #f4df9b, var(--gold)); }
.service-art.red { background: linear-gradient(135deg, #f45a51, var(--red)); }
.service-art.green { background: linear-gradient(135deg, #42c887, #087a4d); }
.service-art.photo {
  display: block;
  min-height: 174px;
  padding: 0;
  overflow: hidden;
  background: #eef2fb;
}
.service-art.photo img {
  display: block;
  width: 100%;
  height: 174px;
  object-fit: cover;
  object-position: center;
}
.home .service-art,
.home .service-art.photo {
  min-height: 158px;
}
.home .service-art.photo img {
  height: 158px;
}
.service-art.photo::before {
  content: "";
  position: absolute;
  left: 18px;
  bottom: -24px;
  z-index: 2;
  width: 58px;
  height: 58px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  box-shadow: 0 10px 20px rgba(20, 30, 70, .2);
}
.service-art.photo::after {
  content: "+";
  left: 18px;
  right: auto;
  top: auto;
  bottom: -24px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  border: 0;
  background: transparent;
  font-size: 28px;
  font-weight: 900;
}
.card-body { padding: 18px; }
.home .card-body { padding: 16px 16px 18px; }
.card h3 { margin: 0 0 8px; font-size: 19px; line-height: 1.08; }
.home .card h3 { font-size: 18px; }
.card p { margin: 0 0 18px; min-height: 54px; color: var(--muted); font-size: 14px; }
.home .card p { font-size: 13px; min-height: 58px; }
.learn { color: var(--purple); font-size: 12px; font-weight: 900; text-decoration: none; text-transform: uppercase; }
.seo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.seo-panel, .panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}
.seo-panel h3, .panel h2 { margin: 0 0 12px; }
.seo-panel p, .panel p, .panel li { color: var(--muted); }
.breadcrumb {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.breadcrumb a { color: var(--purple); text-decoration: none; }
.detail-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.detail-list li {
  padding: 14px 16px;
  background: #fbfcff;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--muted);
}
.detail-list b { color: var(--ink); }
.faq {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto;
}
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
}
.faq summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}
.faq p { margin: 12px 0 0; color: var(--muted); }
.insurance { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); text-align: center; }
.insurance-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.logo-strip { margin: 0 0 18px; }
.pill {
  padding: 17px 18px;
  background: #fbfcff;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: #263154;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(20, 30, 70, .04);
}
.logo-strip .pill {
  display: grid;
  place-items: center;
  min-height: 62px;
  background: var(--white);
  font-size: 22px;
}
.pill.uhc { color: #1a61a8; }
.pill.metlife { color: #1d4075; }
.pill.emblem { color: #5030a8; }
.pill.aetna { color: #7c2aa8; text-transform: lowercase; }
.pill.delta { color: #29a84a; }
.urgent { padding: 0 0 58px; }
.urgent-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  padding: 28px 34px;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(223, 48, 41, .22);
}
.urgent h2 { margin: 0 0 7px; font-size: 30px; }
.urgent p { margin: 0; }
.callbox {
  min-width: 280px;
  padding: 18px 22px;
  color: var(--ink);
  background: var(--white);
  border-radius: 7px;
  text-align: center;
  font-weight: 900;
  text-decoration: none;
}
.callbox span { display: block; color: var(--red); font-size: 12px; text-transform: uppercase; }
.callbox strong { display: block; font-size: 26px; }
.lower { display: grid; grid-template-columns: .95fr .95fr 1.1fr; gap: 18px; padding-bottom: 34px; }
.panel { min-height: 260px; }
.panel ul { margin: 0; padding-left: 19px; }
.review-stars { color: #f5bc22; font-size: 22px; letter-spacing: 2px; }
.review-brand {
  color: #4285f4;
  font-size: 22px;
  font-weight: 900;
}
.review-brand span { color: var(--ink); font-size: 15px; }
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 12px 0 14px;
}
.before-after img {
  width: 100%;
  height: 118px;
  object-fit: cover;
  border-radius: 7px;
}
.office-band {
  display: grid;
  grid-template-columns: .75fr 1.35fr .9fr;
  gap: 18px;
  padding-bottom: 58px;
}
.map-panel { padding: 0; overflow: hidden; }
.map-panel iframe { height: 100%; min-height: 250px; border-radius: 8px; }
iframe { width: 100%; height: 220px; border: 0; border-radius: 7px; }
footer { padding: 24px 0 92px; color: rgba(255, 255, 255, .78); background: #0c1831; font-size: 13px; }
footer .wrap { display: flex; justify-content: space-between; gap: 20px; }
footer a { color: var(--white); font-weight: 900; text-decoration: none; }

.ai-launch {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  color: var(--white);
  background: var(--purple);
  border: 0;
  border-radius: 999px;
  box-shadow: var(--shadow);
  cursor: pointer;
  font-weight: 900;
}
.ai-widget {
  position: fixed;
  right: 22px;
  bottom: 86px;
  z-index: 101;
  display: none;
  width: min(390px, calc(100vw - 28px));
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.ai-widget.open { display: block; }
.ai-head { display: flex; justify-content: space-between; padding: 14px 16px; color: var(--white); background: linear-gradient(135deg, var(--purple), var(--purple-dark)); font-weight: 900; }
.ai-close { color: var(--white); background: transparent; border: 0; font-size: 18px; cursor: pointer; }
.ai-body { padding: 16px; }
.ai-body p { margin: 0 0 12px; color: var(--muted); }
.ai-topics { display: grid; gap: 9px; }
.ai-topic {
  padding: 11px 12px;
  background: #f7f8fc;
  border: 1px solid var(--line);
  border-radius: 7px;
  cursor: pointer;
  font-weight: 800;
  text-align: left;
}
.ai-answer { margin-top: 12px; padding: 12px; background: #fbfcff; border: 1px solid var(--line); border-radius: 7px; color: var(--muted); }
.ai-input-row {
  display: grid;
  grid-template-columns: 1fr 46px;
  gap: 8px;
  margin-top: 12px;
}
.ai-input {
  min-height: 42px;
  width: 100%;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  font: inherit;
}
.ai-send {
  min-height: 42px;
  border: 0;
  border-radius: 7px;
  color: var(--white);
  background: var(--purple);
  cursor: pointer;
  font-weight: 900;
}
.ai-actions { display: flex; gap: 8px; margin-top: 12px; }
.ai-actions a { flex: 1; min-height: 40px; padding: 0 10px; font-size: 12px; }

@media (max-width: 1100px) {
  .hero .wrap, .home .hero .wrap { grid-template-columns: 1fr; }
  .home .hero .wrap { padding-bottom: 34px; }
  .home .hero-text { padding-bottom: 0; }
  .home .assistant-card { position: static; width: auto; }
  .home .hero-photo { height: 420px; border-radius: 8px; box-shadow: var(--shadow); }
  .assistant-card { max-width: 520px; }
  .links { display: none; }
  .services, .home .services { grid-template-columns: repeat(2, 1fr); }
  .feature-row .wrap, .lower, .office-band, .insurance-strip, .seo-grid { grid-template-columns: 1fr; }
  .feature, .feature:first-child { border-left: 1px solid var(--line); border-right: 1px solid var(--line); }
  .urgent-box { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .wrap { width: min(100% - 28px, 1420px); }
  .topbar .wrap, .checks, .services, .home .services { grid-template-columns: 1fr; }
  .topbar .wrap span { text-align: left !important; }
  h1 { font-size: 38px; }
  .hero-photo, .home .hero-photo { height: 310px; }
  .nav .wrap, footer .wrap { align-items: flex-start; flex-direction: column; }
  .ai-launch { right: 14px; bottom: 14px; }
  .ai-widget { right: 14px; bottom: 76px; }
}
