:root {
    --bg: #eef2f9;
    --surface: #ffffff;
    --surface-alt: #f7fafd;
    --text: #0f1d34;
    --muted: #4f607f;
    --line: #d9e4f1;
    --primary: #0a4bd9;
    --primary-strong: #0839a9;
    --teal: #0ba58f;
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 14px;
    --shadow-lg: 0 30px 70px rgba(13, 29, 62, 0.14);
    --shadow-sm: 0 10px 28px rgba(13, 29, 62, 0.07);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #edf2fb 0%, #f8fafd 60%, #f3f7fc 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.page-noise {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.17;
    background-image: radial-gradient(rgba(12, 33, 74, 0.12) 0.7px, transparent 0.7px);
    background-size: 3px 3px;
    z-index: -3;
}

.bg-glow {
    position: fixed;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(65px);
    opacity: 0.28;
    z-index: -2;
}

.bg-glow-a {
    background: #3e83ff;
    top: -160px;
    right: -120px;
}

.bg-glow-b {
    background: #20c7aa;
    bottom: -160px;
    left: -120px;
}

.topbar {
    max-width: 1180px;
    margin: 0 auto;
    padding: 22px 28px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    font-family: "Manrope", "Segoe UI", Arial, sans-serif;
    font-weight: 800;
    font-size: 19px;
}

