/* Base Styles */
:root {
    /* Colors */
    --color-dark: #0C0C0D;
    --color-white: #FFFFFF;
    --color-white-70: rgba(255, 255, 255, 0.7);
    --color-white-15: rgba(255, 255, 255, 0.15);
    --color-white-05: rgba(255, 255, 255, 0.05);
    --color-blue: #48D7E4;
    --color-purple: #EBAFFF;
    --color-green: #51F49C;
    --color-gray: #3D3F42;
    --color-black: #1B1B1B;
}

@font-face {
    font-family: 'Satoshi-Variable';
    src: url('../fonts/Satoshi/Satoshi-Variable.woff2') format('woff2'),
        url('../fonts/Satoshi/Satoshi-Variable.woff') format('woff'),
        url('../fonts/Satoshi/Satoshi-Variable.ttf') format('truetype');
    font-weight: 300 900;
    font-display: swap;
    font-style: normal;
}

@font-face {
    font-family: 'Satoshi-VariableItalic';
    src: url('../fonts/Satoshi/Satoshi-VariableItalic.woff2') format('woff2'),
        url('../fonts/Satoshi/Satoshi-VariableItalic.woff') format('woff'),
        url('../fonts/Satoshi/Satoshi-VariableItalic.ttf') format('truetype');
    font-weight: 300 900;
    font-display: swap;
    font-style: italic;
}


@font-face {
    font-family: 'Satoshi-Light';
    src: url('../fonts/Satoshi/Satoshi-Light.woff2') format('woff2'),
        url('../fonts/Satoshi/Satoshi-Light.woff') format('woff'),
        url('../fonts/Satoshi/Satoshi-Light.ttf') format('truetype');
    font-weight: 300;
    font-display: swap;
    font-style: normal;
}


