:root {
    --blue: #116bdc;
    --navy: #071d48;
    --text: #3f526a;
    --sky: #eef7ff;
    --sky-2: #f7fbff;
    --line: #dce9f5;
    --white: #fff;
    --radius: 14px;
    --shadow: 0 14px 40px rgba(24, 80, 135, .10);
    --font: "DM Sans", sans-serif;
    --display: "Manrope", sans-serif;
    --ease: cubic-bezier(.22, 1, .36, 1)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: #fff;
    color: var(--navy);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65
}

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

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

button,
input,
select,
textarea {
    font: inherit
}

.container {
    width: min(1200px, calc(100% - 48px));
    margin-inline: auto
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 100;
    background: #fff;
    padding: 10px 16px;
    transform: translateY(-150%)
}

.skip-link:focus {
    transform: none
}

.header {
    height: 78px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid rgba(17, 107, 220, .08)
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px
}

.logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--display);
    font-size: 17px;
    font-weight: 800;
    line-height: .9;
    letter-spacing: -.5px
}

.logo svg {
    width: 38px;
    height: 38px;
    color: var(--blue)
}

.logo b {
    color: var(--blue)
}

.logo small {
    display: block;
    margin-top: 6px;
    font-family: var(--font);
    font-size: 7px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.7px;
    color: #678
}

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

.nav a {
    font-size: 13px;
    font-weight: 600;
    color: #40516b;
    transition: .2s
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 22px;
    border: 1px solid var(--blue);
    border-radius: 8px;
    background: var(--blue);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(17, 107, 220, .16);
    transition: transform .22s var(--ease), background .22s
}

.button:hover {
    background: #0759bf;
    transform: translateY(-2px)
}

.button-small {
    min-height: 42px;
    padding: 10px 19px
}

.button-outline {
    background: #fff;
    color: var(--navy);
    border-color: #b8cbe0;
    box-shadow: none
}

.button-outline:hover {
    background: var(--sky);
    color: var(--blue)
}

.menu-button {
    display: none
}

.hero {
    background: linear-gradient(115deg, #f6fbff 0%, #eaf5ff 56%, #ddecfa 100%);
    overflow: hidden
}

.hero-grid {
    min-height: 570px;
    display: grid;
    grid-template-columns: 53% 47%;
    align-items: center;
    position: relative
}

.hero-copy {
    padding: 72px 60px 112px 4px;
    position: relative;
    z-index: 2
}

.pill,
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.8px
}

.pill {
    padding: 7px 12px;
    border-radius: 99px;
    background: rgba(17, 107, 220, .08)
}

.hero h1 {
    font-family: var(--display);
    font-size: clamp(48px, 5.2vw, 72px);
    line-height: 1.08;
    letter-spacing: -3px;
    margin: 17px 0 18px
}

.hero h1 em {
    font-style: normal;
    color: var(--blue)
}

.hero-copy>p {
    max-width: 550px;
    margin: 0;
    color: var(--text);
    font-size: 17px
}

.hero-benefits {
    display: flex;
    gap: 22px;
    margin: 28px 0
}

.hero-benefits span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    color: #31445d
}

.hero-benefits i {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: var(--blue);
    font-style: normal;
    box-shadow: 0 5px 15px rgba(17, 107, 220, .1)
}

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

.hero-photo {
    height: 570px;
    align-self: stretch;
    background: url('https://images.unsplash.com/photo-1609840114035-3c981b782dfe?auto=format&fit=crop&w=1200&q=88') center/cover no-repeat;
    position: relative;
    border-radius: 1000px;
    box-shadow: -22px 0 0 rgba(255, 255, 255, .8)
}

.photo-badge {
    position: absolute;
    right: 7%;
    bottom: 52px;
    background: #fff;
    border-radius: 12px;
    padding: 13px 17px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow)
}

.photo-badge b {
    font-family: var(--display);
    font-size: 25px;
    color: var(--blue)
}

.photo-badge small {
    font-size: 9px;
    line-height: 1.4;
    color: #6a7b90
}

.photo-badge small:first-line {
    color: #ffb217
}

.quick-services {
    position: relative;
    margin-top: -66px;
    z-index: 4
}

.quick-grid {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 18px 55px rgba(26, 78, 130, .13);
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    padding: 22px 15px
}

.quick-grid article {
    text-align: center;
    padding: 6px 15px;
    border-right: 1px solid var(--line)
}

.quick-grid article:last-child {
    border: 0
}

.icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;
    display: grid;
    place-items: center;
    background: var(--sky);
    border-radius: 50%;
    color: var(--blue);
    font-size: 22px
}

.quick-grid h3 {
    font-family: var(--display);
    font-size: 12px;
    margin: 0 0 2px
}

