@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    --blue: #0344A6;
    --blue-700: #022F73;
    --blue-50: #EEF3FC;
    --blue-100: #DCE6F9;
    --green: #4EB71C;
    --green-50: #ECF8E7;
    --amber: #F59E0B;
    --ink: #111827;
    --text: #243044;
    --muted: #64748B;
    --line: #D8E2F1;
    --soft: #F7FAFE;
    --white: #FFFFFF;
    --shadow: 0 18px 48px rgba(15, 23, 42, .12);
    --shadow-sm: 0 10px 28px rgba(15, 23, 42, .08);
    --radius: 8px;
    --container: 1180px;
    --nav-h: 76px;
    --font-head: "Bricolage Grotesque", system-ui, sans-serif;
    --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

[x-cloak] {
    display: none !important;
}

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

.section {
    padding: 92px 0;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-head);
    line-height: 1.08;
    letter-spacing: 0;
}

h1 {
    font-size: 4.9rem;
}

h2 {
    font-size: 3.1rem;
}

h3 {
    font-size: 1.28rem;
}

p {
    margin: 0;
}

svg,
i[data-lucide] {
    width: 1.15em;
    height: 1.15em;
    flex: 0 0 auto;
}

.js [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s ease;
}

.js [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(3, 68, 166, .24);
}

.btn-primary:hover {
    background: var(--green);
    box-shadow: 0 14px 34px rgba(78, 183, 28, .22);
}

.btn-secondary {
    background: rgba(255, 255, 255, .92);
    color: var(--blue);
    border-color: rgba(255, 255, 255, .64);
}

.btn-outline {
    background: var(--white);
    color: var(--blue);
    border-color: var(--blue-100);
}

.btn-outline:hover {
    border-color: var(--blue);
}

.btn-small {
    min-height: 40px;
    padding: 10px 14px;
    font-size: .9rem;
}

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    border-bottom: 1px solid rgba(216, 226, 241, .78);
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(16px);
    transition: box-shadow .2s ease, background .2s ease;
}

.site-nav.is-scrolled {
    box-shadow: 0 12px 32px rgba(15, 23, 42, .08);
    background: rgba(255, 255, 255, .96);
}

.nav-inner {
    width: min(100% - 32px, 1240px);
    min-height: var(--nav-h);
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 26px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-family: var(--font-head);
    font-size: 1.24rem;
    font-weight: 800;
    line-height: 1;
}

.brand img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.brand span span {
    color: var(--blue);
}

.desktop-links {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: auto;
}

.desktop-links a,
.return-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 40px;
    padding: 8px 10px;
    border-radius: var(--radius);
    color: var(--muted);
    font-size: .93rem;
    font-weight: 700;
}

.desktop-links a:hover,
.desktop-links a.active,
.return-link:hover {
    color: var(--blue);
    background: var(--blue-50);
}

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

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--blue);
    place-items: center;
}

.mobile-panel {
    display: none;
    width: min(100% - 32px, 1240px);
    margin: 0 auto 14px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.mobile-panel a {
    display: block;
    padding: 12px;
    border-radius: 6px;
    color: var(--text);
    font-weight: 700;
}

.mobile-panel a:hover {
    background: var(--blue-50);
    color: var(--blue);
}

.hero {
    position: relative;
    min-height: 84vh;
    padding: 150px 0 92px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: #07172E;
}

.hero-bg,
.detail-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg img,
.detail-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(.98);
    opacity: .54;
}

.hero::after,
.detail-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 23, 46, .92), rgba(7, 23, 46, .74) 46%, rgba(7, 23, 46, .44));
}

.hero-content,
.detail-hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin-left: max(20px, calc((100vw - var(--container)) / 2));
    color: var(--white);
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    color: var(--green);
    font-size: .86rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero h1,
.detail-hero h1 {
    color: var(--white);
}

.hero-lead,
.detail-hero-content > p:not(.eyebrow) {
    max-width: 760px;
    margin-top: 20px;
    color: rgba(255, 255, 255, .88);
    font-size: 1.28rem;
}

.hero-actions,
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .09);
    color: rgba(255, 255, 255, .9);
    font-size: .92rem;
    font-weight: 700;
}

.trust-strip {
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.trust-grid div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 86px;
    padding: 18px;
    border-right: 1px solid var(--line);
    color: var(--text);
    font-weight: 800;
    text-align: center;
}

.trust-grid div:last-child {
    border-right: 0;
}

.trust-grid svg {
    color: var(--blue);
}

