:root {
    --blue: #0b57d0;
    --blue-2: #3b82f6;
    --navy: #071a3d;
    --ink: #14213d;
    --muted: #61708c;
    --sky: #eaf3ff;
    --line: #dce8f7;
    --white: #fff;
    --green: #21a366;
    --yellow: #f9ab00;
    --red: #ea4335;
    --shadow: 0 24px 70px rgba(23, 61, 121, .14);
    --radius: 24px;
    --ease: cubic-bezier(.2, .8, .2, 1)
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.65;
    overflow-x: hidden
}

body.menu-open {
    overflow: hidden
}

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

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

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

.section {
    padding: 90px 0
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--blue);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .13em;
    text-transform: uppercase;
    margin-bottom: 17px
}

.eyebrow:before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--blue)
}
.eyebrow:after {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--blue)
}


h1,
h2,
h3,
h4 {
    font-family: "Manrope", sans-serif;
    line-height: 1.12;
    letter-spacing: -.035em
}

h1 {
    font-size: clamp(2.1rem, 4.3vw, 4.15rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.85rem, 3.4vw, 3.15rem);
    font-weight: 800;
}

h3 {
    font-size: 1.35rem
}

p {
    color: var(--muted)
}

.section-head {
    max-width: 70%;
    margin-bottom: 25px;
}

.section-head h2 {
    margin-bottom: 20px;
}

.section-head.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto
}

.section-head.center .eyebrow:before {
    display: none
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 13px;
    font-weight: 700;
    border: 1px solid transparent;
    cursor: pointer;
    transition: .35s var(--ease);
    position: relative;
    overflow: hidden
}

.btn span,
.btn svg {
    position: relative;
    z-index: 1
}

.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 14px 30px rgba(11, 87, 208, .22)
}

.btn-primary:before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--navy);
    transform: translateX(-101%);
    transition: .45s var(--ease)
}

.btn-primary:hover:before {
    transform: none
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(11, 87, 208, .3)
}

.btn-light {
    background: #fff;
    color: var(--blue);
    border-color: var(--line)
}

.btn-light:hover {
    border-color: var(--blue);
    transform: translateY(-3px)
}

.arrow {
    width: 19px;
    height: 19px;
    transition: .25s
}

.btn:hover .arrow {
    transform: translateX(4px)
}

.topbar {
    background: var(--navy);
    color: #dbe9ff;
    font-size: .875rem;
}

.topbar .container {
    height: 38px;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.topbar-left,
.topbar-right {
    display: flex;
    gap: 24px;
    align-items: center
}

.topbar a:hover {
    color: white
}

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

.pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #63e6a4;
    box-shadow: 0 0 0 0 rgba(99, 230, 164, .6);
    animation: pulse 2s infinite
}

@keyframes pulse {
    70% {
        box-shadow: 0 0 0 8px rgba(99, 230, 164, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(99, 230, 164, 0)
    }
}

.header {
    height: 82px;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(220, 232, 247, .8);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: .3s
}

.header-inner {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    justify-content: space-between;
}

.header-inner .header-logo img {
    width: 150px;
    height: auto;
    object-fit: contain;
}

.header.scrolled {
    box-shadow: 0 10px 40px rgba(7, 26, 61, .08)
}

.nav {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    font: 800 1.14rem "Manrope"
}

.logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: conic-gradient(from 20deg, var(--red), var(--yellow), var(--green), var(--blue), var(--red));
    padding: 4px;
    transform: rotate(-8deg)
}

.logo-mark:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background: white
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 1rem;
    font-weight: 600
}

.nav-links a:not(.btn) {
    position: relative
}

.nav-links a:not(.btn):after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -7px;
    height: 2px;
    background: var(--blue);
    transition: .3s
}

.nav-links a:not(.btn):hover:after {
    right: 0
}

.nav-links .btn {
    min-height: 46px;
    padding: 0 19px
}

.menu-btn {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    background: var(--sky);
    border-radius: 12px;
    cursor: pointer
}

.menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--navy);
    margin: 4px auto;
    transition: .3s
}

