:root {
    --bg: #eaf7ff;
    --bg-2: #f6fbff;
    --surface: rgba(255, 255, 255, 0.88);
    --surface-solid: #ffffff;
    --text: #061b35;
    --muted: #54708e;
    --line: #cce6f7;
    --blue: #049fe2;
    --blue-dark: #086ddf;
    --teal: #4bc5c7;
    --yellow: #ffd05b;
    --green: #05a86b;
    --red: #ff4d56;
    --shadow: 0 24px 70px rgba(3, 93, 151, 0.16);
    --shadow-soft: 0 14px 38px rgba(3, 93, 151, 0.10);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: 1180px;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    color-scheme: light;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(75, 197, 199, 0.26), transparent 36rem),
        radial-gradient(circle at top right, rgba(4, 159, 226, 0.20), transparent 32rem),
        linear-gradient(180deg, var(--bg), #f8fcff 60%, #ffffff);
    line-height: 1.55;
    min-width: 320px;
}

img, svg { max-width: 100%; height: auto; }

a { color: var(--blue-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

button, input, textarea { font: inherit; }

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
}

.narrow { max-width: 880px; }

.section-pad { padding: 96px 0 74px; }
.section { padding: 76px 0; }

.skip-link {
    position: absolute;
    top: -44px;
    left: 16px;
    background: var(--text);
    color: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    z-index: 1000;
}
.skip-link:focus { top: 16px; }

.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;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
    background: rgba(235, 248, 255, 0.78);
    border-bottom: 1px solid rgba(204, 230, 247, 0.7);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 74px;
    gap: 18px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--text);
    text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand strong { display: block; font-size: 1.06rem; line-height: 1.1; }
.brand small { display: block; color: var(--muted); font-weight: 700; font-size: 0.78rem; margin-top: 2px; }
.brand-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #00a8ef, #0872e5);
    box-shadow: 0 10px 22px rgba(8, 109, 223, 0.22);
    overflow: hidden;
}
.brand-icon img { width: 100%; height: 100%; display: block; }

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    color: #0c345f;
    font-weight: 800;
    padding: 10px 14px;
    border-radius: 999px;
}
.main-nav a:hover {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.65);
}
.main-nav .nav-cta {
    background: #fff;
    color: var(--blue-dark);
    box-shadow: var(--shadow-soft);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.nav-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
}

.hero {
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(350px, 0.98fr);
    gap: 46px;
    align-items: center;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--blue-dark);
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

h1, h2, h3 {
    color: var(--text);
    letter-spacing: -0.04em;
    line-height: 1.06;
}

h1 {
    font-size: clamp(3rem, 7vw, 6.7rem);
    margin: 0 0 22px;
}

h2 {
    font-size: clamp(2rem, 4.5vw, 4rem);
    margin: 0 0 18px;
}

h3 {
    font-size: 1.35rem;
    margin: 0 0 12px;
}

.hero-text {
    font-size: clamp(1.08rem, 2.3vw, 1.35rem);
    color: var(--muted);
    max-width: 720px;
    margin: 0 0 30px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 26px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 20px;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    font-weight: 950;
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn.primary {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    box-shadow: 0 16px 32px rgba(8, 109, 223, 0.28);
}
.btn.secondary {
    color: var(--blue-dark);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    color: #0b4777;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(204, 230, 247, 0.92);
    font-weight: 850;
    font-size: 0.93rem;
}
.trust-row span::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
}

.hero-visual {
    position: relative;
    min-height: 540px;
    display: grid;
    place-items: center;
}
.hero-illustration {
    width: min(100%, 720px);
    filter: drop-shadow(0 30px 60px rgba(6, 27, 53, 0.18));
}

.floating-card {
    position: absolute;
    display: grid;
    gap: 2px;
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(204, 230, 247, 0.86);
    border-radius: 22px;
    padding: 16px 18px;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(14px);
}
.floating-card small { color: var(--muted); font-weight: 850; }
.floating-card strong { font-size: 2.1rem; line-height: 1; letter-spacing: -0.05em; }
.floating-card span { color: var(--green); font-weight: 900; }
.card-balance { left: 0; bottom: 40px; }
.card-interest { right: 8px; top: 70px; }

.intro .narrow {
    padding: 40px;
    background: var(--surface);
    border: 1px solid rgba(204, 230, 247, 0.86);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
}
.intro p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.note {
    padding: 16px 18px;
    border-radius: 18px;
    background: #fff7d7;
    color: #725200 !important;
    font-weight: 800;
    border: 1px solid rgba(255, 208, 91, 0.65);
}