.section-head {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-head.left {
    margin-inline: 0;
    text-align: left;
}

.section-head.compact {
    margin-bottom: 34px;
}

.section-head h2,
.why-copy h2,
.demo-copy h2,
.detail-intro h2,
.detail-cta h2 {
    margin-bottom: 16px;
}

.section-head p:not(.section-kicker),
.why-copy p,
.demo-copy p,
.detail-intro p {
    color: var(--muted);
    font-size: 1.08rem;
}

.modules-section,
.pricing-section,
.detail-cards-section {
    background: var(--soft);
}

.module-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.module-card,
.feature-card,
.price-card,
.detail-card,
.related-card,
.demo-form,
.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.module-card {
    overflow: hidden;
}

.module-image {
    display: block;
    aspect-ratio: 16 / 10;
    background: var(--blue-50);
    overflow: hidden;
}

.module-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.module-card:hover .module-image img {
    transform: scale(1.025);
}

.module-body {
    padding: 24px;
}

.module-icon,
.feature-icon,
.detail-card > div {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: var(--radius);
    background: var(--blue-50);
    color: var(--blue);
}

.module-body p,
.feature-card p,
.detail-card p,
.price-card p,
.faq-item p {
    color: var(--muted);
}

.module-body ul,
.price-card ul {
    display: grid;
    gap: 9px;
    padding: 0;
    margin: 18px 0;
    list-style: none;
}

.module-body li,
.price-card li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--text);
    font-size: .94rem;
    font-weight: 700;
}

.module-body li svg,
.price-card li svg,
.bullet-panel svg {
    color: var(--green);
    margin-top: 3px;
}

.inline-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--blue);
    font-weight: 900;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.feature-card {
    min-height: 230px;
    padding: 22px;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.feature-card p {
    font-size: .92rem;
}

.why-section {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 54px;
    align-items: center;
}

.why-copy .btn {
    margin-top: 28px;
}

.advantage-list {
    display: grid;
    gap: 14px;
}

.advantage-list article {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
}

.advantage-list article > svg {
    width: 52px;
    height: 52px;
    padding: 13px;
    border-radius: var(--radius);
    background: var(--white);
    color: var(--blue);
}

.advantage-list h3 {
    margin-bottom: 6px;
}

.advantage-list p {
    color: var(--muted);
}

.gallery-section {
    background: #F2F6FC;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.gallery-item {
    position: relative;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.gallery-item span {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    max-width: calc(100% - 24px);
    padding: 9px 11px;
    border-radius: var(--radius);
    background: rgba(7, 23, 46, .82);
    color: var(--white);
    font-size: .88rem;
    font-weight: 800;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 28px;
    background: rgba(7, 23, 46, .86);
}

.lightbox figure {
    width: min(1120px, 94vw);
    margin: 0;
}

.lightbox img {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.lightbox figcaption {
    margin-top: 12px;
    color: var(--white);
    font-weight: 800;
    text-align: center;
}

.lightbox-close {
    position: fixed;
    top: 18px;
    right: 18px;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .12);
    color: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch;
}

.price-card {
    position: relative;
    padding: 28px;
}

.price-card.featured {
    border-color: var(--blue);
    box-shadow: 0 20px 54px rgba(3, 68, 166, .16);
}

.popular {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 6px 9px;
    border-radius: 6px;
    background: var(--green-50);
    color: #247A0D;
    font-size: .76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.plan-meta {
    margin-top: 8px;
}

.price {
    display: flex;
    align-items: flex-end;
    gap: 7px;
    margin: 22px 0;
}

.price span {
    color: var(--blue);
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.price small {
    color: var(--muted);
    font-weight: 800;
}

.plan-note {
    min-height: 56px;
    margin-bottom: 18px;
    padding: 11px;
    border-radius: var(--radius);
    background: var(--blue-50);
    color: var(--blue-700) !important;
    font-size: .86rem;
    font-weight: 700;
}

.faq-wrap {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 46px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    box-shadow: none;
    overflow: hidden;
}

.faq-item button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px;
    border: 0;
    background: var(--white);
    color: var(--ink);
    font-weight: 900;
    text-align: left;
}

.faq-item button svg {
    color: var(--blue);
    transition: transform .2s ease;
}

.faq-item button[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.faq-item p {
    padding: 0 20px 20px;
}

.demo-section {
    background: #07172E;
    color: var(--white);
}

.demo-grid {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 48px;
    align-items: center;
}

.demo-copy h2,
.demo-copy p {
    color: var(--white);
}

.demo-copy p {
    color: rgba(255, 255, 255, .78);
}

.demo-contact {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.demo-contact a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    color: var(--white);
    font-weight: 900;
}

.demo-form {
    padding: 28px;
    color: var(--ink);
}

.demo-form h3 {
    margin-bottom: 18px;
}

.demo-form label {
    display: grid;
    gap: 7px;
    margin-bottom: 15px;
    color: var(--ink);
    font-weight: 800;
}

.demo-form label span {
    color: var(--muted);
    font-size: .83rem;
    font-weight: 700;
}

.field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.demo-form input,
.demo-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 13px 14px;
    background: var(--soft);
    color: var(--ink);
    outline: none;
}

.demo-form input:focus,
.demo-form textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(3, 68, 166, .12);
}

.demo-form textarea {
    resize: vertical;
}

.demo-form .btn {
    width: 100%;
}

.hp-field {
    position: absolute;
    left: -10000px;
}

.form-alert {
    margin-bottom: 16px;
    padding: 12px;
    border-radius: var(--radius);
    font-weight: 800;
}

.form-alert.success {
    background: var(--green-50);
    color: #247A0D;
}

.form-alert.error {
    background: #FEF2F2;
    color: #B91C1C;
}

.form-alert.warning {
    background: #FFF7E6;
    color: #92400E;
}

.footer {
    padding: 58px 0 26px;
    background: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr;
    gap: 34px;
}

.footer p {
    max-width: 460px;
    margin-top: 16px;
    color: var(--muted);
}

.footer h2 {
    margin-bottom: 14px;
    font-size: 1rem;
}

.footer a:not(.brand) {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-weight: 700;
}

.footer a:hover {
    color: var(--blue);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 36px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: .88rem;
}

.detail-hero {
    position: relative;
    min-height: 62vh;
    padding: 150px 0 82px;
    display: grid;
    align-items: center;
    overflow: hidden;
    background: #07172E;
}

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 430px;
    gap: 50px;
    align-items: start;
}

.source-note {
    margin-top: 18px !important;
    padding: 14px;
    border-left: 4px solid var(--blue);
    background: var(--blue-50);
    color: var(--text) !important;
    font-size: .95rem !important;
}

.source-note a {
    color: var(--blue);
    font-weight: 900;
}

.bullet-panel {
    display: grid;
    gap: 12px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
}

.bullet-panel div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 800;
}