.hero {
    min-height: 720px;
    padding: 76px 0 90px;
    background: radial-gradient(circle at 72% 32%, rgba(66, 133, 244, .17), transparent 25%), linear-gradient(135deg, #f7fbff 0%, #fff 54%, #f0f6ff 100%);
    position: relative;
    overflow: hidden
}

.hero:before {
    content: "";
    position: absolute;
    width: 540px;
    height: 540px;
    border: 1px solid rgba(11, 87, 208, .08);
    border-radius: 50%;
    right: -180px;
    top: -200px;
    box-shadow: 0 0 0 80px rgba(11, 87, 208, .02), 0 0 0 160px rgba(11, 87, 208, .015)
}

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

.hero h1 span {
    background: linear-gradient(100deg, #0b57d0, #4f8df7);
    -webkit-background-clip: text;
    color: transparent
}

.hero-copy>p {
    font-size: 1.12rem;
    max-width: 590px;
    margin: 25px 0 32px
}

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

.trust-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 35px;
    font-size: .9rem;
    color: var(--muted)
}

.avatars {
    display: flex
}

.avatar {
    width: 36px;
    height: 36px;
    border: 3px solid white;
    border-radius: 50%;
    margin-left: -9px;
    background: linear-gradient(145deg, #d5e7ff, #699cf0);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: .7rem;
    color: white
}

.avatar:first-child {
    margin-left: 0
}

.stars {
    color: #f9ab00;
    letter-spacing: 1px
}

.hero-visual {
    position: relative;
    height: 520px
}

.workspace-card {
    position: absolute;
    inset: 35px 0 20px 45px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 32px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
    padding: 25px;
    animation: float 6s ease-in-out infinite
}

@keyframes float {
    50% {
        transform: translateY(-12px)
    }
}

.mock-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px
}

.mock-dots {
    display: flex;
    gap: 7px
}

.mock-dots i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d9e5f5
}

.mock-user {
    display: flex;
    gap: 9px;
    align-items: center;
    font-size: .76rem;
    font-weight: 700
}

.mock-user i {
    width: 31px;
    height: 31px;
    border-radius: 50%;
    background: linear-gradient(145deg, #f9ab00, #ea4335)
}

.mock-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 15px;
    height: 355px
}

.mock-side,
.mock-main {
    border-radius: 20px;
    background: #f6f9fe;
    padding: 18px
}

.app-mini {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 9px;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 9px;
    font-size: .75rem;
    font-weight: 700;
    box-shadow: 0 5px 18px rgba(30, 72, 132, .06)
}

.app-mini b,
.app-icon {
    width: 25px;
    height: 25px;
    border-radius: 7px;
    color: white;
    display: grid;
    place-items: center;
    font-size: .7rem
}

.mock-title {
    font: 700 .88rem "Manrope";
    margin-bottom: 15px
}

.chart {
    height: 110px;
    border-radius: 14px;
    background: linear-gradient(180deg, #eef5ff, #fff);
    display: flex;
    align-items: end;
    gap: 8px;
    padding: 18px
}

.chart i {
    flex: 1;
    border-radius: 6px 6px 2px 2px;
    background: linear-gradient(#72a3f5, #0b57d0);
    animation: bars 2.6s ease-in-out infinite alternate
}

.chart i:nth-child(1) {
    height: 40%
}

.chart i:nth-child(2) {
    height: 66%;
    animation-delay: .2s
}

.chart i:nth-child(3) {
    height: 52%;
    animation-delay: .4s
}

.chart i:nth-child(4) {
    height: 88%;
    animation-delay: .6s
}

.chart i:nth-child(5) {
    height: 75%;
    animation-delay: .8s
}

@keyframes bars {
    to {
        filter: saturate(1.4);
        transform: scaleY(.88);
        transform-origin: bottom
    }
}

.meeting {
    margin-top: 15px;
    background: white;
    border-radius: 14px;
    padding: 13px
}

.meeting-top {
    display: flex;
    justify-content: space-between;
    font-size: .72rem;
    font-weight: 700
}

.people {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-top: 10px
}

.people i {
    height: 48px;
    border-radius: 9px;
    background: linear-gradient(145deg, #dcecff, #8ab1ef)
}

.float-badge {
    position: absolute;
    background: white;
    border-radius: 17px;
    box-shadow: 0 15px 36px rgba(32, 69, 126, .16);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: .84rem;
    animation: float2 5s ease-in-out infinite
}

.float-badge i {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    color: white;
    font-style: normal
}

.badge-one {
    left: 0;
    top: 4px
}

.badge-two {
    right: -22px;
    bottom: 7px;
    animation-delay: 1s
}

@keyframes float2 {
    50% {
        transform: translateY(9px) rotate(1deg)
    }
}

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

.brand-strip .container {
    min-height: 105px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px
}

.brand-label {
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #8492a9;
    font-weight: 700
}

.brand-names {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
    gap: 25px;
    color: #8a98ac;
    font: 700 1rem "Manrope"
}

.brand-names span {
    opacity: .76;
    filter: grayscale(1)
}

.apps {
    background: #fff
}

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

section#solutions {
    position: relative;
    width: 100%;
    min-height: 100%;
    isolation: isolate;
}

section#solutions::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/bg-shap.png") center / cover no-repeat;
    opacity: 0.6;
    z-index: -1;
}

section#solutions h2 {
    margin-bottom: 20px;
}

