/* CSS Reset Config */

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #1D264A;
    --secondary-color: #8F97B5;
    --accent-color: #7751ea;
    --accent-gradient: linear-gradient(135deg, rgba(61, 111, 180, 1) 0%, rgba(159, 180, 252, 1) 28%, rgba(199, 186, 255, 1) 68%, rgba(132, 169, 229, 1) 100%);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    --neon-glow: 0 0 15px rgba(132, 169, 229, 0.5);
}

.no-wrap {
    white-space: nowrap;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    font-family: "Poppins", sans-serif;
    color: var(--primary-color);
    background-color: #f9fafe;
    /* Very subtle blue-ish grey background */
    overflow-x: hidden;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    display: inline-block;
    transition: all 0.3s ease;
}

img,
picture,
video,
canvas,
svg {
    max-width: 100%;
    display: block;
}

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

button {
    background: none;
    border: none;
    cursor: pointer;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

#root,
#__next {
    isolation: isolate;
}

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


/* HERO */

.header {
    padding-top: 60px;
    padding-bottom: 120px;
    background: url("../img/vector-hero.svg") no-repeat center top / cover;
    position: relative;
    overflow: hidden;
}

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

.logo-image {
    width: 119px;
    height: auto;
}

.btn__flex {
    display: flex;
    margin-bottom: 67px;
    gap: 24px;
}

.awards__flex {
    display: flex;
    gap: 40px;
    align-items: center;
    /* Fix vertical stretching */
}

.awards__flex img {
    height: auto;
    /* Ensure aspect ratio is preserved */
}

.header__content {
    max-width: 568px;
    z-index: 2;
}

.hero__title {
    font-size: 50px;
    font-weight: 600;
    /* Increased weight */
    line-height: 1.2;
    letter-spacing: -2px;
    color: var(--primary-color);
    margin: 30px 0 28px;
    max-width: 616px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* Subtle depth */
}

.hero__txt {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--secondary-color);
    margin-bottom: 64px;
    max-width: 480px;
}

