:root {
  --blue: #3989C8;
  --blue-dark: #163848;
  --green: #70C0A4;
  --ink: #173c51;
  --muted: #667f8c;
  --line: #dce8ee;
  --soft: #f5fafc;
  --white: #fff;
  --shadow: 0 22px 60px rgba(22, 56, 72, .10);
  --radius: 24px;
  --max: 1180px;
}

* { box-sizing: border-box }
html { scroll-behavior: smooth }
body { margin: 0; font-family: 'DM Sans', Arial, sans-serif; color: var(--ink); background: #fff; line-height: 1.55; -webkit-font-smoothing: antialiased }
a { color: inherit; text-decoration: none }
button, input, textarea { font: inherit }
.container { width: min(var(--max), calc(100% - 48px)); margin: 0 auto }
.section { position: relative; padding: 110px 0; overflow: hidden }
.section-soft { background: var(--soft) }
.section-dark { background: var(--blue-dark); color: #fff }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.88); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(220,232,238,.75) }
.header-inner { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 30px }
.brand { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-dark) }
.brand-mark {   height: 25px; width: auto; }
.brand-name { font-size: 22px; font-weight: 500; letter-spacing: .22em }
.main-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; color: #31576a }
.main-nav a:not(.button) { transition: color .2s ease }
.main-nav a:not(.button):hover { color: var(--blue) }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--blue-dark); border-radius: 2px }
.mobile-menu { display: none }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 48px; padding: 0 22px; border-radius: 13px; background: var(--blue); color: #fff; border: 1px solid var(--blue); font-weight: 600; font-size: 14px; box-shadow: 0 9px 22px rgba(57,137,200,.22); transition: transform .2s ease, box-shadow .2s ease, background .2s ease }
.button:hover { transform: translateY(-2px); box-shadow: 0 13px 28px rgba(57,137,200,.28); background: #2f7db9 }
.button-small { min-height: 42px; padding: 0 18px; border-radius: 11px }
.button-ghost { color: var(--blue); background: #fff; border-color: var(--line); box-shadow: none }
.button-ghost:hover { background: var(--soft); box-shadow: none }
.button span { font-size: 18px; line-height: 1 }

.hero { min-height: 730px; padding-top: 86px; padding-bottom: 70px; background: linear-gradient(180deg, #fff 0%, #f8fcfd 100%) }
.hero-grid { position: relative; display: grid; grid-template-columns: .91fr 1.09fr; gap: 42px; align-items: center; min-height: 580px }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(10px); pointer-events: none }
.hero-glow-one { width: 430px; height: 430px; right: -180px; top: 10px; background: rgba(112,192,164,.12) }
.hero-glow-two { width: 300px; height: 300px; left: -180px; bottom: -130px; background: rgba(57,137,200,.10) }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--blue); font-size: 12px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase }
.eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--green); border-radius: 4px }
.hero h1 { margin: 18px 0 22px; font-size: clamp(46px, 5.2vw, 72px); line-height: 1.02; letter-spacing: -.055em; font-weight: 600; color: var(--blue-dark) }
.hero h1 span { color: var(--green) }
.hero-lead { max-width: 570px; margin: 0; color: #557080; font-size: 18px; line-height: 1.7 }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 30px; color: #587180; font-size: 13px }
.trust-item { display: inline-flex; align-items: center; gap: 8px }
.trust-icon { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--green); font-size: 12px; font-weight: 700 }