.icon-wrap {
    margin-bottom: 10px;
}

.app-card {
    padding: 27px 23px;
    border: 1px solid var(--line);
    border-radius: 20px;
    transition: .4s var(--ease);
    background: white;
    position: relative;
    overflow: hidden
}

.app-card:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    right: -55px;
    top: -60px;
    background: var(--soft, #edf4ff);
    transition: .4s
}

.app-card:hover {
    transform: translateY(-9px);
    border-color: transparent;
    box-shadow: 0 20px 45px rgba(29, 69, 130, .13)
}

.app-card:hover:before {
    transform: scale(2.8)
}

.app-card>* {
    position: relative
}

.app-card .app-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    font-size: 1rem;
    margin-bottom: 20px;
    box-shadow: 0 8px 18px rgba(21, 70, 145, .18)
}

.app-card p {
    font-size: 16px;
    line-height: normal;
    margin-top: 10px;
}

.bg-blue {
    background: #4285f4
}

.bg-red {
    background: #ea4335
}

.bg-green {
    background: #21a366
}

.bg-yellow {
    background: #f9ab00
}

.feature {
    background: var(--navy);
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.feature::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/visit-overlay-img.webp") center / cover no-repeat;
    opacity: 0.05;
    z-index: -1;
}

.feature-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 85px;
    align-items: center;
    position: relative;
    z-index: 1
}

.apps-grid .app-card {
    box-shadow: 0 4px 3px 0px;
}

.feature h2 {
    color: white
}

.feature .eyebrow {
    color: #7cb0ff
}

.feature .eyebrow:before {
    background: #7cb0ff
}

.feature-copy>p {
    color: #afc1df;
    font-size: 1.05rem;
    margin: 22px 0 32px
}

.feature-list {
    display: grid;
    gap: 13px
}

.feature-item {
    display: flex;
    gap: 14px;
    padding: 18px;
    border-radius: 16px;
    background: rgb(7 26 61);
    border: 1px solid rgba(255, 255, 255, .09);
    transition: .3s;
}

.feature-item:hover {
    transform: translateX(7px)
}

.check {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 9px;
    background: rgba(93, 158, 255, .18);
    color: #8abbff;
    display: grid;
    place-items: center
}

.feature-item p {
    color: #9fb1cf;
    font-size: .9rem;
    margin-top: 3px
}

.process-card {
    background: white;
    color: var(--ink);
    padding: 35px;
    border-radius: 28px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .25)
}

.process-top {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 24px
}

.process-top p {
    font-size: .86rem;
    margin-top: 5px
}

.shield {
    width: 56px;
    height: 56px;
    border-radius: 17px;
    background: #e9f3ff;
    color: var(--blue);
    display: grid;
    place-items: center
}

.timeline {
    position: relative;
    padding-left: 10px
}

.step {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 15px;
    padding: 12px 0;
    position: relative
}

.step:not(:last-child):after {
    content: "";
    position: absolute;
    width: 1px;
    background: #d8e4f5;
    left: 22px;
    top: 54px;
    bottom: -4px
}

.step-num {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: #edf4ff;
    color: var(--blue);
    display: grid;
    place-items: center;
    font: 700 .86rem "Manrope"
}

.step.active .step-num {
    background: var(--blue);
    color: white;
    box-shadow: 0 8px 18px rgba(11, 87, 208, .27)
}

.step p {
    font-size: .86rem;
    margin-top: 2px
}