.btn {
    position: relative;
    display: inline-block;
    overflow: hidden;
    z-index: 0;
    background: var(--accent-gradient);
    color: #ffffff;
    padding: 21px 50px;
    border-radius: 990px;
    font-weight: 500;
    line-height: 120%;
    white-space: nowrap;
    box-shadow: 0 10px 25px rgba(61, 111, 180, 0.3);
    /* Button shadow */
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(61, 111, 180, 0.4);
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(45deg,
            rgba(159, 180, 252, 1) 0%,
            /* Lighter start on hover */
            rgba(61, 111, 180, 1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    opacity: 1;
}

.btn__ghost {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--accent-color);
    padding: 19px 66px;
    border: 2px solid var(--accent-color);
    border-radius: 990px;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn__ghost:hover {
    color: #ffffff;
    border-color: transparent;
    background: var(--accent-gradient);
}


.hero__link {
    display: block;
    width: 50%;
}

.hero__imagery {
    background: var(--accent-gradient);
    border-radius: 43px;
    padding: 88px 43px;
    position: relative;
    width: 100%;
    min-height: 600px;
    /* Ensure height */
    box-shadow: 0 20px 60px rgba(61, 111, 180, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Glassmorphism Circle behind images */
.hero__imagery::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
    z-index: 1;
}


.hero__book {
    position: absolute;
    left: 10%;
    top: 15%;
    width: 45%;
    /* Responsive width */
    z-index: 2;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.hero__mob {
    position: absolute;
    right: 5%;
    /* Align right */
    bottom: 5%;
    width: 40%;
    /* Responsive width */
    z-index: 3;
    transition: transform 0.6s ease;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}




.hero__imagery:hover .hero__book {
    transform: translateY(-10px) rotate(-2deg);
}

.hero__imagery:hover .hero__mob {
    transform: translateY(-15px) rotate(2deg);
}


/* Video First */
.video-wrap {
    text-align: center;
    width: 100%;
    margin: 0 auto 120px;
    position: relative;
}

.video-wrap>video {
    width: 53%;
    height: 100%;
    display: block;
    margin: 0 auto;
    border-radius: 30px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.1);
}

.wrapper_second {
    margin-bottom: 0;
}

.video-wrap2 {
    text-align: center;
    width: 100%;
    margin: 0 auto 120px;
}

.video-wrap2>video {
    width: 53%;
    height: 100%;
    display: block;
    margin: 0 auto;
    border-radius: 30px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.1);
}

/* COMPANIONS SECTION (New) */

.companions {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(235, 241, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    margin-bottom: 120px;
}

.companions__wrapper {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.companion__card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 32px;
    padding: 40px;
    width: 400px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(132, 169, 229, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.companion__card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(132, 169, 229, 0.25);
}

/* Gradient borders or internal glow */
.companion__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--accent-gradient);
}


.companion__img-wrap {
    width: 216px;
    /* 180px * 1.2 */
    height: 216px;
    /* 180px * 1.2 */
    margin: 0 auto 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0eafc 0%, #cfdef3 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.8), 0 10px 30px rgba(0, 0, 0, 0.05);
}

.companion__img {
    width: 168px;
    /* 140px * 1.2 */
    /* Adjust based on asset size */
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.companion__card:hover .companion__img {
    transform: scale(1.1);
}

.companion__name {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.companion__role {
    font-size: 16px;
    font-weight: 500;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.companion__desc {
    font-size: 17px;
    color: var(--secondary-color);
    line-height: 1.6;
}


/* DISCOVER APP */

.discover__app {
    margin-bottom: 120px;
}

.discover__flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.avatars__flex {
    display: flex;
    position: relative;
    margin-right: 20px;
}

.person1,
.person2,
.person3 {
    width: 48px;
    height: 48px;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.person2 {
    position: absolute;
    left: 35px;
}

.person3 {
    position: absolute;
    left: 70px;
}

.avatar__flext_group {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 36px;
}

.discover__title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -2px;
    color: var(--primary-color);
    margin-bottom: 28px;
}

.discover__txt {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 36px;
}

.discover__content {
    flex: 1;
    padding: 50px;
    background: #fff;
    border: 1px solid rgba(229, 229, 229, 0.5);
    border-radius: 32px;
    box-shadow: var(--glass-shadow);
}

.avatar__text {
    color: var(--secondary-color);
    font-weight: 500;
}

.user-count-highlight {
    color: var(--accent-color);
    font-weight: 700;
}

.discover__imagery {
    flex: 1;
    background: #fff;
    border: 1px solid rgba(229, 229, 229, 0.5);
    border-radius: 32px;
    padding: 0;
    height: 600px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    display: flex;
    justify-content: center;
    align-items: center;
}

.blurry_discovery {
    position: absolute;
    left: 0px;
    top: 0px;
    opacity: 0.6;
}

.blurry_discovery2 {
    position: absolute;
    right: 0px;
    bottom: 0px;
    transform: rotate(180deg);
    opacity: 0.6;
}

.double__phones {
    max-width: 80%;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.25));
}


/* PANE SECTION */

.phones__pane {
    margin: 0 auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.15));
    transition: transform 0.5s ease;
}

.phones__pane:hover {
    transform: translateY(-10px);
}

.phones__pane_section {
    position: relative;
    margin-bottom: 250px;
    text-align: center;
}

.features__wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    top: 85%;
    align-items: center;
    justify-content: space-between;
    min-width: 1090px;
    max-width: 1115px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(132, 169, 229, 0.3);
    border-radius: 30px;
    padding: 50px 60px;
    box-shadow: 0 20px 50px rgba(132, 169, 229, 0.15);
}

.flex__wrap {
    display: flex;
    align-items: center;
    gap: 24px;
}

.pan__title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
}

.pan__icon {
    width: 48px;
    height: 48px;
    /* transition: transform 0.3s ease; */
}

.flex__wrap:hover .pan__icon {
    transform: scale(1.1) rotate(5deg);
}


.mb24 {
    margin-bottom: 30px;
}

