:root {
  --m-navy: #123b5d;
  --m-navy-deep: #082a42;
  --m-teal: #007a78;
  --m-teal-bright: #00b99f;
  --m-mint: #dff8f1;
  --m-sky: #e9f5fb;
  --m-cream: #fff9ef;
  --m-white: #ffffff;
  --m-ink: #17324a;
  --m-muted: #5f7484;
  --m-line: #d6e5ea;
  --m-coral: #e24d46;
  --m-gold: #f2b544;
  --m-shadow: 0 28px 70px rgba(18, 59, 93, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; }
button, input { font: inherit; }
a { color: inherit; }
svg { display: block; }

.marketing-body {
  background: var(--m-white);
  color: var(--m-ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  transform: translateY(-160%);
  border-radius: 9px;
  background: var(--m-navy);
  color: #fff;
  padding: 10px 16px;
  text-decoration: none;
}
.skip-link:focus { transform: none; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.marketing-container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

/* Header */
.marketing-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(18, 59, 93, .1);
  background: rgba(255, 255, 255, .93);
  box-shadow: 0 6px 24px rgba(8, 47, 58, .035);
  backdrop-filter: blur(18px);
}
.marketing-header::before {
  position: absolute; top: 0; right: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, #d52b1e 0 33.333%, #f9d616 33.333% 66.666%, #138a42 66.666%);
  content: "";
}
.marketing-nav-wrap {
  display: flex;
  align-items: center;
  width: min(1240px, calc(100% - 48px));
  min-height: 78px;
  margin-inline: auto;
  gap: 30px;
}
.marketing-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
  color: var(--m-navy);
  text-decoration: none;
}
.marketing-brand > span:last-child { display: flex; flex-direction: column; line-height: 1.05; }
.marketing-brand strong { font-size: 20px; letter-spacing: -.035em; }
.marketing-brand small {
  margin-top: 4px;
  color: var(--m-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.brand-symbol {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--m-teal-bright), #08719b);
  box-shadow: 0 7px 18px rgba(7, 113, 155, .26);
}
.brand-symbol svg { width: 25px; height: 25px; }
.brand-symbol path { fill: none; stroke: #fff; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2.25; }
.marketing-links { display: flex; align-items: center; gap: 27px; margin-left: auto; }
.mobile-auth-links { display: none; }
.marketing-links a {
  position: relative;
  color: #3c575e;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}
.marketing-links a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--m-teal);
  content: "";
  transform: scaleX(0);
  transition: transform .2s ease;
}
.marketing-links a:hover::after { transform: scaleX(1); }
.marketing-actions { display: flex; align-items: center; gap: 10px; }
.nav-login, .nav-register {
  border-radius: 10px;
  padding: 10px 15px;
  font-size: 13.5px;
  font-weight: 750;
  text-decoration: none;
  transition: .2s ease;
}
.nav-login { border: 1px solid var(--m-line); color: var(--m-navy); background: #fff; }
.nav-login:hover { border-color: #80c9c4; background: #f1fcf9; }
.nav-register { border: 1px solid #e1a42e; background: linear-gradient(135deg, #f7c451, var(--m-gold)); color: #17324a; box-shadow: 0 8px 20px rgba(211, 151, 32, .24); }
.nav-register:hover { border-color: #d59720; background: linear-gradient(135deg, #ffd36b, #eaaa31); transform: translateY(-1px); }
.marketing-menu { display: none; }

/* Hero */
.hero-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 725px;
  background:
    linear-gradient(112deg, rgba(239, 250, 248, .88), rgba(255, 255, 255, .92) 52%, rgba(235, 246, 252, .7)),
    radial-gradient(circle at 75% 20%, #dff8f1, transparent 45%);
}
.hero-section::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: .42;
  background-image: radial-gradient(rgba(8, 126, 130, .13) 1px, transparent 1px);
  background-size: 25px 25px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 42%, #000);
}
.hero-glow { position: absolute; z-index: -1; border-radius: 50%; filter: blur(2px); }
.hero-glow-one { top: 4%; right: -170px; width: 520px; height: 520px; background: rgba(0, 185, 159, .15); }
.hero-glow-two { bottom: -210px; left: -130px; width: 420px; height: 420px; background: rgba(242, 181, 68, .15); }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(390px, .9fr) minmax(560px, 1.1fr);
  align-items: center;
  gap: 58px;
  min-height: 700px;
  padding-block: 78px 88px;
}
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--m-teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow span { width: 24px; height: 2px; border-radius: 99px; background: var(--m-teal-bright); }
.hero-copy h1 {
  max-width: 650px;
  margin: 20px 0 24px;
  color: var(--m-navy);
  font-size: clamp(43px, 5vw, 67px);
  font-weight: 780;
  letter-spacing: -.055em;
  line-height: 1.04;
}
.hero-copy h1 em { color: var(--m-teal); font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
.hero-lead { max-width: 610px; margin: 0; color: #536b72; font-size: 18px; line-height: 1.72; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.cta-primary, .cta-secondary, .cta-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 52px;
  border-radius: 12px;
  padding: 0 21px;
  font-size: 14.5px;
  font-weight: 760;
  text-decoration: none;
  transition: .2s ease;
}
.cta-primary {
  background: linear-gradient(135deg, var(--m-teal), #086d9a);
  color: #fff;
  box-shadow: 0 12px 28px rgba(7, 103, 144, .25);
}
.cta-primary:hover { box-shadow: 0 15px 36px rgba(7, 103, 144, .34); transform: translateY(-2px); }
.cta-primary span, .cta-white span { font-size: 19px; transition: transform .2s ease; }
.cta-primary:hover span, .cta-white:hover span { transform: translateX(3px); }
.cta-secondary { border: 1px solid #cedfe0; background: rgba(255,255,255,.65); color: var(--m-navy); }
.cta-secondary:hover { border-color: #8fc4c6; background: #fff; }
.play-icon { display: grid; width: 25px; height: 25px; place-items: center; border-radius: 50%; background: #fff0c9; color: #a66600; font-size: 9px; }
.hero-assurances { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 24px; color: #6b7f84; font-size: 12.5px; font-weight: 650; }
.hero-assurances span { display: inline-flex; align-items: center; gap: 6px; }
.hero-assurances i { display: grid; width: 17px; height: 17px; place-items: center; border-radius: 50%; background: var(--m-mint); color: var(--m-teal); font-size: 10px; font-style: normal; }

/* Product preview */
.product-scene { position: relative; padding: 20px 0 30px; perspective: 1200px; }
.product-window {
  position: relative;
  z-index: 3;
  overflow: hidden;
  width: 690px;
  border: 1px solid rgba(17, 91, 101, .18);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 38px 95px rgba(5, 49, 60, .2), 0 8px 25px rgba(5, 49, 60, .09);
  transform: rotateY(-4deg) rotateX(1deg);
  transform-origin: center;
}
.window-bar { display: grid; grid-template-columns: 1fr 2fr 1fr; align-items: center; height: 44px; padding: 0 15px; border-bottom: 1px solid #e6eeee; background: #fbfdfd; }
.window-dots { display: flex; gap: 5px; }
.window-dots i { width: 7px; height: 7px; border-radius: 50%; background: #d5e0e1; }
.window-dots i:first-child { background: #ef806d; }
.window-dots i:nth-child(2) { background: #eabe62; }
.window-dots i:last-child { background: #66bea0; }
.window-title { overflow: hidden; color: #809196; font-size: 9px; text-align: center; text-overflow: ellipsis; white-space: nowrap; }
.window-secure { justify-self: end; color: #3c9b79; font-size: 8px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.window-body { display: grid; grid-template-columns: 123px 1fr; min-height: 390px; }
.preview-sidebar { padding: 18px 10px; background: linear-gradient(180deg, #123f63, #075b60); color: #d2e5e9; }
.preview-logo { display: flex; align-items: center; gap: 6px; margin: 0 5px 24px; color: #fff; font-size: 10px; font-weight: 800; }
.preview-logo span { display: grid; width: 20px; height: 20px; place-items: center; border-radius: 7px; background: linear-gradient(145deg, #00b99f, #f2b544); font-size: 9px; }
.preview-link { display: flex; align-items: center; gap: 7px; margin-bottom: 5px; border-radius: 6px; padding: 7px 8px; font-size: 8px; font-weight: 650; }
.preview-link i { width: 9px; height: 9px; border: 1.5px solid currentColor; border-radius: 3px; opacity: .7; }
.preview-link.active { background: rgba(255,255,255,.13); color: #fff; }
.preview-main { padding: 24px 22px; background: #f4f8f8; }
.preview-heading { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.preview-heading div { display: flex; flex-direction: column; }
.preview-heading small { color: #87989b; font-size: 8px; }
.preview-heading strong { color: #173a42; font-size: 14px; }
.preview-heading button { border: 0; border-radius: 7px; background: linear-gradient(135deg, #007a78, #08719b); color: #fff; padding: 8px 11px; font-size: 8px; font-weight: 750; }
.preview-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 17px; }
.preview-stats > div { display: flex; flex-direction: column; min-height: 72px; border: 1px solid #dfebec; border-radius: 10px; background: #fff; padding: 10px 11px; box-shadow: 0 3px 10px rgba(9, 58, 67, .035); }
.preview-stats small { color: #839397; font-size: 7px; }
.preview-stats strong { margin: 4px 0 1px; color: #153a42; font-size: 15px; }
.preview-stats span { color: #829499; font-size: 7px; }
.preview-stats .up { color: #159876; }
.preview-content { display: grid; grid-template-columns: 1.65fr .8fr; gap: 10px; margin-top: 10px; }
.preview-agenda, .preview-side-card { border: 1px solid #dfebec; border-radius: 10px; background: #fff; padding: 12px; }
.preview-card-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; color: #21434a; font-size: 8px; }
.preview-card-title strong { font-size: 9px; }
.preview-card-title span { color: #138b89; }
.preview-appointment { display: grid; grid-template-columns: 30px 5px 1fr auto; align-items: center; gap: 7px; padding: 9px 0; border-bottom: 1px solid #edf2f2; }
.preview-appointment:last-child { border: 0; }
.preview-appointment time { color: #405c62; font-size: 8px; font-weight: 750; }
.preview-appointment > i { width: 4px; height: 28px; border-radius: 99px; background: #20ac9f; }
.preview-appointment div { display: flex; flex-direction: column; }
.preview-appointment b { color: #28484f; font-size: 8px; }
.preview-appointment small { color: #8a999c; font-size: 7px; }
.status { border-radius: 99px; padding: 3px 5px; font-size: 6px; font-weight: 700; }
.status.confirmed { background: #e1f5ee; color: #168262; }
.status.waiting { background: #fff2d7; color: #9a6b13; }
.preview-side-card { text-align: center; }
.donut { display: grid; width: 74px; height: 74px; margin: 15px auto 8px; place-items: center; border-radius: 50%; background: conic-gradient(#17a292 72%, #e6efef 0); }
.donut::before { grid-area: 1/1; width: 55px; height: 55px; border-radius: 50%; background: #fff; content: ""; }
.donut span { z-index: 1; grid-area: 1/1; color: #173d44; font-size: 17px; font-weight: 800; }
.donut small { font-size: 7px; }
.preview-side-card p { margin: 0 0 12px; color: #7b9094; font-size: 7px; }
.mini-progress { overflow: hidden; height: 4px; border-radius: 99px; background: #e7eeee; }
.mini-progress span { display: block; width: 72%; height: 100%; border-radius: inherit; background: #16a092; }
.preview-side-card > small { display: block; margin-top: 7px; color: #829397; font-size: 7px; text-align: left; }
.floating-card { position: absolute; z-index: 5; display: flex; align-items: center; gap: 9px; border: 1px solid rgba(13, 102, 108, .13); border-radius: 12px; background: rgba(255,255,255,.96); padding: 11px 14px; box-shadow: 0 17px 34px rgba(5, 49, 60, .16); animation: float-card 5s ease-in-out infinite; }
.floating-card > div { display: flex; flex-direction: column; }
.floating-card strong { color: #1b4148; font-size: 10px; }
.floating-card small { color: #809397; font-size: 8px; }
.floating-icon { display: grid; width: 29px; height: 29px; place-items: center; border-radius: 9px; background: #ddf5ec; color: #148964; font-size: 12px; font-weight: 800; }
.floating-icon.message { background: #e1f2f6; color: #0c7a8e; }
.floating-patient { right: -12px; bottom: 1px; }
.floating-reminder { top: 3px; left: 36px; animation-delay: -2.4s; }
@keyframes float-card { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.preview-orbit { position: absolute; z-index: 0; border: 1px solid rgba(8,126,130,.12); border-radius: 50%; }
.preview-orbit-one { top: -60px; right: -100px; width: 400px; height: 400px; }
.preview-orbit-two { right: -30px; bottom: -65px; width: 240px; height: 240px; }

/* Shared sections */
.trust-strip { border-block: 1px solid #e3eeee; background: #fbfdfd; }
.trust-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 82px; overflow-x: auto; scrollbar-width: none; }
.trust-row::-webkit-scrollbar { display: none; }
.trust-row p { flex-shrink: 0; margin: 0; color: #89999c; font-size: 10px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.trust-row span { flex-shrink: 0; color: #456067; font-size: 12px; font-weight: 680; }
.trust-row span::before { margin-right: 7px; color: #20a897; content: "•"; }
.section-space { padding-block: 112px; }
.section-heading h2 { margin: 14px 0 18px; color: var(--m-navy); font-size: clamp(34px, 4vw, 50px); letter-spacing: -.045em; line-height: 1.12; }
.section-heading > p { max-width: 620px; margin: 0; color: var(--m-muted); font-size: 16px; line-height: 1.75; }
.center-heading { text-align: center; }
.center-heading > p { margin-inline: auto; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 55px; }
.feature-card { position: relative; overflow: hidden; min-height: 290px; border: 1px solid var(--m-line); border-radius: 20px; background: #fff; padding: 30px; box-shadow: 0 8px 35px rgba(8, 55, 64, .045); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.feature-card:hover { border-color: #b7d7d8; box-shadow: 0 20px 45px rgba(8, 55, 64, .09); transform: translateY(-4px); }
.feature-card-large { display: grid; grid-column: 1 / -1; grid-template-columns: .9fr 1.1fr; gap: 50px; min-height: 390px; padding: 42px; }
.feature-card h3 { max-width: 440px; margin: 9px 0 12px; color: var(--m-navy); font-size: 24px; letter-spacing: -.025em; line-height: 1.22; }
.feature-card-large h3 { font-size: 31px; }
.feature-card p { margin: 0; color: var(--m-muted); font-size: 14.5px; line-height: 1.72; }
.feature-label { color: var(--m-teal); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.feature-icon { display: grid; width: 47px; height: 47px; margin-bottom: 22px; place-items: center; border-radius: 13px; background: var(--m-mint); color: var(--m-teal); }
.feature-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.feature-checks { display: grid; gap: 8px; margin: 22px 0 0; padding: 0; list-style: none; }
.feature-checks li { display: flex; align-items: center; gap: 8px; color: #456067; font-size: 12.5px; font-weight: 650; }
.feature-checks li::before { display: grid; width: 18px; height: 18px; place-items: center; border-radius: 50%; background: var(--m-mint); color: var(--m-teal); content: "✓"; font-size: 10px; }
.feature-clinical { background: linear-gradient(135deg, #fff, #f1faf8); }
.feature-clinical > div:first-of-type { position: absolute; top: 42px; left: 42px; }
.feature-clinical > div:nth-of-type(2) { padding-top: 70px; }
.clinical-visual { align-self: center; border: 1px solid #d9e8e7; border-radius: 17px; background: rgba(255,255,255,.88); padding: 22px; box-shadow: 0 20px 50px rgba(7, 68, 75, .1); }
.mini-patient { display: flex; align-items: center; gap: 9px; padding-bottom: 16px; border-bottom: 1px solid #e7eeee; }
.mini-patient > i { display: grid; width: 37px; height: 37px; place-items: center; border-radius: 50%; background: #dff3f0; color: #0c7b7c; font-size: 11px; font-style: normal; font-weight: 800; }
.mini-patient div { display: flex; flex: 1; flex-direction: column; }
.mini-patient b { color: #26484e; font-size: 11px; }
.mini-patient small { color: #839598; font-size: 8px; }
.mini-patient > span { border-radius: 99px; background: #e2f5ec; color: #14855f; padding: 4px 7px; font-size: 7px; font-weight: 750; }
.teeth-row { display: flex; justify-content: center; gap: 8px; padding: 26px 0 20px; }
.teeth-row i { position: relative; display: block; width: 25px; height: 35px; border: 1.5px solid #aac2c4; border-radius: 43% 43% 48% 48%; background: #fff; }
.teeth-row i::after { position: absolute; top: 7px; left: 50%; width: 9px; height: 9px; border: 1px solid #ccdbdc; border-radius: 50%; content: ""; transform: translateX(-50%); }
.teeth-row .tooth-alert { border-color: var(--m-coral); box-shadow: inset 0 -8px 0 rgba(242, 117, 91, .18); }
.teeth-row .tooth-done { border-color: #319b90; box-shadow: inset 0 -8px 0 rgba(49, 155, 144, .18); }
.clinical-note { display: flex; align-items: center; gap: 10px; border-radius: 10px; background: #f2f8f7; padding: 10px 12px; }
.clinical-note > span { width: 4px; height: 30px; border-radius: 99px; background: #16a193; }
.clinical-note > div { display: flex; flex-direction: column; }
.clinical-note b { color: #315159; font-size: 9px; }
.clinical-note small { color: #829599; font-size: 8px; }
.feature-security { background: linear-gradient(140deg, #f3fbfa, #fff); }

/* Workflow */
.workflow-section { position: relative; padding-block: 110px; background: linear-gradient(130deg, var(--m-navy), #07577a 55%, #007a78); color: #fff; }
.workflow-section::after { position: absolute; right: 0; bottom: 0; left: 0; height: 4px; background: linear-gradient(90deg, #d52b1e, #f2b544 50%, #138a42); content: ""; opacity: .85; }
.workflow-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: start; gap: 95px; }
.workflow-section .section-heading h2 { color: #fff; }
.workflow-section .section-heading > p { color: #b9d1d3; }
.light-kicker { color: #72ded2; }
.text-link-light { display: inline-flex; align-items: center; gap: 9px; margin-top: 26px; color: #fff; font-size: 14px; font-weight: 750; text-decoration: none; }
.text-link-light span { color: #66d4c9; font-size: 20px; }
.workflow-list { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.workflow-list li { position: relative; display: grid; grid-template-columns: 58px 1fr; gap: 20px; padding: 0 0 35px; }
.workflow-list li:not(:last-child)::before { position: absolute; top: 44px; bottom: 2px; left: 22px; width: 1px; background: rgba(119, 218, 209, .28); content: ""; }
.workflow-list li > span { display: grid; width: 45px; height: 45px; place-items: center; border: 1px solid rgba(115, 223, 211, .43); border-radius: 14px; background: rgba(255,255,255,.07); color: #79ddd4; font-size: 11px; font-weight: 800; }
.workflow-list h3 { margin: 1px 0 6px; font-size: 19px; }
.workflow-list p { max-width: 480px; margin: 0; color: #bcd0d2; font-size: 13.5px; }

/* Actors */
.actors-section { background: var(--m-cream); }
.actors-map { display: grid; grid-template-columns: 1fr 190px 1fr; align-items: center; gap: 20px; margin-top: 58px; }
.actor-card { position: relative; overflow: hidden; min-height: 430px; border: 1px solid var(--m-line); border-radius: 22px; background: #fff; padding: 36px; box-shadow: 0 17px 45px rgba(8, 55, 64, .055); }
.actor-card::after { position: absolute; right: -55px; bottom: -70px; width: 190px; height: 190px; border-radius: 50%; background: var(--m-mint); content: ""; opacity: .55; }
.patient-card::after { background: #e9f0fa; }
.actor-number { position: absolute; top: 30px; right: 32px; color: #dce7e7; font-size: 46px; font-weight: 800; letter-spacing: -.06em; }
.actor-avatar { display: grid; width: 61px; height: 61px; margin-bottom: 27px; place-items: center; border-radius: 18px; background: var(--m-mint); color: var(--m-teal); }
.patient-card .actor-avatar { background: #e9f2fa; color: #397da0; }
.actor-avatar svg { width: 31px; height: 31px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.6; }
.actor-role { color: var(--m-teal); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.patient-card .actor-role { color: #397da0; }
.actor-card h3 { margin: 9px 0 13px; color: var(--m-navy); font-size: 27px; letter-spacing: -.025em; }
.actor-card p { margin: 0; color: var(--m-muted); font-size: 14px; }
.actor-card ul { display: grid; gap: 9px; margin: 25px 0 0; padding: 0; list-style: none; }
.actor-card li { display: flex; align-items: center; gap: 8px; color: #3d5960; font-size: 12.5px; font-weight: 650; }
.actor-card li::before { color: var(--m-teal); content: "✓"; font-weight: 900; }
.patient-card li::before { color: #397da0; }
.actor-connection { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; }
.actor-connection > span { height: 1px; background: repeating-linear-gradient(90deg, #9fc9c8 0 6px, transparent 6px 11px); }
.actor-connection > div { display: grid; width: 58px; height: 58px; margin-inline: 8px; place-items: center; border: 1px solid #cce0df; border-radius: 50%; background: #fff; box-shadow: 0 8px 20px rgba(8, 69, 74, .08); }
.actor-connection svg { width: 27px; }
.actor-connection path { fill: none; stroke: var(--m-teal); stroke-linejoin: round; stroke-width: 2.4; }
.actor-connection small { grid-column: 1 / -1; margin-top: 12px; color: #819496; font-size: 8px; font-weight: 750; letter-spacing: .08em; text-align: center; text-transform: uppercase; }
.intermediary-note { display: flex; align-items: flex-start; gap: 13px; max-width: 790px; margin: 32px auto 0; border: 1px solid #cfe3e1; border-radius: 14px; background: #fff; padding: 15px 18px; }
.intermediary-note svg { flex: 0 0 22px; width: 22px; fill: none; stroke: var(--m-teal); stroke-linecap: round; stroke-width: 1.7; }
.intermediary-note p { margin: 0; color: #587177; font-size: 12.5px; }
.intermediary-note strong { color: #294c53; }

/* Company */
.company-section { padding-block: 115px; background: #fff; }
.company-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: 90px; }
.company-intro h2 { margin: 15px 0 20px; color: var(--m-navy); font-size: clamp(34px, 4vw, 48px); letter-spacing: -.045em; line-height: 1.12; }
.company-intro > p { color: var(--m-muted); font-size: 15.5px; line-height: 1.8; }
.company-values { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 25px; }
.company-values span { border: 1px solid #cfe2e1; border-radius: 99px; background: #f5fbfa; color: #3e6568; padding: 7px 11px; font-size: 10.5px; font-weight: 750; }
.company-cards { display: grid; gap: 13px; }
.company-cards article { position: relative; border: 1px solid var(--m-line); border-radius: 18px; background: #fff; padding: 26px 29px 25px 118px; transition: border-color .2s ease, transform .2s ease; }
.company-cards article:hover { border-color: #a9d1d0; transform: translateX(4px); }
.company-cards article > span { position: absolute; top: 31px; left: 25px; width: 72px; color: var(--m-teal); font-size: 9px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.company-cards article > span::after { display: block; width: 27px; height: 2px; margin-top: 8px; background: #8bd4ca; content: ""; }
.company-cards h3 { margin: 0 0 7px; color: var(--m-navy); font-size: 17px; }
.company-cards p { margin: 0; color: var(--m-muted); font-size: 12.5px; line-height: 1.65; }

/* Security */
.security-section { overflow: hidden; padding-block: 110px; background: linear-gradient(135deg, #eff9f7, #f9fcfc); }
.security-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 95px; }
.security-lock { position: relative; display: grid; width: 300px; height: 300px; margin: auto; place-items: center; }
.lock-shackle { position: absolute; top: 63px; width: 100px; height: 105px; border: 18px solid #0b7c7f; border-bottom: 0; border-radius: 55px 55px 0 0; }
.lock-body { position: relative; z-index: 2; display: grid; width: 148px; height: 121px; margin-top: 74px; place-items: center; border-radius: 27px; background: linear-gradient(145deg, #0b8988, #075968); box-shadow: 0 25px 45px rgba(5, 89, 101, .27); }
.lock-body i { position: relative; width: 17px; height: 36px; border-radius: 9px; background: #b7eee6; }
.lock-body i::before { position: absolute; top: -4px; left: 50%; width: 29px; height: 29px; border-radius: 50%; background: #b7eee6; content: ""; transform: translateX(-50%); }
.security-ring { position: absolute; border: 1px solid rgba(8, 126, 130, .15); border-radius: 50%; }
.ring-one { inset: 13px; }
.ring-two { inset: -47px; }
.security-points { display: grid; gap: 16px; margin-top: 29px; }
.security-points > div { display: grid; grid-template-columns: 40px 1fr; align-items: start; gap: 13px; }
.security-points > div > span { display: grid; width: 37px; height: 37px; place-items: center; border-radius: 11px; background: #fff; color: var(--m-teal); box-shadow: 0 5px 16px rgba(8, 75, 80, .08); font-size: 9px; font-weight: 850; }
.security-points p { display: flex; flex-direction: column; margin: 1px 0 0; }
.security-points strong { color: #24484f; font-size: 13px; }
.security-points small { margin-top: 2px; color: #6e8489; font-size: 11.5px; }

/* Pricing */
.pricing-section { background: #fff; }
.pricing-layout { display: grid; grid-template-columns: 1fr 480px; align-items: center; gap: 100px; }
.pricing-note { display: flex; align-items: center; gap: 10px; max-width: 520px; margin-top: 27px; color: #536e73; font-size: 12.5px; }
.pricing-note i { display: grid; flex: 0 0 24px; width: 24px; height: 24px; place-items: center; border-radius: 50%; background: var(--m-mint); color: var(--m-teal); font-style: normal; font-weight: 900; }
.price-card { position: relative; overflow: hidden; border: 1px solid #cfe0df; border-radius: 25px; background: linear-gradient(145deg, #fff, #f5fbfa); padding: 35px 39px 31px; box-shadow: var(--m-shadow); }
.price-card::before { position: absolute; top: -90px; right: -90px; width: 230px; height: 230px; border-radius: 50%; background: rgba(52, 188, 171, .09); content: ""; }
.price-card-top { position: relative; display: flex; align-items: center; justify-content: space-between; }
.price-card-top > span { color: var(--m-navy); font-size: 13px; font-weight: 800; text-transform: uppercase; }
.price-card-top > strong { border-radius: 99px; background: var(--m-mint); color: #087d75; padding: 6px 10px; font-size: 10px; }
.price-value { display: flex; align-items: flex-start; margin-top: 20px; color: var(--m-navy); font-size: 75px; font-weight: 800; letter-spacing: -.06em; line-height: 1; }
.price-value sup { margin: 11px 4px 0 0; font-size: 24px; letter-spacing: 0; }
.price-value small { align-self: flex-end; margin: 0 0 10px 13px; color: var(--m-muted); font-size: 11px; font-weight: 700; letter-spacing: 0; }
.price-local { margin: 6px 0 22px; color: #72868a; font-size: 11.5px; }
.price-card ul { display: grid; gap: 11px; margin: 0 0 27px; padding: 21px 0 0; border-top: 1px solid #dce8e7; list-style: none; }
.price-card li { display: flex; align-items: center; gap: 9px; color: #3e5a60; font-size: 12.5px; }
.price-card li::before { display: grid; width: 19px; height: 19px; place-items: center; border-radius: 50%; background: var(--m-mint); color: var(--m-teal); content: "✓"; font-size: 9px; font-weight: 900; }
.full-cta { width: 100%; }
.price-foot { display: block; margin-top: 13px; color: #89999c; font-size: 9px; text-align: center; }

/* FAQ and final CTA */
.faq-section { padding-block: 105px; border-top: 1px solid #edf2f2; background: var(--m-cream); }
.faq-layout { display: grid; grid-template-columns: .65fr 1.35fr; align-items: start; gap: 100px; }
.faq-list { display: grid; gap: 10px; }
.faq-list details { border: 1px solid var(--m-line); border-radius: 14px; background: #fff; padding: 0 20px; }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 19px 0; color: #284951; cursor: pointer; font-size: 13.5px; font-weight: 750; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { display: grid; flex: 0 0 25px; width: 25px; height: 25px; place-items: center; border-radius: 50%; background: #eff7f6; color: var(--m-teal); content: "+"; font-size: 17px; font-weight: 500; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { margin: -4px 38px 18px 0; color: var(--m-muted); font-size: 12.5px; }
.final-cta-section { padding: 75px 0; background: #fff; }
.final-cta { display: flex; align-items: center; justify-content: space-between; gap: 40px; overflow: hidden; border-radius: 26px; background: linear-gradient(120deg, #123b5d, #07577a 55%, #007a78); padding: 52px 60px; color: #fff; box-shadow: 0 25px 60px rgba(18, 59, 93, .2); }
.final-cta > div > span { color: #80e1d4; font-size: 10px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.final-cta h2 { margin: 7px 0 5px; font-size: clamp(31px, 4vw, 45px); letter-spacing: -.04em; line-height: 1.1; }
.final-cta p { margin: 0; color: #bcd5d6; font-size: 13.5px; }
.cta-white { flex-shrink: 0; background: #fff; color: var(--m-navy); box-shadow: 0 10px 25px rgba(2, 36, 43, .2); }
.cta-white:hover { transform: translateY(-2px); }

/* Footer */
.marketing-footer { padding: 65px 0 25px; background: var(--m-navy-deep); color: #bfd0d2; }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 65px; }
.footer-brand { color: #fff; }
.footer-brand small { color: #82a5aa; }
.footer-grid > div:first-child p { margin: 18px 0 0; color: #83a0a4; font-size: 12px; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-grid > div:not(:first-child) strong { margin-bottom: 5px; color: #fff; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) a { color: #99b2b5; font-size: 11.5px; text-decoration: none; }
.footer-grid > div:not(:first-child) a:hover { color: #7ce0d4; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; margin-top: 55px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.09); color: #728f93; font-size: 10px; }

/* Focus and motion */
.marketing-body a:focus-visible, .marketing-body button:focus-visible, .marketing-body summary:focus-visible {
  outline: 3px solid rgba(0, 185, 159, .48);
  outline-offset: 3px;
}

@media (max-width: 1180px) {
  .marketing-nav-wrap { gap: 18px; }
  .marketing-links { gap: 18px; }
  .hero-grid { grid-template-columns: .82fr 1.18fr; gap: 35px; }
  .product-window { width: 640px; }
  .window-body { min-height: 370px; }
  .workflow-grid, .company-grid, .security-grid { gap: 60px; }
  .pricing-layout { gap: 60px; }
}

@media (max-width: 1020px) {
  .marketing-links { display: none; }
  .marketing-actions { margin-left: auto; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-copy { max-width: 720px; text-align: center; margin-inline: auto; }
  .hero-lead { margin-inline: auto; }
  .eyebrow, .hero-actions, .hero-assurances { justify-content: center; }
  .product-scene { width: min(720px, 92vw); margin: 20px auto 0; }
  .product-window { width: 100%; transform: none; }
  .trust-row { justify-content: flex-start; }
  .workflow-grid, .company-grid, .security-grid, .pricing-layout, .faq-layout { grid-template-columns: 1fr; }
  .workflow-grid, .company-grid, .security-grid, .pricing-layout, .faq-layout { gap: 55px; }
  .workflow-section .section-heading > p, .company-intro { max-width: 680px; }
  .actors-map { grid-template-columns: 1fr 110px 1fr; }
  .actor-card { padding: 29px; }
  .security-lock { order: 2; }
  .security-section .section-heading { max-width: 700px; }
  .price-card { width: min(520px, 100%); }
  .faq-section { padding-block: 85px; }
}

@media (max-width: 760px) {
  .marketing-container, .marketing-nav-wrap { width: min(100% - 30px, 1180px); }
  .marketing-nav-wrap { min-height: 68px; }
  .marketing-brand strong { font-size: 18px; }
  .brand-symbol { width: 36px; height: 36px; }
  .marketing-actions { display: none; }
  .marketing-menu { display: flex; flex-direction: column; justify-content: center; gap: 4px; width: 42px; height: 42px; margin-left: auto; border: 1px solid var(--m-line); border-radius: 11px; background: #fff; padding: 0 11px; cursor: pointer; }
  .marketing-menu > span:not(.sr-only) { display: block; width: 100%; height: 2px; border-radius: 99px; background: var(--m-navy); transition: .2s ease; }
  .marketing-nav-open .marketing-menu > span:first-child { transform: translateY(6px) rotate(45deg); }
  .marketing-nav-open .marketing-menu > span:nth-child(2) { opacity: 0; }
  .marketing-nav-open .marketing-menu > span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .marketing-links { position: fixed; top: 68px; right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; border-bottom: 1px solid var(--m-line); background: #fff; padding: 12px 20px 20px; box-shadow: 0 20px 35px rgba(8,47,58,.12); }
  .marketing-nav-open .marketing-links { display: flex; }
  .marketing-links a { border-bottom: 1px solid #eef3f3; padding: 13px 4px; }
  .marketing-links a::after { display: none; }
  .mobile-auth-links { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 13px; }
  .mobile-auth-links a { display: grid; min-height: 44px; place-items: center; border: 1px solid var(--m-line); border-radius: 10px; padding: 8px; text-align: center; }
  .mobile-auth-links .mobile-register { border-color: var(--m-navy); background: var(--m-navy); color: #fff; }
  .hero-grid { min-height: auto; padding-block: 65px 70px; }
  .hero-copy h1 { margin-top: 16px; font-size: clamp(39px, 12vw, 58px); }
  .hero-lead { font-size: 16px; }
  .window-body { grid-template-columns: 1fr; min-height: 340px; }
  .preview-sidebar { display: none; }
  .preview-main { padding: 20px 16px; }
  .floating-reminder { left: 8px; }
  .floating-patient { right: 7px; }
  .section-space, .company-section, .security-section, .workflow-section { padding-block: 80px; }
  .section-heading h2, .company-intro h2 { font-size: 36px; }
  .feature-grid { grid-template-columns: 1fr; margin-top: 40px; }
  .feature-card-large { grid-column: auto; grid-template-columns: 1fr; gap: 30px; padding: 30px; }
  .feature-clinical > div:first-of-type { position: static; }
  .feature-clinical > div:nth-of-type(2) { padding-top: 0; }
  .feature-card-large h3 { font-size: 26px; }
  .actors-map { grid-template-columns: 1fr; }
  .actor-connection { grid-template-columns: 1fr; justify-items: center; padding: 5px 0; }
  .actor-connection > span { width: 1px; height: 35px; background: repeating-linear-gradient(180deg, #9fc9c8 0 6px, transparent 6px 11px); }
  .actor-connection > div { margin: 7px 0; }
  .actor-connection small { margin-top: 7px; }
  .company-cards article { padding: 25px; }
  .company-cards article > span { position: static; display: block; width: auto; margin-bottom: 12px; }
  .company-cards article > span::after { display: none; }
  .security-lock { width: 250px; height: 250px; transform: scale(.82); }
  .pricing-layout { gap: 40px; }
  .final-cta { align-items: flex-start; flex-direction: column; padding: 40px 32px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr; gap: 45px 30px; }
}

@media (max-width: 520px) {
  .marketing-container, .marketing-nav-wrap { width: calc(100% - 24px); }
  .marketing-brand small { display: none; }
  .hero-grid { padding-top: 52px; }
  .eyebrow { font-size: 10px; }
  .hero-copy h1 { font-size: 39px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .cta-primary, .cta-secondary { width: 100%; }
  .hero-assurances { gap: 9px 15px; }
  .product-scene { width: 100%; padding-bottom: 52px; }
  .window-bar { grid-template-columns: 1fr 2fr; }
  .window-secure { display: none; }
  .preview-heading { align-items: flex-start; }
  .preview-heading button { display: none; }
  .preview-stats { grid-template-columns: repeat(2, 1fr); }
  .preview-stats > div:last-child { display: none; }
  .preview-content { grid-template-columns: 1fr; }
  .preview-side-card { display: none; }
  .floating-card { padding: 9px 11px; }
  .floating-reminder { top: -2px; }
  .floating-patient { bottom: 5px; }
  .trust-row { min-height: 70px; }
  .section-heading h2, .company-intro h2 { font-size: 32px; }
  .feature-card, .feature-card-large { min-height: auto; border-radius: 17px; padding: 25px; }
  .clinical-visual { padding: 14px; }
  .teeth-row { gap: 5px; }
  .teeth-row i { width: 20px; height: 30px; }
  .workflow-grid, .company-grid, .security-grid, .faq-layout { gap: 42px; }
  .actor-card { min-height: auto; padding: 27px 24px 31px; }
  .actor-number { right: 24px; }
  .intermediary-note { flex-direction: column; }
  .security-lock { margin-block: -25px; }
  .price-card { border-radius: 20px; padding: 28px 23px 25px; }
  .price-card-top { align-items: flex-start; flex-direction: column; gap: 10px; }
  .price-value { font-size: 65px; }
  .faq-list details { padding: 0 15px; }
  .final-cta-section { padding: 45px 0; }
  .final-cta { border-radius: 20px; padding: 34px 24px; }
  .cta-white { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