.stats {
    background: linear-gradient(135deg, #071a3d 0%, #3f81f3 50%, #35a454 100%);
    padding: 55px 0;
}

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

.stat {
    text-align: center;
    padding: 10px 30px;
    border-right: 1px solid var(--white);
}

.stat:last-child {
    border: 0
}

.stat strong {
    display: block;
    font: 800 clamp(2.15rem, 4vw, 3.5rem) "Manrope";
    color: var(--white);
    line-height: 1;
}

.stat span {
    font-size: 16px;
    color: var(--white);
    margin-top: 10px;
    display: block;
}

.pricing {
    background: #eff3fd;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.pricing::before {
    content: "";
    position: absolute;
    background: url('../images/section-shape.webp');
    opacity: 0.6;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    width: 390px;
    height: 380px;
    top: 0;
    right: 0;
    transform: rotate(90deg);
}

.pricing::after {
    content: "";
    position: absolute;
    background: url('../images/section-shape.webp');
    opacity: 0.6;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    width: 390px;
    height: 380px;
    bottom: 0;
    left: 0;
    transform: rotate(270deg);
}

.pricing-switch {
    width: max-content;
    margin: 0 auto 48px;
    background: #edf3fb;
    border-radius: 15px;
    padding: 5px;
    display: flex
}

.pricing-switch button {
    border: 0;
    background: transparent;
    padding: 10px 19px;
    border-radius: 11px;
    font-weight: 700;
    color: var(--muted);
    cursor: pointer;
    transition: .3s
}

.pricing-switch button.active {
    background: white;
    color: var(--blue);
    box-shadow: 0 5px 15px rgba(31, 67, 122, .1)
}

.save {
    font-size: .7rem;
    background: #daf4e7;
    color: #188353;
    border-radius: 30px;
    padding: 3px 7px;
    margin-left: 5px
}

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

.price-card {
    border: 1px solid var(--line);
    border-radius: 23px;
    padding: 32px;
    position: relative;
    transition: .4s var(--ease);
    display: flex;
    flex-direction: column;
    background: var(--white);
}

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

.cloud-img img {
    width: 350px;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    animation: cloudFloat 3.5s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes cloudFloat {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(18px);
    }
}

.price-card.popular {
    border: 1px solid var(--blue);
    box-shadow: 0 24px 60px rgba(11, 87, 208, .13)
}

.popular-tag {
    position: absolute;
    right: 20px;
    top: 20px;
    background: #e8f1ff;
    color: var(--blue);
    border-radius: 30px;
    padding: 5px 10px;
    font-weight: 700;
    font-size: .7rem
}

.plan-sub {
    font-size: .87rem;
    min-height: 46px;
    margin-top: 8px
}

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

.price strong {
    font: 800 2.8rem "Manrope";
    line-height: 1;
    color: var(--navy)
}

.price sup {
    font-weight: 700;
    color: var(--muted);
    align-self: start;
    margin-top: 8px
}

.price small {
    color: var(--muted)
}

.billing-note {
    font-size: .75rem;
    margin-bottom: 23px
}

.price-list {
    list-style: none;
    display: grid;
    gap: 13px;
    margin: 0 0 28px
}

.price-list li {
    display: flex;
    gap: 10px;
    font-size: .88rem
}

.price-list li:before {
    content: "✓";
    color: var(--green);
    font-weight: 800
}

.price-card .btn {
    width: 100%;
    margin-top: auto
}

.why {
    background: linear-gradient(135deg, #071a3d00 0%, #3f81f32b 50%, #35a4547a 100%);
}

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

.why-visual {
    height: 560px;
    position: relative
}

.photo {
    position: absolute;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow)
}

.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .7s
}

.photo:hover img {
    transform: scale(1.05)
}

.photo-main {
    width: 76%;
    height: 84%;
    left: 0;
    bottom: 0
}

.photo-small {
    width: 45%;
    height: 43%;
    right: 0;
    top: 0;
    border: 8px solid #f6f9fe
}

.experience {
    position: absolute;
    right: 4%;
    bottom: 9%;
    background: var(--blue);
    color: white;
    border-radius: 20px;
    padding: 19px 25px;
    box-shadow: 0 15px 35px rgba(11, 87, 208, .28)
}

.experience strong {
    display: block;
    font: 800 2.15rem "Manrope";
    line-height: 1
}

.experience span {
    font-size: .78rem
}

.benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0
}

.benefit {
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 17px;
    display: flex;
    gap: 11px;
    font-weight: 700;
    font-size: .86rem;
    align-items: center
}

.benefit i {
    width: 33px;
    height: 33px;
    display: grid;
    place-items: center;
    background: #e9f3ff;
    color: var(--blue);
    border-radius: 10px;
    font-style: normal
}

.why-copy>p {
    font-size: 1.03rem;
    margin-top: 21px
}

.testimonial {
    background: white
}

.quote-card {
    background: var(--navy);
    color: white;
    border-radius: 28px;
    padding: 58px;
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 55px;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.quote-card::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: url("../images/visit-overlay-img.webp") center / cover no-repeat;
    z-index: -1;
    opacity: 0.05;
}

