@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@100..900&display=swap');

:root {
    --neutral-900: #141C25;
    --neutral-800: #1F2A35;
    --neutral-700: #2A3744;
    --neutral-600: #374656;
    --neutral-500: #516071;
    --neutral-400: #6D7C8D;
    --neutral-300: #8C9AA8;
    --neutral-200: #B0BEC9;
    --neutral-100: #D6DDE2;
    --neutral-50: #FFFFFF;
    --light-gray-900: #C2C9D3;
    --light-gray-800: #CDD3DC;
    --light-gray-700: #D5DAE2;
    --light-gray-600: #DCE1E8;
    --light-gray-500: #E0E6F0;
    --light-gray-400: #E4E9F0;
    --light-gray-300: #E9EDF4;
    --light-gray-200: #EFF2F9;
    --light-gray-100: #F5F7FB;
    --light-gray-50: #F9FAFC;
    --accent-900: #1E2F6F;
    --accent-800: #1E3A8A;
    --accent-700: #1E40AF;
    --accent-600: #1D4ED8;
    --accent-500: #2563EB;
    --accent-400: #60A5FA;
    --accent-300: #93C5FD;
    --accent-200: #BFDBFE;
    --accent-100: #DBEAFE;
    --accent-50: #EFF6FF;
}

html {
    scroll-behavior: smooth;
}

body {
    display: block;
    overflow-x: hidden;
}

/**
*
* FONTS STYLE
*
**/

body, p {
    color: var(--neutral-900, #141C25);
    font-family: "Inter Tight", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0.5px;
    margin: unset;
    padding: unset;
}

h1 {
    font-family: "Inter Tight", sans-serif;
    font-weight: 600;
    font-size: clamp(32px, 4vw, 46px);
    line-height: clamp(40px, 4vw, 58px);
    margin: unset;
}

h2 {
    font-family: "Inter Tight", sans-serif;
    font-weight: 600;
    font-size: clamp(26px, 5vw, 32px);
    line-height: clamp(34px, 5vw, 40px);
    margin: unset;
}

h3 {
    font-family: "Inter Tight", sans-serif;
    font-weight: 600;
    font-size: clamp(17px, 5vw, 18px);
    line-height: clamp(24px, 5vw, 26px);
    margin: unset;
}

h4 {
    font-family: "Inter Tight", sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 22px;
    margin: unset;
}

.title-24 {
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
}

.title-18 {
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
}

.title-15 {
    font-weight: 600;
    font-size: 15px;
    line-height: 22px;
}

.title-13 {
    font-weight: 600;
    font-size: 13px;
    line-height: 18px;
}

.caption-14 {
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0.5px;
}

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

ol, ul {
    padding-inline-start: 20px;
}

.container {
    max-width: 1216px;
    margin-inline: auto;
    padding-inline: clamp(10px, 3vw, 18px);
}

.grid {
    display: grid;
}

.grid-col-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(8px, 2vw, 12px);
}

.inline-flex {
    display: inline-flex;
    justify-content: center;
    gap: 32px;
    align-items: center;
    width: 100%;
}

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

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

section {
    padding-block: clamp(30px, 5vw, 40px);
    overflow: hidden;
}

.mb-40 {
    margin-bottom: clamp(20px, 5vw, 40px);
}

