main h1,
main h2,
main h3,
main p {
    opacity: 0;
}

main.animations-ready h1,
main.animations-ready h2,
main.animations-ready h3,
main.animations-ready p {
    opacity: 1;
}

main p.no-word-animation,
.no-word-animation {
    opacity: 1 !important;
}

/* ============================================ */
/* GLOBAL CUSTOM SCROLLBAR STYLES */
/* ============================================ */
/* Chrome, Safari, Edge */
*::-webkit-scrollbar {
    width: 6px;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background: #d0d0d0;
    border-radius: 3px;
}

*::-webkit-scrollbar-thumb:hover {
    background: #b0b0b0;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #d0d0d0 transparent;
}

[fade-in="true"],
[fade-in-03="true"],
[fade-in-06="true"],
[fade-in-09="true"] {
    opacity: 0;
    transform: translateY(30px);
}

/* [Lottie Animations] */
[lottie-loop] {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

[lottie-loop].loaded {
    opacity: 1;
}

[lottie-loop] svg {
    width: 100% !important;
    height: 100% !important;
}

/* Desktop only Lottie - show only on screens > 992px */
.lottie-desktop-only {
    display: none;
}

@media (min-width: 992px) {
    .lottie-desktop-only {
        display: flex;
    }
}

/* Mobile only Lottie - show only on screens < 992px */
.lottie-mobile-only {
    display: flex;
}

@media (min-width: 992px) {
    .lottie-mobile-only {
        display: none;
    }
}


/* [GSAP Premium Line Animations] */
.line {
    display: block;
    overflow: visible;
}

.word {
    display: inline-block;
    white-space: pre;
}

/* [Fonts] */

@font-face {
    font-family: 'Satoshi';
    src: url('assets/Satoshi-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('assets/Satoshi-LightItalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Satoshi';
    src: url('assets/Satoshi-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('assets/Satoshi-Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Satoshi';
    src: url('assets/Satoshi-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('assets/Satoshi-MediumItalic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Satoshi';
    src: url('assets/Satoshi-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('assets/Satoshi-BoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Satoshi';
    src: url('assets/Satoshi-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi';
    src: url('assets/Satoshi-BlackItalic.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
}

* {
    box-sizing: border-box;
}

/* [Colors] */

body {
    --Black: rgb(9, 9, 11);
    --Green: rgb(0, 204, 102);
    --White: rgb(255, 255, 255);
    --Gray: rgb(241, 243, 247);
    --Blue: rgb(3, 71, 139);
    --Dark-Blue: rgb(21, 35, 51);
    --Light-Orange: rgb(255, 248, 225);
    --Orange: rgb(255, 179, 0);
    --Light-Red: rgb(251, 233, 231);
    --Red: rgb(222, 67, 22);
}

/* [Global] */

body {
    color: var(--Black);
    position: relative;
    font-size: 18px;
    background: rgba(255, 255, 255, 1.00);
    min-height: 100vh;
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Host Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

h2 {
    font-size: 40px;
    margin-top: 0px;
    font-weight: 700;
    margin-bottom: 0px;
    line-height: 1.2;
}

h1 {
    font-size: 48px;
    margin-top: 0px;
    font-weight: 700;
    margin-bottom: 0px;
    line-height: 1.2;
}

h3 {
    font-size: 32px;
    margin-top: 0px;
    margin-bottom: 0px;
    font-weight: 700;
    line-height: 1.2;
}

h4 {
    font-size: 24px;
    margin-top: 0px;
    font-weight: 700;
    margin-bottom: 0px;
}

h5 {
    font-size: 20px;
    margin-top: 0px;
    font-weight: 700;
    margin-bottom: 0px;
}

h6 {
    font-size: 16px;
    margin-top: 0px;
    font-weight: 700;
    margin-bottom: 0px;
}

p {
    margin-top: 0px;
    margin-bottom: 0px;
}

ul {
    padding-left: 20px;
}

ol {
    padding-left: 20px;
}

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

textarea {
    resize: vertical;
}

a {
    cursor: pointer;
    transition: all 200ms 0ms linear;
}

button {
    cursor: pointer;
}


/* [Classes] */


#hamburger-trigger span {
    width: 30px;
    height: 3px;
    background: var(--Green);
    transition: all 0.3s ease-in-out;
    position: absolute;
}

/* Pomeranje linija u normalnom stanju */
#hamburger-trigger span:nth-child(1) {
    transform: translateY(-10px);
}

#hamburger-trigger span:nth-child(2) {
    opacity: 1;
}

#hamburger-trigger span:nth-child(3) {
    transform: translateY(10px);
}

/* Aktivni stil (X efekat) */
#hamburger-trigger.active span:nth-child(1) {
    transform: translateY(0) rotate(45deg);
}

#hamburger-trigger.active span:nth-child(2) {
    opacity: 0;
}

#hamburger-trigger.active span:nth-child(3) {
    transform: translateY(0) rotate(-45deg);
}

#hamburger-trigger {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    position: relative;
}

@media screen and (max-width: 991px) {
    #hamburger-trigger {
        display: flex !important;
    }

    .hamburger {
        display: flex !important;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 300ms ease;
    }

    .hamburger.active {
        transform: translateX(0%);
        opacity: 1;
    }
}

.contact-bg {
    position: absolute;
    top: 90px;
    left: 0%;
    right: auto;
    bottom: auto;
    width: 100%;
}

.input {
    width: 100%;
    min-height: 42px;
    border-radius: 12px;
    border: 1px solid rgb(from var(--Gray) r g b / 0%);
    padding-left: 20px;
    color: var(--Black);
    font-size: 17px;
}

.input::placeholder {
    color: var(--Black);
}

.input:focus {
    outline: none;
    border: 1px solid var(--Green);
}

.contact-form {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.contact-form-wrapper {
    padding-top: 30px;
    padding-left: 35px;
    padding-right: 35px;
    padding-bottom: 30px;
    max-width: 467px;
    width: 100%;
    text-align: left;
    background: var(--Gray);
}

.input-area {
    min-height: 148px;
    resize: none;
    padding-top: 14px;
}

.check-box-wrapper {
    display: flex;
    align-items: flex-start;
    column-gap: 8px;
}

.form-label {
    font-size: 10px;
}

.check-box-wrapper input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid rgb(from var(--Gray) r g b / 0%);
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-box-wrapper input[type="checkbox"]:checked {
    background-color: var(--Green);
    border-color: var(--Green);
}

.check-box-wrapper input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.submit-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    transition: all 300ms 0ms ease;
}

.button-primary {
    color: rgba(255, 255, 255, 1.00);
    border: 1px solid rgba(0, 0, 0, 1);
    background: rgba(0, 0, 0, 1.00);
    padding-top: 12px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 12px;
}

.button-primary:hover {
    color: rgba(0, 0, 0, 1.00);
    background: rgba(255, 255, 255, 1.00);
}