.quote-card:before {
    content: "“";
    position: absolute;
    font: 800 18rem Georgia;
    color: rgba(255, 255, 255, .04);
    right: 40px;
    top: -75px
}

.quote-person {
    display: flex;
    align-items: center;
    gap: 16px
}

.quote-person img {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    object-fit: cover
}

.quote-person p {
    color: #9fb1cf;
    font-size: .85rem
}

.quote-text {
    font: 600 clamp(1.3rem, 2.2vw, 2rem) "Manrope";
    line-height: 1.5;
    position: relative
}

.quote-stars {
    color: #fbbc04;
    margin-bottom: 13px;
    font-size: .9rem
}

.faq {
    background: #f6f9fe;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.faq::before {
    content: "";
    position: absolute;
    background: url('../images/section-shape.webp');
    opacity: 0.6;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    width: 390px;
    height: 380px;
    top: 0;
    right: 0;
    transform: rotate(90deg);
}

.faq::after {
    content: "";
    position: absolute;
    background: url('../images/section-shape.webp');
    opacity: 0.6;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
    width: 390px;
    height: 380px;
    bottom: 0;
    left: 0;
    transform: rotate(270deg);
}

.faq-wrap {
    max-width: 850px;
    margin: auto
}

.faq-item {
    background: white;
    border: 1px solid var(--line);
    border-radius: 15px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: .3s
}

.faq-item.open {
    box-shadow: 0 14px 35px rgba(24, 63, 121, .08);
    border-color: #bdd5f6
}

.faq-q {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 21px 23px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer
}

.faq-icon {
    width: 33px;
    height: 33px;
    border-radius: 8px;
    background: #edf4ff;
    color: var(--blue);
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    transition: .3s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--blue);
    color: white
}

.faq-a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .38s var(--ease)
}

.faq-a>div {
    overflow: hidden
}

.faq-a p {
    padding: 0 23px 22px
}

.faq-item.open .faq-a {
    grid-template-rows: 1fr
}

.contact {
    padding: 95px 0;
    background: white
}

.contact-box {
    background: var(--navy);
    border-radius: 30px;
    padding: 60px;
    color: white;
    display: grid;
    grid-template-columns: 1fr .88fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.contact-box:after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border: 70px solid rgba(255, 255, 255, .05);
    border-radius: 50%;
    right: -170px;
    bottom: -220px
}

.contact-box::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: url("../images/visit-overlay-img.webp") center / cover no-repeat;
    z-index: -1;
    opacity: 0.05;
}

.contact-copy,
.lead-form {
    position: relative;
    z-index: 1
}

.contact h2 {
    color: white
}

.contact-copy p {
    color: #d2e3ff;
    margin-top: 18px;
    max-width: 520px
}

.contact-points {
    display: flex;
    gap: 25px;
    margin-top: 27px;
    font-size: .86rem
}

.contact-points span:before {
    content: "✓";
    margin-right: 7px
}

.lead-form {
    background: white;
    border-radius: 21px;
    padding: 25px;
    color: var(--ink)
}

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

.field {
    display: grid;
    gap: 6px
}

.field.full {
    grid-column: 1/-1
}

.field label {
    font-weight: 700;
    color: #52617a;
    text-transform: capitalize;
}

.contact-box .eyebrow:before {
    background: var(--white);
}

.field input,
.field select {
    width: 100%;
    height: 49px;
    border: 1px solid #dce6f3;
    border-radius: 11px;
    padding: 0 13px;
    outline: none;
    color: var(--ink);
    background: #fbfdff
}

.field input:focus,
.field select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(11, 87, 208, .1)
}

.lead-form .btn {
    width: 100%;
    margin-top: 14px
}

.success-msg {
    display: none;
    text-align: center;
    padding: 35px 15px
}

.success-msg i {
    width: 58px;
    height: 58px;
    background: #e2f5ec;
    color: var(--green);
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    font-style: normal
}

footer {
    background: #061631;
    color: white;
    padding: 65px 0 24px;
    overflow: hidden;
    z-index: 2;
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: url('../images/footer-bg.webp');
    background-size: cover;
    z-index: -1;
    opacity: 0.3;
}

.footer-logo img {
    width: 150px;
    height: auto;
    overflow: hidden;
    object-fit: contain;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr .7fr 1fr;
    gap: 45px;
    padding-bottom: 45px
}

.footer-about p {
    color: #91a4c1;
    font-size: .9rem;
    max-width: 330px;
    margin-top: 18px
}

.footer-title {
    font: 700 1rem "Manrope";
    margin-bottom: 18px
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 9px;
    color: #91a4c1;
    font-size: .88rem
}

