@font-face {
    font-family: "ES Rebond Grotesque";
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    src: url(https://www.monpetitplacement.fr/static/fonts/ESRebondGrotesque-Medium.woff2) format("woff2");
}

@font-face {
    font-family: "ES Rebond Grotesque";
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    src: url(https://www.monpetitplacement.fr/static/fonts/ESRebondGrotesque-Semibold.woff2) format("woff2");
}

@font-face {
    font-family: "ES Rebond Grotesque";
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    src: url(https://www.monpetitplacement.fr/static/fonts/ESRebondGrotesque-Bold.woff2) format("woff2");
}

@font-face {
    font-family: "ES Rebond Grotesque";
    font-weight: 800;
    font-style: normal;
    font-display: swap;
    src: url(https://www.monpetitplacement.fr/static/fonts/ESRebondGrotesque-Extrabold.woff2) format("woff2");
}

:root {
    --primary: #3ceeb8;
    /* Green button color */
    --primary-hover: #32c99b;
    --accent: #a3e635;
    /* Light green icon color */
    --accent-yellow: #eaff56;
    /* Highlight gradient color */
    --bg-black: #000000;
    --bg-white: #ffffff;
    --bg-gray: #f5f5f5;
    --bg-dark-gray: #1f2937;
    --text-white: #ffffff;
    --text-black: #000000;
    --text-gray: #9ca3af;
    --font-main: 'ES Rebond Grotesque', 'Geist', 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-white);
    color: var(--text-black);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

main {
    display: flex;
    flex-direction: column;
    width: 100%;
}

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

ul {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mb-large {
    margin-bottom: 2rem;
}

.full-width {
    width: 100%;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3.75rem;
    }
}

.section-subtitle {
    color: var(--text-gray);
    max-width: 56rem;
    margin: 0 auto 2rem;
    font-size: 0.875rem;
    line-height: 1.625;
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 1rem;
    }
}

/* Buttons */
.btn-dark {
    background-color: var(--bg-black);
    color: var(--text-white);
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background-color 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Pricing Section Buttons Override */
.pricing-section .btn-dark {
    height: 44px;
    border-radius: 0.5rem;
    padding: 0 1.5rem;
}

.btn-dark:hover {
    background-color: var(--bg-dark-gray);
}

/* Footer CTA Button Override */
.footer-cta .btn-dark {
    border-radius: 8px;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
}

.btn-light {
    background-color: #f3f4f6;
    color: var(--text-black);
    height: 44px;
    border-radius: 0.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.btn-light:hover {
    background-color: #e5e7eb;
}

.lang-btn {
    --btn-height: 48px;
    --btn-radius: 12px;
    --btn-padding: 20px;
    --btn-font: 16px;

    font-family: 'ES Rebond Grotesque', 'Satoshi', sans-serif;
    font-size: var(--btn-font);
    font-weight: 700;
    color: #000000;
    padding: 0 var(--btn-padding);
    height: var(--btn-height);
    border-radius: var(--btn-radius);
    border: 1px solid #e5e7eb;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    cursor: pointer;
}

.lang-btn:hover {
    background-color: #f9fafb;
}

.lang-btn span {
    display: none;
}

@media (min-width: 640px) {
    .lang-btn span {
        display: inline;
    }
}

.contact-btn {
    --btn-height: 48px;
    --btn-radius: 12px;
    --btn-padding: 16px;
    --btn-font: 16px;
    --btn-line-height: calc(var(--btn-font) + 2px);
    --btn-padding-top: calc((var(--btn-height) - var(--btn-line-height)) / 2);

    display: none;
    background-color: #98f576;
    color: #000000;

    line-height: var(--btn-line-height);
    height: var(--btn-height);
    padding: 0 8px 0 16px;
    border-radius: var(--btn-radius);
    max-width: 100%;

    font-size: var(--btn-font);
    font-family: 'ES Rebond Grotesque', 'Satoshi', sans-serif;
    font-weight: 700;
    text-align: center;

    border: none;
    align-items: center;
    gap: 16px;
    transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out, transform 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
    text-decoration: none;
    cursor: pointer;
}

@media (min-width: 768px) {
    .contact-btn {
        display: flex;
    }
}

.icon-arrow {
    background-color: black;
    color: #98f576;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.icon-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.25s ease-in-out;
    z-index: 0;
}

.icon-arrow svg {
    position: relative;
    z-index: 1;
    transition: color 0.25s ease-in-out;
}

.contact-btn:hover {
    background-color: black;
    color: white;
}

.contact-btn:hover .icon-arrow::before {
    transform: translate(-50%, -50%) scale(1);
}

.contact-btn:hover .icon-arrow svg {
    color: black;
}

/* Hero Section */
.hero-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background-color: var(--bg-black);
    padding-bottom: 2rem;
}

.navigation_Component__mMYQC {
    position: fixed;
    top: 24px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: calc(100% - 48px);
    max-width: 1310px;
    z-index: 100;
    background-color: #ffffff;
    border-radius: 20px;
    height: 80px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    box-shadow: none;
    transition: none;
}



@media (min-width: 768px) {
    .navigation_Component__mMYQC {
        top: 40px;
        padding: 0 32px;
    }
}

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

.navigation_Logo__d9Oha {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navigation_Hmbg__p4qfF {
    display: block;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    margin-right: 0;
    transform: translateX(100px);
}

.navigation_Hmbg__p4qfF span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: black;
    margin-bottom: 5px;
}

@media (min-width: 1024px) {
    .navigation_Hmbg__p4qfF {
        display: none;
    }
}

.navigation_Nav__XHAgJ {
    height: 100%;
}

.navigation_Menu__Q51RC {
    display: none;
}

@media (max-width: 1023px) {
    .navigation_Component__mMYQC {
        z-index: 10001;
        /* Keep header on top of menu overlay */
        transition: transform 0.3s ease-in-out, border-radius 0.3s ease;
    }

    .navigation_Component__mMYQC.scroll-down {
        transform: translateY(-150%);
    }

    .navigation_Component__mMYQC.scroll-up {
        transform: translateY(0);
    }
    .navigation_Component__mMYQC:has(.navigation_Menu__Q51RC.active) {
        transform: none !important;
    }


    .navigation_Logo__d9Oha,
    .navigation_Hmbg__p4qfF {
        position: relative;
        z-index: 10002;
    }

    .navigation_Menu__Q51RC {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100dvh;
        background: white;
        border-radius: 0;
        padding: 120px 24px 24px;
        /* 120px padding to clear the stationary 104px header area */
        gap: 0;
        box-shadow: none;
        z-index: 10000;
        margin-top: 0;

        /* Full screen slide in from right */
        transform: translateX(100%);
        visibility: hidden;
        opacity: 0;
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1), visibility 0s 0.4s, opacity 0.4s;
        pointer-events: none;
    }

    .navigation_Menu__Q51RC.active {
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1), visibility 0s 0s, opacity 0.4s;
        pointer-events: auto;
    }

    .navigation_Links__yzlXe {
        flex-direction: column;
        align-items: flex-start;
        position: static;
        transform: none;
        width: 100%;
        gap: 0;
        height: auto;
        left: auto;
        padding-left: 20px;
    }

    .NavbarLink_Component__5kXOe {
        width: 100%;
        height: auto;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    }

    .NavbarLink_Component__5kXOe:last-child {
        border-bottom: none !important;
    }

    .NavbarLink_Main__vIu_m {
        line-height: 0.9 !important;
        font-family: 'ES Rebond Grotesque', 'Satoshi', sans-serif !important;
        font-size: 20px !important;
        font-weight: 700 !important;
        color: #000;
        padding: 18px 0 !important;
        width: 100%;
        border-bottom: none !important;
        display: block;
        letter-spacing: -0.02em;
    }

    .navigation_Ctas__DqjJV {
        display: flex;
        flex-direction: row;
        align-items: stretch !important;
        justify-content: space-between;
        gap: 12px;
        width: 100%;
        margin-top: auto;
        /* Push to absolute bottom */
        padding-top: 24px;
        margin-bottom: 20px;
        transform: none !important;
        height: 56px;
    }

    .navigation_Ctas__DqjJV .lang-btn {
        flex: 1;
        display: flex !important;
        align-items: center;
        justify-content: center;
        border: 1px solid #e5e7eb !important;
        background: #ffffff;
        color: #000;
        border-radius: 16px;
        font-weight: 700;
        width: 100%;
        box-sizing: border-box !important;
        padding: 0 !important;
        margin: 0 !important;
        line-height: 1 !important;
    }

    .navigation_Ctas__DqjJV .contact-btn {
        flex: 1;
        display: flex !important;
        align-items: center;
        justify-content: center;
        border: 1px solid transparent !important;
        background: #98f576;
        /* Green accent */
        color: #000;
        border-radius: 16px;
        font-weight: 700;
        width: 100%;
        box-sizing: border-box !important;
        padding: 0 16px !important;
        margin: 0 !important;
        line-height: 1 !important;
    }

    .navigation_Ctas__DqjJV .contact-btn .icon-arrow {
        background: #000;
        color: #98f576;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 8px;
    }

    .navigation_Ctas__DqjJV .contact-btn .icon-arrow svg {
        width: 14px;
        height: 14px;
    }

    .navigation_Hmbg__p4qfF.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .navigation_Hmbg__p4qfF.active span:nth-child(2) {
        opacity: 0;
    }

    .navigation_Hmbg__p4qfF.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .navigation_Hmbg__p4qfF span {
        transition: all 0.3s ease;
    }
}

@media (min-width: 1024px) {
    .navigation_Menu__Q51RC {
        display: flex;
        align-items: center;
        height: 100%;
    }
    .navigation_Links__yzlXe {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 32px;
        height: 100%;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .NavbarLink_Component__5kXOe {
        height: 100%;
        display: flex;
        align-items: center;
    }

    .NavbarLink_Main__vIu_m {
        font-family: 'Satoshi', sans-serif;
        font-size: 16px;
        font-weight: 500;
        color: rgb(0, 0, 0);
        line-height: 80px;
        text-decoration: none;
        transition: opacity 0.3s;
    }

    .NavbarLink_Main__vIu_m:hover {
        opacity: 0.7;
    }
}

/* Mega Menu Styles */
.has-dropdown {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    transform: translateY(10px);
    background: #f4f5f6;
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    pointer-events: none;
    z-index: 1000;
}

.has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -50px;
    width: 200px;
    height: 60px;
    /* Large invisible bridge so hover doesn't break when moving mouse down */
}

@media (max-width: 767px) {
    .navigation_Component__mMYQC {
        top: 20px;
        width: calc(100% - 32px);
        padding: 0 16px;
    }
}

.navigation_Component__mMYQC:has(.has-dropdown:hover) .mega-menu,
.mega-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(8px);
    pointer-events: auto;
}

@media (max-width: 1023px) {
    .mega-menu {
        display: none !important;
    }
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.mega-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    background: transparent;
    border-radius: 12px;
    padding: 16px;
    transition: background 0.25s ease;
}

.mega-menu-item:not(:last-child) {
    border-right: 1px solid #e2e8f0;
    border-radius: 0;
}

.mega-menu-item:hover {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.mega-menu-item img {
    width: auto;
    height: 80px;
    object-fit: contain;
    margin-bottom: 16px;
}

.mega-menu-item span {
    font-size: 15px;
    color: #4b5563;
    font-weight: 500;
    font-family: 'Satoshi', sans-serif;
}

.navigation_Ctas__DqjJV {
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(15px);
}

.videos-section {
    padding: 5rem 0;
    background-color: var(--bg-white);
    color: var(--text-black);
}

.arrow-circle-dark {
    background-color: var(--bg-black);
    color: var(--text-white);
    border-radius: 9999px;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container {
    width: 100%;
    height: 60vh;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .hero-image-container {
        height: 85vh;
        padding: 1rem;
    }
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero-image-wrapper {
        border-radius: 3rem;
    }
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75);
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero-text-wrapper {
    width: 90vw;
    max-width: 72rem;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .hero-text-wrapper {
        padding: 0 1.5rem;
    }
}

.hero-text-wrapper h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 0.95;
    margin-bottom: 1rem;
    color: var(--text-white);
    max-width: 56rem;
    letter-spacing: -0.05em;
}

@media (min-width: 640px) {
    .hero-text-wrapper h1 {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .hero-text-wrapper h1 {
        font-size: 4.5rem;
        margin-bottom: 2rem;
    }
}

.hero-text-wrapper p {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    max-width: 36rem;
    line-height: 1.375;
    color: var(--text-white);
}

@media (min-width: 768px) {
    .hero-text-wrapper p {
        font-size: 1.5rem;
        margin-bottom: 2.5rem;
    }
}

.shop-now-btn {
    --btn-height: 48px;
    --btn-radius: 12px;
    --btn-padding: 16px;
    --btn-font: 16px;
    --btn-line-height: calc(var(--btn-font) + 2px);
    --btn-padding-top: calc((var(--btn-height) - var(--btn-line-height)) / 2);

    background-color: #98f576;
    color: #000000;
    text-decoration: none;

    line-height: var(--btn-line-height);
    height: var(--btn-height);
    padding: 0 8px 0 16px;
    border-radius: var(--btn-radius);
    display: inline-flex;
    align-items: center;
    gap: 16px;

    font-size: var(--btn-font);
    font-family: 'ES Rebond Grotesque', 'Satoshi', sans-serif;
    font-weight: 700;
    transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out, transform 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
    width: fit-content;
    cursor: pointer;
}

@media (min-width: 768px) {
    .shop-now-btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

.shop-now-btn:hover {
    background-color: black;
    color: white;
}

.shop-now-btn:hover .icon-arrow::before {
    transform: translate(-50%, -50%) scale(1);
}

.shop-now-btn:hover .icon-arrow svg {
    color: black;
}

/* Partners */
.partners-container {
    width: 100%;
    padding: 2rem 1rem;
    max-width: 64rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .partners-container {
        padding: 3rem 1rem;
    }
}

.partners-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

@media (min-width: 768px) {
    .partners-logos {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 7rem;
    }
}

.partners-logos img {
    width: 160px;
    height: auto;
    max-height: 65px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.partners-logos img:hover {
    opacity: 1;
}

.partners-disclaimer {
    color: #6b7280;
    font-size: 0.75rem;
    text-align: center;
    padding: 0 1rem;
}

/* Videos Section */
.videos-section {
    background-color: var(--bg-white);
    color: var(--text-black);
    padding: 6rem 0 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .videos-section {
        padding: 9rem 0 8rem;
    }
}

.section-container {
    width: 100%;
    max-width: 80rem;
    padding: 0 1rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.subsection-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
}

@media (min-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.video-card {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
}

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

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

.video-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.video-card:hover .video-overlay {
    background-color: rgba(0, 0, 0, 0.3);
}

.play-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    backdrop-filter: blur(4px);
}

.video-overlay span {
    color: white;
    font-weight: 500;
    font-size: 0.875rem;
}

/* MPP Features Section */
.mpp-features-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 20px 40px;
}

.mpp-features-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.mpp-features-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mpp-features-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 100%);
}

.mpp-features-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

.mpp-features-header {
    text-align: center;
    color: white;
    margin-bottom: 60px;
}

.mpp-features-header h2 {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'ES Rebond Grotesque', 'Satoshi', sans-serif;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .mpp-features-header h2 {
        font-size: 4rem;
    }
}

.mpp-features-header p {
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
}

.mpp-cards-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    align-items: flex-end;
}

@media (min-width: 1024px) {
    .mpp-cards-container {
        flex-direction: row;
        justify-content: center;
        align-items: flex-end;
        gap: 24px;
    }
}

.mpp-card {
    background-color: white;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    color: black;
    width: 100%;
    transition: transform 0.25s ease-in-out;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.mpp-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #98f576;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.25s ease-in-out;
    z-index: 0;
}

.mpp-card:hover::before {
    transform: scaleY(1);
}

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

.mpp-card-text,
.mpp-card-btn {
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .mpp-card {
        width: 320px;
    }
}

.mpp-card-small {
    height: 380px;
}

.mpp-card-large {
    height: 480px;
}

.mpp-card h3 {
    font-family: 'ES Rebond Grotesque', 'Satoshi', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
    line-height: 1.1;
}

.mpp-card p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.5;
    transition: color 0.25s ease-in-out;
}