.section-heading {
    max-width: 820px;
    margin-bottom: 34px;
}
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.split-heading {
    max-width: none;
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 32px;
    align-items: end;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.feature-card,
.role-card,
.screenshot-card,
.legal-card,
.contact-form {
    background: var(--surface);
    border: 1px solid rgba(204, 230, 247, 0.88);
    box-shadow: var(--shadow-soft);
}
.feature-card {
    padding: 26px;
    border-radius: var(--radius-lg);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-card img { margin-bottom: 18px; }
.feature-card p { color: var(--muted); margin: 0; }

.roles {
    background: linear-gradient(180deg, rgba(255,255,255,0), rgba(222,244,255,0.65), rgba(255,255,255,0));
}
.role-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}
.role-card {
    border-radius: var(--radius-xl);
    padding: 34px;
    position: relative;
    overflow: hidden;
}
.role-card::before {
    content: "";
    position: absolute;
    inset: auto -50px -70px auto;
    width: 190px;
    height: 190px;
    background: radial-gradient(circle, rgba(4,159,226,0.18), transparent 70%);
}
.role-icon {
    width: 96px;
    height: 96px;
    border-radius: 28px;
    display: grid;
    place-items: center;
    background: #f2fbff;
    margin-bottom: 22px;
}
.role-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}
.role-card li {
    position: relative;
    padding-left: 30px;
    color: var(--muted);
    font-weight: 750;
}
.role-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -1px;
    color: var(--green);
    font-weight: 1000;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}
.screenshot-card {
    margin: 0;
    padding: 12px;
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.screenshot-card img {
    width: 100%;
    display: block;
    border-radius: 24px;
    background: #eef8ff;
}
.screenshot-card figcaption {
    padding: 12px 10px 6px;
    color: var(--muted);
    font-weight: 900;
}
.screenshot-card.wide { align-self: start; }

.benefits .benefit-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 34px;
    align-items: center;
    padding: 44px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, #00a8ef, #086ddf);
    color: #fff;
    box-shadow: var(--shadow);
}
.benefits h2, .benefits .eyebrow { color: #fff; }
.benefits p { color: rgba(255,255,255,0.86); font-size: 1.08rem; }
.benefit-list {
    display: grid;
    gap: 14px;
}
.benefit-list div {
    display: grid;
    gap: 5px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.26);
    backdrop-filter: blur(12px);
}
.benefit-list strong { font-size: 1.05rem; }
.benefit-list span { color: rgba(255,255,255,0.84); }

.faq details {
    border: 1px solid rgba(204, 230, 247, 0.92);
    background: var(--surface);
    border-radius: 20px;
    padding: 0 20px;
    margin: 12px 0;
    box-shadow: var(--shadow-soft);
}
.faq summary {
    cursor: pointer;
    font-weight: 950;
    padding: 18px 4px;
    list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: "+";
    float: right;
    color: var(--blue-dark);
    font-size: 1.35rem;
    line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq details p {
    color: var(--muted);
    margin: 0 0 18px;
}

.contact {
    padding-bottom: 96px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 30px;
    align-items: start;
}
.contact-grid > div:first-child {
    position: sticky;
    top: 96px;
}
.contact-grid p { color: var(--muted); font-size: 1.08rem; }
.contact-facts {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}
.contact-facts span {
    display: block;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(204, 230, 247, 0.88);
    font-weight: 900;
    color: #0b4777;
}

.contact-form {
    border-radius: var(--radius-xl);
    padding: 28px;
}
.form-row {
    display: grid;
    gap: 16px;
    margin-bottom: 16px;
}
.form-row.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
label {
    display: grid;
    gap: 8px;
    color: #173a62;
    font-weight: 900;
}
input, textarea {
    width: 100%;
    border: 1px solid #c5e2f5;
    border-radius: 16px;
    background: #f8fcff;
    color: var(--text);
    padding: 14px 15px;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
textarea { resize: vertical; min-height: 150px; }
input:focus, textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(4, 159, 226, 0.14);
    background: #fff;
}
.captcha-row { align-items: end; margin-top: 16px; }
.form-submit { min-height: 54px; width: 100%; }
.hp-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.privacy-hint {
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 0.92rem !important;
}
.form-message {
    border-radius: 16px;
    padding: 13px 15px;
    margin-bottom: 16px;
    font-weight: 900;
}
.form-message.success {
    color: #006441;
    background: rgba(5,168,107,0.12);
    border: 1px solid rgba(5,168,107,0.24);
}
.form-message.error {
    color: #9b1d25;
    background: rgba(255,77,86,0.12);
    border: 1px solid rgba(255,77,86,0.24);
}

.legal-page {
    min-height: 70vh;
}
.legal-card {
    border-radius: var(--radius-xl);
    padding: clamp(26px, 5vw, 54px);
}
.legal-card h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); }
.legal-card h2 {
    font-size: 1.38rem;
    margin-top: 32px;
    letter-spacing: -0.02em;
}
.legal-card p { color: var(--muted); }
.legal-note {
    padding: 16px 18px;
    border-radius: 18px;
    background: #fff7d7;
    border: 1px solid rgba(255, 208, 91, 0.75);
    color: #725200 !important;
}