.footer-links a:hover {
    color: white
}

.newsletter {
    display: flex;
    margin-top: 13px
}

.newsletter input {
    height: 45px;
    border: 1px solid #27415f;
    background: #0e2444;
    color: white;
    border-radius: 10px 0 0 10px;
    padding: 0 12px;
    min-width: 0;
    width: 100%;
    outline: none
}

.newsletter button {
    width: 48px;
    border: 0;
    border-radius: 0 10px 10px 0;
    background: var(--blue);
    color: white;
    cursor: pointer
}

.copyright {
    padding-top: 22px;
    border-top: 1px solid #19304d;
    display: flex;
    justify-content: space-between;
    color: #7890af;
    font-size: .8rem
}

.back-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: var(--blue);
    color: white;
    border: 0;
    box-shadow: 0 10px 26px rgba(11, 87, 208, .27);
    display: grid;
    place-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .3s;
    z-index: 50
}

.back-top.show {
    opacity: 1;
    visibility: visible;
    transform: none
}

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

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

.delay-1 {
    transition-delay: .1s
}

.delay-2 {
    transition-delay: .2s
}

.delay-3 {
    transition-delay: .3s
}

@media(max-width:1024px) {
    .nav-links {
        gap: 19px
    }

    .hero-grid,
    .feature-grid,
    .why-grid {
        gap: 40px
    }

    .hero-visual {
        height: 470px
    }

    .workspace-card {
        left: 10px
    }

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

    .pricing-grid {
        gap: 13px
    }

    .price-card {
        padding: 26px 21px
    }

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

@media(max-width:800px) {

    .topbar-right,
    .nav-links {
        display: none
    }

    .menu-btn {
        display: block
    }

    .menu-btn.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg)
    }

    .menu-btn.active span:nth-child(2) {
        opacity: 0
    }

    .menu-btn.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg)
    }

    .nav-links.open {
        display: flex;
        position: fixed;
        top: 70px;
        left: 20px;
        right: 20px;
        background: white;
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
        border-radius: 18px;
        padding: 23px;
        flex-direction: column;
        align-items: stretch;
        gap: 18px
    }

    .nav-links.open a {
        text-align: center
    }

    .hero {
        padding-top: 55px
    }

    .hero-grid,
    .feature-grid,
    .why-grid,
    .contact-box,
    .quote-card {
        grid-template-columns: 1fr
    }

    .hero-grid {
        gap: 30px
    }

    .hero-copy {
        text-align: center
    }

    .hero-copy>p {
        margin-left: auto;
        margin-right: auto
    }

    .hero-actions,
    .trust-row {
        justify-content: center
    }

    .hero-visual {
        height: 480px;
        max-width: 580px;
        width: 100%;
        margin: auto
    }

    .brand-strip .container {
        flex-direction: column;
        padding: 24px 0
    }

    .brand-names {
        width: 100%;
        flex-wrap: wrap
    }

    .feature-grid {
        gap: 45px
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px
    }

    .stat:nth-child(2) {
        border-right: 0
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: auto
    }

    .price-card.popular {
        order: -1
    }

    .why-visual {
        height: 500px
    }

    .quote-card {
        padding: 40px
    }

    .contact-box {
        padding: 42px
    }

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

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

    .section {
        padding: 60px 0;
    }

    .cloud-img img {
        width: 100px;
    }

    .topbar .container {
        justify-content: center
    }

    .contact {
        padding: 60px 0;
    }

    .announcement {
        font-size: .75rem
    }

    .header {
        height: 70px
    }

    h1 {
        font-size: clamp(2.6rem, 13vw, 4rem)
    }

    h2 {
        font-size: 2.15rem
    }

    .hero {
        min-height: auto;
        padding-bottom: 65px
    }

    .hero-actions {
        flex-direction: column
    }

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

    .trust-row {
        align-items: start;
        text-align: left
    }

    .hero-visual {
        height: auto;
    }

    .section-head {
        max-width: 100%;
    }

    .workspace-card {
        inset: 35px 0 0 0;
        padding: 16px
    }

    .mock-grid {
        grid-template-columns: .85fr 1.15fr;
        height: 285px
    }

    .mock-side,
    .mock-main {
        padding: 10px
    }

    .app-mini {
        padding: 7px 5px;
        font-size: .62rem
    }

    .app-mini b {
        width: 21px;
        height: 21px
    }

    .chart {
        height: 85px;
        padding: 12px
    }

    .meeting {
        padding: 9px
    }

    .people i {
        height: 36px
    }

    .badge-one {
        top: 4px
    }

    .badge-two {
        right: -5px
    }

    .brand-names {
        justify-content: center;
        gap: 17px;
        font-size: .8rem
    }

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

    .process-card {
        padding: 22px
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px
    }

    .stat {
        padding: 8px;
        border: 0
    }

    .pricing-switch button {
        padding: 9px 12px;
        font-size: .8rem
    }

    .why-visual {
        height: 410px
    }

    .photo-main {
        width: 82%;
        height: 83%
    }

    .photo-small {
        width: 46%;
        height: 38%
    }

    .experience {
        right: 0;
        padding: 14px 18px
    }

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

    .quote-card {
        padding: 30px 24px;
        gap: 28px
    }

    .quote-person img {
        width: 65px;
        height: 65px
    }

    .contact-box {
        padding: 31px 20px;
        border-radius: 22px
    }

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

    .field.full {
        grid-column: auto
    }

    .contact-points {
        flex-direction: column;
        gap: 7px
    }

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

    .copyright {
        flex-direction: column;
        gap: 7px
    }

    .footer-grid {
        gap: 30px
    }
}