.mpp-card:hover p {
    color: #000000;
}

.mpp-card-extra {
    margin-top: 8px;
}

.mpp-card-btn {
    background-color: black;
    color: white;
    border-radius: 12px;
    padding: 8px 12px 8px 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 0.875rem;
    width: fit-content;
    border: none;
    cursor: pointer;
    transition: background-color 0.25s ease-in-out, color 0.25s ease-in-out, transform 0.25s ease;
}

.mpp-icon-circle {
    background-color: #98f576;
    color: black;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.mpp-icon-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background-color: #000000;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 0;
}

.mpp-icon-circle svg {
    position: relative;
    z-index: 1;
    transition: color 0.25s ease-in-out;
}

.mpp-card:hover .mpp-card-btn {
    background-color: #ffffff;
    color: #000000;
}

.mpp-card:hover .mpp-icon-circle::before {
    transform: translate(-50%, -50%) scale(1);
}

.mpp-card:hover .mpp-icon-circle svg {
    color: #ffffff;
}

/* Content Reveal */
.mpp-card-reveal {
    opacity: 0;
    max-height: 0;
    transform: translateY(20px);
    transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out, max-height 0.25s ease-in-out, margin-top 0.25s ease-in-out;
    margin-top: 0;
}

.mpp-card-reveal p {
    font-size: 0.875rem !important;
    line-height: 1.4;
    margin-top: 8px;
}