.detail-cards,
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.detail-card {
    padding: 24px;
}

.detail-card h3 {
    margin-bottom: 10px;
}

.related-section {
    background: var(--white);
}

.related-card {
    display: grid;
    grid-template-columns: 34px 1fr 24px;
    align-items: center;
    gap: 12px;
    padding: 18px;
    color: var(--ink);
    font-weight: 900;
}

.related-card:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.detail-cta {
    padding-top: 20px;
}

.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 34px;
    border-radius: var(--radius);
    background: var(--blue-50);
}

.not-found {
    min-height: 74vh;
    padding-top: 170px;
}

.not-found h1 {
    margin-bottom: 14px;
}

.not-found p {
    margin-bottom: 26px;
    color: var(--muted);
}

@media (max-width: 1120px) {
    h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 2.55rem;
    }

    .desktop-links,
    .return-link {
        display: none;
    }

    .menu-toggle {
        display: grid;
    }

    .mobile-panel.is-open {
        display: block;
    }

    .module-grid,
    .pricing-grid,
    .detail-cards,
    .related-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid div:nth-child(2) {
        border-right: 0;
    }
}

@media (max-width: 820px) {
    .container {
        width: min(100% - 28px, var(--container));
    }

    .section {
        padding: 68px 0;
    }

    h1 {
        font-size: 3.05rem;
    }

    h2 {
        font-size: 2.1rem;
    }

    .hero,
    .detail-hero {
        min-height: 78vh;
        padding: 128px 0 72px;
    }

    .hero::after,
    .detail-hero::after {
        background: rgba(7, 23, 46, .82);
    }

    .hero-content,
    .detail-hero-content {
        width: min(100% - 28px, var(--container));
        margin-inline: auto;
    }

    .hero-lead,
    .detail-hero-content > p:not(.eyebrow) {
        font-size: 1.08rem;
    }

    .btn {
        width: 100%;
        white-space: normal;
    }

    .hero-actions,
    .detail-actions {
        width: 100%;
    }

    .hero-points {
        display: grid;
    }

    .module-grid,
    .feature-grid,
    .why-grid,
    .gallery-grid,
    .pricing-grid,
    .faq-wrap,
    .demo-grid,
    .footer-grid,
    .detail-layout,
    .detail-cards,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .field-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .nav-inner {
        width: min(100% - 24px, 1240px);
    }

    .brand {
        font-size: 1rem;
    }

    .brand img {
        width: 34px;
        height: 34px;
    }

    .nav-actions .btn {
        display: none;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .trust-grid div:last-child {
        border-bottom: 0;
    }

    .price-card,
    .demo-form,
    .cta-band {
        padding: 22px;
    }

    .footer-bottom,
    .cta-band {
        display: grid;
    }

    .lightbox {
        padding: 14px;
    }
}

@media (max-width: 430px) {
    h1 {
        font-size: 2.52rem;
    }

    h2 {
        font-size: 1.86rem;
    }

    .price span {
        font-size: 2.5rem;
    }

    .gallery-item span {
        position: static;
        display: flex;
        width: 100%;
        max-width: none;
        border-radius: 0;
        background: var(--white);
        color: var(--ink);
    }
}

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

    .js [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