.button-secondary {
    color: rgba(0, 0, 0, 1.00);
    border: 1px solid rgba(0, 0, 0, 1);
    background: rgba(255, 255, 255, 1.00);
    padding-top: 12px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 12px;
}

.button-secondary:hover {
    color: rgba(255, 255, 255, 1.00);
    background: rgba(0, 0, 0, 1.00);
}

.chat-link {
    display: inline-block;
    padding: 8px 16px;
    margin: 8px 0;
    background-color: var(--Green);
    color: var(--White) !important;
    text-decoration: none !important;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease, transform 0.1s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.chat-link:hover {
    background-color: rgb(0, 179, 89);
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.chat-link:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}


.navbar {
    padding-top: 20px;
    padding-bottom: 20px;
    position: fixed;
    top: 0%;
    left: 0%;
    right: auto;
    bottom: auto;
    width: 100%;
    z-index: 1000;
    background: var(--White);
    border-bottom: 1px solid rgb(from var(--Black) r g b / 10%);
}

.container {
    max-width: 1240px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.navbar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-links-warpper {
    display: flex;
    column-gap: 24px;
}

.navbar-link {
    font-size: 16px;
    font-family: 'Satoshi';
    color: var(--Black);
    text-decoration: none;
}

.navbar-link:hover {
    color: var(--Green);
}

/* Navbar Dropdown */
.navbar-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.navbar-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-icon {
    width: 12px;
    height: 12px;
    transition: transform 300ms ease;
}

.navbar-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.navbar-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 12px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 300ms ease;
    z-index: 1000;
}

.navbar-dropdown:hover .navbar-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 12px 16px;
    font-size: 16px;
    font-family: 'Satoshi';
    color: var(--Black);
    text-decoration: none;
    border-radius: 8px;
    transition: all 200ms ease;
}

.dropdown-link:hover {
    background: var(--Gray);
    color: var(--Green);
}

/* Hamburger Services Wrapper */
.hamburger-services-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.navbar-sublink {
    font-size: 14px;
    opacity: 0.8;
}

.navbar-sublink:hover {
    opacity: 1;
}

.flex-horizontal-60 {
    display: flex;
    column-gap: 60px;
    align-items: center;
}

.cta-flex {
    display: flex;
    column-gap: 10px;
}

.cta-green {
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 16px;
    padding-right: 16px;
    background: var(--Green);
    font-family: 'Satoshi';
    color: rgb(255, 255, 255);
    display: flex;
    column-gap: 10px;
    border: 1px solid rgb(from var(--Black) r g b / 10%);
    text-decoration: none;
    font-weight: 700;
    align-items: center;
}

.cta-green:hover {
    background: var(--Dark-Blue);
}

.border-radius-60 {
    border-radius: 60px;
}

.cta-white {
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 24px;
    padding-right: 24px;
    background: var(--White);
    font-family: 'Satoshi';
    color: var(--Black);
    display: flex;
    column-gap: 10px;
    border: 1px solid rgb(from var(--Black) r g b / 10%);
    text-decoration: none;
    font-weight: 700;
}

.cta-white:hover {
    background: var(--Dark-Blue);
    color: var(--White);
}

.section-hero {
    padding-top: 140px;
    padding-bottom: 160px;
    position: relative;
    overflow: hidden;
    background: var(--White);
}

.gap-32 {
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}

.align-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.display-block {
    display: block;
}

.mw-535 {
    max-width: 535px;
}

.gap-40 {
    display: flex;
    flex-direction: column;
    row-gap: 040px;
}

.gap-13 {
    display: flex;
    flex-direction: column;
    row-gap: 13px;
}

.text-area-wrapper {
    width: 100%;
    padding-left: 13px;
    padding-right: 13px;
    padding-top: 13px;
    padding-bottom: 13px;
    border: 1px solid rgb(from var(--Black) r g b / 10%);
    background-image: url(/assets/11a66cedf7ee8056edad7fac7d81f05d_91755.png);
    background-size: cover;
    background-attachment: scroll;
    overflow: hidden;
    background-repeat: no-repeat;
}

.border-radius-32 {
    border-radius: 22px;
    overflow: hidden;
    line-height: 1.2;
}

.text-area {
    box-shadow: 0 188px 53px 0 rgba(0, 0, 0, 0.00), 0 120px 48px 0 rgba(0, 0, 0, 0.01), 0 68px 41px 0 rgba(0, 0, 0, 0.03), 0 30px 30px 0 rgba(0, 0, 0, 0.04), 0 8px 17px 0 rgba(0, 0, 0, 0.05);
}

.free-scan-wrapper {
    padding-left: 28px;
    padding-right: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight: 700;
    background: var(--White);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    position: relative;
    width: 100%;
}

.border-radius-24 {
    border-radius: 24px;
}

.bg-wrapper {
    position: absolute;
    top: 0%;
    left: 0%;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 100%;
}

.hero-dots {
    width: 100%;
    position: absolute;
    top: auto;
    left: 0%;
    right: auto;
    bottom: 140px;
    margin-bottom: 0px;
    opacity: 40%;
}

.Z-5 {
    position: relative;
    z-index: 5;
}

.hero-gradient {
    width: 100%;
    position: absolute;
    top: auto;
    left: 0%;
    right: auto;
    bottom: 0%;
}

.section-built {
    padding-top: 160px;
    padding-bottom: 80px;
    border-top: 1px solid rgb(from var(--Black) r g b / 10%);
    position: relative;
    z-index: 5;
}

