:root {
    --ink: #101828;
    --ink-soft: #344054;
    --muted: #667085;
    --line: #d9e2ef;
    --surface: #ffffff;
    --surface-soft: #f5f8fc;
    --blue: #1769ff;
    --blue-dark: #0c4dcc;
    --cyan: #0da6c9;
    --green: #119b70;
    --orange: #ec8a19;
    --red: #e34d59;
    --shadow: 0 20px 55px rgba(16, 24, 40, .10);
    --font: "Montserrat", "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
}
button, input, select, textarea { font: inherit; letter-spacing: 0; }
a { color: inherit; }
img { display: block; max-width: 100%; }
.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;
}
.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    background: #fff;
    border: 2px solid var(--blue);
    border-radius: 4px;
    color: var(--ink);
    font-weight: 800;
    transform: translateY(-160%);
}
.skip-link:focus { transform: none; }
.section-shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 104px 0; }

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    height: 72px;
    color: #fff;
    background: rgba(17, 24, 39, .96);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(16px);
    transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.site-header.is-scrolled { background: rgba(17, 24, 39, .985); border-bottom-color: rgba(255, 255, 255, .13); box-shadow: 0 12px 28px rgba(15, 23, 42, .2); }
.nav-shell {
    width: min(1240px, calc(100% - 40px));
    height: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    text-decoration: none;
    font-size: 19px;
    font-weight: 900;
}
.brand img { width: 40px; height: 40px; border-radius: 8px; }
.site-nav { display: flex; justify-content: center; align-items: center; gap: 25px; }
.site-nav a {
    position: relative;
    color: #d5dae3;
    text-decoration: none;
    font-size: 13px;
    font-weight: 750;
}
.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 2px;
    background: #44c59a;
    transition: right .2s ease;
}
.site-nav a:hover, .site-nav a:focus-visible { color: #fff; }
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 9px; }
.menu-button {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    place-items: center;
    color: #fff;
    background: transparent;
    border: 1px solid #485469;
    border-radius: 6px;
    cursor: pointer;
}