@font-face {
    font-family: 'Satoshi-LightItalic';
    src: url('../fonts/Satoshi/Satoshi-LightItalic.woff2') format('woff2'),
        url('../fonts/Satoshi/Satoshi-LightItalic.woff') format('woff'),
        url('../fonts/Satoshi/Satoshi-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-display: swap;
    font-style: italic;
}


@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi/Satoshi-Regular.woff2') format('woff2'),
        url('../fonts/Satoshi/Satoshi-Regular.woff') format('woff'),
        url('../fonts/Satoshi/Satoshi-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
    font-style: normal;
}


@font-face {
    font-family: 'Satoshi-Italic';
    src: url('../fonts/Satoshi/Satoshi-Italic.woff2') format('woff2'),
        url('../fonts/Satoshi/Satoshi-Italic.woff') format('woff'),
        url('../fonts/Satoshi/Satoshi-Italic.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
    font-style: italic;
}


@font-face {
    font-family: 'Satoshi-Medium';
    src: url('../fonts/Satoshi/Satoshi-Medium.woff2') format('woff2'),
        url('../fonts/Satoshi/Satoshi-Medium.woff') format('woff'),
        url('../fonts/Satoshi/Satoshi-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
    font-style: normal;
}


@font-face {
    font-family: 'Satoshi-MediumItalic';
    src: url('../fonts/Satoshi/Satoshi-MediumItalic.woff2') format('woff2'),
        url('../fonts/Satoshi/Satoshi-MediumItalic.woff') format('woff'),
        url('../fonts/Satoshi/Satoshi-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
    font-style: italic;
}


@font-face {
    font-family: 'Satoshi-Bold';
    src: url('../fonts/Satoshi/Satoshi-Bold.woff2') format('woff2'),
        url('../fonts/Satoshi/Satoshi-Bold.woff') format('woff'),
        url('../fonts/Satoshi/Satoshi-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
    font-style: normal;
}


@font-face {
    font-family: 'Satoshi-BoldItalic';
    src: url('../fonts/Satoshi/Satoshi-BoldItalic.woff2') format('woff2'),
        url('../fonts/Satoshi/Satoshi-BoldItalic.woff') format('woff'),
        url('../fonts/Satoshi/Satoshi-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
    font-style: italic;
}


@font-face {
    font-family: 'Satoshi-Black';
    src: url('../fonts/Satoshi/Satoshi-Black.woff2') format('woff2'),
        url('../fonts/Satoshi/Satoshi-Black.woff') format('woff'),
        url('../fonts/Satoshi/Satoshi-Black.ttf') format('truetype');
    font-weight: 900;
    font-display: swap;
    font-style: normal;
}


@font-face {
    font-family: 'Satoshi-BlackItalic';
    src: url('../fonts/Satoshi/Satoshi-BlackItalic.woff2') format('woff2'),
        url('../fonts/Satoshi/Satoshi-BlackItalic.woff') format('woff'),
        url('../fonts/Satoshi/Satoshi-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-display: swap;
    font-style: italic;
}





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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Satoshi', sans-serif;
    background-color: var(--color-dark);
    color: var(--color-white);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--color-white-70);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-white);
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    padding: 12px 57px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-family: 'Satoshi', sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
}

.primary-btn {
    background-color: var(--color-white);
    color: var(--color-dark);
}

.primary-btn:hover {
    background-color: var(--color-blue);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(72, 215, 228, 0.3);
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 48px;
    margin-bottom: 50px;
    text-align: center;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 40px 0 80px;
    display: flex;
    align-items: center;
    background-color: #050506;
    background-image: url('../images/hero-bg.png');
    background-position: bottom;
    background-repeat: no-repeat;
    overflow: hidden;
    flex-direction: column;
}

.logo {
    font-family: 'Sansation', sans-serif;
    font-weight: 700;
    font-size: 20px;
    text-shadow: 0px 3px 17.5px rgba(255, 255, 255, 0.6);
}

.logo span {
    font-family: 'Sansation', sans-serif;
    font-weight: 300;
    font-size: 20px;
}

.hero .logo {
    margin-bottom: 80px;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-direction: column;
}

.hero-text {
    max-width: 900px;
    text-align: center;
}

.hero-text h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 54px;
    margin-bottom: 30px;
}

.hero-text p {
    font-size: 24px;
    font-weight: 500;
    color: var(--color-white);
    margin-bottom: 40px;
    opacity: 0.7;
}

.hero-images {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 350px;
}

.friend-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.friend-card {
    position: absolute;
    width: 264px;
    border-radius: 43px;
    /* box-shadow: 0 0 50px rgba(0, 0, 0, 0.2); */
    overflow: hidden;
    transition: transform 0.4s ease-out, box-shadow 0.4s ease-out;
    cursor: pointer;
}

.friend-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.friend-card:hover {
    transform: translateY(-10px) translateX(-50%);
    z-index: 10;
}

.friend-card-1:hover {
    box-shadow: 0 10px 120px rgba(72, 215, 228, 0.6);
}

.friend-card-2:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 70px rgba(81, 244, 156, 0.3);
}

.friend-card-3:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 110px rgba(235, 175, 255, 0.4);
}

.friend-card:hover img {
    transform: scale(1.05);
}

.friend-card-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    box-shadow: 0 0 107px rgba(72, 215, 228, 0.42);
}

.friend-card-2 {
    left: 0;
    top: 51px;
    z-index: 1;
    box-shadow: 0 0 55px rgba(81, 244, 156, 0.1);
}

.friend-card-3 {
    right: 0;
    top: 45px;
    z-index: 2;
    box-shadow: 0 0 93px rgba(235, 175, 255, 0.2);
}



section {
    transition: opacity 0.6s ease;
}

section:not(.in-view) {
    opacity: 0.7;
}

section.in-view {
    opacity: 1;
}

/* Features Section */
.features {
    padding: 100px 0;
    overflow: hidden;
}

.features h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 48px;
    margin-bottom: 40px;
}

.feature-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center
}

.feature-text {
    flex: 1;
    min-width: 300px;
}

.feature-text p {
    font-size: 24px;
    color: var(--color-white-70);
    margin-bottom: 20px;
}

.feature-text p:first-child {
    color: var(--color-white);
}

.feature-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    position: relative;
}