.caption-gray-bg {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    background: var(--light-gray-200, #EFF2F9);
    color: var(--neutral-500, #516071);
    text-align: center;
}

/**
*
* BUTTONS STYLE
*
**/

.buttons {
    display: inline-flex;
    justify-content: center;
    gap: 14px;
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 18px;
    border-radius: 8px;
    transition: ease 0.3s;
    cursor: pointer;
}

.btn-primary {
    background: var(--Accent-500, #2563EB);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-600, #1D4ED8);
}

.btn-secondary {
    background: var(--light-gray-200, #EFF2F9);
    color: var(--neutral-900, #141C25);
}

.btn-secondary:hover {
    background: var(--light-gray-500, #E0E6F0);
}

.btn-dark {
    background: var(--neutral-900, #141C25);
    color: #fff;
}

.btn-dark:hover {
    background: var(--neutral-600, #374656);
}

.btn-outline {
    color: var(--neutral-900, #141C25);
    border: 1px solid var(--light-gray-400, #E4E9F0);
    background: var(--neutral-50, #FFF);
    box-shadow: 0 2px 4px 0 rgba(20, 28, 37, 0.06);
}

.btn-outline:hover {
    border: 1px solid var(--light-gray-900, #C2C9D3);
}

.btn-secondary-dark {
    background: var(--neutral-700, #2A3744);
    color: #fff;
}

.btn-secondary-dark:hover {
    background: var(--neutral-500, #516071);
}

.google-btn {
    gap: 2px;
    align-items: center;
}

.google-btn img {
    width: 20px;
    height: 20px;
}

.btn-lg {
    padding-inline: 24px;
    height: 56px;
}

.btn-md {
    padding-inline: 16px;
    height: 42px;
}

.btn-sm {
    padding-inline: 8px;
    height: 34px;
}

/**
*
* LIST STYLE
*
**/

ul {
    padding-left: 24px;
}

.no-bullet {
    list-style: none;
    margin: unset;
    padding: unset;
}

.blue-bullet li::marker {
    color: var(--accent-500);
}

.card,
.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    border: 1px solid var(--light-gray-400, #E4E9F0);
    background: var(--neutral-50, #FFF);
}

.pricing-card {
    padding: 12px;
}

.pricing-card .content {
    display: flex;
    flex-direction: column;
}

.card {
    padding: 24px;
    gap: 12px;
}

.card .icon {
    display: inline-flex;
}

.big-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 40px;
    border-radius: 12px;
    border: 1px solid var(--light-gray-400, #E4E9F0);
    background: var(--neutral-50, #FFF);
}

.card .text,
.big-card .text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.big-card .inline-flex {
    justify-content: flex-start;
    gap: 12px;
}

.card .image.has-bg {
    display: inline-flex;
    justify-content: center;
    background: var(--light-gray-50, #F9FAFC) url(./assets/icons/dot-bg.svg) no-repeat;
}

.card.color-border,
.pricing-card.color-border,
.big-card.color-border {
    border: none;
}

.card.color-border::before,
.pricing-card.color-border::before,
.big-card.color-border::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(
        to bottom,
        #2563EB 0%,
        #2563EB 20%,
        #E4E9F0 70%,
        #E4E9F0 100%   
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
        mask-composite: exclude;
}

.color-border .content {
    position: relative;
    z-index: 2;
}


/**
*
* HERO SECTION
*
**/

.hero .content {
    position: relative;
    padding-block: clamp(60px, 5vw, 120px);
    /* background: url(./assets/icons/hero-bg.svg) no-repeat; */
}

.hero svg {
    position: absolute;
    z-index: -1;
    top: 0;
}

.hero h1 {
    margin-block: 16px 8px;
}

.hero .subtitle {
    color: var(--neutral-500, #516071);
    font-size: clamp(15px, 3vw, 18px);
    font-style: normal;
    font-weight: 600;
    line-height: clamp(22px, 3vw, 26px);
    margin-bottom: 40px;
}

.hero ul {
    margin-top: 24px;
}

.hero ul li {
    color: var(--neutral-300, #8C9AA8);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: 0.5px;
}

/**
*
* PRICE SECTION
*
**/

.pricing-plan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    grid-auto-rows: 1fr;
}

.pricing-card__header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px 12px;
    border-bottom: 1px solid var(--light-gray-400, #E4E9F0);
}

.pricing-card__header .caption-14 {
    margin-bottom: 8px;
}

.pricing-card__header .title-15 {
    color: var(--neutral-300, #8C9AA8);
}

.pricing-card__options {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: unset;
    margin-block: 0 24px;
}

.pricing-card__options li {
    position: relative;
    color: var(--neutral-600, #374656);
    padding-left: 32px;
}

.pricing-card__options li:before {
    position: absolute;
    content: "";
    left: 0;
    width: 24px;
    height: 24px;
    background: url(./assets/icons/check-round.svg) center/100% no-repeat;
}

.pricing-card__slider {
    width: 100%;
    margin-block: 24px;
    text-align: center;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 4px;
    background:  var(--light-gray-300, #E9EDF4);
    border-radius: 6px;
}

.slider-track .slider-fill {
    height: 4px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.slider-track .slider-thumb {
    position: absolute;
    content: "";
    left: 0;
    top: -4px;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background-color: var(--neutral-900, #141C25);
}

.slider-track.slider-fill-20 .slider-fill {
    background-color: var(--neutral-900, #141C25);
    width: 20%;
}

.slider-track.slider-fill-20 .slider-thumb {
    left: 20%;
}

.slider-track.slider-fill-300 .slider-fill {
    background-color: var(--neutral-900, #141C25);
    width: 70%;
}

.slider-track.slider-fill-300 .slider-thumb {
    left: 70%;
}

.slider-track.slider-fill-100 .slider-fill {
    background-color: var(--neutral-900, #141C25);
    width: 100%;
}

.slider-track.slider-fill-100 .slider-thumb {
    left: 98%;
}

.pricing-card__slider p {
    margin-top: 8px;
}

/**
*
* USE CASE SECTION
*
**/

.proxy-use-cases .grid {
    display: grid;
    gap: 8px;
}

.proxy-use-cases .icon {
    display: inline-flex;
    width: 36px;
    height: 36px;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    background: var(--light-gray-200, #EFF2F9);
}

.proxy-use-cases .icon svg {
    width: 20px;
    height: 20px;
}

.proxy-use-cases .big-card .text {
    margin-top: 12px;
}

.proxy-use-cases .big-card .btn {
    margin-top: 32px;
}

.proxy-use-cases .items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.proxy-use-cases .card {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: clamp(12px, 3vw, 16px);
}

.proxy-use-cases .card .btn {
    margin-left: auto;
}

/**
*
* REASONS SECTION
*
**/

.reasons .card {
    gap: 16px;
    padding: 16px;
}

.reasons .card .image {
    border-radius: 6px;
    height: 240px;
    margin-bottom: 8px;
}

/**
*
* REASONS SECTION
*
**/

.cards-with-image .card {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    padding: 42px 32px;
}

.cards-with-image .image {
    width: 416px;
    height: 256px;
    border-radius: 12px;
}

.cards-with-image .image img {
    padding-block: 30px;
}

.cards-with-image h2 {
    margin-bottom: 24px;
}

.cards-with-image .text {
    display: block;
}

.cards-with-image .text ol,
.cards-with-image .text ul {
    margin-block: 0 16px;
}

/**
*
* LOCATIONS SECTION
*
**/

.locations .card {
    padding-block: 16px;
    flex-direction: row;
    align-items: center;
}

/**
*
* SOLUTIONS SECTION
*
**/

.solutions .card {
    padding-block: 16px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

/**
*
* CTA SECTION
*
**/

.cta-block .content {
    border-radius: 12px;
    background: var(--neutral-900, #141C25) url(./assets/icons/abstract-bg.svg);
    padding-block: 60px;
    color: #fff;
}

.cta-block .title-18 {
    color: var(--neutral-400, #6D7C8D);
    margin-top: 8px;
}

@media (min-width: 1025px) {
    .proxy-use-cases .grid {
        grid-template-columns: 685px 487px;
    }
}

@media (max-width: 1024px) {

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


@media (min-width: 601px) and (max-width: 1024px) {

    .big-card {
        padding: 32px;
    }

    .proxy-use-cases .grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 601px) {
    .cards-with-image .content {
        width: calc(100% - 456px);
    }
}


@media (max-width: 600px) {

    .btn-md {
        height: 56px;
    }

    .grid-col-3 {
        grid-template-columns: auto;
    }

    .card {
        padding: 16px;
    }

    .big-card {
        padding: 16px;
    }

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

    .hero ul {
        flex-direction: column;
        gap: 16px;
    }

    .pricing-plan-grid {
        grid-template-columns: auto;
    }

    .pricing-options-grid {
        grid-template-columns: auto;
        gap: 16px;
        margin-top: 16px;
    }

    .pricing-options ul {
        grid-template-columns: auto;
        gap: 20px;
        margin-top: 16px;
    }

    .cards-with-image .card {
        flex-direction: column;
        align-items: normal;
        gap: 24px;
    }

    .cards-with-image .image {
        width: 100%;
    }

    .cta-block .content {
        padding: 40px 24px;
    }
    
    .locations .card,
    .solutions .card {
        padding: 20px 16px;
    }

}