/* HOW IT WORKS */

.how-it-works {
    text-align: center;
    margin-bottom: 150px;
}

.h2__how-it-works {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -2px;
    text-align: center;
    color: var(--primary-color);
    margin: 59px auto 20px;
}

.how-it-works__txt {
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    color: var(--secondary-color);
    margin: 0 auto 80px;
    max-width: 600px;
}

.flex__title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.cards__wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
    gap: 0;
    /* Overlapping is handled by margins */
}

.card_image {
    background: #ffffff;
    border: 1px solid rgba(229, 229, 229, 0.6);
    border-radius: 24px;
    width: 320px;
    height: 380px;
    box-shadow: 0 15px 40px rgba(34, 60, 80, 0.08);
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease, z-index 0s;
}

.card_image:hover {
    transform: scale(1.05) rotate(0deg) !important;
    z-index: 100 !important;
    box-shadow: 0 25px 50px rgba(34, 60, 80, 0.15);
}

.card1,
.card2,
.card3 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card1 .card_image {
    transform: rotate(-3deg);
    margin-right: -20px;
    z-index: 1;
}

.card2 .card_image {
    z-index: 2;
    margin-bottom: 20px;
    /* Aligns content below */
}

.card3 .card_image {
    transform: rotate(3deg);
    margin-left: -20px;
    z-index: 1;
}


.number__text {
    font-size: 22px;
    font-weight: 500;
    color: var(--primary-color);
    margin-left: 12px;
}

.card_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.image__item1 {
    object-position: center 20px !important;
}

/* WHO BOOK */

.who-is-it-for {
    margin-bottom: 120px;
}

.who__book {
    font-size: 45px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -2px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.book__txt {
    font-size: 18px;
    font-weight: 400;
    color: var(--secondary-color);
    margin-bottom: 24px;
    line-height: 1.7;
}

.book__txt-is-highlighted {
    font-size: 19px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.book__tooltip {
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 40px;
    text-transform: uppercase;
    opacity: 0.7;
}

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

.who__info {
    max-width: 50%;
}


.who__book_link {
    max-width: 45%;
    display: block;
    transition: transform 0.5s ease;
}

.who__book_link:hover {
    transform: perspective(1000px) rotateY(-5deg);
}

.who__book_image {
    width: 100%;
    /* Fill container */
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.15));
}


/* FlexCards */

.section__title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -2px;
    color: var(--primary-color);
    margin-bottom: 24px;
    text-align: center;
}

.section__text {
    font-size: 20px;
    font-weight: 400;
    color: var(--secondary-color);
    margin: 0 auto 80px;
    text-align: center;
    max-width: 700px;
}

.flex_cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: stretch;
}


.cards__img {
    margin: 0 auto;
    width: 140px;
    height: auto;
}

.cards__img3,
.cards__img4 {
    margin: 40px auto 0;
    width: 160px;
}


.cards__title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.5px;
    color: var(--primary-color);
    margin-bottom: 18px;
    padding: 0 10px;
}

.cards__desc {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--secondary-color);
    margin-bottom: 20px;
    padding: 0 10px;
}

.cards__item {
    background: #fff;
    border: 1px solid rgba(229, 229, 229, 0.6);
    border-radius: 24px;
    padding: 30px 10px 0;
    box-shadow: 0 10px 40px rgba(34, 60, 80, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    text-align: center;
}

.cards__item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(34, 60, 80, 0.1);
}


.book__flex {
    margin-bottom: 120px;
}

/* VIDEO SECOND */

.video__book {
    height: 100vh;
    background-color: #d9def2;
}

/* TWO PHONES */

.phones__app {
    padding-top: 80px;
    background: var(--accent-gradient);
    margin-bottom: 120px;
    position: relative;
    overflow: hidden;
}

.phones__info {
    position: relative;
    margin-top: 150px;
    z-index: 2;
    color: white;
}

.bg__logo {
    position: absolute;
    left: 10%;
    top: -50%;
    z-index: -1;
    opacity: 0.1;
    width: 500px;
}

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