.brand img {
    width: 38px;
    height: 38px;
    object-fit: cover;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
    clip-path: inset(2px round 10px);
    filter: drop-shadow(0 6px 12px rgba(17, 48, 102, 0.18));
    animation: brandLogoFloat 4s ease-in-out infinite;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.brand:hover img {
    transform: translateY(-1px) rotate(6deg) scale(1.04);
    filter: drop-shadow(0 10px 16px rgba(17, 48, 102, 0.24));
}

.main-nav {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 10px 14px;
    border: 1px solid rgba(206, 220, 238, 0.9);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
}

.main-nav a {
    color: #2e446a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.main-nav a:hover,
.login-link:hover {
    color: var(--primary);
}

.login-link {
    text-decoration: none;
    color: #163b86;
    font-weight: 700;
    font-size: 14px;
}

.topbar-cta {
    padding: 9px 18px;
    font-size: 13px;
}

.topbar-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(239, 245, 253, 0.95);
    border: 1px solid #c7d8ef;
    border-radius: 999px;
    padding: 4px;
}

.lang-btn {
    border: none;
    background: transparent;
    color: #4b5f85;
    border-radius: 999px;
    padding: 5px 11px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.lang-btn.active {
    background: #ffffff;
    color: #1751b7;
    box-shadow: 0 5px 12px rgba(15, 23, 42, 0.08);
}

main {
    max-width: 1180px;
    margin: 0 auto;
    padding: 12px 28px 58px;
}

.reveal {
    animation: reveal 0.7s ease both;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 22px;
    align-items: stretch;
}

.hero-copy-wrap,
.hero-panel {
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
}

.hero-copy-wrap {
    background: linear-gradient(140deg, #ffffff 0%, #f8fbff 45%, #f2fffb 100%);
    padding: clamp(28px, 5vw, 52px);
}

.kicker,
.section-kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 11px;
    font-weight: 800;
    color: #0e64d8;
}

h1,
h2,
h3 {
    font-family: "Manrope", "Segoe UI", Arial, sans-serif;
}

h1 {
    margin: 10px 0 0;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.06;
}

.hero-copy {
    margin: 18px 0 0;
    color: var(--muted);
    line-height: 1.68;
    max-width: 690px;
    font-size: 18px;
}

.hero-copy-sub {
    margin-top: 8px;
}

.hero-cta-row {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    border: 0;
    border-radius: 999px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(110deg, var(--primary) 0%, #2f79ff 100%);
    color: #ffffff;
}

.btn-primary:hover {
    background: linear-gradient(110deg, var(--primary-strong) 0%, var(--primary) 100%);
}

.btn-ghost {
    background: #ecf3ff;
    color: #0f4ebf;
}

.btn:disabled {
    opacity: 0.65;
    cursor: wait;
}

.hero-footnote {
    margin-top: 16px;
    color: #415476;
    font-size: 14px;
}

.hero-panel {
    background: linear-gradient(160deg, #0f2b5e 0%, #123f8d 52%, #0f7b8f 100%);
    color: #e7efff;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.hero-panel::after {
    content: "";
    position: absolute;
    inset: auto -36px -46px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
}

.panel-label {
    margin: 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #bdd5ff;
    font-weight: 700;
}

.hero-panel h2 {
    margin: 8px 0 0;
    font-size: 28px;
    line-height: 1.15;
}

.hero-panel ol {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.hero-panel li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 11px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(222, 234, 255, 0.22);
    font-size: 14px;
}

.hero-panel li span {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    font-size: 12px;
    font-weight: 700;
}

.hero-metrics {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.hero-metrics article {
    background: rgba(1, 10, 30, 0.26);
    border: 1px solid rgba(184, 211, 255, 0.25);
    border-radius: 12px;
    padding: 10px;
}

.hero-metrics h3 {
    margin: 0;
    font-size: 16px;
}

.hero-metrics p {
    margin: 6px 0 0;
    color: #dbe8ff;
    font-size: 13px;
}

.trust-strip {
    margin-top: 16px;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-strip article {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: var(--shadow-sm);
}

.trust-strip h3 {
    margin: 0;
    font-size: 17px;
}

.trust-strip p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.55;
}

.section-block {
    margin-top: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.section-head h2,
.info-card h2,
.contact-copy h2 {
    margin: 8px 0 0;
    font-size: clamp(29px, 3.9vw, 40px);
    line-height: 1.12;
}

.section-head p,
.info-card p,
.contact-copy p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.66;
}

.info-card-subcopy {
    margin-top: 4px !important;
}

.contact-copy-sub {
    margin-top: 4px !important;
}

.steps-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.demo-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
    gap: 14px;
    align-items: stretch;
}

.demo-intro {
    margin-top: 8px !important;
}

.demo-tabs {
    display: grid;
    gap: 10px;
}

.demo-tab {
    border: 1px solid #bdd0ea;
    background: #f6faff;
    color: #1f3e73;
    border-radius: 12px;
    padding: 12px 14px;
    text-align: left;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: border-color 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.demo-tab:hover {
    border-color: #8eb2e6;
    background: #edf5ff;
    transform: translateY(-1px);
}

.demo-tab:focus-visible {
    outline: 3px solid rgba(31, 94, 209, 0.3);
    outline-offset: 2px;
}

.demo-tab.active {
    border-color: #4b85de;
    background: linear-gradient(135deg, #edf5ff 0%, #e8fff8 100%);
    box-shadow: 0 8px 22px rgba(15, 60, 136, 0.14);
}

.demo-panel {
    margin: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: grid;
}

.demo-panel img {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: cover;
    display: block;
}

.demo-caption {
    border-top: 1px solid #dce8f8;
    padding: 12px 14px;
    background: #f8fbff;
    display: grid;
    gap: 4px;
}

.demo-caption strong {
    font-family: "Manrope", "Segoe UI", Arial, sans-serif;
    font-size: 16px;
}

.demo-caption span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.demo-caption-detail {
    margin: 2px 0 0;
    color: #3f5277;
    font-size: 13px;
    line-height: 1.5;
}

.demo-tabs-note {
    margin: 2px 0 0;
    padding: 10px 12px;
    border: 1px dashed #bbcee8;
    border-radius: 10px;
    color: #4a5f85;
    background: #f8fbff;
    font-size: 13px;
    line-height: 1.45;
}

.step-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 18px;
}

.step-index {
    margin: 0;
    color: #2f68d2;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 800;
}

.step-card h3 {
    margin: 10px 0 0;
    font-size: 20px;
}

.step-card p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.6;
}

.split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.info-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 22px;
}

.strong-accent {
    background: linear-gradient(140deg, #fbfdff 0%, #eef5ff 100%);
}

.info-card ul {
    margin: 15px 0 0;
    padding-left: 20px;
}

.info-card li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.chips {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chips span {
    padding: 8px 11px;
    border-radius: 999px;
    background: #e8f3ff;
    border: 1px solid #c6daf2;
    font-size: 13px;
    font-weight: 700;
    color: #1f4ea2;
}

.pricing-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.pricing-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 18px;
}

.pricing-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
    transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.pricing-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(15, 29, 52, 0.1);
    border-color: #9fc0eb;
}

.pricing-link:focus-visible {
    outline: 3px solid rgba(31, 94, 209, 0.35);
    outline-offset: 2px;
}

.pricing-card.featured {
    border-color: #8fbbff;
    background: linear-gradient(140deg, #f5faff 0%, #ecfff8 100%);
}

.plan {
    margin: 0;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 800;
    color: #356fda;
    letter-spacing: 0.1em;
}

.pricing-card h3 {
    margin: 10px 0 0;
    font-size: 24px;
    line-height: 1.2;
}

.pricing-card p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.55;
}

.pricing-list {
    margin: 12px 0 0;
    padding-left: 18px;
    color: #2f4469;
}

.pricing-list li {
    margin-bottom: 7px;
}

.trial-callout {
    margin-top: 14px;
    background: linear-gradient(120deg, #eef5ff 0%, #e8fff8 100%);
    border: 1px solid #8fbbff;
    border-radius: var(--radius-lg);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.trial-callout-content {
    display: grid;
    gap: 4px;
}

.trial-callout-content > p {
    margin: 0;
    line-height: 1.5;
    font-size: 15px;
    color: var(--text);
}

.trial-sub {
    color: var(--muted) !important;
    font-size: 13px !important;
}

.trial-badge {
    display: inline-block;
    background: linear-gradient(110deg, var(--primary) 0%, #2f79ff 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 4px 10px;
    border-radius: 999px;
    margin-block-end: 2px;
}

.timeline-card h3 {
    margin: 0;
    font-size: 24px;
}

.timeline {
    margin: 16px 0 0;
    list-style: none;
    padding: 0;
    display: grid;
    gap: 10px;
}

.timeline li {
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px 12px;
    background: #f8fbff;
}

.timeline span {
    display: block;
    font-weight: 700;
}

.timeline small {
    color: #55688d;
}

.contact-block {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 16px;
}

.contact-copy {
    padding: 10px 4px;
}

.mail-link {
    display: inline-flex;
    margin-top: 14px;
    color: #0c54cc;
    font-weight: 700;
    text-decoration: none;
}

.contact-form {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 18px;
    display: grid;
    gap: 8px;
}

.contact-form label {
    font-size: 14px;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #bfd2eb;
    border-radius: 10px;
    padding: 11px 12px;
    font: inherit;
    resize: vertical;
    background: #ffffff;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 3px solid rgba(48, 108, 210, 0.18);
    border-color: #4c83e5;
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.contact-status {
    min-height: 20px;
    margin: 2px 0 0;
    font-size: 14px;
    color: var(--muted);
}

.contact-status.success {
    color: #0f766e;
}

.contact-status.error {
    color: #c81e1e;
}

footer {
    text-align: center;
    color: #5f739a;
    font-size: 14px;
    padding: 2px 20px 38px;
}

.footer-rights-separator {
    margin: 0 5px;
}

@keyframes reveal {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes brandLogoFloat {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-2px) rotate(-4deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@media (max-width: 1100px) {
    .main-nav {
        display: none;
    }

    .hero,
    .split,
    .contact-block,
    .demo-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid,
    .pricing-grid,
    .trust-strip {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        min-height: 0;
    }

    .demo-panel img {
        max-height: 460px;
    }
}

@media (max-width: 700px) {
    .topbar {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .topbar-actions {
        width: 100%;
        justify-content: flex-end;
    }

    .topbar-cta {
        display: none;
    }

    .trial-callout {
        flex-direction: column;
        align-items: flex-start;
    }

    .topbar,
    main {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-copy-wrap,
    .hero-panel,
    .section-block {
        border-radius: 18px;
    }

    h1 {
        font-size: 35px;
    }

    .section-head h2,
    .info-card h2,
    .contact-copy h2 {
        font-size: 30px;
    }
}