.mpp-card:hover .mpp-card-reveal {
    opacity: 1;
    max-height: 150px;
    transform: translateY(0);
    margin-top: 16px;
}

.mpp-pill {
    display: inline-block;
    background-color: white;
    color: black;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.mpp-features-disclaimer {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    margin-top: 40px;
    text-align: center;
}

/* Connected Section */
.connected-section {
    background-color: white;
    color: black;
    padding-top: 5rem;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .connected-section {
        padding-top: 7rem;
    }
}

.interactive-image-container {
    width: 100%;
    height: 100vh;
    position: relative;
    margin-top: 3rem;
}

.interactive-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 3rem;
}

.dot-wrapper {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.pulse-dot {
    width: 2rem;
    height: 2rem;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(163, 230, 53, 0.6);
    animation: pulse 2s infinite;
    transition: transform 0.3s;
}

.pulse-dot:hover {
    transform: scale(1.1);
}

.pulse-dot::after {
    content: '';
    width: 0.75rem;
    height: 0.75rem;
    background-color: white;
    border-radius: 50%;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(163, 230, 53, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(163, 230, 53, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(163, 230, 53, 0);
    }
}

/* Tooltip Card */
.tooltip-card {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(0.5rem);
    margin-bottom: 1rem;
    width: 16rem;
    background-color: white;
    border-radius: 0.75rem;
    padding: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    z-index: 50;
    cursor: default;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.tooltip-card.active {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.tooltip-close {
    position: absolute;
    top: -0.5rem;
    right: -0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    background-color: black;
    color: white;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    z-index: 10;
    transition: background-color 0.3s;
}

.tooltip-close:hover {
    background-color: #1f2937;
}

.tooltip-content {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.tooltip-img-wrapper {
    width: 4.5rem;
    height: 4.5rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.tooltip-img-wrapper img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.25rem;
    image-rendering: -webkit-optimize-contrast;
    transform: translateZ(0);
}

.tooltip-text {
    text-align: left;
}

.tooltip-text h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: black;
}

.tooltip-text h4 a {
    color: inherit;
    text-decoration: none;
    transition: text-decoration 0.3s;
}

.tooltip-text h4 a:hover {
    text-decoration: underline;
}

.tooltip-text p {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.25;
}

.tooltip-arrow {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: white;
}

/* Pricing Section */
.pricing-section {
    background-color: #f9fafb;
    color: black;
    padding: 2.5rem 0;
}

@media (min-width: 768px) {
    .pricing-section {
        padding: 4rem 0;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 80rem;
    margin: 0 auto;
    padding: 2rem 0 3rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.price-card {
    background-color: white;
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
}

.price-title {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.amount-detail {
    font-size: 0.75rem;
    color: #6b7280;
    max-width: 100px;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.price-features {
    margin-top: 1rem;
}

.features-label {
    color: #9ca3af;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.price-features ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-features li {
    font-size: 0.875rem;
    font-weight: 700;
}

.price-card-highlight-wrapper {
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .price-card-highlight-wrapper {
        margin-top: -2rem;
    }
}

.price-card-highlight {
    background: linear-gradient(to bottom, var(--primary), var(--accent-yellow));
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.popular-badge {
    background-color: var(--primary);
    color: black;
    text-align: center;
    padding: 0.5rem 0;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.highlight-inner {
    background-color: white;
    margin: 0 6px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.discount-banner {
    background-color: var(--accent-yellow);
    padding: 0.75rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 700;
}

/* Shop Section */
.shop-section {
    background-color: white;
    color: black;
    padding: 2.5rem 0;
}

@media (min-width: 768px) {
    .shop-section {
        padding: 4rem 0;
    }
}

.shop-badge {
    background-color: black;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .shop-badge {
        margin-bottom: 1.5rem;
    }
}

.shop-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.shop-card {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    min-height: 550px;
}

@media (min-width: 768px) {
    .shop-card {
        border-radius: 2.5rem;
        min-height: 700px;
    }
}

.shop-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-card-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
    text-align: center;
}

.shop-card-content h3 {
    font-size: 2.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.1;
    text-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.shop-card-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.shop-link {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.shop-link:hover {
    background-color: white;
    color: black;
}

/* Footer */
.footer {
    background-color: #f2f2f2;
    padding: 2.5rem 1rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 768px) {
    .footer {
        padding-top: 5rem;
    }
}

.footer-cta {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 48rem;
    padding: 0 0.5rem;
}

@media (min-width: 768px) {
    .footer-cta {
        margin-bottom: 4rem;
    }
}

.footer-cta h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: black;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .footer-cta h2 {
        font-size: 3rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 1024px) {
    .footer-cta h2 {
        font-size: 3.75rem;
    }
}

.footer-cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-cta-buttons p {
    font-size: 0.75rem;
    color: #6b7280;
}

.footer-main {
    width: 100%;
    max-width: 87.5rem;
    background-color: black;
    color: white;
    border-radius: 1rem;
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .footer-main {
        border-radius: 3rem;
        padding: 4rem;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(12, 1fr);
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .footer-brand {
        grid-column: span 3;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo span {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.footer-links {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .footer-links {
        grid-column: span 2;
    }
}

.footer-links h3,
.footer-security h3 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-links a {
    transition: color 0.3s;
}

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

.footer-security {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .footer-security {
        grid-column: span 3;
    }
}

.footer-security p {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    line-height: 1.625;
}

.partners-mini {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.partner-badge {
    height: 2rem;
    width: 5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
}

.security-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #9ca3af;
    font-size: 0.75rem;
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-social {
        flex-direction: row;
        justify-content: space-between;
    }
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    background-color: white;
    color: black;
    padding: 0.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: #e5e7eb;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 3rem;
    font-size: 0.625rem;
    color: #6b7280;
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.legal-links a:hover {
    color: white;
    text-decoration: underline;
}