:root {
    --bg: #f6f7fb;
    --text: #0d1321;
    --muted: #5e6778;
    --card: #ffffff;
    --line: #e5e8ef;
    --blue: #1557ff;
    --blue-dark: #0b36a8;
    --navy: #071126;
    --green: #13a36f;
    --gold: #c99a2e;
    --shadow: 0 24px 70px rgba(13, 19, 33, 0.10);
    --radius: 26px;
    --border-soft: #cbd5e1;
    --page-bg: #f7f7f8;
    --card-bg: #ffffff;
}

* { box-sizing: border-box; }
body {
    margin: 0;
    font-family: Inter, Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.45;
}

a { text-decoration: none; color: inherit; }

.bold { font-weight: 800; }

.align-center { text-align: center; }

.small-text, p.small-text { font-size: 12px; }

.nav {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(246, 247, 251, 0.78);
    border-bottom: 1px solid rgba(229, 232, 239, 0.8);
}

.nav-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: -0.03em;
    font-size: 22px;
}

.logo {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
}

.nav-links {
    display: flex;
    gap: 26px;
    align-items: center;
    font-size: 14px;
    color: var(--muted);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 13px 20px;
    font-weight: 700;
    font-size: 14px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover { transform: translateY(-2px); }
.btn-login { background: var(--blue); color: white; padding: 6px 20px; box-shadow: 0 10px 25px rgba(21, 87, 255, .25); }
.btn-primary { background: var(--blue); color: white; box-shadow: 0 12px 28px rgba(21, 87, 255, .25); }
.btn-secondary { background: white; color: var(--text); border: 1px solid var(--line); }

.hero {
    max-width: 1180px;
    margin: 0 auto;
    padding: 74px 24px 50px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 42px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border: 1px solid rgba(201, 154, 46, .3);
    background: rgba(201, 154, 46, .08);
    color: #8a651b;
    border-radius: 999px;
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 18px;
}

h1 {
    font-size: clamp(46px, 6vw, 75px);
    line-height: 1;
    letter-spacing: -0.07em;
    margin: 0 0 22px;
}

.hero p {
    font-size: 20px;
    color: var(--muted);
    max-width: 650px;
    margin: 0 0 30px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-card {
    background: var(--navy);
    color: white;
    border-radius: 34px;
    padding: 26px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.hero-card:before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -90px;
    top: -90px;
    background: radial-gradient(circle, rgba(21,87,255,.7), transparent 65%);
}

.award {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    position: relative;
    margin-bottom: 28px;
}

.award span { color: #aeb8ca; font-size: 13px; }
.award .award-num { font-size: 18px; font-weight: 700;}

.dashboard {
    position: relative;
    display: grid;
    gap: 14px;
}

.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.metric, .panel {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    padding: 16px;
}

.metric small, .panel small { display: block; color: #aeb8ca; margin-bottom: 6px; }
.metric b { font-size: 20px; }
.green { color: #63e6b7; }
.blue { color: #8fb2ff; }
.gold { color: #ffd27a; }

.bar {
    height: 9px;
    background: rgba(255,255,255,.12);
    border-radius: 999px;
    overflow: hidden;
    margin-top: 10px;
}
.bar > span { display: block; height: 100%; width: 91%; background: linear-gradient(90deg, #63e6b7, #8fb2ff); border-radius: 999px; }

section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 54px 24px;
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 26px;
    align-items: end;
    margin-bottom: 26px;
}

h2 {
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.2;
    letter-spacing: -0.055em;
    margin: 0;
}

.section-head p { max-width: 520px; color: var(--muted); font-size: 18px; margin: 0; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }

.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: 0 14px 40px rgba(13,19,33,.05);
}

.card h3 { margin: 0 0 10px; font-size: 23px; letter-spacing: -0.035em; }
.card p { color: var(--muted); margin: 0; font-size: 15px; }

.icon {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(21,87,255,.09);
    color: var(--blue);
    margin-bottom: 18px;
    font-weight: 900;
}

.dark-section {
    background: var(--navy);
    color: white;
    border-radius: 42px;
    padding: 42px;
    overflow: hidden;
    position: relative;
}

.dark-section p { color: #b8c2d4; }
.dark-section .card {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.12);
    color: white;
}

.pill-list { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.pill {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: #657899;
    font-weight: 700;
    font-size: 13px;
}
.pill.pill-blue { background: #f1f5ff; color: var(--blue); border-color: #dce6ff; }
.pill.pill-green { background: #eefcf6; color: var(--green); border-color: #d5f5e8; }
.pill.pill-gold { background: #fff8e9; color: #9b6f17; border-color: #f4dfae; }

.timeline { display: grid; gap: 14px; margin-top: 28px; }
.step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 16px;
    align-items: start;
    background: white;
    font-size: 15px;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 18px;
}
.step span { color: var(--muted); }
.card .pill-list { margin-top: 28px; }
.num {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: var(--blue);
    color: white;
    font-weight: 900;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.stat {
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 24px;
}
.stat .stats-num { font-size: 32px; font-weight: 700; letter-spacing: -0.05em; }
.stat span { color: var(--muted); font-size: 15px; font-weight: 600; }

.cta {
    text-align: center;
    background: linear-gradient(135deg, #071126, #102b66);
    color: white;
    border-radius: 42px;
    padding: 70px 30px;
    box-shadow: var(--shadow);
}
.cta p { color: #c5cee0; max-width: 720px; margin: 18px auto 28px; font-size: 19px; }

.testimoial-title {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 12px;
}

.testimoial-wrapper p {
    margin: 0;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.03em;
    max-width: 560px;
}

.quotation-container {
    margin-top: 30px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 35px;
}

.quotation-container p {
    font-size: 17px;
    line-height: 1.75;
    color: #111827;
    margin-bottom: 22px;
}

.quotation-container span {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
}

.speaker-details {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.speaker-details p:first-child {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.speaker-details p:last-child {
    color: var(--muted);
    margin: 0;
}

.partners-wraper > p {
    font-size: 30px;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: -0.03em;
    max-width: 720px;
    margin: 0 0 36px 0;
}

.partners-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 24px 28px;
    align-items: center;
}

.partners-images img {
    width: 100%;
    max-width: 140px;
    height: 48px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.9;
}

footer {
    max-width: 1180px;
    margin: 0 auto;
    padding: 34px 24px 50px;
    color: var(--muted);
    font-size: 14px;
}
footer .legal {
    font-size: 12px;
}
footer .legal p {
    margin: 0 0 7px 0;
    line-height: 1.5;
}
.footer-info {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 10px;
    margin-top: 25px;
    border-top: 1px solid #ddd;
}
.footer-site-links a {
   color: var(--muted);
}

@media (max-width: 900px) {
    .hero, .grid-3, .grid-2, .stats { grid-template-columns: 1fr; }
    .section-head { display: block; }
    .section-head p { margin-top: 14px; }
    .nav-links { display: none; }
    .metric-row { grid-template-columns: 1fr; }
    footer { flex-direction: column; }
}

/* DEMO PAGE + TERMS + VIDEO */
.demo-page {
    min-height: 60vh;
    padding: 54px 80px 72px;
}

.demo-layout {
    max-width: 1050px;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 58px;
    align-items: start;
}

.hero-title {
    max-width: 430px;
    font-size: 45px;
    line-height: 1;
    letter-spacing: -0.04em;
    font-weight: 800;
}

.intro-copy {
    max-width: 410px;
    margin: 0 0 8px;
    font-size: 14px;
    line-height: 1.48;
}

.benefit-list {
    max-width: 390px;
    margin: 8px 0 0 16px;
    padding-left: 16px;
    font-size: 14px;
    line-height: 1.48;
}

.benefit-list li {
    margin-bottom: 7px;
    padding-left: 2px;
}

.contact-card {
    width: 100%;
    min-height: 336px;
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    padding: 48px 24px;
}

.card-title {
    margin: 0 0 18px;
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    font-weight: 800;
}

.contact-group {
    margin-bottom: 16px;
}

.contact-label {
    margin: 0 0 3px;
    font-size: 15px;
    line-height: 1.25;
    color: var(--muted);
    font-weight: 700;
}

.contact-value {
    margin: 0;
    font-size: 16px;
    line-height: 1.35;
    color: #0f172a;
}

.contact-value a {
    color: #1d4ed8;
    text-decoration: none;
}

.contact-value a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .demo-page {
    padding: 36px 24px 48px;
    }

    .demo-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    }

    .hero-title {
    font-size: 34px;
    }
}

.terms-page {
    min-height: 100vh;
}

.terms-layout {
    max-width: 1180px;
    margin: 0 auto;
    font-size: 15px;
}

.terms-layout h2 {
    font-size: 26px;
    margin-bottom: 15px;
}

.terms-layout p {
    margin: 0 0 15px 0;
}

.video-layout {
    position: relative;
    max-width: 1180px;
    margin: 15px auto;
    padding: 40% 0 0 0;
}

.video-layout iframe {
    display: block;
    border: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
