:root {
    --blue: #074aa7;
    --blue-dark: #003d91;
    --blue-soft: #eaf4ff;
    --cyan: #35b7d8;
    --ink: #101522;
    --muted: #596174;
    --line: #d9e5f4;
    --panel: #ffffff;
    --soft: #f6faff;
    --shadow: 0 16px 42px rgba(13, 55, 112, .14);
    --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.55;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.96);
    border-top: 3px solid #071d4d;
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}
.header-inner {
    min-height: 84px;
    display: grid;
    grid-template-columns: 180px 1fr auto;
    align-items: center;
    gap: 24px;
}
.brand img { width: 120px; }
.main-nav { display: flex; justify-content: center; align-items: center; gap: 27px; }
.nav-item { position: relative; }
.nav-item > a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    font-weight: 600;
    padding: 31px 0 26px;
}
.nav-item > a svg { width: 14px; height: 14px; }
.nav-item > a.active { color: #005dff; border-bottom: 3px solid #2f79ff; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 6px;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: .2s ease;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: linear-gradient(135deg, var(--blue), #052f83); color: #fff; box-shadow: 0 10px 24px rgba(0,68,160,.22); }
.btn-primary:hover { transform: translateY(-1px); }
.btn-outline { color: var(--blue); border-color: var(--blue); background: rgba(255,255,255,.84); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: #fff; border-radius: 6px; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--blue); margin: 5px auto; }

.hero {
    position: relative;
    min-height: 520px;
    background:
        radial-gradient(circle at 43% 83%, rgba(49,154,235,.22), transparent 12%),
        linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.93) 40%, rgba(229,242,255,.54) 66%, rgba(222,232,246,.55) 100%),
        url("../img/medical-bg.svg");
    background-size: auto, auto, cover;
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 455px;
    gap: 30px;
    min-width: 0;
}
.hero-copy, .hero-visual, .dashboard-card, .dash-main, .panel { min-width: 0; }
.hero h1 {
    margin: 0;
    font-size: clamp(34px, 3.35vw, 46px);
    line-height: 1.13;
    letter-spacing: 0;
}
.hero h1 span, .section-copy h2 span, .section-title h2 span { color: var(--blue); }
.accent-line {
    width: 60px;
    height: 4px;
    background: #6ea9ff;
    margin: 24px 0;
}
.accent-line.centered { margin: 8px auto 0; }
.hero p { max-width: 560px; font-size: 18px; color: #1f2633; margin: 0 0 28px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 390px;
    overflow: hidden;
    border-radius: 10px;
}
.hero-visual::before {
    content: "";
    position: absolute;
    inset: 28px -20px 8px 50px;
    background: radial-gradient(circle at 50% 50%, rgba(0, 94, 200, .12), transparent 64%);
    border-radius: 28px;
}
.hero-visual::after {
    content: "";
    position: absolute;
    left: 8%;
    right: 4%;
    bottom: 18px;
    height: 34px;
    background: linear-gradient(90deg, transparent, rgba(8, 45, 94, .22), transparent);
    filter: blur(14px);
}
.hero-device-image {
    position: relative;
    z-index: 2;
    width: min(610px, 100%);
    max-width: 100%;
    margin-right: 0;
    mix-blend-mode: multiply;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 63%, rgba(0,0,0,.88) 76%, transparent 100%);
    mask-image: radial-gradient(ellipse at center, #000 63%, rgba(0,0,0,.88) 76%, transparent 100%);
    filter: drop-shadow(0 28px 38px rgba(21, 52, 95, .18));
}