@media(prefers-reduced-motion:reduce) {

    *,
    *:before,
    *:after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important
    }

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

.workspace-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 30px;
    background: url('../images/hero-banner.png') no-repeat center center;
    width: 100%;
    height: 100%;
    background-size: cover;
}

.workspace-hero .workspace-visual {
    position: relative;
    width: min(100%, 680px);
    aspect-ratio: 1.15 / 1;
    margin: auto;
    isolation: isolate;
}

.workspace-hero .workspace-glow {
    position: absolute;
    width: 65%;
    height: 65%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(66, 133, 244, .2),
            rgba(52, 168, 83, .1) 35%,
            rgba(251, 188, 4, .05) 55%,
            transparent 72%);
    filter: blur(15px);
}

.workspace-hero .orbit {
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.workspace-hero .orbit-one {
    width: 57%;
    height: 57%;
    border: 1px dashed rgba(66, 133, 244, .2);
}

.workspace-hero .orbit-two {
    width: 82%;
    height: 82%;
    border: 1px solid rgba(66, 133, 244, .1);
}

.workspace-hero .workspace-center {
    position: absolute;
    z-index: 5;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 175px;
    height: 175px;
    border-radius: 38px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg,
            rgba(255, 255, 255, .98),
            rgba(245, 248, 255, .92));
    border: 1px solid #fff;
    box-shadow:
        0 30px 80px rgba(34, 68, 140, .16),
        0 10px 30px rgba(34, 68, 140, .08);
}

.workspace-hero .workspace-center-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 10px;
}

.workspace-hero .workspace-center-icon svg {
    width: 100%;
}

.workspace-hero .workspace-center span {
    color: #5f6368;
    font-size: 15px;
}

.workspace-hero .workspace-center strong {
    margin-top: 3px;
    color: #202124;
    font-size: 19px;
}

.workspace-hero .workspace-app {
    position: absolute;
    z-index: 10;
}

.workspace-hero .app-card {
    width: 82px;
    height: 82px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    background: rgba(255, 255, 255, .95);
    border: 1px solid #fff;
    box-shadow:
        0 20px 45px rgba(37, 59, 110, .13),
        0 5px 15px rgba(37, 59, 110, .06);
    transition: .35s;
}

.workspace-hero .app-card img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.workspace-hero .workspace-app:hover .app-card {
    transform: scale(1.12);
    box-shadow: 0 25px 60px rgba(37, 59, 110, .2);
}


/* App Positions */

.workspace-hero .app-gmail {
    left: 7%;
    top: 18%;
}

.workspace-hero .app-drive {
    right: 8%;
    top: 14%;
}

.workspace-hero .app-meet {
    right: 2%;
    top: 53%;
}

.workspace-hero .app-calendar {
    right: 25%;
    bottom: 3%;
}

.workspace-hero .app-docs {
    left: 23%;
    bottom: 4%;
}

.workspace-hero .app-sheets {
    left: 1%;
    top: 55%;
}


/* Floating Dots */

.workspace-hero .floating-dot {
    position: absolute;
    display: block;
    border-radius: 50%;
}

.workspace-hero .dot-one {
    width: 12px;
    height: 12px;
    background: #4285f4;
    top: 8%;
    left: 43%;
}

.workspace-hero .dot-two {
    width: 9px;
    height: 9px;
    background: #fbbc04;
    bottom: 17%;
    right: 10%;
}