.macbook {
    max-width: 100%;
    top: -180px;
    right: -180px;
    position: absolute;
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    transition: transform 0.7s ease;
}

.macbook:hover {
    transform: perspective(1000px) rotateY(-3deg) rotateX(3deg);
}

/* Why Love Us Section */
.why-love-us {
    padding: 100px 0;
    text-align: center;
}

.section-title {
    font-size: 60px;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 33px;
    justify-content: center;
}

.card {
    background: var(--color-white-05);
    border: 1px solid var(--color-white-15);
    border-radius: 24px;
    width: 31%;
    height: 617px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.card-image {
    height: 313px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-image img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

.card-image.blue {
    background-color: var(--color-blue);
}

.card-image.purple {
    background-color: var(--color-purple);
}

.card-image.green {
    background-color: var(--color-green);
}

.card-content {
    padding: 24px;
    text-align: left;
}

.card-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.card-content p {
    font-size: 18px;
    color: var(--color-white-70);
    line-height: 1.6;
}




/* More Than Chatbot Section */
.more-than-chatbot {
    padding: 100px 0;
    /* background: rgba(255, 255, 255, 0.02);    */
    /* background: red;
    backdrop-filter: blur(10px); */
}

.content-wrap {
    display: flex;
    background: var(--color-white-05);
    border: 1px solid var(--color-white-15);
    border-radius: 24px;
}

.text-content {
    flex: 1;
    min-width: 300px;
    padding: 50px 70px;
}

.text-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 48px;
    margin-bottom: 30px;
}

.text-content p {
    font-size: 24px;
    margin-bottom: 20px;
}

.image-content {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    background: url('../images/sky.png') no-repeat center center;
    background-size: cover;
    /* overflow: hidden; */
    border-radius: 24px 0 0 24px;
    position: relative;
}

.phone-image {
    position: absolute;
    bottom: -3px;
    left: 10%;
    width: 100%;
    max-width: 360px;
    object-fit: contain;
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    transition: transform 0.7s ease;
}

.phone-image:hover {
    transform: perspective(1000px) rotateY(3deg) rotateX(-3deg);
}




/* Testimonials Section */
.testimonials {
    padding: 100px 0;
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.testimonial {
    /* background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(46, 46, 55, 0)); */
    /* border: 1px solid var(--color-white-15); */
    border: 1px solid var(--color-white-15);
    border-radius: 20px;
    padding: 20px;
    width: 31%;
    height: 223px;
    overflow: hidden;
    position: relative;
    /* backdrop-filter: blur(18px); */
}

.testimonial::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.08), rgba(46, 46, 55, 0));
    border-radius: 19px;
    padding: 1px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
}

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

.user-info h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 3px;
}

.stars {
    display: flex;
}

.star {
    color: var(--color-purple);
    margin-right: 3px;
    font-size: 20px;
}

.testimonial-text {
    font-size: 18px;
    color: var(--color-purple);
    line-height: 1.35;
}

/* CTA Banner */
.cta-banner {
    padding: 80px 0;
    position: relative;
    background: url('../images/cta-bg.png') no-repeat center center;
    background-position: bottom;
    background-size: cover;
    position: relative;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    /* background-color: red; */
    background: linear-gradient(to bottom, rgba(12, 12, 13, 1), transparent 70%);

    /* background-color: rgba(12, 12, 13, 0.8); */
    /* z-index: 0; */
}

/* .cta-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background-color: blue;
} */

.cta-banner .container-inner {
    padding: 80px 30px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    border: 1px solid var(--color-white-15);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-banner .container-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(42, 86, 87, 0.3), rgba(0, 0, 0, 0.33) 68.75%);
    backdrop-filter: blur(10px);
    padding: 1px;
    border-radius: 20px;
    overflow: hidden;
    z-index: -1;
}

.cta-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 60px;
    color: var(--color-blue);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
}