.quick-grid p {
    color: #728398;
    font-size: 10px;
    margin: 0
}

.section {
    padding: 94px 0
}

.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 76px;
    align-items: center
}

.about {
    padding-top: 112px
}

.about-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

.about-collage img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px
}

.about-collage .about-main {
    height: 310px;
    grid-column: 1/-1
}

.about-copy h2,
.section-title h2,
.contact-copy h2 {
    font-family: var(--display);
    font-size: clamp(34px, 3.8vw, 48px);
    line-height: 1.15;
    letter-spacing: -1.8px;
    margin: 10px 0 18px
}

.about-copy h2 span,
.section-title h2 span {
    color: var(--blue)
}

.about-copy>p:not(.section-label) {
    color: var(--text);
    max-width: 530px
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.check-list li {
    font-size: 13px;
    font-weight: 600;
    color: #3d5068;
    position: relative;
    padding-left: 25px
}

.check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--blue);
    color: #fff;
    font-size: 9px
}

.why {
    background: var(--sky)
}

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

.section-title>p:last-child {
    color: #6b7b90;
    margin: 0
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px
}

.why-grid article {
    display: flex;
    gap: 15px;
    background: #fff;
    padding: 25px 21px;
    border: 1px solid #e4eff8;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(33, 86, 135, .05)
}

.feature-icon {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--sky);
    color: var(--blue);
    font-size: 11px;
    font-weight: 800
}

.why-grid h3 {
    font-family: var(--display);
    font-size: 14px;
    line-height: 1.35;
    margin: 2px 0 7px
}

.why-grid p {
    font-size: 11px;
    color: #718196;
    line-height: 1.55;
    margin: 0
}

.services {
    background: #fff
}

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

.service-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(28, 73, 117, .07);
    transition: transform .25s var(--ease), box-shadow .25s
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow)
}

.service-card>img {
    width: 100%;
    height: 150px;
    object-fit: cover
}

.service-card>div {
    padding: 21px;
    position: relative
}

.card-icon {
    position: absolute;
    right: 20px;
    top: -20px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--blue);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 800;
    box-shadow: 0 6px 16px rgba(17, 107, 220, .14)
}

.service-card h3 {
    font-family: var(--display);
    font-size: 16px;
    margin: 0 0 7px
}

.service-card p {
    font-size: 12px;
    color: #718196;
    margin: 0 0 17px
}

.service-card footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid #edf2f7;
    font-size: 11px
}

.service-card footer b {
    color: var(--navy)
}

.service-card footer a {
    color: var(--blue);
    font-weight: 700
}

.prices-note,
.demo-note {
    text-align: center;
    font-size: 10px;
    color: #8b98a8;
    margin: 20px 0 0
}

.testimonials {
    background: var(--sky-2)
}

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

.testimonials-grid article {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 13px
}

.stars {
    color: #ffb318;
    font-size: 12px;
    letter-spacing: 3px
}

.testimonials-grid article>p {
    font-size: 13px;
    color: #53657b;
    line-height: 1.75;
    margin: 14px 0 22px
}

.testimonials-grid footer {
    display: flex;
    align-items: center;
    gap: 11px
}

.testimonials-grid footer>span {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--sky);
    color: var(--blue);
    font-size: 10px;
    font-weight: 800
}

.testimonials-grid footer b,
.testimonials-grid footer small {
    display: block
}

.testimonials-grid footer b {
    font-size: 11px
}

.testimonials-grid footer small {
    font-size: 9px;
    color: #8794a4
}

.contact-section {
    padding: 76px 0;
    background: #fff
}

.contact-card {
    border-radius: 16px;
    background: linear-gradient(120deg, #0d6fdf, #0854bd);
    color: #fff;
    padding: 54px 60px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    position: relative;
    overflow: hidden
}

.contact-card:after {
    content: "";
    position: absolute;
    right: -100px;
    bottom: -170px;
    width: 400px;
    height: 400px;
    border: 55px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
    pointer-events: none
}

.section-label.light {
    color: #d8eaff
}

.contact-copy h2 {
    font-size: 45px;
    margin-top: 10px
}

.contact-copy>p:not(.section-label) {
    font-size: 14px;
    color: #dbeaff;
    max-width: 430px
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 26px
}

.contact-details a {
    font-size: 12px;
    font-weight: 700
}

.form {
    position: relative;
    z-index: 2;
    background: #fff;
    color: var(--navy);
    padding: 28px;
    border-radius: 12px
}

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

.form label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 13px;
    color: #526379
}

