:root {
    --navy: #102a43;
    --navy-2: #173f64;
    --blue: #2878ff;
    --blue-dark: #155fd7;
    --blue-soft: #eaf2ff;
    --green: #16a47a;
    --green-soft: #e8f8f3;
    --amber: #f2a93b;
    --purple: #7b61df;
    --ink: #172b3f;
    --muted: #64788b;
    --line: #dce6ef;
    --surface: #f6f9fc;
    --white: #fff;
    --danger: #db5b5b;
    --shadow-sm: 0 8px 24px rgba(24, 53, 83, .08);
    --shadow-lg: 0 24px 70px rgba(13, 43, 75, .16);
    --radius: 18px;
    --container: 1180px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { display: block; width: 22px; height: 22px; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 100; left: 16px; top: -60px; padding: 12px 16px; color: white; background: var(--navy); border-radius: 8px; }
.skip-link:focus { top: 16px; }

.site-header {
    position: sticky;
    z-index: 50;
    top: 0;
    height: 76px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(220, 230, 239, .85);
    backdrop-filter: blur(15px);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { display: grid; place-items: center; width: 38px; height: 38px; color: white; background: linear-gradient(135deg, var(--blue), #5a9bff); border-radius: 11px; box-shadow: 0 8px 18px rgba(40, 120, 255, .22); }
.brand-mark svg { width: 21px; }
.brand strong, .brand small { display: block; }
.brand strong { font-size: 18px; letter-spacing: -.4px; }
.brand small { margin-top: 1px; color: var(--muted); font-size: 10px; font-weight: 600; letter-spacing: .7px; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { position: relative; color: #53697d; font-size: 14px; font-weight: 650; transition: color .2s ease; }
.main-nav a:hover, .main-nav a.active { color: var(--blue); }
.main-nav a.active::after { content: ""; position: absolute; right: 0; bottom: -27px; left: 0; height: 2px; background: var(--blue); }
.main-nav .nav-cta { padding: 11px 17px; color: white; background: var(--navy); border-radius: 10px; }
.main-nav .nav-cta:hover { color: white; background: var(--navy-2); }
.main-nav .nav-cta::after { display: none; }
.menu-button { display: none; width: 42px; height: 42px; padding: 0; color: var(--navy); background: transparent; border: 0; cursor: pointer; }
.menu-close { display: none; }
.menu-button[aria-expanded="true"] .menu-open { display: none; }
.menu-button[aria-expanded="true"] .menu-close { display: block; }

.hero {
    position: relative;
    min-height: 690px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 50%, #f5fbf9 100%);
}
.hero::before { content: ""; position: absolute; inset: 0; opacity: .42; background-image: radial-gradient(#b8cae0 1px, transparent 1px); background-size: 28px 28px; mask-image: linear-gradient(to right, black, transparent 65%); }
.hero-grid { position: relative; z-index: 2; min-height: 690px; display: grid; grid-template-columns: .94fr 1.06fr; gap: 58px; align-items: center; padding-block: 70px; }
.hero-copy h1, .inner-hero h1 {
    margin: 16px 0 20px;
    color: var(--navy);
    font-size: clamp(44px, 5vw, 70px);
    line-height: 1.03;
    letter-spacing: -3px;
}
.hero-copy h1 em, .inner-hero h1 em, .section-heading h2 em, .hosting-copy h2 em, .feasibility-copy h2 em { color: var(--blue); font-style: normal; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; }
.eyebrow > span { width: 28px; height: 2px; background: currentColor; }
.hero-lead { max-width: 600px; margin: 0; color: #536b80; font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 21px; border: 1px solid transparent; border-radius: 11px; font-size: 14px; font-weight: 750; cursor: pointer; transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease; }
.button svg { width: 18px; }
.button-primary { color: white; background: var(--blue); box-shadow: 0 10px 22px rgba(40, 120, 255, .22); }
.button-primary:hover { background: var(--blue-dark); box-shadow: 0 13px 28px rgba(40, 120, 255, .3); }
.button-secondary { color: var(--navy); background: white; border-color: var(--line); }
.button-secondary:hover { border-color: #adc4db; background: #f9fbfd; }
.button-white { color: var(--navy); background: white; }
.button-white:hover { background: #edf5ff; }
.button:focus-visible, .main-nav a:focus-visible, .menu-button:focus-visible, .demo-tab:focus-visible { outline: 3px solid rgba(40,120,255,.35); outline-offset: 3px; }
.hero-proof { display: flex; gap: 30px; margin-top: 42px; }
.hero-proof div { padding-right: 28px; border-right: 1px solid #cfdae5; }
.hero-proof div:last-child { border-right: 0; }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { color: var(--navy); font-size: 23px; }
.hero-proof span { margin-top: 4px; color: var(--muted); font-size: 11px; font-weight: 650; }
.hero-visual { position: relative; }
.dashboard-shell { min-height: 430px; display: grid; grid-template-columns: 68px 1fr; overflow: hidden; background: white; border: 1px solid #dfe9f2; border-radius: 20px; box-shadow: var(--shadow-lg); transform: perspective(1200px) rotateY(-3deg) rotateX(1deg); }
.mock-sidebar { display: flex; flex-direction: column; align-items: center; gap: 25px; padding: 20px 0; background: var(--navy); }
.mock-logo { display: grid; place-items: center; width: 33px; height: 33px; color: white; background: var(--blue); border-radius: 9px; }
.mock-logo svg { width: 17px; }
.mock-sidebar i { width: 19px; height: 19px; opacity: .36; border: 2px solid white; border-radius: 5px; }
.mock-sidebar i.active { opacity: 1; border-color: var(--blue); background: var(--blue); }
.mock-main { padding: 23px; background: #f7f9fc; }
.mock-top { height: 34px; display: flex; align-items: center; justify-content: space-between; margin-bottom: 29px; }
.mock-top > span { width: 150px; height: 9px; background: #e2e9ef; border-radius: 5px; }
.mock-avatar { width: 32px; height: 32px; background: linear-gradient(135deg, #bcd5fa, #e1ecfa); border-radius: 50%; }
.mock-kicker { margin: 0 0 5px; color: var(--blue); font-size: 8px; font-weight: 800; letter-spacing: 1.2px; }
.mock-main h3 { margin: 0 0 22px; font-size: 20px; }
.mock-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; }
.mock-stats > div { display: grid; grid-template-columns: 36px 1fr; padding: 14px 11px; background: white; border: 1px solid #e9eef3; border-radius: 11px; }
.stat-icon { grid-row: span 2; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; }
.stat-icon svg { width: 17px; }
.stat-icon.blue { color: var(--blue); background: var(--blue-soft); }
.stat-icon.green { color: var(--green); background: var(--green-soft); }
.stat-icon.amber { color: var(--amber); background: #fff6e5; }
.stat-icon.purple { color: var(--purple); background: #f0edff; }
.mock-stats b { font-size: 17px; }
.mock-stats small { color: var(--muted); font-size: 8px; }
.mock-content-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 11px; margin-top: 12px; }
.mock-chart, .mock-schedule { min-height: 176px; padding: 16px; background: white; border: 1px solid #e9eef3; border-radius: 11px; }
.mock-card-head b, .mock-card-head small { display: block; }
.mock-card-head b, .mock-schedule > b { font-size: 11px; }
.mock-card-head small { margin-top: 3px; color: var(--muted); font-size: 7px; }
.bars { height: 105px; display: flex; align-items: end; gap: 8px; padding: 14px 8px 0; border-bottom: 1px solid #e7edf3; background: repeating-linear-gradient(to bottom, transparent 0, transparent 25px, #edf2f6 26px); }
.bars i { flex: 1; background: linear-gradient(to top, #2878ff, #79aaff); border-radius: 4px 4px 0 0; }
.mock-schedule > div { display: flex; align-items: center; gap: 8px; margin-top: 13px; padding-top: 11px; border-top: 1px solid #edf1f4; }
.mock-schedule > div > span { display: grid; place-items: center; width: 30px; height: 30px; color: var(--blue); background: var(--blue-soft); border-radius: 7px; font-size: 10px; font-weight: 800; }
.mock-schedule p { margin: 0; }
.mock-schedule strong, .mock-schedule small { display: block; font-size: 8px; }
.mock-schedule small { margin-top: 3px; color: var(--muted); }
.floating-card { position: absolute; display: flex; align-items: center; gap: 10px; padding: 12px 15px; background: rgba(255,255,255,.96); border: 1px solid #e1eaf3; border-radius: 12px; box-shadow: var(--shadow-sm); }
.floating-card > svg { width: 19px; color: var(--green); }
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { color: var(--navy); font-size: 11px; }
.floating-card small { margin-top: 3px; color: var(--muted); font-size: 8px; }
.floating-card-top { top: 25px; right: -22px; }
.floating-card-bottom { bottom: 31px; left: 40px; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); }
.hero-orb-one { right: -120px; top: 40px; width: 390px; height: 390px; background: rgba(71, 147, 255, .1); }
.hero-orb-two { right: 35%; bottom: -180px; width: 340px; height: 340px; background: rgba(22, 164, 122, .08); }

.trust-strip { border-block: 1px solid var(--line); background: white; }
.trust-items { min-height: 82px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.trust-items span { display: flex; align-items: center; justify-content: center; gap: 9px; color: #5a6e81; font-size: 12px; font-weight: 700; border-right: 1px solid var(--line); }
.trust-items span:last-child { border-right: 0; }
.trust-items svg { width: 18px; color: var(--blue); }

.section { padding-block: 100px; }
.section-heading { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-heading h2, .hosting-copy h2, .feasibility-copy h2 { margin: 14px 0 15px; color: var(--navy); font-size: clamp(32px, 4vw, 48px); line-height: 1.15; letter-spacing: -1.8px; }
.section-heading p, .hosting-copy > p, .feasibility-copy > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { position: relative; min-height: 440px; padding: 28px; overflow: hidden; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 3px 0 rgba(16,42,67,.02); transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.feature-card:hover { transform: translateY(-3px); border-color: #b8cde1; box-shadow: var(--shadow-sm); }
.feature-number { position: absolute; right: 22px; top: 18px; color: #eaf0f5; font-size: 45px; font-weight: 850; letter-spacing: -2px; }
.feature-icon { width: 50px; height: 50px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 13px; }
.feature-card:nth-child(2) .feature-icon, .feature-card:nth-child(5) .feature-icon { color: var(--green); background: var(--green-soft); }
.feature-card:nth-child(3) .feature-icon, .feature-card:nth-child(6) .feature-icon { color: var(--purple); background: #f0edff; }
.feature-card h3 { margin: 22px 0 10px; color: var(--navy); font-size: 20px; }
.feature-card > p { min-height: 50px; margin: 0 0 20px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.feature-card ul, .server-notes, .platform-card ul { display: grid; gap: 10px; margin: 0; padding: 18px 0 0; border-top: 1px solid #edf1f4; list-style: none; }
.feature-card li, .server-notes li, .platform-card li { display: flex; align-items: flex-start; gap: 9px; color: #4a6278; font-size: 12px; line-height: 1.45; }
.feature-card li svg, .server-notes li svg, .platform-card li svg { flex: 0 0 auto; width: 15px; height: 15px; margin-top: 1px; color: var(--green); }

.workflow-section { position: relative; overflow: hidden; background: var(--navy); }
.workflow-section::after { content: ""; position: absolute; width: 500px; height: 500px; right: -180px; top: -250px; border: 90px solid rgba(255,255,255,.025); border-radius: 50%; }
.section-heading-light h2 { color: white; }
.section-heading-light h2 em { color: #69a5ff; font-style: normal; }
.eyebrow-light { color: #78adff; }
.workflow { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr; align-items: center; }
.workflow article { position: relative; min-height: 220px; padding: 27px 20px; text-align: center; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.09); border-radius: 16px; }
.workflow article > span { position: absolute; top: 15px; right: 16px; color: rgba(255,255,255,.15); font-size: 27px; font-weight: 800; }
.workflow-icon { width: 48px; height: 48px; display: grid; place-items: center; margin: 4px auto 18px; color: #8bb9ff; background: rgba(40,120,255,.2); border-radius: 13px; }
.workflow h3 { margin: 0 0 9px; color: white; font-size: 18px; }
.workflow p { margin: 0; color: #a9bac9; font-size: 12px; line-height: 1.6; }
.workflow-line { height: 1px; background: repeating-linear-gradient(to right, #4d6a86 0 5px, transparent 5px 9px); }

.hosting-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.hosting-copy h2, .feasibility-copy h2 { margin-top: 16px; }
.fact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 30px; }
.fact-grid div { padding: 18px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; }
.fact-grid strong, .fact-grid span { display: block; }
.fact-grid strong { color: var(--navy); font-size: 22px; }
.fact-grid span { margin-top: 5px; color: var(--muted); font-size: 11px; }
.server-card { padding: 30px; background: white; border: 1px solid #ccdaea; border-radius: 20px; box-shadow: var(--shadow-lg); }
.server-card-head { display: flex; align-items: center; gap: 14px; padding-bottom: 23px; border-bottom: 1px solid var(--line); }
.server-icon { display: grid; place-items: center; width: 51px; height: 51px; color: white; background: var(--navy); border-radius: 13px; }
.server-card-head small { color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: 1px; }
.server-card-head h3 { margin: 4px 0 0; color: var(--navy); font-size: 22px; }
.recommended-badge, .neutral-badge { margin-left: auto; padding: 7px 10px; color: #0a7e5e; background: var(--green-soft); border-radius: 999px; font-size: 9px; font-weight: 800; text-transform: uppercase; }
.neutral-badge { color: #697b8d; background: #edf1f5; }
.server-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 22px 0; }
.server-specs div { padding: 14px; background: var(--surface); border-radius: 10px; }
.server-specs span, .server-specs strong { display: block; }
.server-specs span { color: var(--muted); font-size: 9px; text-transform: uppercase; }
.server-specs strong { margin-top: 5px; color: var(--navy); font-size: 14px; }
.storage-recommendation { display: flex; align-items: center; gap: 18px; margin: 24px 0; padding: 23px; background: linear-gradient(135deg, #f1f6ff, #f2fbf8); border: 1px solid #d8e6f3; border-radius: 14px; }
.storage-icon { flex: 0 0 auto; width: 52px; height: 52px; display: grid; place-items: center; color: white; background: var(--blue); border-radius: 13px; }
.storage-recommendation span, .storage-recommendation strong { display: block; }
.storage-recommendation span { color: var(--muted); font-size: 10px; font-weight: 750; text-transform: uppercase; letter-spacing: .7px; }
.storage-recommendation strong { margin-top: 4px; color: var(--navy); font-size: 24px; }
.storage-recommendation p { margin: 6px 0 0; color: var(--muted); font-size: 10px; line-height: 1.55; }
.server-notes { border-top: 0; padding-top: 0; }
.server-warning { margin: 19px 0 0; padding: 13px 15px; color: #6c5b3a; background: #fff9ea; border-left: 3px solid var(--amber); border-radius: 5px; font-size: 10px; line-height: 1.6; }
.decision-section { padding-top: 20px; }
.decision-card { display: flex; align-items: center; justify-content: space-between; gap: 35px; padding: 45px 50px; color: white; background: linear-gradient(120deg, var(--blue-dark), var(--blue)); border-radius: 22px; box-shadow: 0 20px 50px rgba(40,120,255,.22); }
.decision-card h2 { margin: 10px 0 8px; font-size: 34px; letter-spacing: -1.2px; }
.decision-card p { max-width: 650px; margin: 0; color: #dfebff; line-height: 1.65; }

.site-footer { padding-block: 33px; border-top: 1px solid var(--line); background: #f8fafc; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; }
.brand-footer .brand-mark { width: 34px; height: 34px; }
.footer-inner > p { color: var(--muted); font-size: 11px; }

.inner-hero { min-height: 430px; display: flex; align-items: center; text-align: center; background: var(--navy); }
.inner-hero-content { padding-block: 72px; }
.inner-hero h1 { margin-inline: auto; color: white; font-size: clamp(44px, 6vw, 67px); }
.inner-hero h1 em { color: #72a9ff; }
.inner-hero p { max-width: 720px; margin: 0 auto; color: #b5c5d4; font-size: 17px; line-height: 1.75; }
.compare-hero { position: relative; overflow: hidden; background: radial-gradient(circle at 80% 10%, #204c77 0, transparent 32%), var(--navy); }
.compare-hero::before, .demo-hero::before { content: ""; position: absolute; inset: 0; opacity: .12; background-image: linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px); background-size: 42px 42px; }
.inner-hero-content { position: relative; z-index: 2; }
.compare-summary-section { padding-top: 70px; background: var(--surface); }
.platform-cards { display: grid; grid-template-columns: 1fr 70px 1fr; align-items: center; max-width: 960px; margin: 0 auto; }
.platform-card { min-height: 440px; padding: 34px; background: white; border: 1px solid var(--line); border-radius: 20px; }
.platform-winner { border: 2px solid var(--blue); box-shadow: var(--shadow-lg); }
.platform-card-top { display: flex; align-items: center; justify-content: space-between; }
.platform-icon { display: grid; place-items: center; width: 52px; height: 52px; color: white; background: var(--blue); border-radius: 14px; }
.platform-icon.muted { color: #64778b; background: #edf2f6; }
.platform-card h2 { margin: 22px 0 9px; color: var(--navy); font-size: 28px; }
.platform-card > p { min-height: 65px; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
.score { display: flex; align-items: center; gap: 10px; margin: 24px 0; padding: 17px; color: white; background: var(--blue); border-radius: 12px; }
.score strong { font-size: 34px; line-height: 1; }
.score span { font-size: 11px; }
.score-muted { color: var(--navy); background: #eef2f6; }
.platform-card ul { border-top: 0; }
.platform-card li { font-size: 12px; }
.muted-list li svg { color: #8b9bab; }
.versus { position: relative; z-index: 2; width: 54px; height: 54px; display: grid; place-items: center; justify-self: center; color: var(--navy); background: white; border: 1px solid var(--line); border-radius: 50%; box-shadow: var(--shadow-sm); font-size: 12px; font-weight: 900; }
.comparison-table-wrap { overflow: hidden; border: 1px solid var(--line); border-radius: 17px; box-shadow: var(--shadow-sm); }
.comparison-table { width: 100%; border-collapse: collapse; background: white; table-layout: fixed; }
.comparison-table th, .comparison-table td { padding: 18px 20px; text-align: left; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.comparison-table tr:last-child > * { border-bottom: 0; }
.comparison-table tr > *:last-child { border-right: 0; }
.comparison-table thead th { color: white; background: var(--navy); font-size: 13px; }
.comparison-table thead th:first-child { width: 25%; }
.comparison-table thead th svg { display: inline-block; width: 17px; vertical-align: middle; margin-right: 7px; }
.comparison-table tbody th { color: var(--navy); background: #fbfcfd; font-size: 12px; }
.comparison-table td { color: #5d7183; font-size: 11px; line-height: 1.55; }
.comparison-table td.cell-win { position: relative; color: #215f4d; background: #f1fbf8; font-weight: 650; }
.comparison-table td.cell-win > svg { display: inline-block; width: 15px; height: 15px; margin-right: 7px; color: var(--green); vertical-align: middle; }
.comparison-table td.android-win { color: #6b5732; background: #fff9ed; }
.comparison-table td.android-win > svg { color: var(--amber); }
.feasibility-section { background: var(--surface); }
.feasibility-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 75px; align-items: center; }
.feasibility-bars { padding: 30px; background: white; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-sm); }
.feasibility-row { display: grid; grid-template-columns: 190px 1fr 55px; gap: 16px; align-items: center; padding-block: 17px; border-bottom: 1px solid var(--line); }
.feasibility-row strong, .feasibility-row span { display: block; }
.feasibility-row strong { color: var(--navy); font-size: 13px; }
.feasibility-row span { margin-top: 4px; color: var(--muted); font-size: 9px; }
.feasibility-row > b { color: var(--green); font-size: 11px; }
.feasibility-row > b.low { color: var(--danger); }
.bar { height: 11px; overflow: hidden; background: #e8edf2; border-radius: 99px; }
.bar i { display: block; height: 100%; background: linear-gradient(to right, var(--blue-dark), var(--blue)); border-radius: inherit; }
.bar-low i { background: linear-gradient(to right, #df7b62, #eea173); }
.feasibility-note { margin: 15px 0 0; color: #8a99a7; font-size: 9px; text-align: right; }
.final-recommendation { padding-top: 0; background: var(--surface); }
.recommendation-box { display: grid; grid-template-columns: 70px 1fr auto; gap: 24px; align-items: center; padding: 36px; background: white; border: 1px solid var(--line); border-radius: 19px; box-shadow: var(--shadow-sm); }
.recommendation-icon { display: grid; place-items: center; width: 64px; height: 64px; color: white; background: var(--blue); border-radius: 17px; }
.recommendation-icon svg { width: 30px; height: 30px; }
.recommendation-box span { color: var(--blue); font-size: 9px; font-weight: 850; letter-spacing: 1.2px; }
.recommendation-box h2 { margin: 5px 0 7px; color: var(--navy); font-size: 24px; }
.recommendation-box p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }

.demo-hero { position: relative; min-height: 380px; overflow: hidden; background: radial-gradient(circle at 20% 0%, #214d78 0, transparent 36%), var(--navy); }
.demo-section { padding-top: 60px; background: var(--surface); }
.demo-tabs { display: flex; justify-content: center; gap: 6px; margin-bottom: 25px; }
.demo-tab { padding: 11px 20px; color: #67798b; background: white; border: 1px solid var(--line); border-radius: 9px; font-size: 12px; font-weight: 750; cursor: pointer; }
.demo-tab.active { color: white; background: var(--blue); border-color: var(--blue); }
.demo-browser { overflow: hidden; background: white; border: 1px solid #cdd9e5; border-radius: 18px; box-shadow: 0 30px 80px rgba(13,43,75,.17); }
.browser-bar { height: 46px; display: flex; align-items: center; gap: 7px; padding: 0 16px; background: #eef2f6; border-bottom: 1px solid #d9e1e9; }
.browser-bar > i { width: 9px; height: 9px; background: #ff766d; border-radius: 50%; }
.browser-bar > i:nth-child(2) { background: #f6c354; }
.browser-bar > i:nth-child(3) { background: #60cc7a; }
.browser-bar > div { width: 340px; margin: auto; padding: 7px 13px; color: #758697; background: white; border-radius: 6px; font-size: 9px; }
.browser-bar span { margin-right: 5px; color: var(--green); font-size: 7px; font-weight: 850; }
.demo-panel { min-height: 600px; display: grid; grid-template-columns: 205px 1fr; opacity: 0; transition: opacity .2s ease; }
.demo-panel.active { opacity: 1; }
.app-sidebar { display: flex; flex-direction: column; padding: 22px 16px; background: var(--navy); }
.app-brand { display: flex; align-items: center; gap: 9px; color: white; }
.app-brand > span { width: 30px; height: 30px; display: grid; place-items: center; color: white; background: var(--blue); border-radius: 8px; }
.app-brand svg { width: 16px; }
.app-brand b { font-size: 15px; }
.app-sidebar nav { display: grid; gap: 5px; margin-top: 32px; }
.app-sidebar nav button { width: 100%; display: flex; align-items: center; gap: 11px; padding: 11px 12px; color: #9eb2c5; background: transparent; border: 0; border-radius: 8px; font-size: 10px; font-weight: 650; text-align: left; cursor: pointer; transition: color .2s ease, background .2s ease; }
.app-sidebar nav button:hover { color: white; background: rgba(255,255,255,.08); }
.app-sidebar nav button.active { color: white; background: var(--blue); }
.app-sidebar nav svg { width: 16px; }
.app-user { display: flex; align-items: center; gap: 9px; margin-top: auto; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1); }
.app-user > span, .app-header-actions > span { width: 31px; height: 31px; display: grid; place-items: center; color: white; background: #4e6d89; border-radius: 9px; font-size: 9px; font-weight: 800; }
.app-user p { margin: 0; }
.app-user b, .app-user small { display: block; }
.app-user b { color: white; font-size: 9px; }
.app-user small { margin-top: 3px; color: #829ab0; font-size: 7px; }
.app-content { padding: 28px; background: #f5f7fa; }
.admin-view { min-height: 544px; }
.app-header { display: flex; align-items: center; justify-content: space-between; }
.app-header small { color: var(--muted); font-size: 8px; font-weight: 750; letter-spacing: .8px; }
.app-header h2 { margin: 5px 0 0; color: var(--navy); font-size: 25px; }
.app-header-actions { display: flex; align-items: center; gap: 10px; }
.app-header-actions button { width: 34px; height: 34px; display: grid; place-items: center; color: #6e8091; background: white; border: 1px solid var(--line); border-radius: 8px; }
.app-header-actions svg { width: 15px; }
.app-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 25px; }
.app-stat-grid article { display: flex; align-items: center; gap: 10px; padding: 15px; background: white; border: 1px solid #e1e7ed; border-radius: 11px; }
.app-stat-grid .stat-icon { flex: 0 0 auto; width: 38px; height: 38px; }
.app-stat-grid small, .app-stat-grid strong, .app-stat-grid em { display: block; }
.app-stat-grid small { color: var(--muted); font-size: 8px; }
.app-stat-grid strong { margin-top: 3px; color: var(--navy); font-size: 19px; }
.app-stat-grid em { margin-top: 3px; color: var(--green); font-size: 7px; font-style: normal; }
.app-dashboard-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 13px; margin-top: 14px; }
.app-card { min-width: 0; padding: 20px; background: white; border: 1px solid #e1e7ed; border-radius: 12px; }
.app-card-head { display: flex; align-items: center; justify-content: space-between; }
.app-card-head h3 { margin: 0; color: var(--navy); font-size: 13px; }
.app-card-head p { margin: 4px 0 0; color: var(--muted); font-size: 8px; }
.app-card-head select { padding: 6px 8px; color: #67798a; background: white; border: 1px solid var(--line); border-radius: 6px; font-size: 8px; }
.app-card-head a { color: var(--blue); font-size: 8px; font-weight: 700; }
.line-chart { position: relative; height: 260px; margin-top: 18px; padding: 0 0 26px 29px; }
.chart-y { position: absolute; left: 0; top: 0; bottom: 25px; display: flex; flex-direction: column; justify-content: space-between; color: #8b9aa8; font-size: 7px; }
.line-chart svg { width: 100%; height: 100%; overflow: visible; }
.grid-lines { fill: none; stroke: #e8edf2; stroke-width: 1; }
.chart-area { fill: url(#area); }
.chart-line { fill: none; stroke: var(--blue); stroke-width: 3; vector-effect: non-scaling-stroke; }
.chart-x { position: absolute; right: 0; bottom: 0; left: 29px; display: flex; justify-content: space-between; color: #8b9aa8; font-size: 6px; }
.schedule-list { margin-top: 16px; }
.schedule-list > div { display: flex; align-items: center; gap: 10px; padding: 15px 0; border-bottom: 1px solid #edf1f4; }
.schedule-list > div:last-child { border-bottom: 0; }
.schedule-list time { flex: 0 0 37px; height: 41px; display: grid; place-items: center; align-content: center; color: var(--blue); background: var(--blue-soft); border-radius: 8px; font-size: 7px; font-weight: 800; }
.schedule-list time b { display: block; font-size: 15px; line-height: 1; }
.schedule-list p { min-width: 0; flex: 1; margin: 0; }
.schedule-list strong, .schedule-list span { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.schedule-list strong { color: var(--navy); font-size: 9px; }
.schedule-list span { margin-top: 5px; color: var(--muted); font-size: 7px; }
.schedule-list i { padding: 4px 6px; color: #6d7e8e; background: #eef2f5; border-radius: 4px; font-size: 6px; font-style: normal; }
.schedule-list i.live { color: #0b8060; background: var(--green-soft); }
.text-action { padding: 0; color: var(--blue); background: transparent; border: 0; font-size: 8px; font-weight: 750; cursor: pointer; }
.app-primary-action { min-height: 34px; display: inline-flex; align-items: center; gap: 6px; padding: 0 12px; color: white; background: var(--blue); border: 0; border-radius: 8px; font-size: 8px; font-weight: 750; cursor: pointer; }
.app-primary-action svg { width: 13px; }
.module-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 25px; }
.module-summary article { display: flex; align-items: center; gap: 11px; padding: 16px; background: white; border: 1px solid #e1e7ed; border-radius: 11px; }
.module-summary small, .module-summary strong { display: block; }
.module-summary small { color: var(--muted); font-size: 8px; }
.module-summary strong { margin-top: 3px; color: var(--navy); font-size: 20px; }
.module-card { margin-top: 14px; }
.module-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding-bottom: 15px; border-bottom: 1px solid var(--line); }
.module-toolbar h3 { margin: 0; color: var(--navy); font-size: 13px; }
.module-toolbar p { margin: 4px 0 0; color: var(--muted); font-size: 8px; }
.fake-search { min-width: 190px; padding: 9px 12px; color: #93a1ae; background: var(--surface); border: 1px solid var(--line); border-radius: 7px; font-size: 8px; }
.data-table { margin-top: 5px; }
.table-row { display: grid; grid-template-columns: 1.6fr .8fr .8fr .55fr; align-items: center; min-height: 58px; padding: 8px 5px; color: #607487; border-bottom: 1px solid #edf1f4; font-size: 8px; }
.table-row:last-child { border-bottom: 0; }
.table-head { min-height: 35px; color: #8a99a7; font-size: 7px; font-weight: 800; text-transform: uppercase; }
.person { display: flex; align-items: center; gap: 9px; }
.person > i { width: 30px; height: 30px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 8px; font-style: normal; font-weight: 800; }
.person b, .person small { display: block; }
.person b { color: var(--navy); font-size: 9px; }
.person small { margin-top: 3px; color: var(--muted); font-size: 7px; font-weight: 400; }
.status-active, .status-muted, .status-upcoming, .status-draft { padding: 4px 7px; color: #087657; background: var(--green-soft); border-radius: 99px; font-size: 7px; font-style: normal; }
.status-muted, .status-draft { color: #748493; background: #eef2f5; }
.course-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px; margin-top: 25px; }
.course-grid > article { position: relative; padding: 20px; background: white; border: 1px solid #e1e7ed; border-radius: 12px; }
.course-code { position: absolute; right: 15px; top: 15px; color: #8a99a8; font-size: 7px; font-weight: 800; }
.course-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; }
.course-icon svg { width: 17px; }
.course-icon.blue { color: var(--blue); background: var(--blue-soft); }
.course-icon.green { color: var(--green); background: var(--green-soft); }
.course-icon.amber { color: var(--amber); background: #fff6e5; }
.course-icon.purple { color: var(--purple); background: #f0edff; }
.course-grid h3 { margin: 14px 0 5px; color: var(--navy); font-size: 12px; }
.course-grid p { margin: 0; color: var(--muted); font-size: 8px; }
.course-grid article > div:last-child { display: grid; grid-template-columns: auto 1fr auto 1fr; gap: 5px; margin-top: 16px; padding-top: 13px; border-top: 1px solid var(--line); align-items: center; }
.course-grid article > div:last-child b { color: var(--navy); font-size: 12px; }
.course-grid article > div:last-child span { color: var(--muted); font-size: 7px; }
.question-type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 25px; }
.question-type-grid article { display: grid; grid-template-columns: 31px 1fr auto; align-items: center; gap: 8px; padding: 12px; background: white; border: 1px solid #e1e7ed; border-radius: 9px; }
.question-type-grid article > span { width: 30px; height: 30px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 8px; }
.question-type-grid svg { width: 14px; }
.question-type-grid b { color: var(--navy); font-size: 8px; }
.question-type-grid strong { color: var(--blue); font-size: 11px; }
.media-chips { display: flex; gap: 5px; }
.media-chips span, .date-pill, .token { padding: 5px 7px; color: #587087; background: var(--surface); border-radius: 5px; font-size: 7px; }
.question-list > div { display: flex; align-items: center; gap: 10px; min-height: 58px; border-bottom: 1px solid #edf1f4; }
.question-list > div:last-child { border-bottom: 0; }
.question-kind { flex: 0 0 31px; height: 31px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 8px; font-size: 8px; font-weight: 800; }
.question-kind svg { width: 14px; }
.question-list p { flex: 1; margin: 0; }
.question-list strong, .question-list small { display: block; }
.question-list strong { color: var(--navy); font-size: 9px; }
.question-list small { margin-top: 4px; color: var(--muted); font-size: 7px; }
.question-list em { color: var(--green); font-size: 7px; font-style: normal; }
.setting-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; margin-top: 25px; }
.setting-grid article { display: flex; align-items: center; gap: 8px; padding: 13px; background: white; border: 1px solid #e1e7ed; border-radius: 9px; }
.setting-grid > article > svg { width: 17px; color: var(--blue); }
.setting-grid b, .setting-grid span { display: block; }
.setting-grid b { color: var(--navy); font-size: 8px; }
.setting-grid span { margin-top: 3px; color: var(--muted); font-size: 6px; }
.date-pill { display: flex; align-items: center; gap: 5px; }
.date-pill svg { width: 12px; }
.exam-schedule-list > div { display: grid; grid-template-columns: 43px 1fr auto 60px; align-items: center; gap: 11px; min-height: 72px; border-bottom: 1px solid #edf1f4; }
.exam-schedule-list > div:last-child { border-bottom: 0; }
.exam-schedule-list time { width: 38px; height: 42px; display: grid; place-items: center; align-content: center; color: var(--blue); background: var(--blue-soft); border-radius: 8px; font-size: 7px; font-weight: 800; }
.exam-schedule-list time b { font-size: 15px; line-height: 1; }
.exam-schedule-list p { margin: 0; }
.exam-schedule-list strong, .exam-schedule-list small { display: block; }
.exam-schedule-list strong { color: var(--navy); font-size: 9px; }
.exam-schedule-list small { margin-top: 4px; color: var(--muted); font-size: 7px; }
.status-upcoming { color: var(--blue-dark); background: var(--blue-soft); }
.analysis-summary { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 25px; }
.analysis-summary article { padding: 15px; background: white; border: 1px solid #e1e7ed; border-radius: 10px; }
.analysis-summary small, .analysis-summary strong, .analysis-summary span { display: block; }
.analysis-summary small { color: var(--muted); font-size: 7px; }
.analysis-summary strong { margin-top: 5px; color: var(--navy); font-size: 21px; }
.analysis-summary span { margin-top: 4px; color: var(--muted); font-size: 7px; }
.analysis-summary .positive { color: var(--green); }
.analysis-summary .warning-text { color: #b4761c; }
.analysis-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 12px; margin-top: 13px; }
.horizontal-bars { display: grid; gap: 17px; margin-top: 22px; }
.horizontal-bars > div { display: grid; grid-template-columns: 65px 1fr 25px; gap: 8px; align-items: center; }
.horizontal-bars span, .horizontal-bars strong { color: var(--muted); font-size: 7px; }
.horizontal-bars strong { color: var(--navy); }
.horizontal-bars i { height: 8px; overflow: hidden; background: #e9eef3; border-radius: 99px; }
.horizontal-bars i b { display: block; height: 100%; background: linear-gradient(to right, var(--blue-dark), #6da4ff); border-radius: inherit; }
.difficulty-list { margin-top: 12px; }
.difficulty-list > div { display: flex; align-items: center; gap: 9px; padding: 12px 0; border-bottom: 1px solid #edf1f4; }
.difficulty-list > div:last-child { border-bottom: 0; }
.difficulty-list > div > span { width: 10px; height: 10px; background: var(--green); border-radius: 3px; }
.difficulty-list > div > span.medium { background: var(--amber); }
.difficulty-list > div > span.hard { background: var(--danger); }
.difficulty-list p { flex: 1; margin: 0; }
.difficulty-list b, .difficulty-list small { display: block; }
.difficulty-list b { color: var(--navy); font-size: 8px; }
.difficulty-list small { margin-top: 3px; color: var(--muted); font-size: 7px; }
.difficulty-list strong { color: var(--navy); font-size: 9px; }
.demo-disclaimer { margin: 22px 0 0; color: #8090a0; font-size: 10px; text-align: center; }

.exam-interface { display: block; background: #f4f7fa; }
.exam-header { height: 66px; display: flex; align-items: center; justify-content: space-between; padding: 0 25px; background: var(--navy); }
.exam-header > div:nth-child(2) { text-align: center; }
.exam-header > div:nth-child(2) small, .exam-header > div:nth-child(2) strong { display: block; }
.exam-header > div:nth-child(2) small { color: #9fb2c5; font-size: 7px; text-transform: uppercase; }
.exam-header > div:nth-child(2) strong { margin-top: 3px; color: white; font-size: 18px; letter-spacing: 1px; }
.exam-user { width: 32px; height: 32px; display: grid; place-items: center; color: white; background: #44637e; border-radius: 9px; font-size: 9px; font-weight: 800; }
.exam-layout { min-height: 624px; display: grid; grid-template-columns: 1fr 255px; }
.question-area { min-width: 0; padding: 23px 28px; }
.question-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 13px; }
.question-meta span { color: var(--blue); font-size: 8px; font-weight: 800; letter-spacing: .8px; }
.question-meta b { color: var(--muted); font-size: 9px; }
.question-card { padding: 24px; background: white; border: 1px solid var(--line); border-radius: 12px; }
.question-title { display: flex; align-items: flex-start; gap: 13px; }
.question-title > span { flex: 0 0 34px; height: 34px; display: grid; place-items: center; color: white; background: var(--blue); border-radius: 9px; font-size: 13px; font-weight: 800; }
.question-title small { color: var(--muted); font-size: 7px; font-weight: 700; letter-spacing: .7px; }
.question-title h2 { margin: 6px 0 0; color: var(--navy); font-size: 14px; }
.question-card pre { margin: 19px 0; padding: 17px; color: #d7e9fb; background: #132a40; border-radius: 9px; font: 10px/1.7 Consolas, monospace; }
.question-card > p { color: #3e5366; font-size: 11px; }
.question-card > p code { padding: 2px 5px; color: var(--blue-dark); background: var(--blue-soft); border-radius: 4px; }
.question-content:empty { display: none; }
.arabic-question { margin: 19px 0 5px; padding: 18px; color: var(--navy); background: linear-gradient(135deg, #f0f6ff, #f3fbf8); border: 1px solid #d9e6f1; border-radius: 10px; font-family: "Segoe UI", Tahoma, sans-serif; font-size: 25px; line-height: 1.8; text-align: center; }
.answers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; margin-top: 16px; }
.answers label { display: flex; align-items: center; gap: 10px; padding: 11px; border: 1px solid var(--line); border-radius: 9px; cursor: pointer; transition: border .2s, background .2s; }
.answers label.selected { background: var(--blue-soft); border-color: var(--blue); }
.answers input { position: absolute; opacity: 0; }
.answers label > span { width: 27px; height: 27px; display: grid; place-items: center; color: #708295; background: #eef2f5; border-radius: 7px; font-size: 9px; font-weight: 800; }
.answers label.selected > span { color: white; background: var(--blue); }
.answers b { color: var(--navy); font-size: 10px; }
.exam-actions { display: flex; align-items: center; justify-content: space-between; gap: 9px; margin-top: 14px; }
.exam-actions .button { min-height: 40px; padding-inline: 15px; font-size: 9px; }
.exam-actions .button:disabled { color: #9cabb8; background: #edf1f4; border-color: #e1e7ed; box-shadow: none; cursor: not-allowed; }
.flag-button { display: flex; align-items: center; gap: 7px; color: #a16a18; background: transparent; border: 0; font-size: 9px; cursor: pointer; }
.flag-button svg { width: 15px; }
.flag-button.active { padding: 8px 10px; color: #8a5a11; background: #fff4dc; border-radius: 8px; }
.question-nav { padding: 22px; background: white; border-left: 1px solid var(--line); }
.question-nav > div:first-child { display: flex; justify-content: space-between; align-items: center; }
.question-nav h3 { margin: 0; color: var(--navy); font-size: 12px; }
.save-status { display: flex; align-items: center; gap: 4px; color: var(--green); font-size: 7px; }
.save-status svg { width: 11px; }
.question-numbers { display: grid; grid-template-columns: repeat(5, 1fr); gap: 7px; margin-top: 18px; }
.question-numbers button { aspect-ratio: 1; color: #687b8d; background: white; border: 1px solid var(--line); border-radius: 7px; font-size: 8px; cursor: pointer; }
.question-numbers button.answered { color: #087657; background: var(--green-soft); border-color: #b5e4d6; }
.question-numbers button.current { color: white; background: var(--blue); border-color: var(--blue); }
.question-numbers button.flagged { color: #9b691e; background: #fff5df; border-color: #f1d493; }
.question-numbers button.current { color: white; background: var(--blue); border-color: var(--blue); box-shadow: 0 5px 12px rgba(40,120,255,.25); }
.legend { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; margin-top: 18px; padding-top: 17px; border-top: 1px solid var(--line); }
.legend span { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: 7px; }
.legend i { width: 9px; height: 9px; background: white; border: 1px solid var(--line); border-radius: 3px; }
.legend i.answered { background: var(--green-soft); border-color: #b5e4d6; }
.legend i.current { background: var(--blue); border-color: var(--blue); }
.legend i.flagged { background: #fff5df; border-color: #f1d493; }
.exam-progress-summary { margin-top: 19px; padding: 14px; background: var(--surface); border-radius: 9px; text-align: center; }
.exam-progress-summary strong, .exam-progress-summary span { display: block; }
.exam-progress-summary strong { color: var(--navy); font-size: 16px; }
.exam-progress-summary span { margin-top: 3px; color: var(--muted); font-size: 7px; }
.exam-progress-summary > i { height: 5px; display: block; overflow: hidden; margin-top: 10px; background: #dfe6ec; border-radius: 99px; }
.exam-progress-summary > i > b { width: 0; height: 100%; display: block; background: var(--green); border-radius: inherit; transition: width .2s ease; }
.finish-button { width: 100%; margin-top: 28px; padding: 10px; color: var(--danger); background: #fff5f5; border: 1px solid #f2cccc; border-radius: 8px; font-size: 9px; font-weight: 750; cursor: pointer; }
.finish-button:hover { color: white; background: var(--danger); }

.exam-modal { position: fixed; z-index: 90; inset: 0; display: grid; place-items: center; padding: 20px; }
.exam-modal-backdrop { position: absolute; inset: 0; background: rgba(9, 30, 49, .68); backdrop-filter: blur(4px); }
.exam-modal-card { position: relative; z-index: 2; width: min(100%, 460px); padding: 34px; text-align: center; background: white; border-radius: 19px; box-shadow: 0 30px 90px rgba(7, 27, 45, .35); }
.modal-close { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; display: grid; place-items: center; color: var(--muted); background: var(--surface); border: 0; border-radius: 8px; cursor: pointer; }
.modal-close svg { width: 17px; }
.modal-icon, .result-check { width: 58px; height: 58px; display: grid; place-items: center; margin: 0 auto 17px; color: #a16a18; background: #fff4dc; border-radius: 16px; }
.modal-icon svg, .result-check svg { width: 27px; height: 27px; }
.exam-modal-card h2 { margin: 0; color: var(--navy); font-size: 25px; letter-spacing: -.7px; }
.exam-modal-card > p { margin: 9px auto 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.modal-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 23px; }
.modal-summary div { padding: 14px 8px; background: var(--surface); border-radius: 10px; }
.modal-summary strong, .modal-summary span { display: block; }
.modal-summary strong { color: var(--navy); font-size: 22px; }
.modal-summary span { margin-top: 4px; color: var(--muted); font-size: 8px; }
.modal-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 23px; }
.result-card { padding: 39px; }
.result-check { color: white; background: var(--green); border-radius: 50%; box-shadow: 0 10px 25px rgba(22,164,122,.25); }
.result-eyebrow { color: var(--green); font-size: 8px; font-weight: 850; letter-spacing: 1.2px; }
.result-card h2 { margin-top: 7px; }
.result-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 24px 0; }
.result-stats div { padding: 16px; background: var(--surface); border-radius: 10px; }
.result-stats strong, .result-stats span { display: block; }
.result-stats strong { color: var(--navy); font-size: 19px; }
.result-stats span { margin-top: 4px; color: var(--muted); font-size: 8px; }
.result-card > .button { width: 100%; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
    .hero-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .dashboard-shell { min-height: 390px; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .hosting-grid { gap: 40px; }
    .app-stat-grid { grid-template-columns: repeat(2, 1fr); }
    .app-dashboard-grid { grid-template-columns: 1fr; }
    .demo-panel { min-height: 760px; }
}

@media (max-width: 820px) {
    .container { width: min(calc(100% - 30px), var(--container)); }
    .menu-button { display: grid; place-items: center; }
    .main-nav { position: fixed; inset: 76px 0 auto; display: none; align-items: stretch; gap: 0; padding: 15px; background: white; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm); }
    .main-nav.open { display: grid; }
    .main-nav a { padding: 14px; border-radius: 8px; }
    .main-nav a.active::after { display: none; }
    .main-nav .nav-cta { margin-top: 5px; text-align: center; }
    .hero-grid { min-height: auto; grid-template-columns: 1fr; padding-block: 70px; }
    .hero-copy { text-align: center; }
    .hero-lead { margin-inline: auto; }
    .hero-actions, .hero-proof { justify-content: center; }
    .hero-visual { max-width: 650px; margin-inline: auto; }
    .trust-items { grid-template-columns: repeat(2, 1fr); padding-block: 15px; gap: 0; }
    .trust-items span { min-height: 45px; }
    .trust-items span:nth-child(2) { border-right: 0; }
    .workflow { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .workflow-line { display: none; }
    .hosting-grid, .feasibility-grid { grid-template-columns: 1fr; gap: 40px; }
    .decision-card { align-items: flex-start; flex-direction: column; }
    .platform-cards { grid-template-columns: 1fr; gap: 15px; }
    .versus { margin-block: -5px; }
    .comparison-table-wrap { overflow-x: auto; }
    .comparison-table { min-width: 760px; }
    .recommendation-box { grid-template-columns: 60px 1fr; }
    .recommendation-box .button { grid-column: 1 / -1; }
    .demo-browser { overflow-x: auto; }
    .demo-panel, .exam-interface { min-width: 850px; }
}

@media (max-width: 600px) {
    .brand small { display: none; }
    .hero-copy h1, .inner-hero h1 { font-size: 41px; letter-spacing: -2px; }
    .hero-lead, .inner-hero p { font-size: 15px; }
    .hero-actions .button { width: 100%; }
    .hero-proof { gap: 14px; }
    .hero-proof div { padding-right: 14px; }
    .hero-proof strong { font-size: 19px; }
    .dashboard-shell { grid-template-columns: 48px 1fr; min-height: 330px; }
    .mock-sidebar { gap: 18px; }
    .mock-sidebar i { width: 15px; height: 15px; }
    .mock-main { padding: 13px; }
    .mock-stats > div { grid-template-columns: 1fr; }
    .mock-stats .stat-icon { display: none; }
    .mock-content-grid { grid-template-columns: 1fr; }
    .mock-schedule { display: none; }
    .floating-card-top { right: -4px; top: 9px; }
    .floating-card-bottom { left: 15px; bottom: 15px; }
    .trust-items { grid-template-columns: 1fr; }
    .trust-items span { border-right: 0; border-bottom: 1px solid var(--line); }
    .trust-items span:last-child { border-bottom: 0; }
    .section { padding-block: 70px; }
    .feature-grid, .workflow { grid-template-columns: 1fr; }
    .feature-card { min-height: auto; }
    .section-heading h2, .hosting-copy h2, .feasibility-copy h2 { font-size: 33px; }
    .fact-grid { grid-template-columns: 1fr 1fr; }
    .server-card { padding: 21px; }
    .server-card-head { flex-wrap: wrap; }
    .recommended-badge { margin-left: 0; }
    .decision-card { padding: 31px 25px; }
    .decision-card h2 { font-size: 28px; }
    .footer-inner { align-items: flex-start; flex-direction: column; gap: 18px; }
    .platform-card { padding: 25px; }
    .feasibility-row { grid-template-columns: 1fr 50px; }
    .feasibility-row .bar { grid-column: 1 / -1; grid-row: 2; }
    .recommendation-box { grid-template-columns: 1fr; }
    .recommendation-box .button { grid-column: auto; }
    .browser-bar > div { width: 220px; }
}

@media print {
    .site-header, .site-footer, .hero-actions, .decision-section, .demo-tabs { display: none !important; }
    .reveal { opacity: 1 !important; transform: none !important; }
    .section { padding-block: 35px; break-inside: avoid; }
    .hero, .hero-grid { min-height: auto; }
    .hero-grid { padding-block: 40px; }
    .feature-card { break-inside: avoid; }
    body { print-color-adjust: exact; -webkit-print-color-adjust: exact; }
}

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