.arrow-up {
    position: absolute;
    top: 27px;
    right: 27px;
    width: 56px;
    height: 56px;
    background-color: var(--color-dark);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.arrow-up:hover {
    transform: translateY(-3px);
}

/* Footer */
footer {
    padding: 70px 0 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

footer .logo {
    font-family: 'Sansation', sans-serif;
    font-size: 37px;
    font-weight: 700;
    text-shadow: 0 5px 32px rgba(255, 255, 255, 0.3);
}

footer .logo span {
    font-family: 'Sansation', sans-serif;
    font-weight: 300;
    font-size: 37px;
}

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

.divider {
    width: 1px;
    height: 32px;
    background-color: var(--color-white-15);
}

.footer-links a {
    font-size: 14px;
    text-transform: capitalize;
    padding: 10px 0;
}

footer hr {
    border: none;
    height: 1px;
    background-color: var(--color-white-15);
    margin-bottom: 25px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 16px;
    color: var(--color-white-70);
}

.social-links {
    display: flex;
    gap: 22px;
}

.social-icon {
    background-color: var(--color-white-05);
    border: 1px solid var(--color-white-15);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon img {
    width: 20px;
    height: 20px;
}

.arrow-up-footer {
    background-color: var(--color-dark);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: none;
    border: 1px solid var(--color-white-15);
    width: 56px;
    height: 56px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    body {}

    .container {
        padding: 0 40px;
    }
}

@media (max-width: 992px) {

    .hero-text h1 {
        font-size: 48px;
    }

    .hero-text h2 {
        font-size: 42px;
    }

    .hero-text p,
    .card-content p,
    .feature-text p,
    .cta-content p {
        font-size: 18px;
    }

    .more-than-chatbot,
    .why-love-us,
    .features,
    .testimonials,
    .cta-banner {
        padding: 40px 0;
    }

    footer {
        padding: 40px 0 20px;
    }

    .section-title,
    .features h2,
    .text-content h2 {
        font-size: 48px;
    }

    .card {
        width: 100%;
        height: auto;
    }

    .feature-content,
    .content-wrap {
        flex-direction: column;
        background: none;
        border: none;
        border-radius: 0;
    }

    .image-content {
        border-radius: 0;
        order: 2;
    }

    .macbook {
        position: relative;
        top: auto;
        right: auto;
    }

    .feature-text {
        margin-bottom: 20px;
    }

    .image-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 40px;
        background-color: #0C0C0D;
        z-index: 0;
    }

    .text-content {
        padding: 40px 0 80px 0;
        order: 1;
    }

    .phone-image {
        position: relative;
        bottom: 0;
        left: 1%;
        z-index: 1;
    }

    .testimonial {
        width: 100%;
        max-width: 400px;
        height: auto;
    }

    .cta-content h2 {
        font-size: 48px;
    }

    .arrow-up {
        display: none;
    }

    .cta-banner .container-inner {
        padding: 40px 16px;
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .divider {
        display: none;
    }

    .footer-links {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .copyright {
        order: 1;
        margin-bottom: 30px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .social-links {
        order: 2;
        width: 100%;
    }

    .footer-bottom {
        width: 100%;
        align-items: flex-start;
    }

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

    .arrow-up-footer {
        display: flex;
    }

    footer .logo,
    footer .logo span {
        font-size: 26px;
    }


}

@media (max-width: 768px) {
    .hero {
        padding: 40px 0 60px;
    }

    .hero-text h2 {
        font-size: 36px;
    }

    .hero .logo {
        margin-bottom: 50px;
    }



    .hero-text p,
    .feature-text p,
    .text-content p,
    .cta-content p {
        font-size: 16px;
    }


    .card-content h3 {
        font-size: 24px;
    }




    .friend-card {
        width: 220px;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text h2 {
        font-size: 36px;
    }

    .hero-text p,
    .card-content p,
    .feature-text p,
    .cta-content p {
        font-size: 14px;
    }

    .friend-card {
        width: 200px;
    }


    .section-title,
    .hero-text h2,
    .features h2,
    .text-content h2 {
        font-size: 36px;
    }


    .container {
        padding: 0 20px;
    }

    .card {
        width: 100%;
    }

    .cta-content h2 {
        font-size: 36px;
    }
}