.form input,
.form select,
.form textarea {
    width: 100%;
    display: block;
    margin-top: 5px;
    padding: 10px 12px;
    border: 1px solid #d7e2ee;
    border-radius: 7px;
    background: #fbfdff;
    color: var(--navy);
    font-size: 12px;
    outline: none
}

.form input:focus,
.form select:focus,
.form textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(17, 107, 220, .1)
}

.button-white {
    width: 100%;
    background: var(--blue)
}

.form-status {
    font-size: 10px;
    text-align: center;
    color: #607187;
    margin: 9px 0 0;
    min-height: 16px
}

.footer {
    background: #071d48;
    color: #fff;
    padding: 60px 0 22px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 55px
}

.footer-logo {
    margin-bottom: 18px
}

.footer-logo b {
    color: #51a5ff
}

.footer-grid>div:first-child p {
    max-width: 280px;
    color: #95a8c3;
    font-size: 12px
}

.footer-grid>div:not(:first-child) {
    display: flex;
    flex-direction: column;
    gap: 9px
}

.footer-grid h3 {
    font-family: var(--display);
    font-size: 12px;
    margin: 4px 0 10px
}

.footer-grid a,
.footer-grid p {
    font-size: 11px;
    color: #9eb0c9;
    margin: 0
}

.footer-grid a:hover {
    color: #fff
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 40px;
    padding-top: 18px;
    color: #8398b7;
    font-size: 9px
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .65s var(--ease), transform .65s var(--ease)
}

.reveal.visible {
    opacity: 1;
    transform: none
}

@media(max-width:960px) {
    .header .button-small {
        display: none
    }

    .menu-button {
        display: block;
        margin-left: auto;
        border: 0;
        background: none;
        padding: 8px
    }

    .menu-button span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--navy);
        margin: 5px
    }

    .nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 78px;
        padding: 25px;
        background: #fff;
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: flex-start
    }

    .nav.open {
        display: flex
    }

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

    .hero-copy {
        padding-right: 20px
    }

    .hero-benefits {
        flex-wrap: wrap
    }

    .quick-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 20px
    }

    .quick-grid article:nth-child(3) {
        border-right: 0
    }

    .two-columns {
        gap: 40px
    }

    .why-grid {
        grid-template-columns: 1fr 1fr
    }

    .contact-card {
        gap: 35px;
        padding: 45px
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr
    }
}

@media(max-width:700px) {
    .container {
        width: min(100% - 36px, 1180px)
    }

    .header {
        height: 68px
    }

    .nav {
        top: 68px
    }

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

    .hero-copy {
        text-align: center;
        padding: 62px 0 42px
    }

    .hero-copy>p {
        margin-inline: auto
    }

    .hero-benefits {
        justify-content: center
    }

    .hero-actions {
        justify-content: center
    }

    .hero-photo {
        height: 390px;
        border-radius: 48% 48% 0 0 / 20% 20% 0 0;
        box-shadow: 0 -12px 0 rgba(255, 255, 255, .75)
    }

    .quick-services {
        margin-top: -26px
    }

    .quick-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 18px 10px
    }

    .quick-grid article:nth-child(3) {
        border-right: 1px solid var(--line)
    }

    .quick-grid article:nth-child(even) {
        border-right: 0
    }

    .section {
        padding: 72px 0
    }

    .about {
        padding-top: 86px
    }

    .two-columns {
        grid-template-columns: 1fr
    }

    .about-collage {
        order: 2
    }

    .check-list {
        grid-template-columns: 1fr
    }

    .why-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr
    }

    .service-card>img {
        height: 205px
    }

    .contact-card {
        grid-template-columns: 1fr;
        padding: 35px 24px
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px
    }

    .footer-grid>div:first-child {
        grid-column: 1/-1
    }

    .hero h1 {
        letter-spacing: -2px
    }
}

@media(max-width:430px) {
    .hero-actions {
        flex-direction: column
    }

    .hero-actions .button {
        width: 100%
    }

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

    .quick-grid h3 {
        font-size: 11px
    }

    .about-collage .about-main {
        height: 240px
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-grid>div:first-child {
        grid-column: auto
    }

    .footer-bottom {
        display: block
    }

    .footer-bottom span {
        display: block;
        margin-top: 4px
    }
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 40;
    min-height: 54px;
    padding: 0 18px 0 14px;
    display: flex;
    align-items: center;
    gap: 9px;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(10, 88, 40, .28);
    transition: transform .22s var(--ease), background .22s;
}

.whatsapp-float:hover {
    background: #1fbd5a;
    transform: translateY(-3px);
}

.whatsapp-float:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

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

@media(max-width:600px) {
    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
        min-height: 56px;
        padding: 0;
        justify-content: center;
    }

    .whatsapp-float span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    *,
    *:before,
    *:after {
        transition: none !important;
        animation: none !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}