.workspace-hero .dot-three {
    width: 10px;
    height: 10px;
    background: #34a853;
    bottom: 14%;
    left: 10%;
}

.workspace-hero .app-card:before {
    display: none;
}

/* Tablet / Mobile */

@media (max-width: 767px) {

    .workspace-hero .workspace-visual {
        max-width: 480px;
    }

    .workspace-hero .workspace-center {
        width: 130px;
        height: 130px;
        border-radius: 30px;
    }

    .workspace-hero .workspace-center-icon {
        width: 42px;
        height: 42px;
    }

    .workspace-hero .workspace-center strong {
        font-size: 15px;
    }

    .workspace-hero .workspace-center span {
        font-size: 12px;
    }

    .workspace-hero .app-card {
        width: 62px;
        height: 62px;
        border-radius: 19px;
    }

    .workspace-hero .app-card img {
        width: 34px;
        height: 34px;
    }
}


/* Small Mobile */

@media (max-width: 480px) {

    .workspace-hero .app-card {
        width: 54px;
        height: 54px;
        border-radius: 17px;
    }

    .workspace-hero .app-card img {
        width: 30px;
        height: 30px;
    }

    .workspace-hero .workspace-center {
        width: 115px;
        height: 115px;
    }
}
/* Blog section */
.blog-section{position:relative;background:linear-gradient(180deg,#fff 0%,#f7faff 100%);overflow:hidden}
.blog-section:before{content:"";position:absolute;width:380px;height:380px;border-radius:50%;background:radial-gradient(circle,rgba(59,130,246,.10),transparent 68%);left:-180px;top:40px;pointer-events:none}
.blog-section .section-head{max-width:760px;margin-bottom:44px}
.blog-section .section-head p{max-width:650px;margin:0 auto;font-size:1.02rem}
.blog-gradient{background:linear-gradient(90deg,var(--blue),#6d5dfc);-webkit-background-clip:text;background-clip:text;color:transparent}
.blog-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}
.blog-card{background:#fff;border:1px solid var(--line);border-radius:22px;overflow:hidden;box-shadow:0 14px 42px rgba(23,61,121,.08);transition:transform .4s var(--ease),box-shadow .4s var(--ease),border-color .4s var(--ease)}
.blog-card:hover{transform:translateY(-8px);border-color:#bdd4f4;box-shadow:0 24px 58px rgba(23,61,121,.14)}
.blog-image{display:block;height:220px;position:relative;overflow:hidden;background:var(--sky)}
.blog-image:after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 50%,rgba(7,26,61,.18));opacity:.65;transition:.4s}
.blog-image img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .65s var(--ease)}
.blog-card:hover .blog-image img{transform:scale(1.055)}
.blog-category{position:absolute;z-index:2;left:16px;top:16px;padding:7px 11px;border-radius:999px;background:rgba(255,255,255,.94);color:var(--blue);font-size:.72rem;font-weight:800;letter-spacing:.06em;text-transform:uppercase;box-shadow:0 7px 18px rgba(7,26,61,.10)}
.blog-content{padding:25px 24px 27px}
.blog-meta{display:flex;align-items:center;gap:9px;color:#7c8ba4;font-size:.78rem;font-weight:600;margin-bottom:13px}
.blog-meta i{width:4px;height:4px;border-radius:50%;background:#aab8cc}
.blog-content h3{font-size:1.25rem;line-height:1.35;letter-spacing:-.025em;margin-bottom:11px}
.blog-content h3 a{transition:color .25s}
.blog-card:hover .blog-content h3 a{color:var(--blue)}
.blog-content p{font-size:.92rem;line-height:1.7;margin-bottom:19px}
.blog-link{display:inline-flex;align-items:center;gap:8px;color:var(--blue);font-size:.88rem;font-weight:800}
.blog-link svg{width:17px;height:17px;transition:transform .25s}
.blog-link:hover svg{transform:translateX(4px)}
.blog-actions{text-align:center;margin-top:38px}
@media(max-width:900px){.blog-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.blog-card:last-child{grid-column:1/-1;max-width:calc(50% - 12px);width:100%;margin:0 auto}}
@media(max-width:650px){.blog-section .section-head{margin-bottom:30px}.blog-grid{grid-template-columns:1fr;gap:18px}.blog-card:last-child{grid-column:auto;max-width:none}.blog-image{height:205px}.blog-content{padding:21px 20px 23px}.blog-content h3{font-size:1.15rem}.blog-actions{margin-top:28px}.blog-actions .btn{width:100%}}
