@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Besley:ital,wght@0,400..900;1,400..900&display=swap');

:root{
  --navy:#0F1F35;
  --navy2:#162B54;
  --cta:#1743D7;
  --royal:#3561AD;
  --powder:#88BED9;
  --sky:#C8E8FA;
  --pink:#D0A6B5;
  --cream:#ECECE0;
  --cream2:#F3F1EA;
  --hairline:rgba(15,31,53,.10);
  --radius:16px;
  --maxw:1200px;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:'Figtree',system-ui,sans-serif;
  color:var(--navy);
  background:#fff;
  font-size:17px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 32px}

/* ---------- pills ---------- */
.pill{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  border-radius:999px;font-weight:600;font-size:16px;line-height:1;
  padding:16px 28px;cursor:pointer;border:1px solid transparent;
  transition:background .15s ease,color .15s ease;
  min-height:48px;white-space:nowrap;
}
.pill-cta{background:var(--cta);color:#fff}
.pill-cta:hover{background:#1238b8}
.pill-outline{background:transparent;color:var(--navy);border-color:var(--navy)}
.pill-outline:hover{background:rgba(15,31,53,.05)}
.pill-white{background:#fff;color:var(--navy2)}
.pill-white:hover{background:var(--sky)}
.pill-outline-white{background:transparent;color:#fff;border-color:rgba(255,255,255,.7)}
.pill-outline-white:hover{background:rgba(255,255,255,.1)}
.pill-sm{padding:11px 22px;font-size:15px;min-height:40px}
.icon{width:20px;height:20px;stroke:currentColor;stroke-width:1.6;fill:none;stroke-linecap:round;stroke-linejoin:round;flex:none}
.icon-sm{width:17px;height:17px}

/* ---------- header ---------- */
.hdr{
  position:sticky;top:0;z-index:100;
  background:rgba(255,255,255,.78);
  -webkit-backdrop-filter:blur(14px);backdrop-filter:blur(14px);
  border-bottom:1px solid var(--hairline);
}
.hdr-in{
  max-width:var(--maxw);margin:0 auto;padding:0 32px;
  display:flex;align-items:center;gap:28px;height:68px;
}
.hdr-logo img{height:24px;width:auto}
.hdr-nav{display:flex;gap:24px;font-size:15.5px;font-weight:500;margin-left:8px}
.hdr-nav a:hover{color:var(--cta)}
.hdr-right{margin-left:auto;display:flex;align-items:center;gap:20px}
.hdr-emg{display:inline-flex;align-items:center;gap:7px;font-size:15.5px;font-weight:600;color:var(--navy2)}
.hdr-emg:hover{color:var(--cta)}
.hdr-tel{display:inline-flex;align-items:center;gap:7px;font-size:15.5px;font-weight:500}
.hdr-tel:hover{color:var(--cta)}

/* ---------- hero ---------- */
.hero{background:var(--cream2)}
.hero-in{
  max-width:var(--maxw);margin:0 auto;padding:64px 32px 72px;
  display:grid;grid-template-columns:47% 53%;gap:56px;align-items:center;
}
.hero h1{
  font-size:clamp(42px,4.4vw,62px);
  font-weight:340;line-height:1.2;letter-spacing:-.012em;
  margin-bottom:26px;
}
.hero-sub{font-size:19px;line-height:1.65;color:rgba(15,31,53,.82);max-width:44ch;margin-bottom:34px}
.hero-ctas{display:flex;gap:14px;flex-wrap:wrap}
.hero-art{
  position:relative;border-radius:var(--radius);overflow:hidden;
  background:var(--sky);
  aspect-ratio:10/9;
}
.hero-art .amark{
  position:absolute;left:-14%;bottom:-20%;width:92%;opacity:.9;
}
.hero-art .portrait{
  position:absolute;bottom:0;left:50%;transform:translateX(-46%);
  height:96%;width:auto;object-fit:contain;
}

/* ---------- stat strip ---------- */
.stats{background:#fff;border-bottom:1px solid var(--hairline)}
.stats-in{
  max-width:var(--maxw);margin:0 auto;padding:22px 32px;
  display:flex;justify-content:center;align-items:center;flex-wrap:wrap;
}
.stats span{font-size:15.5px;font-weight:500;color:var(--navy);padding:2px 28px;position:relative}
.stats span + span::before{
  content:"";position:absolute;left:0;top:50%;transform:translateY(-50%);
  width:1px;height:22px;background:var(--hairline);
}

/* ---------- sections ---------- */
.sec{padding:76px 0}
.sec-cream{background:var(--cream)}
.sec-cream2{background:var(--cream2)}
h2{font-size:clamp(30px,3vw,40px);font-weight:420;line-height:1.25;letter-spacing:-.01em}
.kicker{font-size:13.5px;font-weight:700;letter-spacing:.09em;text-transform:uppercase;color:var(--royal);margin-bottom:14px}
.sec-head{display:flex;align-items:flex-end;justify-content:space-between;gap:32px;margin-bottom:40px;flex-wrap:wrap}

/* ---------- emergency conversion card ---------- */
.emg-band{padding:56px 0 68px;background:#fff}
.emg-card{
  background:var(--navy2);color:#fff;border-radius:var(--radius);
  box-shadow:0 12px 28px -8px rgba(1,35,104,.28);
  padding:64px;
  display:grid;grid-template-columns:auto 1fr auto;gap:40px;align-items:center;
}
.emg-card h2{font-size:clamp(32px,3.2vw,44px)}
.emg-plate{
  width:56px;height:56px;border-radius:50%;background:rgba(255,255,255,.12);
  display:flex;align-items:center;justify-content:center;flex:none;
}
.emg-plate .icon{width:26px;height:26px;color:var(--sky)}
.emg-card h2{color:#fff;margin-bottom:12px}
.emg-micro{font-size:17px;color:rgba(255,255,255,.78)}
.emg-cta{display:flex;flex-direction:column;align-items:flex-end;gap:12px}
.emg-alt{font-size:14.5px;color:rgba(255,255,255,.7)}
.emg-alt a{text-decoration:underline;text-underline-offset:3px;color:#fff}

/* ---------- tooth replacement mosaic ---------- */
.mosaic{display:grid;grid-template-columns:1fr 1fr 1fr;gap:20px}
.tile{border-radius:var(--radius);overflow:hidden;background:#fff}
.tile-copy{
  background:var(--navy);color:#fff;padding:40px 36px;
  display:flex;flex-direction:column;justify-content:space-between;gap:28px;
}
.tile-copy .rows{display:flex;flex-direction:column}
.tile-copy .row{
  display:flex;align-items:center;justify-content:space-between;
  padding:20px 0;border-top:1px solid rgba(255,255,255,.16);
  font-weight:600;font-size:18px;color:#fff;
}
.tile-copy .row:first-child{border-top:none;padding-top:4px}
.tile-copy .row:hover{color:var(--sky)}
/* long label cannot fit one line in the narrow tile: wrap at word boundary, keep pill + padding */
.tile-copy .pill-outline-white{white-space:normal;text-align:center;line-height:1.35}
.tile-photo figure{display:flex;flex-direction:column;height:100%}
.tile-photo img{width:100%;aspect-ratio:1/1.06;object-fit:cover;flex:1}
.tile-photo figcaption{
  background:#fff;padding:16px 20px;font-size:15.5px;font-weight:600;
  border-top:1px solid var(--hairline);
  display:flex;align-items:center;justify-content:space-between;
}
.startlink{font-size:15.5px}
.startlink a{color:var(--cta);font-weight:600;text-decoration:underline;text-underline-offset:3px}

/* ---------- split (general dentistry / app) ---------- */
.split{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center}
.split-photo{border-radius:var(--radius);overflow:hidden}
.split-photo img{width:100%;aspect-ratio:4/3;object-fit:cover}
.split h2{margin-bottom:30px;max-width:18ch}
.split p{font-size:17.5px;color:rgba(15,31,53,.8);max-width:46ch;margin-bottom:30px}

/* ---------- affordability ---------- */
.pay-tiles{display:grid;grid-template-columns:1fr 1fr 1fr;gap:20px;margin-bottom:34px}
.pay-tile{
  background:#fff;border-radius:var(--radius);padding:34px 30px;
  border:1px solid var(--hairline);
  display:flex;flex-direction:column;gap:10px;
}
.pay-tile h3{font-size:20px;font-weight:600}
.pay-tile a{color:var(--cta);font-weight:600;font-size:16px;margin-top:auto;display:inline-flex;align-items:center;gap:6px}
.pay-tile a:hover{text-decoration:underline;text-underline-offset:3px}
.pay-note{font-size:14.5px;color:rgba(15,31,53,.72)}
.pay-note strong{font-weight:600;color:var(--navy)}

/* ---------- patient proof ---------- */
.proof-grid{display:grid;grid-template-columns:1fr 1fr 1fr;gap:20px}
.proof-card{background:var(--cream2);border-radius:var(--radius);overflow:hidden}
.proof-card img{width:100%;aspect-ratio:4/4.4;object-fit:cover}
.proof-body{padding:26px 28px 30px}
.proof-quote{
  font-family:'Besley',serif;font-style:italic;font-size:18.5px;line-height:1.55;
  margin-bottom:16px;
}
.proof-meta{font-size:14.5px;color:rgba(15,31,53,.72)}
.proof-meta strong{color:var(--navy);font-weight:600}
.proof-note{margin-top:22px;font-size:13.5px;color:rgba(15,31,53,.72)}

/* ---------- veterans ---------- */
.vets-card{
  background:var(--sky);border-radius:var(--radius);
  display:grid;grid-template-columns:1fr 42%;gap:0;overflow:hidden;align-items:center;
}
.vets-copy{padding:56px 60px}
.vets-copy h2{margin-bottom:30px;max-width:16ch}
.vets-copy p{font-size:17px;color:rgba(15,31,53,.8);margin-bottom:28px;max-width:44ch}
.vets-photo{height:100%}
.vets-photo img{width:100%;height:100%;object-fit:cover;min-height:340px}

/* ---------- locator ---------- */
.loc{max-width:720px;margin:0 auto;text-align:center}
.loc h2{margin-bottom:30px}
.loc p{font-size:17px;color:rgba(15,31,53,.78);margin-bottom:30px}
.loc-form{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}
.loc-input{
  flex:1;min-width:220px;max-width:320px;
  border:1px solid rgba(15,31,53,.28);border-radius:999px;
  padding:14px 22px;font-size:16px;font-family:inherit;color:var(--navy);
  background:#fff;
}
.loc-input:focus{outline:2px solid var(--cta);outline-offset:1px;border-color:transparent}

/* ---------- FAQ ---------- */
.faq{max-width:820px;margin:0 auto}
.faq h2{margin-bottom:36px}
.faq details{border-top:1px solid var(--hairline);padding:22px 4px}
.faq details:last-of-type{border-bottom:1px solid var(--hairline)}
.faq summary{
  font-size:19px;font-weight:600;cursor:pointer;list-style:none;
  display:flex;justify-content:space-between;align-items:center;gap:16px;
}
.faq summary::-webkit-details-marker{display:none}
.faq summary .icon{color:var(--royal)}
.faq details[open] summary .icon{transform:rotate(45deg)}
.faq details p{padding-top:12px;font-size:16.5px;color:rgba(15,31,53,.8);max-width:64ch}

/* ---------- app band ---------- */
.badges{display:flex;gap:14px;flex-wrap:wrap}

/* ---------- footer ---------- */
footer{background:var(--navy);color:#fff;margin-top:20px}
.ft-news{
  border-bottom:1px solid rgba(255,255,255,.14);
  padding:44px 0;
}
.ft-news-in{
  max-width:var(--maxw);margin:0 auto;padding:0 32px;
  display:flex;align-items:center;justify-content:space-between;gap:32px;flex-wrap:wrap;
}
.ft-news h3{font-size:21px;font-weight:500}
.ft-form{display:flex;gap:12px;flex-wrap:wrap}
.ft-input{
  background:transparent;border:1px solid rgba(255,255,255,.4);border-radius:999px;
  padding:13px 22px;color:#fff;font-size:15.5px;font-family:inherit;min-width:260px;
}
.ft-input::placeholder{color:rgba(255,255,255,.55)}
.ft-cols{
  max-width:var(--maxw);margin:0 auto;padding:56px 32px 40px;
  display:grid;grid-template-columns:2fr 1fr 1fr 1fr 1fr;gap:40px;
}
.ft-brand img{height:22px;width:auto;margin-bottom:22px}
.ft-social{display:flex;gap:16px;margin-top:6px}
.ft-social a{color:rgba(255,255,255,.75)}
.ft-social a:hover{color:#fff}
.ft-col h4{font-size:13px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:rgba(255,255,255,.6);margin-bottom:18px}
.ft-col a{display:block;font-size:15.5px;color:rgba(255,255,255,.88);padding:6px 0}
.ft-col a:hover{color:var(--sky)}
.ft-legal{
  border-top:1px solid rgba(255,255,255,.14);
  padding:28px 0 40px;
}
.ft-legal-in{max-width:var(--maxw);margin:0 auto;padding:0 32px}
.ft-links{display:flex;gap:24px;flex-wrap:wrap;margin-bottom:18px}
.ft-links a{font-size:14px;color:rgba(255,255,255,.85)}
.ft-links a:hover{text-decoration:underline;text-underline-offset:3px}
.ft-fine{font-size:12.5px;line-height:1.7;color:rgba(255,255,255,.62);max-width:100ch}
.ft-fine p{margin-bottom:6px}

/* ---------- mobile ---------- */
@media (max-width:900px){
  .wrap{padding:0 24px}
  .hdr-in{padding:0 24px;gap:16px;height:60px}
  .hdr-nav{display:none}
  .hdr-tel span{display:none}
  .hdr-emg span{display:none}
  .hdr-right{gap:14px}
  .pill{padding:14px 24px;font-size:15px}
  .hero-ctas .pill,.loc-form .pill,.badges .pill{flex:1 1 auto}
  .hero-in{grid-template-columns:1fr;gap:36px;padding:44px 24px 52px}
  .hero h1{font-size:40px}
  .hero-sub{font-size:17.5px;margin-bottom:28px}
  .hero-art{aspect-ratio:1/1}
  .stats-in{flex-direction:column;align-items:stretch;padding:8px 24px}
  .stats span{padding:12px 0;text-align:center}
  .stats span + span::before{width:48px;height:1px;left:50%;top:0;transform:translateX(-50%)}
  .sec{padding:56px 0}
  .emg-band{padding:40px 0 48px}
  .emg-card{grid-template-columns:1fr;padding:36px 28px;gap:20px}
  .emg-cta{align-items:flex-start}
  .mosaic{grid-template-columns:1fr}
  .split{grid-template-columns:1fr;gap:32px}
  .pay-tiles{grid-template-columns:1fr}
  .proof-grid{grid-template-columns:1fr}
  .vets-card{grid-template-columns:1fr}
  .vets-copy{padding:36px 28px}
  .vets-photo img{min-height:280px}
  .ft-cols{grid-template-columns:1fr 1fr;padding:44px 24px 32px}
  .ft-brand{grid-column:1/-1}
  .ft-news-in{padding:0 24px}
  .ft-legal-in{padding:0 24px}
  .sec-head{margin-bottom:28px}
}