.module-strip {
    position: relative;
    z-index: 5;
    margin-top: -16px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    background: rgba(255,255,255,.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    border-radius: 10px;
    overflow: hidden;
    max-width: 100%;
}
.module-item {
    min-height: 135px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
    padding: 18px 14px;
    font-weight: 600;
    border-right: 1px solid var(--line);
    min-width: 0;
}
.module-item span { max-width: 100%; overflow-wrap: anywhere; }
.module-item:last-child { border-right: 0; }
.module-item svg { width: 36px; height: 36px; color: var(--blue); stroke-width: 1.8; }
.module-item:hover { background: var(--blue-soft); color: var(--blue); }

.section { padding: 72px 0; }
.pale { background: var(--soft); }
.split-grid, .two-col, .contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.25fr;
    gap: 46px;
    align-items: center;
}
.two-col { grid-template-columns: 1fr 1fr; }
.intro-copy { align-self: center; }
.intro-media { align-self: center; }
.section-copy h2, .section-title h2, .two-col h2 {
    margin: 0 0 14px;
    font-size: clamp(28px, 3.2vw, 40px);
    line-height: 1.16;
    letter-spacing: 0;
}
.section-copy p, .two-col p { color: #222b3b; margin-bottom: 22px; }
.check-list { padding: 0; margin: 22px 0 28px; list-style: none; }
.check-list li { position: relative; padding-left: 28px; margin: 11px 0; }
.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 15px;
    height: 15px;
    border: 1px solid #0c63dd;
    border-radius: 50%;
    background: radial-gradient(circle, #0c63dd 28%, transparent 30%);
}

.dashboard-card {
    background:
        radial-gradient(circle at 72% 20%, rgba(53,183,216,.16), transparent 34%),
        linear-gradient(145deg, rgba(246,250,255,.82), rgba(255,255,255,.96));
    border: 1px solid rgba(217,229,244,.78);
    border-radius: 14px;
    box-shadow: 0 24px 54px rgba(13, 55, 112, .13);
    overflow: visible;
    padding: 18px;
    position: relative;
}
.dashboard-card::before {
    content: "";
    position: absolute;
    inset: -28px -18px -22px 22%;
    pointer-events: none;
    background: radial-gradient(circle at center, rgba(7,74,167,.12), transparent 68%);
    filter: blur(18px);
    z-index: -1;
}
.dashboard-screenshot {
    width: 100%;
    aspect-ratio: 2.08 / 1;
    object-fit: contain;
    object-position: center;
    border-radius: 10px;
    filter: saturate(1.02) contrast(1.01) drop-shadow(0 18px 26px rgba(18, 48, 92, .14));
}
.dash { display: grid; grid-template-columns: 135px minmax(0, 1fr); min-height: 430px; font-size: 12px; min-width: 0; }
.dash aside { padding: 15px 12px; background: #f7fbff; border-right: 1px solid var(--line); }
.dash aside strong { display: block; color: #008aa9; font-size: 24px; margin-bottom: 14px; }
.dash aside a { display: flex; align-items: center; gap: 7px; padding: 8px; border-radius: 6px; color: #263244; }
.dash aside a svg { width: 14px; height: 14px; }
.dash aside a.selected { background: var(--blue); color: #fff; }
.dash-main { padding: 14px; background: #fbfdff; }
.dash-top { display: flex; align-items: center; gap: 15px; margin-bottom: 12px; }
.dash-top span { flex: 1; }
.dash-top svg { width: 16px; height: 16px; }
.dash-metrics { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; margin-bottom: 12px; }
.dash-metrics div, .panel { background: #fff; border: 1px solid #e5edf6; border-radius: 8px; padding: 13px; }
.dash-metrics span { display: block; color: #4a586d; margin-bottom: 7px; }
.dash-metrics strong { font-size: 20px; }
.dash-panels { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: 10px; }
.panel h4 { margin: 0 0 8px; font-size: 12px; }
.panel svg { width: 100%; height: auto; }
.donut { display: grid; grid-template-columns: 95px minmax(0, 1fr); align-items: center; gap: 8px; }
.donut h4 { grid-column: 1 / -1; }
.donut-chart {
    width: 86px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: conic-gradient(#083f9a 0 65%, #1c8ee8 65% 85%, #32c0d6 85% 95%, #f7a13b 95% 100%);
    position: relative;
}
.donut-chart::after { content: ""; position: absolute; inset: 24px; background: #fff; border-radius: 50%; }
.donut ul { margin: 0; padding-left: 16px; font-size: 10px; }
.list p { margin: 8px 0; color: #263244; }
.list span { float: right; color: #6e7890; }

.stats-band { background: linear-gradient(135deg, var(--blue), #005fc6); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-grid div { min-height: 110px; display: grid; grid-template-columns: 52px 1fr; grid-template-rows: 1fr 1fr; align-content: center; padding: 26px 36px; border-right: 1px solid rgba(255,255,255,.35); }
.stats-grid div:last-child { border-right: 0; }
.stats-grid svg { grid-row: 1 / 3; align-self: center; width: 42px; height: 42px; }
.stats-grid strong { font-size: 30px; line-height: 1; }
.stats-grid strong::after { content: "+"; }
.stats-grid div:last-child strong::after { content: "%"; }
.stats-grid span { font-size: 15px; }

.section-title { text-align: center; margin-bottom: 28px; }
.section-lead {
    max-width: 760px;
    margin: 10px auto 0;
    color: #344056;
    font-size: 17px;
}
.eyebrow {
    display: inline-block;
    color: var(--blue);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 10px;
}
.ai-section {
    background: linear-gradient(135deg, #f5fbff 0%, #fff 55%, #eef6ff 100%);
    border-bottom: 1px solid var(--line);
}
.ai-grid {
    display: grid;
    grid-template-columns: .9fr 1.25fr;
    gap: 38px;
    align-items: center;
}
.ai-copy h2 {
    margin: 0 0 14px;
    font-size: clamp(30px, 3.2vw, 44px);
    line-height: 1.12;
}
.ai-copy p {
    color: #243047;
    font-size: 18px;
    margin: 0 0 24px;
}
.ai-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.ai-cards article {
    min-height: 230px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 28px rgba(11, 63, 137, .08);
}
.ai-cards svg {
    width: 38px;
    height: 38px;
    color: var(--blue);
    margin-bottom: 16px;
}
.ai-cards h3 {
    margin: 0 0 10px;
    font-size: 17px;
    line-height: 1.28;
}
.ai-cards p { margin: 0; color: #344056; }
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.feature-grid.four { grid-template-columns: repeat(4, 1fr); }
.feature-grid.five { grid-template-columns: repeat(5, 1fr); gap: 28px; }
.feature-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 28px 24px;
    text-align: center;
    min-height: 168px;
}
.feature-card.large { text-align: left; min-height: 250px; }
.feature-card svg { width: 40px; height: 40px; color: var(--blue); stroke-width: 1.9; margin-bottom: 15px; }
.feature-card h3, .feature-card h2 { margin: 0 0 10px; font-size: 17px; line-height: 1.25; }
.feature-card h2 { font-size: 22px; }
.feature-card p { margin: 0; color: #263244; }
.module-detail-section { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.module-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
.module-detail-grid.compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.module-detail-grid.compact .module-detail-card {
    padding: 22px;
}
.module-detail-grid.compact .module-detail-head {
    grid-template-columns: 46px 1fr;
    gap: 14px;
}
.module-detail-grid.compact .module-detail-head > i {
    width: 42px;
    height: 42px;
}
.module-detail-grid.compact .module-detail-head h2 {
    font-size: 20px;
}
.module-detail-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: 0 12px 30px rgba(14,58,113,.08);
}
.module-detail-head {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    align-items: start;
}
.module-detail-head > i {
    width: 46px;
    height: 46px;
    color: var(--blue);
    padding: 10px;
    border-radius: 8px;
    background: var(--blue-soft);
}
.module-detail-head h2 {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.2;
}
.module-detail-head p {
    margin: 0;
    color: #344056;
}
.module-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 20px;
}
.module-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 11px;
    border-radius: 999px;
    background: #f4f9ff;
    border: 1px solid #d8e7f8;
    color: #183252;
    font-size: 13px;
    font-weight: 700;
}
.ecosystem-visual-section {
    background: linear-gradient(135deg, #fff, #f4fbff);
}
.ecosystem-visual-grid {
    display: grid;
    grid-template-columns: .9fr 1.15fr;
    gap: 44px;
    align-items: center;
}
.ecosystem-visual-grid h2 {
    margin: 0 0 14px;
    font-size: clamp(30px, 3.1vw, 44px);
    line-height: 1.12;
}
.ecosystem-visual-grid p {
    color: #243047;
    font-size: 17px;
}
.ecosystem-main-logo {
    width: min(230px, 70%);
    margin: 0 0 18px;
}
.ecosystem-image {
    margin: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.ecosystem-image img {
    width: 100%;
    height: auto;
}
.ecosystem-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ecosystem-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: 0 12px 30px rgba(14,58,113,.08);
}
.ecosystem-logo-wrap {
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: transparent;
}
.ecosystem-logo-wrap img {
    max-width: 100%;
    max-height: 78px;
    object-fit: contain;
}
#dims-connect .ecosystem-logo-wrap {
    background: transparent;
    overflow: hidden;
}
#dims-connect .ecosystem-logo-wrap img {
    max-width: 92%;
    max-height: 78px;
}
.ecosystem-card-head {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 15px;
    align-items: center;
    margin-bottom: 16px;
}
.ecosystem-card-head > i {
    width: 48px;
    height: 48px;
    color: var(--blue);
    padding: 10px;
    border-radius: 8px;
    background: var(--blue-soft);
}
.ecosystem-card-head span {
    display: block;
    color: var(--cyan);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}
.ecosystem-card-head h2 {
    margin: 3px 0 0;
    font-size: 23px;
}
.ecosystem-card p {
    color: #344056;
}
.dots { margin-top: 14px; text-align: center; }
.dots span { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: #aeb9c8; margin: 0 3px; }
.dots .active { background: #0c63dd; }

.site-footer { background: linear-gradient(90deg, #f4faff, #fff); border-top: 1px solid var(--line); }
.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr .72fr 2.2fr;
    gap: 48px;
    padding: 45px 0 32px;
    align-items: start;
}
.footer-brand img { width: 122px; margin-bottom: 18px; }
.footer-grid h3 { margin: 0 0 13px; font-size: 16px; }
.footer-grid a, .footer-grid p { display: flex; gap: 10px; color: #172033; margin: 8px 0; font-size: 14px; }
.footer-grid p svg { flex: 0 0 auto; width: 17px; height: 17px; color: var(--blue); margin-top: 2px; }
.footer-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
}
.footer-contact-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    margin-bottom: 14px;
}
.footer-contact-line p {
    margin: 0;
    white-space: nowrap;
}
.socials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.socials a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    margin: 0;
    box-shadow: 0 10px 22px rgba(0, 58, 130, .16);
}
.socials svg { width: 18px; height: 18px; fill: currentColor; }
.socials .facebook { background: #1877f2; }
.socials .linkedin { background: #0a66c2; }
.socials .youtube { background: #ff0000; }
.socials .whatsapp { background: #25d366; }
.socials .pending { opacity: .72; }
.country-addresses {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}
.country-addresses div {
    padding: 14px 15px;
    background: rgba(255,255,255,.72);
    border: 1px solid var(--line);
    border-radius: 8px;
    min-height: 126px;
}
.country-addresses strong {
    display: block;
    color: var(--blue);
    font-size: 12px;
    margin-bottom: 3px;
}
.country-addresses span {
    display: block;
    color: #172033;
    font-size: 13px;
    line-height: 1.45;
}
.footer-bottom { background: var(--blue); color: #fff; }
.footer-bottom-inner { min-height: 38px; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-size: 13px; }
.footer-bottom p { margin: 0; }
.footer-bottom a { color: #fff; margin: 0 10px; }

.inner-hero {
    background: linear-gradient(135deg, #eef7ff, #fff 58%, #eef5ff);
    border-bottom: 1px solid var(--line);
    padding: 74px 0;
}
.inner-hero p { color: var(--blue); text-transform: uppercase; font-weight: 800; letter-spacing: 0; margin: 0 0 10px; }
.inner-hero h1 { max-width: 820px; margin: 0 0 14px; font-size: clamp(34px, 4vw, 54px); line-height: 1.1; letter-spacing: 0; }
.inner-hero span { display: block; max-width: 760px; color: #3e4a5c; font-size: 18px; }
.info-panel, .contact-card, .contact-form, .resource-sections article, .solution-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 30px rgba(14,58,113,.08);
    padding: 30px;
}
.visual-panel {
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.visual-panel img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.46;
    object-fit: cover;
}
.compact-panel {
    margin-top: 20px;
    box-shadow: 0 10px 24px rgba(14,58,113,.07);
}
.full-width-panel {
    grid-column: 1 / -1;
    margin-top: -12px;
}
.full-width-panel h3 {
    margin-top: 0;
}
.inline-check-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px 20px;
    margin-bottom: 0;
}
.inline-check-list li {
    margin: 0;
}
.feature-visual-section {
    background: linear-gradient(135deg, #fff, #f4fbff);
    border-bottom: 1px solid var(--line);
}
.feature-visual-section h2 {
    margin: 0 0 14px;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.15;
}
.feature-visual-section p { color: #243047; }
.mini-points { display: grid; gap: 14px; }
.mini-points span { display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line); padding: 16px; border-radius: var(--radius); font-weight: 700; }
.mini-points svg { color: var(--blue); }
.solution-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.solution-card span { color: var(--cyan); font-size: 32px; font-weight: 800; }
.solution-card h2 { margin: 8px 0 12px; }
.resource-sections .container { display: grid; gap: 22px; }
.contact-grid { grid-template-columns: 1.1fr .9fr; align-items: start; }
.contact-form { display: grid; gap: 14px; }
.contact-form h2, .contact-card h2 { margin: 0 0 8px; }
.contact-form label { display: grid; gap: 6px; font-weight: 700; color: #2a3445; }
.contact-form input, .contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 12px;
    font: inherit;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid #b8d9ff; border-color: var(--blue); }
.contact-card p { display: flex; gap: 12px; }
.contact-card svg { color: var(--blue); }
.contact-address-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}
.contact-address-grid div {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #f8fbff;
}
.contact-address-grid strong {
    display: block;
    color: var(--blue);
    margin-bottom: 6px;
}
.contact-address-grid span {
    display: block;
    color: #243047;
    font-size: 14px;
    line-height: 1.55;
}
.legal .container { max-width: 930px; }
.legal-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 30px rgba(14,58,113,.08);
    padding: 34px;
}
.legal-card h2 {
    margin: 28px 0 10px;
    color: var(--blue);
    font-size: 22px;
}
.legal-card h2:first-child { margin-top: 0; }
.legal-card h3 { margin: 20px 0 8px; }
.legal-card p { color: #243047; }
.legal-card ul { margin: 10px 0 18px; padding-left: 22px; color: #243047; }
.legal-card li { margin: 7px 0; }
.faq-intro-section h2 {
    margin: 0 0 14px;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.15;
}
.faq-intro-section p { color: #243047; }
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}
.faq-group {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 30px rgba(14,58,113,.08);
    padding: 24px;
}
.faq-group > h2 {
    margin: 0 0 16px;
    color: var(--blue);
    font-size: 22px;
}
.faq-group details {
    border-top: 1px solid var(--line);
    padding: 14px 0;
}
.faq-group details:first-of-type { border-top: 0; }
.faq-group summary {
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 28px;
    font-weight: 800;
    color: #152033;
}
.faq-group summary::-webkit-details-marker { display: none; }
.faq-group summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    color: var(--blue);
    font-size: 22px;
    line-height: 1;
}
.faq-group details[open] summary::after { content: "-"; }
.faq-group details p {
    margin: 10px 0 0;
    color: #344056;
}
.faq-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: linear-gradient(135deg, var(--blue), #0064cf);
    color: #fff;
    border-radius: 8px;
    padding: 34px;
}
.faq-cta .eyebrow, .faq-cta p { color: #fff; }
.faq-cta h2 {
    margin: 0 0 8px;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.12;
}
.faq-cta p { margin: 0; max-width: 740px; }
.faq-cta .btn { background: #fff; color: var(--blue); box-shadow: none; flex: 0 0 auto; }

@media (max-width: 1100px) {
    .header-inner { grid-template-columns: 140px 1fr auto; gap: 14px; }
    .main-nav { gap: 16px; }
    .nav-item > a { font-size: 14px; }
    .module-strip { grid-template-columns: repeat(3, 1fr); margin-top: 0; }
    .module-item:nth-child(3) { border-right: 0; }
    .feature-grid.four, .feature-grid.five { grid-template-columns: repeat(3, 1fr); }
    .ai-grid, .ai-cards { grid-template-columns: 1fr; }
    .ecosystem-visual-grid, .ecosystem-card-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
    .solution-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
    .container { width: calc(100% - 28px); max-width: 680px; }
    .header-inner { min-height: 72px; grid-template-columns: 1fr auto; }
    .brand img { width: 104px; }
    .nav-toggle { display: block; }
    .header-cta { display: none; }
    .main-nav {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        display: none;
        background: #fff;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
        padding: 12px 20px 18px;
    }
    .main-nav.open { display: block; }
    .nav-item > a { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 0; }
    .hero { min-height: auto; }
    .hero-grid { grid-template-columns: minmax(0, 1fr); min-height: auto; padding: 54px 0 34px; overflow: hidden; }
    .hero-copy { width: 100%; max-width: 650px; min-width: 0; }
    .hero-visual { min-height: 280px; }
    .hero-device-image { width: min(560px, 96%); margin-right: 0; }
    .dashboard-card { max-width: 100%; }
    .dash { grid-template-columns: 112px minmax(0, 1fr); }
    .dash-metrics { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .dash-panels { grid-template-columns: 1fr; }
    .split-grid, .two-col, .contact-grid { grid-template-columns: 1fr; }
    .full-width-panel { margin-top: 0; }
    .inline-check-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .dash { grid-template-columns: 1fr; }
    .dash aside { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid div:nth-child(2) { border-right: 0; }
    .feature-grid, .feature-grid.four, .feature-grid.five { grid-template-columns: repeat(2, 1fr); }
    .faq-grid { grid-template-columns: 1fr; }
    .module-detail-grid, .module-detail-grid.compact { grid-template-columns: 1fr; }
    .ecosystem-card-grid { grid-template-columns: 1fr; }
    .ai-cards { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid > div:last-child { grid-column: 1 / -1; }
    .footer-bottom-inner { flex-direction: column; padding: 10px 0; }
}

@media (max-width: 560px) {
    .container { width: min(318px, calc(100% - 44px)); }
    .section-copy, .two-col, .intro-copy, .contact-card, .contact-form, .legal-card, .faq-item, .feature-card, .solution-card { min-width: 0; }
    .section-copy p, .two-col p, .intro-copy p, .contact-card p, .legal-card p, .faq-item p, .feature-card p, .solution-card p, .check-list li { overflow-wrap: anywhere; word-break: break-word; }
    .hero h1 { max-width: 330px; font-size: 24px; overflow-wrap: anywhere; word-break: break-word; }
    .hero h1 br { display: none; }
    .hero h1 span { display: block; }
    .hero p { width: 100%; max-width: 330px; font-size: 15px; overflow-wrap: anywhere; word-break: break-word; }
    .hero-visual::before, .hero-visual::after { display: none; }
    .hero-visual { min-height: 210px; }
    .hero-device-image { width: 94%; margin-left: 0; }
    .hero-actions .btn { width: 100%; }
    .module-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); border-radius: 8px; width: min(318px, calc(100% - 44px)); }
    .module-item { min-width: 0; min-height: 112px; border-right: 1px solid var(--line); font-size: 11px; line-height: 1.25; overflow-wrap: anywhere; padding: 16px 4px; }
    .module-item span { display: block; max-width: 88px; overflow-wrap: anywhere; }
    .module-item:nth-child(2n) { border-right: 0; }
    .dash { grid-template-columns: 1fr; }
    .dash aside { display: none; }
    .dash-metrics, .dash-panels, .donut { grid-template-columns: 1fr; }
    .dash-metrics strong { font-size: 17px; }
    .stats-grid, .feature-grid, .feature-grid.four, .feature-grid.five, .solution-grid, .footer-grid { grid-template-columns: 1fr; }
    .module-detail-head { grid-template-columns: 1fr; }
    .ai-cards { grid-template-columns: 1fr; }
    .country-addresses, .contact-address-grid { grid-template-columns: 1fr; }
    .footer-grid > div:last-child { grid-column: auto; }
    .footer-contact-line { display: grid; gap: 8px; }
    .faq-cta { display: grid; padding: 26px; }
    .inline-check-list { grid-template-columns: 1fr; }
    .stats-grid div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.28); }
    .section { padding: 52px 0; }
    .inner-hero { padding: 52px 0; }
    .footer-bottom a { margin: 0 5px; }
}