.gap-24 {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.h2-40 {
    font-size: 40px;
    line-height: 1.1;
}

.opacity-08 {
    color: rgb(from var(--Black) r g b / 80%);
}

.grid-3 {
    grid-template-columns: 1fr 1fr 1fr;
    display: grid;
    width: 100%;
    column-gap: 24px;
    row-gap: 24px;
}

.built-item {
    padding-left: 35px;
    padding-right: 35px;
    padding-bottom: 25px;
    padding-top: 15px;
    text-align: left;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    color: var(--Black);
    background: linear-gradient(38deg, #FFF 1.03%, rgba(255, 255, 255, 0.00) 81.56%);
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 18px;
}

.icon-50 {
    width: 50px;
}

.gap-17 {
    display: flex;
    flex-direction: column;
    row-gap: 17px;
}

.bilt-info {
    display: flex;
    column-gap: 16px;
    align-items: center;
}

.image-50 {
    width: 50px;
}

.gap-6 {
    display: flex;
    flex-direction: column;
    row-gap: 6px;
}

.h3-16 {
    font-size: 16px;
}

.border-radius-top-64 {
    border-radius: 64px 64px 0px 0px;
}

.icon-26 {
    width: 26px;
}

.padding-80-160 {
    padding-top: 80px;
    padding-bottom: 160px;
}

.is-gray {
    background: var(--Gray);
}

.bottom-border {
    border-bottom: 1px solid rgb(from var(--Black) r g b / 10%);
}

.gap-48 {
    display: flex;
    flex-direction: column;
    row-gap: 48px;
}

.horizontal-item {
    width: 100%;
    font-size: 16px;
    text-align: left;
    padding-left: 100px;
    padding-bottom: 8px;
    padding-top: 8px;
    padding-right: 8px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: var(--White);
}

.icon-64 {
    width: 64px;
}

.icon-shadows {
    box-shadow: 64px 95px 32px 0 rgba(0, 0, 0, 0.00), 41px 61px 29px 0 rgba(0, 0, 0, 0.01), 23px 34px 25px 0 rgba(0, 0, 0, 0.05), 10px 15px 18px 0 rgba(0, 0, 0, 0.09), 3px 4px 10px 0 rgba(0, 0, 0, 0.10);
}

.border-radius-16 {
    border-radius: 16px;
}

.is-100 {
    width: 100%;
}

.h3-26 {
    font-weight: 700;
    font-family: 'Host Grotesk';
    font-size: 26px;
    line-height: 1;
}

.mw-325 {
    max-width: 325px;
}

.small-cta {
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 24px;
    padding-right: 24px;
    text-decoration: none;
    color: var(--White);
    font-size: 16px;
    font-weight: 700;
}

.cta-blue {
    background: #03478b;
}

.horizontal-item-image-wrapper {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 80px;
    padding-right: 80px;
}

.item-bg-blue {
    background-image: url(/assets/532a2596108b4eda6cf6dfee32b1e0c5_448791.png);
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
}

.horizontal-item-reverse {
    display: flex;
    flex-direction: row-reverse;
    padding-right: 100px;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    background: var(--White);
    position: relative;
    padding-bottom: 8px;
    padding-top: 8px;
    padding-left: 8px;
}

.item-bg-green {
    background-image: url(/assets/d2582f86297afedb13b59b4d47cf97e8_437908.png);
}

.border-black-10 {
    border: 1px solid rgb(from var(--Black) r g b / 10%);
}

.dots-top-left {
    position: absolute;
    top: 0%;
    left: 0%;
    right: auto;
    bottom: auto;
}

.dots-top-right {
    position: absolute;
    top: 0%;
    left: auto;
    right: 0%;
    bottom: auto;
}

.relative {
    position: relative;
}

.section-bg-grey {
    background: var(--Gray);
}


.mw-436 {
    max-width: 436px;
}

.bg-img-bot.bot-scan {
    top: auto;
    left: 0%;
    right: 0%;
    width: 100%;
    bottom: 0%;
    position: absolute;
    margin-left: auto;
    margin-right: auto;
}

.bg-img-top-340 {
    width: 100%;
    position: absolute;
    top: -350px;
    left: 0%;
    right: auto;
    bottom: auto;
}

.padding-100-50 {
    padding-top: 100px;
    padding-bottom: 50px;
}

.image-100 {
    width: 100%;
}

.dots-center {
    position: absolute;
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
}

.big-cta {
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 50px;
    padding-right: 50px;
}

.business-grid-wrapper {
    width: 100%;
    padding-top: 26px;
    padding-bottom: 80px;
    padding-left: 26px;
    padding-right: 26px;
    background-image: url(/assets/187a79a4e17f3d6ea1b8a6aae95dd35d_808691.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.grid-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    display: grid;
    column-gap: 24px;
    row-gap: 26px;
}

.business-item {
    padding-top: 40px;
    padding-bottom: 50px;
    background: var(--White);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 30px;
    font-size: 16px;
    padding-left: 40px;
    padding-right: 40px;
}

.image-100-px {
    width: 100px;
}

.border-green-10 {
    border: 1px solid rgb(from var(--Green) r g b / 10%);
}

.grid-2 {
    grid-template-columns: 1fr 1fr;
    display: grid;
    row-gap: 26px;
    column-gap: 24px;
}

.m2-380 {
    max-width: 380px;
}

.section-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    aspect-ratio: 1.6/1;
}

.cta-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-bg-gradient {
    position: absolute;
    top: 0%;
    left: 0%;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.padding-footer {
    padding-bottom: 75px;
    padding-top: 64px;
}

.section-footer {
    padding-top: 64px;
    padding-bottom: 74px;
    background: #152333;
}

.gap-45 {
    display: flex;
    flex-direction: column;
    row-gap: 45px;
}

.mw-790 {
    max-width: 790px;
    width: 100%;
}

.footer-links-wrapper {
    display: flex;
    column-gap: 64px;
    width: 100%;
    color: rgb(from var(--White) r g b / 60%);
    font-size: 16px;
    max-width: 710px;
}

.footer-link {
    color: var(--White);
    text-transform: none !important;
    text-decoration: none;
}

.footer-link:hover {
    color: var(--Green);
}

.align-left {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-copy-wrapper {
    font-size: 12px;
    color: rgb(from var(--White) r g b / 60%);
    padding-top: 8px;
    border-top: 1px solid rgb(from var(--White) r g b / 10%);
    width: 100%;
}

.socials-wrapper {
    display: flex;
    column-gap: 12px;
}

.social-link:hover {
    opacity: 50%;
}

.p-14 {
    font-size: 11px;
}

.section-about-hero {
    padding-top: 170px;
    position: relative;
}

.gap-80 {
    display: flex;
    flex-direction: column;
    row-gap: 80px;
}

.icon-110 {
    width: 110px;
}

.mw-630 {
    max-width: 630px;
}

.about-hero-item {
    overflow: hidden;
    position: relative;
}

.about-item-top {
    padding-top: 10px;
    padding-left: 14px;
    padding-right: 14px;
    padding-bottom: 13px;
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    align-items: flex-start;
    border-bottom: 1px solid rgb(from var(--Black) r g b / 10%);
}

.about-top-green {
    background: rgb(from var(--Green) r g b / 10%);
}

.p-14-bold {
    font-size: 14px;
}

.about-item-mark {
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 8px;
    padding-right: 8px;
    border-radius: 60px;
    display: flex;
    column-gap: 4px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.icon-14 {
    width: 14px;
}

.about-mark-green {
    color: var(--Green);
    border: 1px solid rgb(from var(--Green) r g b / 20%);
}

.about-item-bot {
    padding-top: 8px;
    padding-left: 14px;
    padding-right: 33px;
    background: var(--White);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    font-size: 14px;
    row-gap: 10px;
    padding-bottom: 8px;
}

.p-12 {
    font-size: 12px;
}

.about-top-orange {
    background: #fff8e1;
}

.about-mark-orange {
    background: rgb(from var(--Orange) r g b / 10%);
    border: 1px solid rgb(from var(--Orange) r g b / 20%);
    color: var(--Orange);
}

.mw-230 {
    max-width: 230px;
}

.about-top-red {
    background: #fbe9e7;
}

.about-mark-red {
    background: rgb(from var(--Red) r g b / 10%);
    border: 1px solid rgb(from var(--Red) r g b / 20%);
    color: var(--Red);
}

.mw-320 {
    max-width: 230px;
}

.mw-850 {
    max-width: 850px;
}

.mw-900 {
    max-width: 900px;
}

.about-hero-top {
    width: 100%;
    position: absolute;
    top: 170px;
    left: 0%;
    right: auto;
    bottom: auto;
    object-fit: cover;
}

.mw-310 {
    max-width: 310px;
}

.offer-item {
    padding-top: 14px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 40px;
    background-image: url(/assets/83624406bd8cd3551a6b627279a7ce26_63093.png);
    display: flex;
    flex-direction: column;
    row-gap: 32px;
    font-size: 16px;
    align-items: center;
}

.border-white-20 {
    border: 2px solid rgb(from var(--White) r g b / 20%);
}

.mw-300 {
    max-width: 300px;
}

.section-bg-top {
    position: absolute;
    top: 0%;
    left: 0%;
    right: auto;
    bottom: auto;
    width: 100%;
}

.h1-48 {
    font-size: 48px;
    line-height: 1.1;
}

.image-360 {
    width: 360px;
}

.mw-605 {
    max-width: 605px;
}

.mw-400 {
    max-width: 400px;
}

.image-420 {
    max-width: 420px;
    width: 100%;
}

.gap-64 {
    display: flex;
    flex-direction: column;
    row-gap: 64px;
}

.icon-wrapper {
    width: 153px;
    height: 153px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url(/assets/a88ffed461f6f7777f431f7821864103_9345.png);
    background-repeat: no-repeat;
}

.icon-44 {
    width: 44px;
    height: 44px;
}

.gap-12 {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

.h3-18 {
    font-size: 18px;
}

.p-16 {
    font-size: 16px;
}

.padding-bottom-180 {
    padding-bottom: 180px;
}

.image-590 {
    max-width: 590px;
    width: 100%;
}

.scan-hero-decor {
    position: absolute;
    max-width: 1028px;
    width: 100%;
    min-width: 1028px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.scan-hero-img-wrapper {
    position: relative;
}

.image-hero-bot {
    position: absolute;
    left: 0%;
    right: 0%;
    margin-left: auto;
    margin-right: auto;
    bottom: -27%;
    width: 100%;
}

.horizontal-flex {
    display: flex;
    justify-content: space-between;
}

.mw-470 {
    max-width: 470px;
}

.horizontal-center {
    display: flex;
    align-items: center;
}

.mw-480 {
    max-width: 480px;
}

.padding-bottom-260 {
    padding-bottom: 260px;
}

.item-bg-green-reverse {
    background-image: url(/assets/f00ebb31f6c097a9a8913215aeee66ba_437471.png);
}

.section-contact {
    padding-top: 160px;
    padding-bottom: 140px;
    position: relative;
}

.section-privacy-policy {
    padding-top: 160px;
    padding-bottom: 140px;
    position: relative;
}

.section-terms-of-service {
    padding-top: 160px;
    padding-bottom: 140px;
    position: relative;
}

.terms-list {
    padding-left: 24px;
    margin: 16px 0;
    list-style-type: disc;
    color: rgb(from var(--Black) r g b / 80%);
}

.terms-list li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.terms-list-nested {
    padding-left: 24px;
    margin-top: 8px;
    list-style-type: circle;
}

.contact-wrapper {
    width: 100%;
    padding-top: 35px;
    padding-bottom: 35px;
    padding-right: 20px;
    padding-left: 48px;
    background-image: url(assets/ae50c438a718d5b50838f32185d36277_209927.png);
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    border: 1px solid rgb(from var(--Black) r g b / 10%);
    max-width: 996px;
    align-items: center;
}


.gap-16 {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.h2-26 {
    font-size: 26px;
}

.line-decor {
    width: 100%;
    height: 1px;
    background: rgb(from var(--Black) r g b / 20%);
}

.gap-10-horizontal {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.icon-40 {
    width: 40px;
    height: 40px;
}

.link-08 {
    color: rgb(from var(--Black) r g b / 80%);
    text-decoration: none;
}

.link-underline {
    color: var(--Black);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.link-underline:hover {
    opacity: 0.7;
}

.mw-330 {
    max-width: 330px;
}

.section-faq {
    padding-top: 160px;
    padding-bottom: 160px;
}

.faq-wrapper {
    grid-template-columns: 1fr 1fr;
    display: grid;
    column-gap: 24px;
    row-gap: 12px;
}

.margin-100px {
    margin-top: -30px;
}

.mw-620 {
    max-width: 620px;
}

.start-service-hero-img {
    max-width: 1200px;
}

.padding-bottom-0 {
    padding-bottom: 0px;
}

.why-item-big {
    background-image: url(/assets/9632da08528d85a4ac742b867eeed3a0_88230.png);
    text-align: left;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-left: 24px;
    padding-bottom: 24px;
    padding-top: 70px;
    padding-right: 24px;
    height: 514px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.image-470 {
    max-width: 470px;
    width: 100%;
}

.grid-horizontal {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.why-item-small {
    background-image: url(/assets/759e45834c8a8e247cb34a6ce6761915_43725.png);
    height: 245px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 24px;
    padding-bottom: 24px;
    text-align: left;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    padding-right: 24px;
    justify-content: flex-end;
    flex-wrap: wrap;
    padding-top: 24px;
}

.why-item-vertical {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
}


.image-center {
    margin-left: auto;
    margin-right: auto;
}

.image-240-right {
    width: 240px;
    position: absolute;
    top: auto;
    left: auto;
    right: 0%;
    bottom: -1%;
}

.gap-56 {
    display: flex;
    flex-direction: column;
    row-gap: 56px;
}

.image-530 {
    max-width: 530px;
}

.background-left {
    background-image: url(/assets/6bef8ade08e0febac18da281a7f2d3b8_39894.png);
}

.image-300 {
    max-width: 300px;
    width: 100%;
}

.align-right {
    margin-left: auto;
}

.mw-380 {
    max-width: 300px;
}

.p-18 {
    font-size: 17px;
}

.mw-410 {
    max-width: 410px;
}

.padding-134 {
    padding-top: 134px;
    padding-bottom: 134px;
}

.start-business-bg {
    background-image: url(/assets/fcca82815fc01f44a289552e5a7d9559_299673.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.phone-mockup {
    position: absolute;
    top: auto;
    left: auto;
    right: 5%;
    bottom: 0%;
    height: 90%;
}

.overflow-hidden {
    overflow: hidden;
}

.section-bg-wrapper {
    background: var(--Gray);
    position: relative;
    z-index: 10;
}

.sticky-100 {
    position: sticky;
    top: 100px;
}

.sticky-130 {
    position: sticky;
    top: 130px;
}

.sticky-160 {
    position: sticky;
    top: 160px;
}

.sticky-190 {
    position: sticky;
    top: 190px;
}

.mw-350 {
    max-width: 350px;
}

.mw-366 {
    max-width: 366px;
}

.mw-558 {
    max-width: 558px;
}

.desktop-hide {
    display: none;
}

.hero-area-wrapper {
    border: 1px solid rgb(from var(--Black) r g b / 10%);
    background: var(--White);
    text-align: left;
    overflow: hidden;
}

.mw-792 {
    max-width: 792px;
}

.area-header {
    padding-top: 24px;
    padding-left: 28px;
    padding-right: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgb(from var(--Black) r g b / 10%);
    font-weight: 700;
    font-size: 16px;
}

.hero-area {
    width: 100%;
    min-height: 212px;
    resize: none;
    border: none;
    outline: none;
    padding-left: 28px;
    padding-top: 12px;
    font-size: 17px;
}

.helo-left-abs {
    position: absolute;
    top: 50%;
    left: 0%;
    right: auto;
    bottom: auto;
    transform: translate(-100%, -50%);
}

.hero-right-abs {
    position: absolute;
    top: 50%;
    left: auto;
    right: 0%;
    bottom: auto;
    transform: translate(100%, -50%);
}

.hero-bottom-icon {
    display: none;
}

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

.object-cover {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.grid-horizontal {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    row-gap: 20px;
    column-gap: 20px;
}

.card-image {
    border: 1px solid rgb(from var(--White) r g b / 20%);
}

.hamburger {
    display: none;
}

.cta-primary {
    padding-right: 32px;
    padding-left: 32px;
    min-height: 54px;
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 1;
    background: rgb(30, 64, 175);
    color: rgb(255, 255, 255);
    font-weight: 700;
    justify-content: center;
    transition: all 300ms 0ms ease;
    border: none;
    box-shadow: none;
}

.cta-primary:hover {
    background: rgb(from rgb(30, 64, 175) r g b / 90%);
}

.border-radius-60-2 {
    border-radius: 60px;
}

.border-radius-60-3 {
    border-radius: 60px;
}

.cta-bg-white {
    background: rgb(from rgb(255, 255, 255) r g b / 80%);
    color: rgb(40, 47, 47);
    border: 1px solid rgba(10, 10, 10, 0.1);
}

.cta-bg-white:hover {
    background: rgb(from rgb(30, 64, 175) r g b / 90%);
    color: rgb(255, 255, 255);
}

.hamburger-trigger {
    display: none;
}

.accordions_wrap {
    padding-top: 12px;
    padding-bottom: 12px;
    cursor: pointer;
    text-align: left;
    background: var(--Gray);
    padding-left: 20px;
    padding-right: 18px;
}

.section-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    row-gap: 20px;
    text-align: left;
}

.acc-title {
    font-size: 16px !important;
    font-weight: 700;
    line-height: 1.2;
    color: var(--Black);
}

.acc-icon-wrap {
    width: 32px;
    height: 32px;
    background: rgb(243, 243, 243);
    display: flex;
    align-items: center;
    justify-content: center;
}

.acc-icon {
    width: 28px;
    transition: all 300ms 0ms ease;
}

.acc-bottom {
    overflow: hidden;
    height: 0px;
    color: rgb(59, 59, 59);
}

.faq-bottom-text-wrap {
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    font-size: 14px;
}

.text-bold {
    font-weight: 700 !important;
}

.faq-row-wrap {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.faq-row-wrap {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.pricing-tabs-wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 32px;
    width: 100%;
    align-items: center;
    position: relative;
    z-index: 5;
    margin-top: 32px;
}

.pricing-tab-links {
    border: 1px solid rgb(from var(--Black) r g b / 10%);
    background: var(--Gray);
    padding-top: 5px;
    padding-bottom: 5px;
    max-width: 360px;
    width: 100%;
    display: flex;
    align-items: stretch;
    column-gap: 10px;
    padding-left: 6px;
    font-size: 16px;
    font-weight: 700;
    justify-content: center;
}

.pricing-tab-link {
    padding-left: 24px;
    padding-right: 24px;
    display: flex;
    align-items: center;
    padding-top: 9px;
    padding-bottom: 9px;
    column-gap: 8px;
    line-height: 1;
    border: 1px solid rgba(0, 0, 0, 0);
    cursor: pointer;
}

.save-text {
    font-size: 12px;
    padding-left: 11px;
    padding-right: 11px;
    color: var(--White);
    background: var(--Green);
    font-weight: 700;
    padding-top: 6px;
    padding-bottom: 6px;
    line-height: 1;
}

.pricing-link-active {
    background: var(--White);
    border: 1px solid rgb(from var(--Black) r g b / 10%);
}

.pring-4 {
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    display: grid;
    column-gap: 24px;
}

.pricing-item {
    padding-left: 14px;
    padding-top: 24px;
    padding-right: 14px;
    padding-bottom: 18px;
    background: #f6f6f6;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 16px;
    row-gap: 70px;
    transition: all 300ms 0ms ease;
    height: 100%;
}

.pricing-item:hover {
    transform: translate(0%, -3px);
}

.gap-20 {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.pricing-title {
    font-weight: 500;
}

.pricing-mid {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    padding-top: 10px;
    border-top: 1px solid rgb(from var(--Black) r g b / 10%);
}

.gap-8 {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.pricing-span {
    font-size: 40px;
    line-height: 1;
    font-weight: 500;
}

.pricing-list {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}

.pricing-list-item {
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-size: 14px;
}

.check-icon {
    width: 16px;
}

.small-pricing-span {
    font-size: 14px;
    color: rgb(from var(--Black) r g b / 80%);
}

.gap-10 {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.pricing-green-text {
    padding-left: 9px;
    padding-right: 9px;
    padding-top: 3px;
    padding-bottom: 3px;
    background: var(--Green);
    color: var(--White);
    display: block;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.1;
}

.pricing-wrapper {
    padding-top: 0;
}

@media (min-width: 992px) {
    .pricing-wrapper {
        padding-top: 32px;
        display: grid;
    }
}

.pricing-best-value {
    background: linear-gradient(180deg, rgba(0, 204, 102, 0.2) 0%, rgba(0, 204, 102, 0) 100%);
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 10px;
    row-gap: 4px;
    height: auto;
}

.best-value-text {
    font-size: 14px;
    color: var(--Green);
    font-weight: 700;
}

.bg-blue {
    background: var(--Blue);
}

.section-add-ons {
    padding-top: 80px;
    padding-bottom: 180px;
    background-image: url(assets/e912394fd41a26ec7d506de0e19c7811_5927.avif);
    background-position: 0% 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

.add-ons-item {
    padding-top: 14px;
    padding-bottom: 8px;
    padding-left: 14px;
    padding-right: 14px;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    justify-content: space-between;
    text-align: left;
    font-size: 16px;
    border: 1px solid rgb(from var(--White) r g b / 20%);
    background: linear-gradient(30deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
    transition: all 300ms 0ms ease;
}

.add-ons-item:hover {
    transform: translate(0px, -3px);
}

.add-ons-icon {
    width: 68px;
}

.add-on-span {
    font-size: 26px;
    line-height: 1.2;
    font-weight: 700;
}

.add-ons-bottom {
    padding-top: 8px;
    border-top: 1px solid rgb(from var(--Black) r g b / 10%);
}

.text-14 {
    font-size: 14px;
}

.grid-4-pricing {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    display: grid;
    width: 100%;
    column-gap: 24px;
    row-gap: 24px;
}

/* [Resolution: 991px] */
.accordions_wrap .section-content {
    flex-direction: row !important;
}

.section-content {
    flex-direction: column;
}

@media screen and (max-width: 991px) {
    .pring-4 {
        grid-template-columns: 1fr 1fr;
        row-gap: 24px;
    }

    .grid-4-pricing {
        grid-template-columns: 1fr 1fr;
    }

    .contact-wrapper {
        flex-direction: column;
        row-gap: 30px;
    }

    .grid-2 {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
        column-gap: 20px;
    }

    .margin-tablet-normal {
        margin-top: 40px !important;
    }

    .phone-mockup {
        position: static;
        height: auto;
        width: 90%;
    }

    .scan-hero-decor {
        display: none;
    }

    .navbar-links-warpper {
        display: none;
    }

    .section-built {
        padding-top: 60px;
    }

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

    .horizontal-item {
        padding-left: 30px;
        row-gap: 30px;
        padding-top: 30px;
        padding-bottom: 30px;
        padding-right: 30px;
    }

    .horizontal-item-image-wrapper {
        padding-left: 40px;
        padding-right: 40px;
    }

    .horizontal-item-reverse {
        padding-right: 30px;
    }

    .section-cta {
        aspect-ratio: 0.6/1;
    }

    .gap-80 {
        row-gap: 60px;
    }

    .image-hero-bot {
        bottom: 0%;
    }

    .horizontal-flex {
        flex-direction: column;
    }

    .mobile-gap-30 {
        display: flex;
        flex-direction: column;
        row-gap: 30px;
    }

    .mobile-reverse {
        display: flex;
        flex-direction: column-reverse;
    }

    .tablet-hide {
        display: none;
    }

    .desktop-hide {
        display: block;
    }

    .helo-left-abs {
        display: none;
    }

    .hero-right-abs {
        display: none;
    }

    .hero-bottom-icon {
        width: 106px;
        display: block;
    }

    .hamburger {
        display: none;
        position: fixed;
        top: 0%;
        left: 0%;
        right: auto;
        bottom: auto;
        width: 100%;
        height: auto;
        background: var(--White);
        padding-top: 114px;
        padding-left: 20px;
        padding-right: 20px;
        color: rgb(40, 47, 47);
        flex-direction: row;
        row-gap: 30px;
        overflow: auto;
        padding-bottom: 40px;
        z-index: 500;
        border-radius: 0px 0px 20px 20px;
        flex-wrap: wrap;
        column-gap: 60px;
        border: 1px solid rgba(10, 10, 10, 0.1);
        justify-content: center;
        text-align: center;
    }

    .hamburger-links-wrap {
        display: flex;
        flex-direction: column;
        row-gap: 50px;
    }

    .hamburger-links-col {
        display: flex;
        flex-direction: column;
        row-gap: 20px;
    }

    .hamburger-link {
        text-decoration: none;
        color: rgb(40, 47, 47);
    }

    .tablet-w-100 {
        width: 100%;
    }

    .hamburger-trigger {
        width: 35px;
        height: 35px;
        display: block;
        position: relative;
    }


}

/* [Resolution: 767px] */

@media screen and (max-width: 767px) {
    .pring-4 {
        display: flex;
        flex-direction: column;
    }

    .pricing-item {
        width: 100%;
        height: auto;
    }

    .grid-4-pricing {
        display: flex;
        flex-direction: column;
    }

    .faq-wrapper {
        display: flex;
        flex-direction: column;
        row-gap: 10px;
    }

    body {
        font-size: 14px;
    }

    .navbar-links-warpper {
        display: none;
    }

    .cta-green {
        font-size: 12px;
    }

    .border-radius-60 {
        border-radius: 32px;
    }

    .section-hero {
        padding-top: 130px;
        padding-bottom: 60px;
    }

    .gap-32 {
        row-gap: 16px;
    }

    .border-radius-32 {
        border-radius: 22px;
    }

    .free-scan-wrapper {
        font-size: 14px;
    }

    .border-radius-24 {
        border-radius: 12px;
    }

    .gap-24 {
        row-gap: 12px;
    }

    .h2-40 {
        font-size: 26px;
    }

    .built-item {
        font-size: 14px;
    }

    .border-radius-top-64 {
        border-radius: 32px 32px 0px 0px;
    }

    .padding-80-160 {
        padding-bottom: 80px;
    }

    .horizontal-item {
        flex-direction: column;
        padding-left: 50px;
        font-size: 14px;
    }

    .h3-26 {
        font-size: 20px;
    }

    .horizontal-item-reverse {
        flex-direction: column;
        row-gap: 30px;
        padding-top: 30px;
        padding-bottom: 30px;
        padding-left: 30px;
    }

    .big-cta {
        padding-bottom: 16px;
        padding-top: 16px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .business-grid-wrapper {
        padding-bottom: 26px;
    }

    .business-item {
        font-size: 14px;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

    .section-cta {
        padding-top: 200px;
        padding-bottom: 200px;
    }

    .section-footer {
        padding-top: 30px;
        padding-bottom: 50px;
    }

    .gap-45 {
        row-gap: 20px;
    }

    .footer-links-wrapper {
        grid-template-columns: 1fr 1fr;
        display: grid;
        row-gap: 020px;
    }

    .footer-link {
        font-size: 14px;
    }

    .p-14 {
        font-size: 10px;
    }

    .h1-48 {
        font-size: 30px;
    }

    .icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .padding-bottom-260 {
        padding-bottom: 80px;
    }

    .image-240-right {
        width: 200px;
    }

    .image-530 {
        max-width: 300px;
    }

    .image-300 {
        max-width: 200px;
    }

    .padding-134 {
        padding-top: 50px;
        padding-bottom: 0px;
    }

    .sticky-100 {
        top: 0px;
    }

    .sticky-130 {
        top: 0px;
    }

    .sticky-160 {
        top: 0px;
    }

    .sticky-190 {
        top: 0px;
    }


}

/* [Resolution: 480px] */

@media screen and (max-width: 480px) {
    .pricing-item .gap-20 {
        row-gap: 10px;
    }

    .pricing-tab-links {
        max-width: auto;
        width: auto;
        padding-right: 6px;
    }

    .pricing-tab-link {
        font-size: 12px;
        padding-top: 6px;
        padding-bottom: 6px;
        padding-right: 16px;
        padding-left: 16px;
    }

    .section-add-ons {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .add-ons-icon {
        width: 50px;
    }

    .grid-4-pricing {
        row-gap: 16px;
    }

    .section-contact {
        padding-top: 130px;
        padding-bottom: 140px;
        position: relative;
    }

    .section-privacy-policy {
        padding-top: 130px;
        padding-bottom: 140px;
        position: relative;
    }

    .section-terms-of-service {
        padding-top: 130px;
        padding-bottom: 140px;
        position: relative;
    }

    .accordions_wrap {
        padding-left: 14px;
    }

    .acc-title {
        font-size: 14px;
    }

    .acc-icon-wrap {
        min-width: 32px;
    }

    .contact-wrapper {
        padding-left: 0px;
        padding-top: 0px;
        padding-bottom: 0px;
        padding-right: 0px;
        border: none !important;
        border-radius: 0px !important;
        flex-direction: column-reverse;
        background: none !important;
    }

    .mw-350 {
        max-width: 245px;
    }

    .why-item-big {
        height: auto;
        row-gap: 30px;
    }

    .navbar {
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .cta-green {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .cta-white {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .free-scan-wrapper {
        column-gap: 20px;
        row-gap: 20px;
        font-size: 12px;
        background: var(--White);
        width: 100%;
    }

    .section-built {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .built-item {
        font-size: 16px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .border-radius-top-64 {
        border-radius: 32px 32px 0px 0px;
    }

    .icon-26 {
        width: 18px;
    }

    .mobile-140 {
        max-width: 140px;
    }

    .padding-80-160 {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .gap-48 {
        row-gap: 24px;
    }

    .horizontal-item {
        padding-left: 20px;
        padding-right: 20px;
        position: relative;
    }

    .small-cta {
        padding-top: 8px;
        padding-bottom: 8px;
        font-size: 12px;
    }

    .horizontal-item-image-wrapper {
        padding-top: 0px;
        padding-bottom: 0px;
        padding-left: 0px;
        padding-right: 0px;
    }

    .horizontal-item-reverse {
        padding-left: 20px;
        padding-right: 20px;
    }

    .dots-top-right {
        border-radius: 32px;
        opacity: 0%;
    }

    .padding-100-50 {
        padding-top: 50px;
        padding-bottom: 25px;
    }

    .big-cta {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .business-grid-wrapper {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .business-item {
        padding-left: 20px;
        padding-top: 20px;
        padding-right: 20px;
        padding-bottom: 20px;
        row-gap: 20px;
    }

    .image-100-px {
        width: 50px;
    }



    .gap-45 {
        row-gap: 45px;
    }


    .footer-copy-wrapper {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        row-gap: 20px;
        justify-content: center;
        padding-top: 10px;
    }

    .section-about-hero {
        padding-top: 118px;
    }

    .gap-80 {
        row-gap: 30px;
    }

    .mw-850 {
        max-width: 275px;
    }

    .padding-bottom-180 {
        padding-bottom: 60px;
    }


    .why-item-small {
        flex-direction: column;
        flex-wrap: nowrap;
        height: auto;
        position: static;
        background-size: cover;
        row-gap: 30px;
        padding-right: 0px;
        padding-bottom: 0px;
        height: auto !important;
    }

    .why-item-vertical {
        padding-bottom: 30px !important;
    }

    .image-240-right {
        width: 200px;
        position: static;
        margin-left: auto;
    }

    .sticky-100 {
        position: static;
    }

    .sticky-130 {
        position: static;
    }

    .sticky-160 {
        position: static;
    }

    .sticky-190 {
        position: static;
    }

    .mw-366 {
        max-width: 300px;
    }

    .area-header {
        font-size: 12px;
        padding-left: 24px;
        padding-top: 20px;
        padding-right: 24px;
        padding-bottom: 12px;
    }

    .hero-area {
        padding-left: 24px;
    }

    .mobile-block {
        display: inline;
    }

    .mobile-mw-300 {
        max-width: 300px;
    }

    .about-hero-item-2 {
        margin-top: -30%;
    }

    .about-hero-3 {
        margin-top: -30%;
    }

    .hamburger {
        width: 100%;
        row-gap: 20px;
        padding-top: 90px;
    }

    .hamburger-link {
        font-size: 20px;
    }

    .hambruger-ctas {
        max-width: 250px;
    }

    .cta-primary {
        min-height: 45px;
        padding-right: 24px;
        padding-left: 24px;
    }

    .hamburger-cta-wrapper {
        display: flex;
        flex-direction: column;
        row-gap: 10px;
    }


}

.toast-container {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.toast {
    min-width: 320px;
    max-width: 420px;
    padding: 16px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: all;
    border-left: 4px solid var(--Black);
}

.toast-show {
    opacity: 1;
    transform: translateX(0);
}

.toast-hide {
    opacity: 0;
    transform: translateX(400px);
}

.toast-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
}

.toast-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.toast-message {
    font-size: 15px;
    line-height: 1.5;
    color: var(--Black);
    margin: 0;
    font-weight: 500;
}

.toast-close {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--Black);
    opacity: 0.5;
    transition: opacity 0.2s ease;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-close:hover {
    opacity: 1;
}

.toast-success {
    border-left-color: var(--Green);
}

.toast-success .toast-icon {
    color: var(--Green);
}

.toast-error {
    border-left-color: #EF4444;
}

.toast-error .toast-icon {
    color: #EF4444;
}

.toast-info {
    border-left-color: #3B82F6;
}

.toast-info .toast-icon {
    color: #3B82F6;
}

@media (max-width: 576px) {
    .toast-container {
        right: 12px;
        left: 12px;
        top: 80px;
    }

    .toast {
        min-width: auto;
        width: 100%;
    }
}

/* [Chat Widget Styles] */
.pchat-main {
    border: 1px solid rgb(from var(--Black) r g b / 10%);
    background: var(--White);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 400px;
    position: relative;
}

.pchat-connecting-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.pchat-loading {
    text-align: center;
}

.pchat-loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--Green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.pchat-loading-text {
    font-size: 16px;
    color: var(--Black);
    margin-bottom: 16px;
}

.pchat-pulse {
    width: 8px;
    height: 8px;
    background: var(--Green);
    border-radius: 50%;
    margin: 0 4px;
    animation: pulse 1.5s ease-in-out infinite;
}

.pchat-pulse:nth-child(2) {
    animation-delay: 0.2s;
}

.pchat-pulse:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

.pchat-messages-wrapper {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #f8f9fa;
}

.pchat-messages-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pchat-message {
    margin-bottom: 16px;
}

.pchat-message:not(.user-message) {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.pchat-message.user-message {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.pchat-message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 12px;
    color: #666;
    width: 100%;
}

.user-message .pchat-message-header {
    flex-direction: row-reverse;
}

.pchat-message-sender {
    font-weight: 600;
}

.pchat-message-time {
    font-size: 11px;
    opacity: 0.7;
}

.pchat-message-bubble {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
    word-wrap: break-word;
    width: fit-content;
    display: inline-block;
    text-align: left;
}

.pchat-message-bubble-agent {
    background: #e9ecef;
    color: var(--Black);
    border-bottom-left-radius: 4px;
}

.pchat-message-bubble-user {
    background: var(--Green);
    color: white;
    border-bottom-right-radius: 4px;
}

.pchat-input-area {
    border-top: 1px solid rgb(from var(--Black) r g b / 10%);
    padding: 16px 20px;
    background: var(--White);
}

.pchat-input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
}

.pchat-input {
    flex: 1;
    border: 1px solid rgb(from var(--Black) r g b / 10%);
    border-radius: 24px;
    padding: 12px 16px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
    font-size: 17px;
    box-sizing: border-box;
    min-width: 0;
}

.pchat-input:focus {
    border-color: var(--Green);
}

.pchat-send-btn {
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
}

.pchat-send-btn:hover {
    opacity: 0.7;
}

.pchat-powered-by {
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    color: #666;
    border-top: 1px solid rgb(from var(--Black) r g b / 5%);
    background: #f8f9fa;
}

.pchat-powered-by a {
    color: var(--Green);
    text-decoration: none;
    font-weight: 600;
}

.pchat-powered-by a:hover {
    text-decoration: underline;
}

/* Typing cursor animation */
.typing-cursor {
    animation: blink 1s infinite;
    font-weight: bold;
    color: var(--Green);
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .pchat-main {
        height: 350px;
    }


    .pchat-input-wrapper {
        gap: 8px;
    }

    .pchat-input {
        padding: 10px 14px;
        font-size: 17px;
    }

    .pchat-messages-wrapper {
        padding: 16px;
    }

    .pchat-message-bubble {
        max-width: 90%;
    }

    .pchat-input-area {
        padding: 10px;
    }
}

/* [Expand Button Styles] */
.pchat-expand-btn {
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.pchat-expand-btn:hover {
    transform: scale(0.95);
}

/* [Full-Screen Chat Modal Styles] */
.fullscreen-chat-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.fullscreen-chat-modal.active {
    display: block;
}

.fullscreen-chat-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
}

.fullscreen-chat-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}


.fullscreen-chat-content {
    width: 100%;
    max-width: 996px;
    height: 60svh;
    background-image: url(/assets/popup-bg.png);
    background-size: cover;
    background-attachment: scroll;
    background-repeat: no-repeat;
    border-radius: 22px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgb(from var(--Black) r g b / 10%);
    padding: 13px;
}

/* [Main Chat Area Styles] */
.fullscreen-chat-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--Gray);
    border-radius: 22px;
    border: 1px solid rgb(from var(--Black) r g b / 10%);
    overflow: hidden;
    position: relative;
}


.fullscreen-chat-messages-wrapper {
    flex: 1;
    overflow-y: auto;
    padding-left: 32px;
    padding-right: 32px;
    padding-bottom: 32px;
    background: var(--Gray);
    padding-top: 55px;
}


.fullscreen-chat-messages-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.fullscreen-chat-message {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.fullscreen-chat-message.user-message {
    align-items: flex-end;
}

.fullscreen-chat-message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    width: 100%;
    max-width: 100%;
}

.user-message .fullscreen-chat-message-header {
    flex-direction: row-reverse;
}

.fullscreen-chat-message-sender {
    font-weight: 600;
    font-size: 14px;
    color: var(--Black);
}

.fullscreen-chat-message-time {
    font-size: 12px;
    opacity: 0.7;
    color: var(--Black);
}

.fullscreen-chat-message-bubble {
    max-width: 600px;
    padding: 14px 18px;
    border-radius: 18px;
    font-size: 15px;
    line-height: 1.5;
    word-wrap: break-word;
    text-align: left;
}

.fullscreen-chat-message-bubble-agent {
    background: #E9ECEF;
    color: var(--Black);
    border-bottom-left-radius: 4px;
}

.fullscreen-chat-message-bubble-user {
    background: var(--Green);
    color: white;
    border-bottom-right-radius: 4px;
}

.fullscreen-chat-input-area {
    border-top: 1px solid rgb(from var(--Black) r g b / 10%);
    padding: 20px 20px;
    background: var(--White);
}

.fullscreen-chat-input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
}

.fullscreen-chat-input {
    flex: 1;
    border: 1px solid rgb(from var(--Black) r g b / 10%);
    border-radius: 24px;
    padding: 10px 20px;
    font-size: 17px;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: 'Host Grotesk', sans-serif;
    box-sizing: border-box;
    min-width: 0;
}

.fullscreen-chat-input:focus {
    border-color: var(--Green);
}

.fullscreen-chat-send-btn {
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
    transition: opacity 0.2s ease;
}

.fullscreen-chat-send-btn:hover {
    opacity: 0.7;
}

.fullscreen-chat-collapse-btn {
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
    transition: transform 0.2s ease;
    position: absolute;
    top: 16px;
    right: 20px;
}

.fullscreen-chat-collapse-btn:hover {
    transform: scale(0.95);
}


/* [Mobile Responsive Styles] */
@media (max-width: 992px) {
    .fullscreen-chat-container {
        padding: 0;
    }

    .fullscreen-chat-collapse-btn {
        position: absolute;
        top: 18px;
        right: 18px;
    }




    .fullscreen-chat-content {
        height: 100svh;
        max-width: 100%;
        border-radius: 0;
    }

    .fullscreen-chat-main {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        border-radius: 16px;

    }



    .fullscreen-chat-messages-wrapper {
        padding: 24px;
        flex: none;
        height: calc(100svh - 180px);
        min-height: 400px;
    }

    .fullscreen-chat-input-area {
        padding: 16px 24px;
    }
}

@media (max-width: 768px) {
    .fullscreen-chat-container {
        padding: 0;
    }

    .fullscreen-chat-content {
        height: 100svh;
        border-radius: 0;
    }

    .fullscreen-chat-header {
        padding: 70px 20px 16px;
    }

    .fullscreen-chat-agent-name {
        font-size: 20px;
    }

    .fullscreen-chat-messages-wrapper {
        padding: 20px;
        flex: none;
        height: calc(100svh - 112px);
        min-height: 350px;
        padding-top: 54px;
    }

    .fullscreen-chat-message-bubble {
        max-width: 85%;
        font-size: 14px;
        padding: 12px 16px;
    }

    .fullscreen-chat-input-area {
        padding: 12px 10px 10px;
    }

    .fullscreen-chat-input {
        padding: 12px 16px;
        font-size: 17px;
    }

}
