:root {
    --bg: #071c52;
    --bg-dark: #031541;
    --blue: #0b63ff;
    --blue-2: #0056f0;
    --ink: #0d1d4f;
    --text: #182447;
    --muted: #5a678a;
    --white: #ffffff;
    --radius-lg: 24px;
    --radius-md: 14px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Outfit", sans-serif;
    color: var(--text);
    background: #f4f7ff;
}

.container {
    width: min(92%, 1280px);
    margin: 0 auto;
}

.header {
    background: var(--white);
    border-bottom: 1px solid #eaf0ff;
    position: sticky;
    top: 0;
    z-index: 30;
}

.nav {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand img {
    width: 330px;
    max-width: 100%;
    display: block;
}

.menu ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.menu a {
    text-decoration: none;
    color: #13295e;
    font-size: 1.2rem;
    font-weight: 500;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 12px;
    padding: 14px 26px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: 0.2s ease;
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(90deg, var(--blue), var(--blue-2));
}

.btn-primary:hover {
    filter: brightness(1.05);
}

.hero {
    background:
        radial-gradient(circle at 87% 17%, rgba(44, 118, 255, 0.28), transparent 27%),
        linear-gradient(130deg, var(--bg-dark), var(--bg));
    overflow: hidden;
    padding: 84px 0 188px;
    position: relative;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.25;
    background-image:
        linear-gradient(90deg, transparent 0 76%, rgba(63, 129, 255, 0.22) 76% 77%, transparent 77% 100%),
        repeating-linear-gradient(160deg, transparent 0 100px, rgba(88, 146, 255, 0.22) 100px 102px, transparent 102px 210px);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.03fr 1fr;
    gap: 42px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-copy {
    color: var(--white);
}

.pill {
    display: inline-flex;
    background: linear-gradient(90deg, #174bbd, #0e6cff);
    border-radius: 999px;
    padding: 11px 18px;
    font-size: 0.98rem;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    line-height: 1.08;
    margin-bottom: 18px;
    max-width: 690px;
}

.hero p {
    color: #d6e4ff;
    font-size: clamp(1.2rem, 1.8vw, 1.75rem);
    line-height: 1.45;
    max-width: 660px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-outline {
    color: var(--white);
    border-color: rgba(219, 234, 255, 0.65);
    background: rgba(255, 255, 255, 0.03);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.11);
}

.hero-media {
    position: relative;
    text-align: right;
}

.hero-media img {
    width: min(100%, 770px);
    border-radius: 16px;
    box-shadow: 0 26px 60px rgba(1, 8, 28, 0.45);
}

.feature-strip-wrap {
    margin-top: -128px;
    position: relative;
    z-index: 4;
}

.feature-strip {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 18px 28px;
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(9, minmax(0, 1fr));
    box-shadow: 0 24px 50px rgba(7, 20, 55, 0.14);
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 48px;
    height: 48px;
    color: #0d62f3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.feature-icon svg {
    width: 44px;
    height: 44px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-item h3 {
    color: #0f2f84;
    font-size: 0.72rem;
    line-height: 1.24;
    margin-bottom: 7px;
}

.feature-item p {
    color: var(--muted);
    font-size: 0.68rem;
    line-height: 1.48;
    max-width: 145px;
    margin: 0 auto;
}

.benefits {
    margin-top: -1px;
    padding: 28px 0 34px;
    background: linear-gradient(180deg, #082160 0%, #031744 100%);
}

.benefits-head {
    text-align: center;
    color: var(--white);
    margin-bottom: 28px;
}

.benefits-head h2 {
    font-size: clamp(1.9rem, 3.2vw, 3.4rem);
    line-height: 1.12;
    margin-bottom: 8px;
}

.benefits-head span {
    color: #2c7bff;
}

.benefits-head p {
    color: #cdddfd;
    font-size: 0.95rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
    margin-bottom: 8px;
}

.benefit-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 24px 14px 20px;
    text-align: center;
    min-height: 220px;
}

.benefit-card:nth-child(-n+5) {
    grid-column: span 1;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1a67f8;
}

.benefit-icon svg {
    width: 40px;
    height: 40px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-card h3 {
    color: #0b2f8f;
    font-size: 0.95rem;
    line-height: 1.24;
    margin-bottom: 8px;
}

.benefit-card p {
    color: #60709a;
    font-size: 0.72rem;
    line-height: 1.4;
    max-width: 152px;
    margin: 0 auto;
}

.cta-panel {
    grid-column: span 1;
    border-radius: 14px;
    padding: 18px;
    color: var(--white);
    background: linear-gradient(160deg, #146eff 0%, #0053db 100%);
    box-shadow: 0 16px 34px rgba(0, 23, 74, 0.35);
    position: relative;
    overflow: hidden;
}

.demo-track {
    position: relative;
    min-height: 220px;
}

.demo-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.demo-slide.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.demo-layout {
    display: grid;
    grid-template-columns: 1fr 180px;
    gap: 12px;
    align-items: center;
}

.demo-copy {
    min-width: 0;
}

.demo-shot {
    margin: 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 20px rgba(2, 12, 40, 0.26);
    background: rgba(255, 255, 255, 0.1);
}

.demo-shot img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.demo-tag {
    display: inline-flex;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.14);
    color: #e6efff;
    text-transform: uppercase;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}

.demo-slide h3 {
    font-size: 1.25rem;
    line-height: 1.22;
    margin-bottom: 10px;
}

.demo-slide p {
    font-size: 0.83rem;
    color: #dde9ff;
    line-height: 1.42;
    margin-bottom: 14px;
}

.demo-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.demo-nav {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
}

.demo-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}

.demo-dot {
    width: 7px;
    height: 7px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.demo-dot.is-active {
    width: 20px;
    background: #fff;
}

.btn-light {
    width: fit-content;
    background: #ffffff;
    color: #0459de;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 12px;
    padding: 11px 14px;
}

@media (max-width: 1450px) {
    .feature-strip {
        grid-template-columns: repeat(9, minmax(0, 1fr));
    }
}

@media (max-width: 1200px) {
    .feature-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 22px;
        padding: 26px 20px;
    }

    .feature-item h3 {
        font-size: 0.95rem;
    }

    .feature-item p {
        font-size: 0.7rem;
        max-width: 220px;
    }

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

    .benefit-card:nth-child(-n+5) {
        grid-column: span 1;
        min-height: 220px;
    }

    .benefit-card p {
        font-size: 0.7rem;
        max-width: 210px;
    }

    .cta-panel {
        grid-column: span 2;
    }

    .demo-track {
        min-height: 180px;
    }

    .demo-slide h3 {
        font-size: 1.1rem;
    }

    .demo-slide p {
        font-size: 0.78rem;
    }

    .demo-layout {
        grid-template-columns: 1fr;
    }

    .demo-shot {
        max-height: 120px;
    }
}

@media (max-width: 1060px) {
    .nav {
        flex-wrap: wrap;
        justify-content: center;
        padding: 18px 0;
    }

    .hero {
        padding: 60px 0 150px;
    }

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

    .hero-media {
        text-align: center;
    }

    .hero-media img {
        width: min(100%, 740px);
    }

    .feature-strip-wrap {
        margin-top: -88px;
    }
}

@media (max-width: 760px) {
    .menu ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px 22px;
    }

    .menu a {
        font-size: 1.05rem;
    }

    .btn {
        width: 100%;
    }

    .hero-actions {
        display: grid;
        width: 100%;
    }

    .feature-strip {
        grid-template-columns: 1fr;
        padding: 24px 18px;
    }

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

    .cta-panel {
        grid-column: auto;
    }
}

.floating-banner {
    position: relative;
    margin-top: 26px;
    width: 100%;
    border-radius: 18px;
    padding: 20px 24px;
    z-index: 8;
    background: linear-gradient(160deg, rgba(8, 42, 120, 0.96), rgba(9, 94, 255, 0.96));
    box-shadow: 0 18px 44px rgba(2, 12, 40, 0.42);
    backdrop-filter: blur(8px);
}

.floating-banner-track {
    min-height: 170px;
    position: relative;
}

.floating-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.floating-slide.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-tag {
    display: inline-flex;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #dbe8ff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    padding: 4px 10px;
    margin-bottom: 10px;
}

.floating-slide h3 {
    color: #ffffff;
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 8px;
}

.floating-slide p {
    color: #e3eeff;
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 12px;
    max-width: 900px;
}

.floating-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #0454dc;
    background: #ffffff;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 1rem;
    font-weight: 700;
}

.floating-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.floating-nav {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
}

.floating-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
}

.dot.is-active {
    width: 18px;
    border-radius: 999px;
    background: #ffffff;
}

@media (max-width: 760px) {
    .floating-banner {
        margin-top: 14px;
        padding: 16px;
    }
}

@media (max-width: 1200px) {
    .floating-slide h3 {
        font-size: 1.55rem;
    }

    .floating-slide p {
        font-size: 0.95rem;
    }
}

.site-footer {
    margin-top: 46px;
    background:
        radial-gradient(circle at 14% -20%, rgba(47, 120, 255, 0.35), transparent 42%),
        linear-gradient(160deg, #03133b 0%, #041a53 52%, #06276f 100%);
    color: #dbe8ff;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
    padding: 54px 0 30px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 28px;
}

.footer-brand img {
    width: 240px;
    max-width: 100%;
    margin-bottom: 14px;
}

.footer-brand p {
    max-width: 360px;
    color: #b6c8f2;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 12px;
}

.footer-col ul {
    list-style: none;
    display: grid;
    gap: 8px;
}

.footer-col a {
    color: #c8d8ff;
    text-decoration: none;
    transition: 0.2s ease;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: 0.92rem;
    color: #a8bce9;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-links a {
    color: #c8d8ff;
    text-decoration: none;
}

@media (max-width: 1060px) {
    .footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
}

@media (max-width: 760px) {
    .footer-top {
        grid-template-columns: 1fr;
        padding-top: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
    z-index: 120;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.whatsapp-float svg {
    width: 31px;
    height: 31px;
}