.phones__title {
    font-size: 45px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 32px;
    max-width: 500px;
}

.phones__text {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    max-width: 550px;
}

.phones__cut {
    max-width: 50%;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.25));
    transform: translateY(10px);
    /* Push down slightly */
}

/* DECODE */

.decode__wrapper {
    overflow: hidden;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 47px 71px;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    box-shadow: 0px 8px 56px -19px rgba(34, 60, 80, 0.11);
    background: #ffffff url("../img/vector-hero.svg") no-repeat center top / cover;
}

.decode__title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-color);
    margin: 0 auto 20px;
    text-align: center;
}

.decode__text {
    font-size: 19px;
    font-weight: 400;
    line-height: 126%;
    color: #515A7B;
    margin: 0 auto 67px;
    max-width: 697px;
    text-align: center;
}

.decode__percent {
    font-size: 60px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -1px;
    background: linear-gradient(135deg,
            rgba(61, 111, 180, 1) 0%,
            rgba(159, 180, 252, 1) 28%,
            rgba(199, 186, 255, 1) 68%,
            rgba(132, 169, 229, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
}

.decode__title_inner1 {
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
    color: #1D264A;
    margin: 0 auto 24px;
    max-width: 172px;
}

.decode__title_inner2 {
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
    color: #1D264A;
    margin: 0 auto 24px;
    max-width: 250px;
}

.decode__title_inner3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 120%;
    color: #1D264A;
    margin: 0 auto 24px;
    max-width: 300px;
}

.decode__desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    color: #8F97B5;
    margin: 0 auto;
    max-width: 353px;
}

.elipse__decode {
    position: absolute;
    left: 0;
    top: 0;
}

.elipse__decode_bottom {
    position: absolute;
    right: 0;
    bottom: 0;
    transform: rotate(180deg);
}

.decode {
    margin-bottom: 120px;
}

.video__authors_btn {
    margin-top: 50px;
}

/* DIFFERENT */

.different {
    margin-bottom: 120px;
}

.diff__title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-color);
    margin: 0 auto 20px;
    text-align: center;
}

.diff__txt {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--secondary-color);
    margin: 0 auto 70px;
    max-width: 600px;
    text-align: center;
}

.diff__horizontal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid rgba(229, 229, 229, 0.6);
    border-radius: 32px;
    box-shadow: 0 10px 50px rgba(34, 60, 80, 0.08);
    margin-bottom: 50px;
    overflow: hidden;
    padding: 0;
}

.draw__horizon-flex {
    padding: 60px;
    flex: 1;
}

.diff_horizont {
    width: 45%;
    object-fit: cover;
    height: 100%;
    min-height: 400px;
    border-left: 1px solid #f0f0f0;
}