.site-footer {
    background: #061b35;
    color: rgba(255,255,255,0.78);
    padding: 56px 0 22px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.7fr 0.7fr 1fr;
    gap: 28px;
}
.site-footer h2 {
    color: #fff;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 12px;
}
.site-footer a {
    color: rgba(255,255,255,0.84);
    display: block;
    margin: 8px 0;
}
.site-footer .brand { color: #fff; }
.site-footer .brand small { color: rgba(255,255,255,0.64); }
.site-footer p { margin: 14px 0 0; }
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid rgba(255,255,255,0.12);
    margin-top: 34px;
    padding-top: 18px;
    font-size: 0.92rem;
}

@media (max-width: 980px) {
    .hero-grid,
    .split-heading,
    .benefits .benefit-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .hero-visual { min-height: 480px; }
    .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .contact-grid > div:first-child { position: static; }
    .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 780px) {
    .container { width: min(100% - 28px, var(--container)); }
    .section-pad { padding: 62px 0 50px; }
    .section { padding: 56px 0; }
    .nav-toggle { display: inline-flex; }
    .main-nav {
        position: absolute;
        inset: 74px 14px auto 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        background: rgba(255,255,255,0.96);
        border: 1px solid var(--line);
        border-radius: 24px;
        box-shadow: var(--shadow);
    }
    .main-nav.is-open { display: flex; }
    .main-nav a { padding: 14px 16px; }
    .hero-grid { gap: 18px; }
    .hero-visual { min-height: 420px; }
    .floating-card { transform: scale(0.92); }
    .card-balance { left: -14px; bottom: 14px; }
    .card-interest { right: -14px; top: 34px; }
    .role-grid,
    .screenshot-grid,
    .feature-grid,
    .form-row.two { grid-template-columns: 1fr; }
    .intro .narrow,
    .benefits .benefit-grid,
    .role-card,
    .contact-form { padding: 24px; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 460px) {
    h1 { font-size: 2.72rem; }
    h2 { font-size: 2.08rem; }
    .hero-actions .btn { width: 100%; }
    .hero-visual { min-height: 355px; }
    .floating-card { display: none; }
    .trust-row span { width: 100%; }
    .screenshot-card { border-radius: 24px; padding: 9px; }
}


.brand-logo img { display:block; width: clamp(160px, 22vw, 210px); height:auto; }
.main-nav a[aria-current="page"] { background: rgba(255,255,255,0.72); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible {
    outline: 3px solid rgba(4,159,226,0.45);
    outline-offset: 3px;
}
.hero-device-stack {
    position: relative;
    width: min(100%, 600px);
    min-height: 560px;
}
.hero-device {
    position: absolute;
    display:block;
    width: min(72%, 410px);
    filter: drop-shadow(0 28px 44px rgba(6,27,53,0.18));
}
.hero-device-main { right: 0; top: 0; z-index: 2; }
.hero-device-secondary { left: 0; bottom: 0; width: min(50%, 280px); z-index: 1; }
.demo-teaser-card {
    display:grid;
    grid-template-columns: 1.3fr .7fr;
    gap:28px;
    align-items:center;
    padding: 36px 40px;
    background: var(--surface);
    border: 1px solid rgba(204,230,247,0.86);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
}
.demo-teaser-actions { display:grid; gap:16px; justify-items:start; }
.mini-hint { color: var(--muted); margin:0; }
.hp-field { position:absolute !important; left:-9999px; width:1px; height:1px; overflow:hidden; }
.demo-login-grid {
    display:grid;
    grid-template-columns: 1.1fr .9fr;
    gap:32px;
    align-items:start;
}
.demo-info, .demo-login-form, .legal-card {
    background: var(--surface);
    border: 1px solid rgba(204,230,247,0.86);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
}
.demo-info { padding: 34px; }
.demo-credentials {
    display:grid;
    gap:14px;
    grid-template-columns: repeat(2, minmax(0,1fr));
    margin: 24px 0;
}
.demo-credentials > div {
    padding: 18px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(204,230,247,0.86);
}
.demo-credentials h2 { font-size: 1.25rem; margin-bottom: 10px; }
.demo-app-header {
    display:flex; justify-content:space-between; gap:20px; align-items:flex-end; margin-bottom:26px;
}
.demo-preview-grid {
    display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:20px;
}
.legal-card { padding: 34px 40px; }
.legal-card p, .legal-card li { color: var(--muted); }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
@media (max-width: 980px) {
    .hero-grid, .benefits .benefit-grid, .demo-login-grid, .demo-teaser-card, .demo-preview-grid { grid-template-columns: 1fr; }
    .hero-device-stack { min-height: 500px; }
    .hero-device-main { position: relative; right: auto; top: auto; margin-left:auto; }
    .hero-device-secondary { position: absolute; left: 0; bottom: 10px; }
}
@media (max-width: 760px) {
    .brand-logo img { width: 168px; }
    .hero-visual { min-height: 460px; }
    .hero-device-stack { min-height: 430px; }
    .hero-device { width: min(80%, 360px); }
    .hero-device-secondary { width: min(54%, 210px); }
    .demo-credentials { grid-template-columns: 1fr; }
}


.quick-benefits { padding-top: 20px; }
.quick-benefit-grid {
    display:grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 20px;
}
.quick-benefit-grid article {
    padding: 24px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid rgba(204,230,247,.86);
    box-shadow: var(--shadow-soft);
}
.quick-benefit-grid strong { display:block; font-size:1.12rem; margin-bottom:10px; }
.quick-benefit-grid p { margin:0; color:var(--muted); }
.conversion-band-inner {
    display:grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 28px;
    align-items:center;
    padding: 34px 40px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(4,159,226,.12), rgba(8,109,223,.08));
    border: 1px solid rgba(204,230,247,.86);
}
.conversion-list {
    list-style:none; padding:0; margin:0; display:grid; gap:12px;
}
.conversion-list li {
    padding: 14px 16px 14px 42px;
    position:relative;
    border-radius: 18px;
    background:#fff;
    border: 1px solid rgba(204,230,247,.86);
    font-weight:800;
}
.conversion-list li::before {
    content:"✓";
    position:absolute; left:16px; top:11px;
    color: var(--green); font-size: 1.1rem; font-weight: 900;
}
.accessibility-card {
    padding: 34px 40px;
    background: var(--surface);
    border: 1px solid rgba(204,230,247,.86);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
}
.accessibility-list {
    display:grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 14px 22px;
    list-style:none;
    padding:0;
    margin: 0;
}
.accessibility-list li {
    color: var(--muted);
    font-weight: 750;
    padding-left: 28px;
    position: relative;
}
.accessibility-list li::before {
    content: "•";
    color: var(--blue-dark);
    position: absolute; left: 8px; top: 0;
    font-size: 1.2rem;
}
.demo-dashboard {
    display:grid;
    gap: 24px;
}
.demo-stat-grid {
    display:grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 18px;
}
.demo-stat-card {
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(135deg, #ffffff, #f3fbff);
    border: 1px solid rgba(204,230,247,.92);
    box-shadow: var(--shadow-soft);
    display:grid; gap:6px;
}
.demo-stat-card span, .demo-stat-card small { color: var(--muted); font-weight: 800; }
.demo-stat-card strong { font-size: 2rem; letter-spacing: -.04em; line-height: 1.05; }
.demo-content-grid {
    display:grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 20px;
}
.demo-panel {
    padding: 24px;
    border-radius: 26px;
    background: var(--surface);
    border: 1px solid rgba(204,230,247,.92);
    box-shadow: var(--shadow-soft);
}
.demo-panel.wide { grid-column: 1 / -1; }
.demo-panel-head {
    display:flex; justify-content:space-between; gap:16px; align-items:flex-end; margin-bottom: 18px;
}
.demo-panel-head h2 { font-size: 1.45rem; margin:0; }
.demo-panel-head span { color: var(--muted); font-weight: 800; }
.demo-child-list, .demo-booking-list {
    display:grid; gap: 12px;
}
.demo-child-list article, .demo-booking-list > div {
    padding: 16px 18px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(204,230,247,.86);
}
.demo-child-list article { display:grid; grid-template-columns: 1fr auto; gap:4px 12px; align-items:center; }
.demo-child-list strong { font-size: 1.06rem; }
.demo-child-list span { font-size: 1.4rem; font-weight: 900; }
.demo-child-list small, .demo-booking-list small { color: var(--muted); }
.demo-action-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:12px; }
.demo-action {
    min-height: 52px; padding: 12px 16px; border-radius: 18px; border:1px solid rgba(204,230,247,.92);
    background:#fff; color:var(--text); font-weight:850; cursor:pointer;
}
.demo-action:hover { background: #f5fbff; }
.demo-booking-list > div {
    display:grid;
    grid-template-columns: 1fr auto;
    gap: 4px 12px;
    align-items:center;
}
.demo-booking-list span { color: var(--muted); font-weight: 800; }
.demo-booking-list strong { font-size: 1.3rem; font-weight: 900; }
.plus { color: var(--green); }
.minus { color: var(--red); }
.goal-card { display:grid; gap:12px; }
.goal-card strong { font-size: 1.3rem; }
.goal-progress {
    width:100%; height:16px; border-radius: 999px; background: #e8f5ff; overflow:hidden; border:1px solid rgba(204,230,247,.92);
}
.goal-progress span {
    display:block; height:100%; border-radius:999px; background: linear-gradient(135deg, var(--teal), var(--blue-dark));
}
.mini-list { list-style:none; padding:0; margin:0; display:grid; gap:12px; }
.mini-list li {
    display:flex; justify-content:space-between; gap:12px; padding:14px 16px; border-radius:18px; background:#fff; border:1px solid rgba(204,230,247,.86);
}
.mini-list strong { font-size:1.15rem; }
.mini-list span { color:var(--muted); font-weight:800; }
.demo-points { margin: 12px 0 18px; }

@media (max-width: 980px) {
    .quick-benefit-grid, .demo-stat-grid, .demo-content-grid, .accessibility-list, .conversion-band-inner { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
    .demo-action-grid { grid-template-columns: 1fr; }
    .demo-app-header, .demo-panel-head { align-items:flex-start; flex-direction:column; }
}


.security-summary-card {
    display:grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 28px;
    align-items:center;
    padding: 36px 40px;
    background: var(--surface);
    border: 1px solid rgba(204,230,247,.86);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
}
.url-pattern-card {
    display:grid;
    gap: 10px;
    padding: 22px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(204,230,247,.92);
}
.url-pattern-card span, .url-pattern-card small { color: var(--muted); font-weight: 800; }
.url-pattern-card code, .security code {
    display:inline-block;
    max-width:100%;
    overflow-wrap:anywhere;
    padding: 8px 10px;
    border-radius: 12px;
    background: #eef8ff;
    color: var(--text);
    font-weight: 900;
}
.security-grid {
    display:grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 18px;
}
.security-grid article {
    display:grid;
    gap: 8px;
    padding: 22px;
    border-radius: 24px;
    background: var(--surface);
    border: 1px solid rgba(204,230,247,.86);
    box-shadow: var(--shadow-soft);
}
.security-grid strong { font-size: 1.05rem; }
.security-grid span { color: var(--muted); font-weight: 750; }
@media (max-width: 980px) {
    .security-summary-card, .security-grid { grid-template-columns: 1fr; }
}


/* v5 adjustments */
.app-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.app-brand-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: block;
    box-shadow: 0 10px 22px rgba(8, 109, 223, 0.18);
}
.app-brand strong { display:block; line-height:1.05; }
.app-brand small { display:block; font-size:.62rem; line-height:1.1; color: var(--muted); font-weight:800; }
.demo-credentials-card {
    grid-template-columns: 1.05fr .95fr;
}
.demo-login-box {
    display: grid;
    gap: 14px;
    align-content: start;
}
.demo-login-card {
    padding: 18px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(204,230,247,.92);
}
.demo-login-card h3 {
    font-size: 1.05rem;
    margin: 0 0 8px;
}
.demo-login-card p {
    margin: 0;
    color: var(--muted);
    font-weight: 750;
}
.terms-inline {
    margin-top: 18px;
    color: var(--muted);
    font-weight: 750;
}
.security-grid.friendly article {
    background: #fff;
}
.compact-contact {
    align-items: center;
}
.compact-contact .contact-facts {
    display: none;
}
@media (max-width: 980px) {
    .demo-credentials-card {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 760px) {
    .app-brand small {
        display:none;
    }
}


/* v6 footer and mail image */
.site-footer-slim {
    padding: 26px 0;
}
.site-footer-slim .footer-slim-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid rgba(255,255,255,.18);
    padding-top: 0;
}
.site-footer-slim nav {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.site-footer-slim a {
    color: rgba(255,255,255,.88);
    font-weight: 800;
}
.site-footer-slim span {
    color: rgba(255,255,255,.88);
    font-weight: 800;
}
.mail-image {
    display: inline-block;
    vertical-align: middle;
    width: 252px;
    height: 24px;
    max-width: 100%;
}
@media (max-width: 760px) {
    .site-footer-slim .footer-slim-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