.button {
    min-height: 42px;
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    font-size: 13px;
    font-weight: 850;
    line-height: 1.2;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button:focus-visible, button:focus-visible, summary:focus-visible, a:focus-visible { outline: 3px solid rgba(23, 105, 255, .34); outline-offset: 3px; }
.button-primary { color: #fff; background: var(--blue); border-color: var(--blue); box-shadow: 0 10px 22px rgba(23, 105, 255, .25); }
.button-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); }
.button-quiet { color: #e6eaf0; background: transparent; border-color: #485469; }
.button-quiet:hover { color: #fff; background: #293244; }
.button-light { color: var(--ink); background: #fff; border-color: #fff; box-shadow: 0 12px 28px rgba(16, 24, 40, .13); }
.button-light:hover { border-color: #cbd5e1; }
.button-outline { color: var(--blue-dark); background: #fff; border-color: #9fc2ff; }
.button-outline:hover { background: #f1f6ff; border-color: var(--blue); }
.button-large { min-height: 50px; padding: 13px 21px; font-size: 14px; }

.hero {
    position: relative;
    min-height: min(720px, calc(100svh - 120px));
    overflow: hidden;
    isolation: isolate;
    background-color: #f4f8fc;
    background-image: var(--hero-image);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.hero-shade {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: rgba(255, 255, 255, .30);
}
.hero-inner {
    width: min(1180px, calc(100% - 40px));
    min-height: inherit;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.hero-copy { width: min(610px, 58%); padding: 62px 0 74px; }
.eyebrow, .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-dark);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}
.eyebrow {
    padding: 8px 11px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(151, 187, 245, .82);
    border-radius: 6px;
}
.hero h1 {
    margin: 17px 0 4px;
    font-size: clamp(58px, 7.6vw, 104px);
    line-height: .96;
    font-weight: 900;
}
.hero-title { margin: 0 0 18px; color: #163765; font-size: clamp(23px, 2.7vw, 37px); line-height: 1.16; font-weight: 800; }
.hero-lead { max-width: 600px; margin: 0; color: #344054; font-size: 18px; line-height: 1.62; font-weight: 620; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 29px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 20px; margin: 24px 0 0; padding: 0; list-style: none; }
.hero-points li { display: flex; align-items: center; gap: 7px; color: #344054; font-size: 12px; font-weight: 800; }
.hero-points i { color: var(--green); }

.proof-strip { position: relative; z-index: 3; background: #fff; border-bottom: 1px solid var(--line); }
.proof-grid { min-height: 112px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.proof-grid > div { min-height: 62px; padding: 9px 22px; display: flex; align-items: center; gap: 13px; border-right: 1px solid var(--line); }
.proof-grid > div:first-child { padding-left: 0; }
.proof-grid > div:last-child { padding-right: 0; border-right: 0; }
.proof-grid > div > i { flex: 0 0 auto; width: 38px; height: 38px; display: grid; place-items: center; color: var(--blue); background: #edf4ff; border-radius: 6px; }
.proof-grid span { display: block; color: var(--muted); font-size: 11px; line-height: 1.45; font-weight: 650; }
.proof-grid strong { display: block; margin-bottom: 2px; color: var(--ink); font-size: 13px; font-weight: 850; }

.section-heading { max-width: 690px; margin-bottom: 38px; }
.section-heading.centered { margin-right: auto; margin-left: auto; text-align: center; }
.section-heading h2, .security-copy h2, .final-cta h2 {
    margin: 9px 0 12px;
    font-size: clamp(32px, 4.2vw, 52px);
    line-height: 1.12;
    font-weight: 900;
}
.section-heading p, .security-copy p, .final-cta p { margin: 0; color: var(--muted); font-size: 17px; line-height: 1.65; font-weight: 560; }

.product-section { background: #f5f8fc; }
.real-product-showcase { width: 100%; max-width: 100%; min-width: 0; overflow: hidden; background: #fff; border: 1px solid #c9d7e8; border-radius: 8px; box-shadow: 0 28px 64px rgba(18, 38, 69, .14); }
.real-product-toolbar { min-width: 0; padding: 14px 16px; display: flex; align-items: center; gap: 18px; background: #fff; border-bottom: 1px solid #dce5ef; }
.real-product-toolbar-title { flex: 0 0 205px; display: flex; align-items: center; gap: 10px; }
.real-product-toolbar-title img { width: 38px; height: 38px; padding: 8px; background: #edf5ff; border: 1px solid #c9ddff; border-radius: 7px; }
.real-product-toolbar-title span, .real-product-toolbar-title small, .real-product-toolbar-title strong { display: block; }
.real-product-toolbar-title small { color: #7a889d; font-size: 8px; font-weight: 850; text-transform: uppercase; }
.real-product-toolbar-title strong { margin-top: 1px; color: var(--ink); font-size: 13px; }
.real-product-tabs { min-width: 0; flex: 1 1 auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.real-product-tabs button { min-width: 0; min-height: 56px; padding: 8px 11px; display: flex; align-items: center; gap: 10px; color: #415169; background: #f8fafc; border: 1px solid #dce5ef; border-radius: 7px; font: inherit; text-align: left; cursor: pointer; box-shadow: 0 2px 5px rgba(18, 38, 69, .03); transition: color .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.real-product-tabs button:hover { color: #143e82; background: #f2f7ff; border-color: #b8d0f4; box-shadow: 0 7px 16px rgba(27, 83, 167, .09); transform: translateY(-1px); }
.real-product-tabs button.is-active { color: #0d4dc2; background: #eef5ff; border-color: #73a7ff; box-shadow: 0 8px 20px rgba(23, 105, 255, .13), inset 0 -2px 0 #1769ff; }
.real-product-tabs button:focus-visible { outline: 3px solid rgba(89, 160, 255, .38); outline-offset: 2px; }
.product-tab-icon { flex: 0 0 auto; width: 32px; height: 32px; display: grid; place-items: center; color: #527093; background: #fff; border: 1px solid #d9e4f1; border-radius: 6px; }
.real-product-tabs button.is-active .product-tab-icon { color: #fff; background: var(--blue); border-color: var(--blue); box-shadow: 0 6px 13px rgba(23, 105, 255, .24); }
.product-tab-copy, .product-tab-copy strong, .product-tab-copy small { min-width: 0; display: block; }
.product-tab-copy strong { overflow: hidden; color: inherit; font-size: 11px; text-overflow: ellipsis; white-space: nowrap; }
.product-tab-copy small { margin-top: 2px; overflow: hidden; color: #7b899d; font-size: 8px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.real-product-tabs button.is-active .product-tab-copy small { color: #5274a8; }
.real-product-frame { width: 100%; max-width: 100%; min-width: 0; padding: 20px 20px 16px; overflow: hidden; background: #edf2f8; }
.real-product-panel { margin: 0; background: transparent; }
.real-product-panel[hidden] { display: none; }
.real-product-panel img { width: 100%; height: auto; aspect-ratio: 3 / 2; display: block; object-fit: cover; object-position: top center; background: #f4f7fb; border: 1px solid #c9d5e4; border-radius: 7px; box-shadow: 0 18px 38px rgba(18, 38, 69, .12); }
.real-product-panel figcaption { min-height: 58px; padding: 14px 3px 2px; display: flex; justify-content: space-between; align-items: center; gap: 22px; color: #5e6e83; font-size: 11px; font-weight: 650; }
.real-product-panel figcaption strong { color: var(--ink); font-size: 13px; }
.real-product-panel figcaption span { text-align: right; }
.product-window { overflow: hidden; background: #fff; border: 1px solid #cad7e7; border-radius: 8px; box-shadow: var(--shadow); }
.window-topbar { min-height: 62px; padding: 9px 16px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; background: #111827; color: #fff; }
.window-brand { display: flex; align-items: center; gap: 9px; font-size: 13px; }
.window-brand img { width: 30px; height: 30px; border-radius: 6px; }
.window-tabs { display: flex; gap: 5px; }
.window-tabs button { min-height: 34px; padding: 7px 12px; color: #cbd5e1; background: transparent; border: 1px solid transparent; border-radius: 5px; font-size: 11px; font-weight: 800; cursor: pointer; }
.window-tabs button:hover { color: #fff; background: #253047; }
.window-tabs button.is-active { color: #fff; background: #263650; border-color: #425675; }
.window-user { justify-self: end; color: #cbd5e1; font-size: 10px; font-weight: 750; }
.demo-panel { min-height: 530px; display: grid; grid-template-columns: 182px minmax(0, 1fr); }
.demo-panel[hidden] { display: none; }
.demo-sidebar { padding: 22px 12px; display: grid; align-content: start; gap: 5px; background: #f8fafc; border-right: 1px solid #dce4ef; }
.demo-sidebar span { min-height: 38px; padding: 9px 10px; display: flex; align-items: center; gap: 10px; color: #607089; border-radius: 5px; font-size: 10px; font-weight: 750; }
.demo-sidebar span i { width: 16px; color: #8190a5; text-align: center; }
.demo-sidebar span.active { color: #145dcc; background: #e9f1ff; }
.demo-sidebar span.active i { color: var(--blue); }
.demo-workspace { min-width: 0; padding: 28px 30px; background: #fff; }
.demo-page-title { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.demo-page-title span, .patient-head small { color: #7a899d; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.demo-page-title h3, .patient-head h3 { margin: 2px 0 0; font-size: 21px; line-height: 1.2; }
.demo-page-title button { min-height: 36px; padding: 8px 12px; color: #fff; background: var(--blue); border: 0; border-radius: 5px; font-size: 10px; font-weight: 800; }
.demo-stats { margin-top: 22px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.demo-stats > div { min-width: 0; padding: 15px; position: relative; border: 1px solid #dce5f0; border-radius: 6px; background: #fff; }
.demo-stats i { position: absolute; top: 13px; right: 13px; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 5px; background: #f1f5f9; }
.blue { color: var(--blue) !important; }.green { color: var(--green) !important; }.orange { color: var(--orange) !important; }.cyan { color: var(--cyan) !important; }.red { color: var(--red) !important; }
.demo-stats strong { display: block; font-size: 22px; line-height: 1.15; }
.demo-stats span { display: block; margin-top: 5px; color: #718096; font-size: 9px; font-weight: 750; }
.demo-columns { margin-top: 13px; display: grid; grid-template-columns: 1.55fr .85fr; gap: 12px; }
.demo-list { overflow: hidden; border: 1px solid #dce5f0; border-radius: 6px; }
.demo-card-head { min-height: 45px; padding: 11px 14px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #e5eaf1; }
.demo-card-head strong { font-size: 11px; }.demo-card-head span { color: var(--blue); font-size: 9px; font-weight: 800; }
.appointment { min-height: 66px; padding: 10px 13px; display: grid; grid-template-columns: 43px 28px 1fr auto; align-items: center; gap: 9px; border-bottom: 1px solid #edf0f5; }
.appointment:last-child { border-bottom: 0; }
.appointment time { color: #4b5d75; font-size: 9px; font-weight: 850; }
.avatar { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; font-size: 8px; font-weight: 850; }
.av-blue { color: #145dcc; background: #e7f0ff; }.av-green { color: #087a56; background: #e3f8ef; }.av-orange { color: #ad5d09; background: #fff0da; }
.appointment p { min-width: 0; margin: 0; }.appointment p strong, .appointment p small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.appointment p strong { font-size: 10px; }.appointment p small { margin-top: 3px; color: #7d899b; font-size: 8px; font-weight: 600; }
.appointment em { padding: 4px 6px; color: #087a56; background: #e6f8f0; border-radius: 4px; font-size: 7px; font-style: normal; font-weight: 850; }
.appointment em.waiting { color: #a65a0c; background: #fff2df; }
.pending-list > p { min-height: 66px; margin: 0; padding: 12px 13px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #edf0f5; }
.pending-list > p:last-child { border: 0; }.pending-list > p > i { width: 22px; text-align: center; }
.pending-list span, .pending-list strong, .pending-list small { display: block; }.pending-list strong { font-size: 9px; }.pending-list small { margin-top: 3px; color: #7d899b; font-size: 8px; font-weight: 600; }
.product-note { margin: 18px 0 0; color: #68778b; text-align: center; font-size: 11px; font-weight: 650; }.product-note i { margin-right: 5px; color: var(--blue); }

.patient-head { padding-bottom: 18px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px; border-bottom: 1px solid #e1e7ef; }
.patient-avatar { width: 46px; height: 46px; display: grid; place-items: center; color: #145dcc; background: #e7f0ff; border-radius: 6px; font-size: 12px; font-weight: 850; }
.patient-head p { margin: 4px 0 0; color: #718096; font-size: 9px; font-weight: 650; }
.status-ok { padding: 6px 8px; color: #087a56; background: #e7f8f1; border-radius: 4px; font-size: 8px; font-weight: 800; }
.record-tabs { display: flex; gap: 22px; margin: 0 -30px; padding: 14px 30px 0; border-bottom: 1px solid #dfe6ef; }
.record-tabs span { padding: 0 1px 10px; color: #6e7e94; font-size: 9px; font-weight: 750; }.record-tabs span.active { color: var(--blue); border-bottom: 2px solid var(--blue); }
.odontogram-demo { margin-top: 18px; padding: 16px; border: 1px solid #dae4f0; border-radius: 6px; background: #fbfdff; }
.odontogram-toolbar { display: flex; align-items: center; gap: 13px; color: #64748b; font-size: 8px; font-weight: 700; }.odontogram-toolbar strong { margin-right: auto; color: var(--ink); font-size: 11px; }.odontogram-toolbar i { font-size: 7px; }
.teeth-row { margin: 24px 0 20px; padding: 16px 8px; display: grid; grid-template-columns: repeat(8, 1fr); gap: 8px; background: #fff; border: 1px solid #e5eaf1; border-radius: 5px; }
.teeth-row > div { position: relative; min-width: 0; text-align: center; }.teeth-row img { width: 54px; height: 76px; margin: 0 auto 5px; object-fit: contain; }.teeth-row span { display: block; color: #3d4a5c; font-size: 8px; font-weight: 800; }
.teeth-row .tooth-caries::after { content: ""; position: absolute; width: 14px; height: 14px; left: calc(50% - 7px); top: 27px; background: rgba(227, 77, 89, .78); border-radius: 50%; }.teeth-row .tooth-restored::after { content: ""; position: absolute; width: 16px; height: 7px; left: calc(50% - 8px); top: 19px; background: rgba(23, 105, 255, .78); border-radius: 3px; }
.record-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }.record-summary > div { padding: 11px; display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid #e0e7f0; border-radius: 5px; }.record-summary i { width: 25px; text-align: center; }.record-summary span, .record-summary small, .record-summary strong { display: block; }.record-summary small { color: #7c8999; font-size: 7px; }.record-summary strong { margin-top: 2px; font-size: 9px; }

.finance-summary { margin-top: 22px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; }.finance-summary > div { padding: 17px; border: 1px solid #dce5f0; border-radius: 6px; }.finance-summary small, .finance-summary strong, .finance-summary em { display: block; }.finance-summary small { color: #738198; font-size: 8px; font-weight: 750; }.finance-summary strong { margin: 4px 0 5px; font-size: 21px; }.finance-summary em { color: var(--green); font-size: 7px; font-style: normal; font-weight: 750; }.finance-summary em.neutral { color: var(--blue); }.finance-summary em.warning { color: var(--orange); }
.finance-table { margin-top: 13px; overflow: hidden; border: 1px solid #dce5f0; border-radius: 6px; }.finance-table .table-head { min-height: 48px; background: #f8fafc; }.finance-table > div { min-height: 59px; padding: 10px 15px; display: grid; grid-template-columns: 1.3fr 1fr .6fr .55fr; align-items: center; gap: 10px; border-bottom: 1px solid #e8edf3; font-size: 9px; }.finance-table > div:last-child { border: 0; }.finance-table .table-head { grid-template-columns: 1fr auto; }.finance-table span { color: #627087; font-weight: 650; }.finance-table span:first-child { color: var(--ink); font-weight: 750; }.finance-table span i { margin-right: 7px; }.finance-table strong { text-align: right; }.finance-table strong.out { color: var(--orange); }.finance-table em { padding: 4px 6px; color: #087a56; background: #e6f8f0; border-radius: 4px; text-align: center; font-size: 7px; font-style: normal; font-weight: 800; }

.workflow-section { background: #fff; }
.workflow-list { border-top: 1px solid var(--line); }
.workflow-list article { min-height: 180px; padding: 32px 0; display: grid; grid-template-columns: 44px 50px minmax(0, 1.2fr) minmax(250px, .8fr); align-items: start; gap: 20px; border-bottom: 1px solid var(--line); }
.workflow-number { padding-top: 13px; color: #98a4b3; font-size: 12px; font-weight: 850; }
.workflow-icon { width: 48px; height: 48px; display: grid; place-items: center; background: #edf4ff; border-radius: 6px; font-size: 18px; }
.workflow-icon.green { background: #e7f8f1; }.workflow-icon.orange { background: #fff1df; }
.workflow-list h3 { margin: 6px 0 7px; font-size: 20px; }.workflow-list p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.workflow-list ul { margin: 4px 0 0; padding: 0; display: grid; gap: 8px; list-style: none; }.workflow-list li { color: var(--ink-soft); font-size: 12px; font-weight: 700; }.workflow-list li::before { content: ""; width: 6px; height: 6px; margin-right: 9px; display: inline-block; background: var(--green); border-radius: 50%; }

.security-section { color: #fff; background: #121c2c; border-top: 4px solid var(--green); }
.security-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 88px; align-items: center; }
.section-kicker.light { color: #63ddb4; }.security-copy p { color: #b8c4d5; }.security-copy .button { margin-top: 26px; }
.security-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.security-list > div { min-height: 145px; padding: 21px; display: flex; align-items: flex-start; gap: 13px; background: #19263a; border: 1px solid #2d3d54; border-radius: 7px; }
.security-list i { flex: 0 0 auto; width: 36px; height: 36px; display: grid; place-items: center; color: #55d5aa; background: #213b43; border-radius: 5px; }
.security-list span, .security-list strong { display: block; }.security-list span { color: #adbacb; font-size: 12px; line-height: 1.6; }.security-list strong { margin: 1px 0 5px; color: #fff; font-size: 13px; }

.pricing-section { background: #f6f9fc; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 14px; }.pricing-grid.single { max-width: 430px; margin: 0 auto; grid-template-columns: 1fr; }
.price-card { padding: 25px; display: flex; flex-direction: column; background: #fff; border: 1px solid #d7e1ed; border-radius: 8px; }.price-card.featured { border: 2px solid var(--blue); box-shadow: 0 18px 42px rgba(23, 105, 255, .12); }
.price-card-top { min-height: 55px; display: flex; justify-content: space-between; gap: 10px; align-items: flex-start; }.price-card h3 { margin: 3px 0 0; font-size: 22px; }.recommended { display: block; color: var(--blue); font-size: 9px; font-weight: 900; text-transform: uppercase; }.discount { padding: 5px 7px; color: #087a56; background: #e6f8f0; border-radius: 4px; font-size: 8px; font-weight: 850; }
.price-card > p { min-height: 68px; margin: 12px 0 18px; color: var(--muted); font-size: 12px; line-height: 1.6; }
.price { min-height: 104px; padding-bottom: 18px; border-bottom: 1px solid #e4e9f0; }.price del { display: block; color: #8b96a7; font-size: 11px; font-weight: 700; }.price strong { display: inline-block; margin-top: 2px; font-size: 35px; line-height: 1.1; }.price span { margin-left: 5px; color: #718096; font-size: 9px; font-weight: 750; }.price .price-total { display: block; margin-top: 6px; color: #43536a; font-size: 10px; font-weight: 800; }
.price-card ul { margin: 20px 0 24px; padding: 0; display: grid; gap: 11px; list-style: none; }.price-card li { color: #344054; font-size: 12px; font-weight: 700; }.price-card li i { width: 17px; color: var(--green); }.price-card .button { width: 100%; margin-top: auto; }
.pricing-note { margin: 19px 0 0; color: #6c798c; text-align: center; font-size: 10px; font-weight: 650; }.empty-plans { grid-column: 1 / -1; padding: 30px; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: 8px; }

.faq-section { background: #fff; }
.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 80px; align-items: start; }.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }.faq-list summary { min-height: 72px; padding: 20px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-size: 14px; font-weight: 800; }.faq-list summary::-webkit-details-marker { display: none; }.faq-list summary i { color: var(--blue); transition: transform .2s ease; }.faq-list details[open] summary i { transform: rotate(45deg); }.faq-list details p { margin: -4px 0 22px; padding-right: 44px; color: var(--muted); font-size: 13px; line-height: 1.7; }
.faq-list details[open] p { animation: faq-answer-in .28s cubic-bezier(.22, 1, .36, 1) both; }

.final-cta { padding: 76px 0; color: #fff; background: var(--blue); border-top: 5px solid #4ed0a4; }.final-cta-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 60px; }.final-cta h2 { margin-bottom: 8px; }.final-cta p { color: #e7efff; }.final-actions { display: grid; gap: 10px; text-align: center; }.final-actions span { color: #dbe7ff; font-size: 10px; font-weight: 700; }

.site-footer { padding: 54px 0 18px; color: #c0cad8; background: #101722; }.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 60px; }.site-footer .brand { color: #fff; }.footer-brand p { max-width: 350px; margin: 13px 0 0; color: #8795a8; font-size: 12px; }.footer-grid > div:not(.footer-brand) { display: grid; align-content: start; gap: 10px; }.footer-grid strong { margin-bottom: 5px; color: #fff; font-size: 12px; }.footer-grid a:not(.brand) { width: fit-content; color: #9ba9bb; text-decoration: none; font-size: 11px; font-weight: 650; }.footer-grid a:hover { color: #fff; }.footer-bottom { margin-top: 42px; padding-top: 17px; display: flex; justify-content: space-between; border-top: 1px solid #273142; color: #758297; font-size: 10px; font-weight: 650; }

@keyframes landing-rise {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes faq-answer-in {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes product-panel-in {
    from { opacity: 0; transform: translateY(10px) scale(.992); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

html.motion-ready .hero-copy > * { animation: landing-rise .7s cubic-bezier(.22, 1, .36, 1) backwards; }
html.motion-ready .hero-copy > :nth-child(2) { animation-delay: .07s; }
html.motion-ready .hero-copy > :nth-child(3) { animation-delay: .13s; }
html.motion-ready .hero-copy > :nth-child(4) { animation-delay: .19s; }
html.motion-ready .hero-copy > :nth-child(5) { animation-delay: .25s; }
html.motion-ready .hero-copy > :nth-child(6) { animation-delay: .31s; }

html.motion-ready .scroll-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .72s cubic-bezier(.22, 1, .36, 1), transform .72s cubic-bezier(.22, 1, .36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}
html.motion-ready .scroll-reveal.reveal-left { transform: translateX(-28px); }
html.motion-ready .scroll-reveal.reveal-right { transform: translateX(28px); }
html.motion-ready .scroll-reveal.reveal-scale { transform: translateY(18px) scale(.982); }
html.motion-ready .scroll-reveal.is-visible { opacity: 1; transform: translate3d(0, 0, 0) scale(1); will-change: auto; }
html.motion-ready .real-product-panel.is-active { animation: product-panel-in .46s cubic-bezier(.22, 1, .36, 1) both; }

@media (max-width: 1050px) {
    .site-nav { gap: 16px; }
    .site-nav a { font-size: 11px; }
    .nav-actions .button-quiet { display: none; }
    .hero-copy { width: 62%; }
    .proof-grid { grid-template-columns: repeat(2, 1fr); padding: 14px 0; }
    .proof-grid > div { border-right: 0; }
    .demo-panel { grid-template-columns: 145px minmax(0, 1fr); }
    .demo-workspace { padding: 24px 22px; }
    .record-tabs { margin: 0 -22px; padding-right: 22px; padding-left: 22px; }
    .security-grid { gap: 44px; }
    .workflow-list article { grid-template-columns: 38px 48px 1fr; }
    .workflow-list article ul { grid-column: 3; grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 820px) {
    .section-pad { padding: 76px 0; }
    .nav-shell { grid-template-columns: auto 1fr auto; }
    .menu-button { display: grid; justify-self: end; }
    .site-nav {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        padding: 14px 20px 20px;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 4px;
        color: #fff;
        background: #111827;
        border-top: 1px solid #2c374a;
        box-shadow: 0 18px 30px rgba(0, 0, 0, .18);
    }
    .site-nav.is-open { display: flex; }
    .site-nav a { min-height: 42px; padding: 10px 4px; display: flex; align-items: center; font-size: 13px; }
    .site-nav a::after { display: none; }
    .nav-actions { display: none; }
    .hero { min-height: 650px; background-position: 62% center; }
    .hero-shade { background: rgba(255, 255, 255, .72); }
    .hero-copy { width: min(620px, 100%); }
    .real-product-toolbar { align-items: stretch; flex-direction: column; gap: 12px; }
    .real-product-toolbar-title { flex-basis: auto; }
    .real-product-tabs { width: 100%; display: flex; justify-content: flex-start; overflow-x: auto; padding-bottom: 3px; }
    .real-product-tabs button { flex: 0 0 195px; }
    .real-product-panel figcaption { align-items: flex-start; flex-direction: column; gap: 3px; }
    .real-product-panel figcaption span { text-align: left; }
    .demo-panel { min-height: 510px; grid-template-columns: 1fr; }
    .demo-sidebar { padding: 9px; display: flex; overflow-x: auto; border-right: 0; border-bottom: 1px solid #dce4ef; }
    .demo-sidebar span { flex: 0 0 auto; }
    .demo-sidebar span:not(.active) { display: none; }
    .window-topbar { grid-template-columns: auto 1fr; }.window-tabs { justify-self: end; }.window-user { display: none; }
    .demo-stats { grid-template-columns: repeat(2, 1fr); }
    .demo-columns { grid-template-columns: 1fr; }.pending-list { display: none; }
    .security-grid, .faq-grid { grid-template-columns: 1fr; gap: 44px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }.price-card > p { min-height: 0; }
    .final-cta-inner { grid-template-columns: 1fr; gap: 28px; }.final-actions { justify-self: start; }
}

@media (max-width: 620px) {
    .section-shell, .hero-inner, .nav-shell { width: min(100% - 28px, 1180px); }
    .site-header { height: 64px; }.site-nav { top: 64px; }.brand { font-size: 17px; }.brand img { width: 36px; height: 36px; }
    .hero { min-height: 680px; background-position: 65% center; }
    .hero-copy { padding: 55px 0 62px; }
    .hero h1 { font-size: 58px; }.hero-title { font-size: 25px; }.hero-lead { font-size: 15px; line-height: 1.58; }
    .hero-actions { align-items: stretch; flex-direction: column; }.hero-actions .button { width: 100%; }.hero-points { gap: 10px 16px; }
    .proof-grid { grid-template-columns: 1fr; }.proof-grid > div, .proof-grid > div:first-child, .proof-grid > div:last-child { padding: 11px 0; border-bottom: 1px solid var(--line); }.proof-grid > div:last-child { border-bottom: 0; }
    .section-heading h2, .security-copy h2, .final-cta h2 { font-size: 32px; }.section-heading p, .security-copy p, .final-cta p { font-size: 14px; }
    .real-product-toolbar { padding: 12px; }
    .real-product-tabs button { min-height: 50px; flex-basis: 148px; padding: 7px 8px; gap: 7px; }
    .product-tab-icon { width: 30px; height: 30px; }
    .product-tab-copy small { display: none; }
    .real-product-frame { padding: 10px 10px 12px; overflow: hidden; }
    .real-product-panel { min-width: 0; }
    .real-product-panel figcaption { min-height: 58px; padding: 12px 2px 0; }
    .window-topbar { padding: 10px; grid-template-columns: 1fr; }.window-brand { display: none; }.window-tabs { width: 100%; justify-self: stretch; }.window-tabs button { flex: 1; min-width: 0; padding: 7px 5px; font-size: 9px; }
    .demo-workspace { padding: 18px 12px; }.demo-page-title h3, .patient-head h3 { font-size: 17px; }.demo-page-title button { width: 34px; padding: 0; font-size: 0; }.demo-page-title button i { font-size: 11px; }
    .demo-stats { gap: 7px; }.demo-stats > div { padding: 12px; }.demo-stats i { display: none; }.demo-stats strong { font-size: 18px; }
    .appointment { grid-template-columns: 36px 25px 1fr; }.appointment em { display: none; }.avatar { width: 25px; height: 25px; }
    .patient-head { grid-template-columns: auto 1fr; }.patient-head .status-ok { display: none; }.patient-head p { max-width: 220px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .record-tabs { margin: 0 -12px; padding-right: 12px; padding-left: 12px; gap: 14px; overflow-x: auto; }.odontogram-toolbar span { display: none; }.teeth-row { gap: 3px; padding: 12px 4px; }.teeth-row img { width: 36px; height: 61px; }.record-summary { grid-template-columns: 1fr; }.record-summary > div:nth-child(n+2) { display: none; }
    .finance-summary { grid-template-columns: 1fr 1fr; }.finance-summary > div:last-child { display: none; }.finance-table > div { grid-template-columns: 1.4fr .65fr .5fr; }.finance-table > div span:nth-child(2), .finance-table > div em { display: none; }
    .workflow-list article { padding: 25px 0; grid-template-columns: 35px 42px 1fr; gap: 12px; }.workflow-icon { width: 42px; height: 42px; }.workflow-list article ul { grid-column: 1 / -1; padding-left: 89px; grid-template-columns: 1fr; }.workflow-list h3 { font-size: 17px; }.workflow-list p { font-size: 12px; }
    .security-list { grid-template-columns: 1fr; }.security-list > div { min-height: 0; }
    .price-card { padding: 21px; }.price-card > p { min-height: 0; }.price strong { font-size: 32px; }
    .faq-list summary { font-size: 12px; }.faq-list details p { padding-right: 0; font-size: 12px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }.footer-brand { grid-column: 1 / -1; }.footer-bottom { align-items: flex-start; flex-direction: column; gap: 6px; }
}

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