.horizontal__title {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.horizontal__txt {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 40px;
    max-width: 600px;
}

.btn__diff {
    margin-right: 24px;
}

.cards__flex-diff {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.first_diff {
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(229, 229, 229, 0.6);
    border-radius: 32px;
    padding: 40px 30px 0;
    height: 600px;
    box-shadow: 0 10px 40px rgba(34, 60, 80, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.first_diff:hover {
    transform: translateY(-8px);
}

.first__title {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.first__text {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: auto;
    /* Push image to bottom */
}

.first__image {
    width: 100%;
    margin-top: 30px;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}

.rotated {
    transform: rotate(-3deg);
    margin-top: 0;
    margin-bottom: 30px;
    width: 90%;
    border-radius: 20px;
}


/* TESTIMONIALS */

.testimonials {
    margin-bottom: 120px;
    text-align: center;
}

.testimonials__title {
    font-size: 40px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.testimonials__txt {
    font-size: 20px;
    color: var(--secondary-color);
    max-width: 700px;
    margin: 0 auto 60px;
}

.reviews-wrapper {
    overflow: hidden;
    /* Hide scrollbar */
    padding: 20px 0;
}

.reviews-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 60s linear infinite;
}

.reviews-track:hover {
    animation-play-state: paused;
}


@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Ensure you have duplicated reviews to make this seamless */
}

.review-card {
    background: #fff;
    border: 1px solid rgba(229, 229, 229, 0.6);
    border-radius: 24px;
    padding: 30px;
    width: 350px;
    text-align: left;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.mark {
    margin-bottom: 20px;
    opacity: 0.2;
}

.stars {
    margin-bottom: 20px;
}

.review {
    font-size: 16px;
    line-height: 1.6;
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 24px;
    height: 100px;
    /* Fixed height for uniformity */
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}

.line {
    height: 1px;
    background: #f0f0f0;
    margin-bottom: 20px;
}

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

.avatar__person {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.name {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}

.charge {
    font-size: 13px;
    color: var(--secondary-color);
}


/* AUTHOR */

.author {
    margin-bottom: 120px;
}

.author__wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 100px;
}

.author__wrapper:nth-child(even) {
    flex-direction: row-reverse;
}

.wrapper__info {
    flex: 1;
}

.author__title {
    font-size: 40px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.author__subtitle {
    font-size: 24px;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.founder-name {
    font-weight: 700;
    color: var(--accent-color);
}

.author_subtitle_2,
.author_subtitle_3 {
    font-size: 18px;
    line-height: 1.7;
    color: var(--secondary-color);
    margin-bottom: 24px;
}

.signature {
    margin-top: 30px;
    height: 60px;
    opacity: 0.8;
}

.diana,
.fabrice-photo {
    width: 450px;
    height: 550px;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 20px 20px 0px rgba(132, 169, 229, 0.2);
    /* Offset background */
}


/* CONTACT */

.contact {
    margin-bottom: 120px;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    background: #fff;
    border-radius: 40px;
    box-shadow: 0 20px 80px rgba(132, 169, 229, 0.15);
    text-align: center;
}

.contact-title {
    font-size: 40px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.contact-desc {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 40px;
}

.form-group {
    text-align: left;
    margin-bottom: 24px;
}

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

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    background: #f9fafe;
    transition: border-color 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--accent-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(119, 81, 234, 0.1);
}

textarea {
    height: 150px;
    resize: none;
}

.phone-input {
    display: flex;
    gap: 10px;
}

#countryCode {
    width: 120px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--accent-color);
}

.check {
    margin: 0;
    font-weight: 400;
    font-size: 15px;
    color: var(--secondary-color);
}

.check a {
    color: var(--accent-color);
    font-weight: 500;
}

.form-btn {
    width: 100%;
    margin-top: 10px;
    font-size: 18px;
}


/* FOOTER */

.footer {
    background: #fff;
    padding: 80px 0 30px;
    border-top: 1px solid #f0f0f0;
}

.discover__flex {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    margin-right: 20px;
    transition: transform 0.3s ease;
}

.discover__flex:hover {
    transform: translateY(-5px);
}

.socials {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.socials a {
    width: 48px;
    height: 48px;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.socials a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.socials a:hover img {
    filter: brightness(0) invert(1);
}


.email_flex {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.email__btn {
    width: 60px;
    height: 60px;
}

.address {
    font-size: 18px;
    font-weight: 500;
}

.line__footer {
    width: 100%;
    height: 1px;
    background: #e5e5e5;
    margin-bottom: 30px;
}

.privacy_wrapper {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.privacy_title {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.privacy_txt {
    font-size: 16px;
    color: var(--secondary-color);
}

.privacy_right {
    text-align: right;
}

.terms {
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.allrights {
    font-size: 14px;
    color: #ccc;
}






/* Float animation for discovery phones */
.double__phones {
    animation: floatSmall 6s ease-in-out infinite;
    transform-origin: center;
}

/* Smaller Float Animation - Symmetrical Rotation */
@keyframes floatSmall {
    0% {
        transform: translateY(0px) rotate(-1deg);
    }

    50% {
        transform: translateY(-7px) rotate(1deg);
    }

    100% {
        transform: translateY(0px) rotate(-1deg);
    }

}

.hero__inner-link {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    /* Ensure it doesn't change text color if any */
}