.hero-visual { position: relative; min-height: 570px; display: grid; place-items: center }
.infinity-ring { position: absolute; width: 510px; height: 510px; border: 14px solid transparent; border-top-color: rgba(112,192,164,.52); border-right-color: rgba(112,192,164,.22); border-bottom-color: rgba(57,137,200,.55); border-left-color: rgba(57,137,200,.18); border-radius: 50%; transform: rotate(-16deg); filter: blur(.1px) }
.care-scene { position: relative; width: min(100%, 620px); aspect-ratio: 1.08; border: 1px solid rgba(255,255,255,.9); border-radius: 30px; background: linear-gradient(135deg, #f7fbfc, #e8f4f5); box-shadow: var(--shadow); overflow: hidden; z-index: 2 }
.scene-topbar { height: 54px; display: flex; align-items: center; gap: 10px; padding: 0 20px; color: #466675; background: rgba(255,255,255,.85); border-bottom: 1px solid #e4eef2; font-size: 11px; font-weight: 600 }
.scene-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 5px rgba(112,192,164,.12) }
.scene-status { margin-left: auto; color: var(--green); font-size: 10px }
.scene-content { display: grid; grid-template-columns: 72px 1fr; height: calc(100% - 54px) }
.scene-sidebar { padding: 26px 17px; background: rgba(22,56,72,.035); border-right: 1px solid #e4eef2 }
.sidebar-line { display: block; height: 9px; margin-bottom: 24px; border-radius: 5px; background: #c7dce5 }
.sidebar-line.active { width: 38px; background: var(--blue) }
.sidebar-line:not(.active) { width: 27px; opacity: .65 }
.scene-main { padding: 28px }
.scene-title { color: var(--blue-dark); font-weight: 600; font-size: 20px }
.scene-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 20px }
.mini-card { padding: 15px; background: rgba(255,255,255,.9); border: 1px solid #e3edf1; border-radius: 15px; box-shadow: 0 7px 22px rgba(22,56,72,.05) }
.mini-card strong { display: block; font-size: 24px; color: var(--blue-dark) }
.mini-card span, .mini-card small { display: block; font-size: 10px; color: #6b8490 }
.mini-card small { margin-top: 2px; color: var(--green) }
.timeline { margin-top: 22px; padding: 17px; border-radius: 16px; background: rgba(255,255,255,.72); border: 1px solid #e2edf1 }
.timeline-row { position: relative; display: grid; grid-template-columns: 18px 1fr auto; align-items: center; gap: 10px; min-height: 50px; font-size: 11px }
.timeline-row:not(:last-child)::after { content: ''; position: absolute; left: 6px; top: 31px; width: 1px; height: 29px; background: #cfe0e6 }
.timeline-dot { width: 12px; height: 12px; border: 2px solid #b6ccd6; border-radius: 50%; background: #fff; z-index: 1 }
.timeline-dot.done { background: var(--green); border-color: var(--green) }
.timeline-dot.active { background: var(--blue); border-color: var(--blue); box-shadow: 0 0 0 5px rgba(57,137,200,.12) }
.timeline-row b { display: block; color: var(--blue-dark) }
.timeline-row small { display: block; color: #7a919b }
.timeline-row em { color: #7a919b; font-size: 9px; font-style: normal }
.floating-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: 10px; min-width: 180px; padding: 12px 14px; border-radius: 15px; background: rgba(255,255,255,.94); border: 1px solid rgba(220,232,238,.9); box-shadow: 0 18px 40px rgba(22,56,72,.13); backdrop-filter: blur(12px) }
.floating-card-one { left: -22px; bottom: 76px }
.floating-card-two { right: -18px; top: 90px }
.floating-card strong, .floating-card small { display: block }
.floating-card strong { font-size: 11px; color: var(--blue-dark) }
.floating-card small { margin-top: 2px; font-size: 9px; color: #78909b }
.floating-icon { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 10px; font-weight: 700 }
.floating-icon.green { color: #338b72; background: rgba(112,192,164,.16) }
.floating-icon.blue { color: var(--blue); background: rgba(57,137,200,.12) }

.impact-strip { position: relative; z-index: 4; margin: -20px auto 0; width: min(var(--max), calc(100% - 48px)); padding: 0; border-radius: 22px; background: rgba(255,255,255,.96); box-shadow: 0 18px 45px rgba(22,56,72,.09); border: 1px solid #e5eef2 }
.impact-grid { display: grid; grid-template-columns: repeat(4,1fr); padding: 25px 10px }
.impact-grid > div { display: flex; align-items: center; justify-content: center; gap: 13px; padding: 0 20px; min-height: 54px; font-size: 12px; line-height: 1.4; text-align: left; color: #476777 }
.impact-grid > div + div { border-left: 1px solid #e5eef2 }
.impact-icon { display: grid; place-items: center; width: 35px; height: 35px; border-radius: 11px; color: var(--blue); background: #eef7fb; font-size: 20px }

.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center }
.section-heading h2, .center-heading h2, .differential h2, .preview-copy h2, .integration h2, .demo h2, .contact h2 { margin: 18px 0 0; font-size: clamp(36px, 4vw, 54px); line-height: 1.08; letter-spacing: -.045em; color: var(--blue-dark) }
.problem-copy { color: #5e7885; font-size: 17px; line-height: 1.75 }
.problem-copy p { margin: 0 0 22px }
.process-line { display: flex; align-items: center; gap: 10px; margin-top: 32px; color: var(--blue-dark); font-size: 12px; font-weight: 600 }
.process-line i { display: block; flex: 1; height: 2px; background: var(--green); position: relative }
.process-line i::after { content: '›'; position: absolute; right: -2px; top: -12px; color: var(--green); font-size: 20px }
.process-line .warning-line { background: linear-gradient(90deg, var(--green), #e5b25d) }
.process-line .muted { color: #8ca0aa }

.center-heading { max-width: 780px; margin: 0 auto 55px; text-align: center }
.center-heading .eyebrow { justify-content: center }
.center-heading p { margin: 20px auto 0; max-width: 670px; color: #66818e; font-size: 17px }
.module-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px }
.module-card { position: relative; min-height: 430px; padding: 32px; border: 1px solid #deeaef; border-radius: 25px; background: #fff; box-shadow: 0 10px 30px rgba(22,56,72,.04); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease }
.module-card:hover { transform: translateY(-6px); box-shadow: 0 20px 45px rgba(22,56,72,.10) }
.module-card.featured { border-color: rgba(57,137,200,.35); box-shadow: 0 16px 40px rgba(57,137,200,.10) }
.module-card.featured::before { content: 'CLAVE'; position: absolute; top: 0; right: 0; padding: 8px 15px; color: #fff; background: var(--blue); border-radius: 0 25px 0 15px; font-size: 9px; font-weight: 700; letter-spacing: .12em }
.module-number { color: #9db4bf; font-size: 11px; font-weight: 700; letter-spacing: .15em }
.module-icon { width: 52px; height: 52px; display: grid; place-items: center; margin: 24px 0 22px; border-radius: 16px; color: var(--blue); background: #eef7fb }
.bed-icon { position: relative; display: flex; align-items: flex-end; gap: 4px; padding: 12px }
.bed-icon span { display: block; width: 7px; height: 20px; border: 2px solid var(--blue); border-radius: 3px 3px 1px 1px }
.bed-icon span:nth-child(2) { height: 28px }
.pulse-icon { position: relative; display: flex; gap: 4px; align-items: center }
.pulse-icon span { width: 4px; border-radius: 4px; background: var(--blue) }
.pulse-icon span:nth-child(1) { height: 14px }
.pulse-icon span:nth-child(2) { height: 28px }
.pulse-icon span:nth-child(3) { height: 19px }
.doc-icon { font-size: 24px }
.module-card h3 { margin: 0; color: var(--blue-dark); font-size: 25px; letter-spacing: -.03em }
.module-card h4 { margin: 5px 0 14px; color: #537080; font-size: 14px; font-weight: 600 }
.module-card p { margin: 0; color: #708894; font-size: 14px; line-height: 1.65 }
.module-card ul { display: flex; flex-wrap: wrap; gap: 7px; padding: 0; margin: 22px 0 0; list-style: none }
.module-card li { padding: 6px 9px; border-radius: 8px; color: #4f7180; background: #f3f8fa; font-size: 10px; font-weight: 600 }

.differential-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center }
.differential-copy h2 span { color: var(--green) }
.differential-copy p { max-width: 540px; margin: 24px 0; color: #68818d; font-size: 17px }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--blue); font-weight: 700; font-size: 14px }
.text-link span { font-size: 19px; transition: transform .2s ease }
.text-link:hover span { transform: translateX(4px) }
.connection-map { position: relative; min-height: 470px; display: grid; place-items: center }
.map-orbit { position: absolute; width: 350px; height: 350px; border: 1px dashed #bcd6df; border-radius: 50%; animation: spin 26s linear infinite }
.map-center { position: relative; z-index: 2; width: 160px; height: 160px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: 50%; background: #fff; border: 1px solid #dce9ee; box-shadow: 0 20px 50px rgba(22,56,72,.12); text-align: center }
.map-center span { color: var(--blue-dark); font-size: 17px; font-weight: 600; letter-spacing: .17em }
.map-center small { margin-top: 6px; color: #78909b; font-size: 9px }
.map-node { position: absolute; z-index: 3; min-width: 118px; padding: 12px 15px; border: 1px solid #dce9ee; border-radius: 13px; background: rgba(255,255,255,.94); box-shadow: 0 12px 30px rgba(22,56,72,.08); text-align: center }
.map-node b, .map-node small { display: block }
.map-node b { color: var(--blue-dark); font-size: 11px }
.map-node small { margin-top: 2px; color: #7b929c; font-size: 9px }
.node-top { top: 0; left: 50%; transform: translateX(-50%) }
.node-left { top: 44%; left: 0 }
.node-right { top: 44%; right: 0 }
.node-bottom { bottom: 0; left: 50%; transform: translateX(-50%) }
.map-lines { position: absolute; inset: 25px 0; width: 100%; height: calc(100% - 50px); stroke: #bdd7df; stroke-width: 1.5; fill: none; stroke-dasharray: 5 6 }

.benefit-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border-top: 1px solid #dce8ee; border-bottom: 1px solid #dce8ee }
.benefit { min-height: 245px; padding: 38px 30px; border-right: 1px solid #dce8ee }
.benefit:last-child { border-right: 0 }
.benefit > span { color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .12em }
.benefit h3 { margin: 32px 0 10px; color: var(--blue-dark); font-size: 19px; letter-spacing: -.02em }
.benefit p { margin: 0; color: #708894; font-size: 13px; line-height: 1.7 }

.preview-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center }
.preview-copy p { max-width: 520px; color: #68818d; font-size: 17px; line-height: 1.75 }
.preview-points { margin-top: 28px; display: grid; gap: 15px }
.preview-points > div { display: flex; gap: 12px; align-items: flex-start }
.preview-points > div > span { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: rgba(112,192,164,.15); color: #43947b; font-size: 11px; font-weight: 700; flex: 0 0 auto }
.preview-points b, .preview-points small { display: block }
.preview-points b { color: var(--blue-dark); font-size: 13px }
.preview-points small { margin-top: 2px; color: #81969f; font-size: 11px }
.dashboard { padding: 18px; border: 1px solid #dce9ee; border-radius: 24px; background: #fff; box-shadow: var(--shadow); overflow: hidden }
.dashboard-header { display: flex; justify-content: space-between; align-items: center; padding: 4px 5px 17px; border-bottom: 1px solid #edf3f5 }
.dashboard-header strong, .dashboard-header small { display: block }
.dashboard-header strong { color: var(--blue-dark); font-size: 13px }
.dashboard-header small { color: #8aa0aa; font-size: 9px }
.online-dot { color: var(--green); font-size: 9px }
.dashboard-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; padding: 16px 0 }
.dashboard-kpis > div { padding: 13px; border-radius: 14px; background: #f7fafb }
.dashboard-kpis small, .dashboard-kpis strong, .dashboard-kpis em { display: block }
.dashboard-kpis small { color: #7b919a; font-size: 9px }
.dashboard-kpis strong { margin: 4px 0; color: var(--blue-dark); font-size: 23px }
.dashboard-kpis em { color: var(--green); font-size: 8px; font-style: normal }
.dashboard-body { display: grid; grid-template-columns: 1fr 1fr; gap: 12px }
.chart-box, .alerts-box { padding: 15px; border: 1px solid #e5eef1; border-radius: 15px }
.chart-title { display: flex; justify-content: space-between; color: var(--blue-dark); font-size: 10px; font-weight: 700 }
.chart-title span { color: #8ba0a8; font-weight: 500 }
.chart { height: 150px; display: flex; align-items: flex-end; gap: 9px; padding: 22px 7px 4px; border-bottom: 1px solid #dce8ed; background: repeating-linear-gradient(to top, transparent 0, transparent 37px, #eef4f6 38px) }
.chart i { flex: 1; display: block; border-radius: 5px 5px 0 0; background: linear-gradient(180deg, var(--blue), #9fd0e8); min-width: 10px }
.alerts-box { display: flex; flex-direction: column; gap: 8px }
.alert-row { display: grid; grid-template-columns: .8fr 1.1fr auto; align-items: center; gap: 7px; padding: 10px 0; border-bottom: 1px solid #edf3f5; font-size: 8px }
.alert-row b { color: var(--blue-dark) }
.alert-row span { color: #8398a1 }
.alert-row em { color: var(--green); font-style: normal }

.integration { overflow: hidden }
.integration-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center }
.eyebrow-light { color: #9bd3c0 }
.integration h2 { color: #fff; max-width: 600px }
.integration p { max-width: 560px; margin: 24px 0 0; color: #a9c0ca; font-size: 17px; line-height: 1.75 }
.integration-visual { position: relative; min-height: 430px; display: grid; place-items: center }
.integration-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; stroke: rgba(112,192,164,.42); stroke-width: 1.5; fill: none; stroke-dasharray: 6 6 }
.integration-node { position: absolute; z-index: 2; min-width: 120px; padding: 14px 18px; border: 1px solid rgba(255,255,255,.15); border-radius: 14px; background: rgba(255,255,255,.06); color: #fff; text-align: center; font-size: 11px; font-weight: 600; backdrop-filter: blur(8px) }
.integration-node small { color: #8eb2c0; font-size: 8px; font-weight: 400 }
.node-hce { top: 8px; left: 50%; transform: translateX(-50%); border-color: rgba(112,192,164,.4) }
.node-gepura { top: 42%; left: 50%; transform: translate(-50%,-50%); width: 160px; min-height: 92px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-color: rgba(57,137,200,.65); background: rgba(57,137,200,.17); box-shadow: 0 20px 60px rgba(0,0,0,.18) }
.node-gepura::before { content: ''; position: absolute; inset: -10px; border: 1px solid rgba(112,192,164,.18); border-radius: 22px; z-index: -1 }
.node-bed { bottom: 12px; left: 4% }
.node-prev { bottom: 12px; left: 50%; transform: translateX(-50%) }
.node-auto { bottom: 12px; right: 4% }

.demo { background: linear-gradient(180deg, #f7fbfc 0%, #fff 100%) }
.demo-card { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; padding: 58px; border-radius: 30px; background: linear-gradient(135deg, #eef8fa, #fff); border: 1px solid #dce9ee; box-shadow: var(--shadow) }
.demo-copy h2 { font-size: clamp(35px, 4vw, 51px) }
.demo-copy p { max-width: 500px; margin: 24px 0 0; color: #68818d; font-size: 16px; line-height: 1.75 }
.demo-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px }
.demo-form label { display: block; color: #4c6a78; font-size: 11px; font-weight: 600 }
.demo-form label:nth-of-type(3), .demo-form label:nth-of-type(4), .button-submit, .form-note, .form-success { grid-column: 1 / -1 }
.demo-form input, .demo-form textarea { width: 100%; margin-top: 6px; padding: 13px 14px; border: 1px solid #d7e5eb; border-radius: 12px; outline: 0; background: rgba(255,255,255,.86); color: var(--ink); font-size: 13px; transition: border .2s ease, box-shadow .2s ease }
.demo-form textarea { resize: vertical; min-height: 88px }
.demo-form input:focus, .demo-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(57,137,200,.09) }
.button-submit { width: 100%; margin-top: 3px; cursor: pointer }
.form-note, .form-success { margin: -4px 0 0; color: #8aa0aa; font-size: 10px; font-weight: 400 }
.form-success { display: none; color: #36866e; font-weight: 600 }
.form-success.visible { display: block }

label.check-label { width: 170%; display: flex; flex-direction: row; align-items: flex-start; gap: .6rem; font-size: .9rem; font-weight: 400; cursor: pointer; line-height: 1.4; }
label.check-label input[type='checkbox'] { flex-shrink: 0; width: 1rem; height: 1rem; margin: .15rem 0 0 0; accent-color: #3989c8; cursor: pointer; }
.contact { padding: 72px 0; border-top: 1px solid #e4edf0 }
.contact-inner { display: flex; justify-content: space-between; align-items: center; gap: 30px }
.contact h2 { margin-top: 12px; font-size: 40px }
.contact-email { color: var(--blue); font-size: 18px; font-weight: 600 }
.contact-email span { display: inline-block; margin-left: 7px; transition: transform .2s ease }
.contact-email:hover span { transform: translate(3px,-3px) }

.site-footer { padding: 28px 0; background: #f7fafb; border-top: 1px solid #e4edf0 }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 25px }
.footer-brand .brand-name { font-size: 15px }
.footer-brand span { display: block; margin-top: 3px; color: #8aa0aa; font-size: 10px }
.footer-links { display: flex; gap: 20px; color: #6f8792; font-size: 11px }
.footer-links a:hover { color: var(--blue) }
.footer-copy { justify-self: end; color: #9aabb2; font-size: 10px }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease }
.reveal.is-visible { opacity: 1; transform: translateY(0) }
.reveal-delay { transition-delay: .12s }
.reveal-delay-2 { transition-delay: .22s }
.reveal-delay-3 { transition-delay: .32s }
@keyframes spin { to { transform: rotate(360deg) } }

@media (max-width: 1020px) {
  .main-nav { gap: 18px }
  .hero-grid, .two-column, .differential-grid, .preview-grid, .integration-grid, .demo-card { grid-template-columns: 1fr; gap: 50px }
  .hero { padding-top: 55px }
  .hero-copy { text-align: center }
  .hero-copy .eyebrow, .hero-trust { justify-content: center }
  .hero-lead { margin-left: auto; margin-right: auto }
  .hero-actions { justify-content: center }
  .hero-visual { min-height: 530px }
  .differential-copy { text-align: center }
  .differential-copy p { margin-left: auto; margin-right: auto }
  .integration-grid > div:first-child { text-align: center }
  .integration-grid .eyebrow { justify-content: center }
  .integration p { margin-left: auto; margin-right: auto }
  .demo-copy { text-align: center }
  .demo-copy p { margin-left: auto; margin-right: auto }
}

@media (max-width: 760px) {
  .container { width: min(var(--max), calc(100% - 32px)) }
  .section { padding: 78px 0 }
  .main-nav { display: none }
  .menu-toggle { display: block }
  .mobile-menu { display: none; padding: 15px 16px 22px; border-top: 1px solid #edf3f5; background: rgba(255,255,255,.98) }
  .mobile-menu.open { display: grid; gap: 4px }
  .mobile-menu a { padding: 12px 16px; border-radius: 10px; color: #456575; font-size: 14px }
  .mobile-menu .button { color: #fff; text-align: center; margin-top: 7px }
  .hero { min-height: auto; padding-top: 55px }
  .hero h1 { font-size: clamp(43px, 13vw, 62px) }
  .hero-lead { font-size: 16px }
  .hero-visual { min-height: 440px; margin-top: 5px }
  .infinity-ring { width: 350px; height: 350px; border-width: 10px }
  .care-scene { width: 100%; border-radius: 22px }
  .scene-main { padding: 18px }
  .scene-title { font-size: 16px }
  .mini-card { padding: 10px }
  .mini-card strong { font-size: 18px }
  .timeline { padding: 10px }
  .floating-card { transform: scale(.86); transform-origin: center }
  .floating-card-one { left: -14px; bottom: 32px }
  .floating-card-two { right: -14px; top: 45px }
  .impact-strip { width: calc(100% - 32px) }
  .impact-grid { grid-template-columns: 1fr 1fr; padding: 12px 5px }
  .impact-grid > div { justify-content: flex-start; padding: 12px 10px; font-size: 10px }
  .impact-grid > div:nth-child(3) { border-left: 0; border-top: 1px solid #e5eef2 }
  .impact-grid > div:nth-child(4) { border-top: 1px solid #e5eef2 }
  .two-column, .differential-grid, .preview-grid, .integration-grid, .demo-card { gap: 35px }
  .section-heading h2, .center-heading h2, .differential h2, .preview-copy h2, .integration h2, .demo h2 { font-size: 38px }
  .module-grid, .benefit-grid { grid-template-columns: 1fr }
  .module-card { min-height: 0 }
  .benefit { min-height: auto; padding: 30px 0; border-right: 0; border-bottom: 1px solid #dce8ee }
  .benefit:last-child { border-bottom: 0 }
  .benefit h3 { margin-top: 18px }
  .connection-map { min-height: 400px; transform: scale(.92) }
  .preview-grid { grid-template-columns: 1fr }
  .dashboard-body { grid-template-columns: 1fr }
  .integration-visual { min-height: 390px }
  .demo-card { padding: 30px 22px }
  .demo-form { grid-template-columns: 1fr }
  .demo-form label:nth-of-type(3), .demo-form label:nth-of-type(4), .button-submit, .form-note, .form-success { grid-column: auto }
  .contact-inner { display: block; text-align: center }
  .contact-email { display: inline-block; margin-top: 22px; font-size: 16px }
  .footer-inner { grid-template-columns: 1fr; text-align: center }
  .footer-links { justify-content: center; flex-wrap: wrap }
  .footer-copy { justify-self: center }
}

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