@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');


/* ===== RESET & VARIABLES ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #4318cd;
    --primary-purple-hover: #3613a8;
    --primary-pink: #E226B2;
    --dark-bg: #12103E;
    --darker-bg: #0C0A24;
    --mint-green: #7bebb8;
    --lime-yellow: #FFE600;
    --orange-badge: #FF7A00;
    --white: #ffffff;
    --light-bg: #F8FAFC;
    --text-dark: #0F172A;
    --text-gray: #454F5E;
    --gradient-hero: linear-gradient(135deg, #0b0922 0%, #12103E 50%, #0c0a24 100%);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes morphBlob {

    0%,
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    25% {
        border-radius: 50% 50% 40% 60% / 40% 60% 50% 50%;
    }

    50% {
        border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
    }

    75% {
        border-radius: 55% 45% 60% 40% / 45% 55% 40% 60%;
    }
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== ANNOUNCEMENT BAR ===== */

.announcement-bar {
    background: #4403D0;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
    z-index: 999;
    padding-right: 120px;
}

/* LIMITED AREA */
.announcement-slider {
    width: 50px;
    /* Adjust this */
    max-width: 58%;
    overflow: hidden;
    white-space: nowrap;
    margin-left: 140px;
}

.announcement-slider {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
}

.announcement-track {
    display: inline-flex;
    align-items: center;
    gap: 80px;
    animation: ticker 55s linear infinite;
    white-space: nowrap;
}

.announcement-track span {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    flex-shrink: 0;
}

.announcement-btn {
    background: #70F4B7;
    font-family: "Poppins";
    color: #030303;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    padding: 4px 12px;
    border-radius: 6px;
    margin-right: 20px;
    flex-shrink: 0;
    transition: 0.3s;
    letter-spacing: 1px;
}

.announcement-btn:hover {
    transform: translateY(-2px);
}

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

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

/* ===== Large Tablets ===== */
@media (max-width: 1024px) {
    
    .announcement-slider {
    flex: 1;
    width: auto;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    margin-left: 0;
    min-width: 0;
}
    .announcement-bar {
        padding: 0 16px;
        gap: 16px;
        height:auto !important;
        flex-direction: row !important;
    }

    .announcement-track {
        gap: 60px;
        animation-duration: 45s;
    }

    .announcement-track span {
        font-size: 0.8rem;
    }

    .why-title {
        font-size: 1.8rem;
    }
}

/* ===== Tablets ===== */
@media (max-width: 768px) {
    .announcement-bar {
        padding: 0 12px;
        gap: 12px;
        min-height: 48px;
    }

    .announcement-track {
        gap: 40px;
        animation-duration: 35s;
    }

    .announcement-track span {
        font-size: 0.75rem;
    }

    .announcement-btn {
        font-size: 0.75rem;
        padding: 7px 14px;
        font-style:"Poppins, sans-serif" !important;
    }

    .why-card h3 {
        font-size: 1.5rem;
    }

    .why-badge {
        font-size: 1.25rem;
    }
}

/* ===== Mobile ===== */
@media (max-width: 576px) {
    .announcement-bar {
        padding: 20px 20px;
        gap: 10px;
    }

    .announcement-track {
        gap: 30px;
        animation-duration: 25s;
    }

    .announcement-track span {
        font-size: 0.7rem;
    }

    .announcement-btn {
        font-size: 0.7rem;
        padding: 6px 12px;
        border-radius: 4px;
        font-style:"Poppins, sans-serif" !important;
    }
}

/* ===== Small Mobile ===== */
@media (max-width: 420px) {
    .announcement-track span {
        font-size: 0.625rem;
    }

    .announcement-btn {
        font-size: 0.625rem;
        padding: 5px 10px;
        font-style:"Poppins, sans-serif" !important;
    }
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 8px 130px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    cursor: pointer;
}

.nav-logo .blo {
    color: var(--primary-purple);
}

.nav-logo .miro {
    color: var(--primary-pink);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-dark);
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-purple);
}

.nav-cta {
    background: #4318CD !important;
    color: var(--white) !important;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 400 !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
}

@media (max-width: 1024px) {
    .nav-cta {
        display: none !important;
    }
}

.nav-cta:hover {
    background: var(--primary-purple-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 38, 226, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    background-color: #22283A;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 30px 160px;
    min-height: 95vh;
}

.hero-img-grid {
    position: absolute;
    left: -374px;
    top: -15%;
    width: 560px;
    height: 560px;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.95;
}

.hero-img-blob-left {
    position: absolute;
    left: -722px;
    bottom: -413px;
    width: 1000px;
    height: 1000px;
    z-index: 999;
    pointer-events: none;
}

.hero-img-blob-right {
    position: absolute;
    right: -508px;
    top: -603px;
    width: 1000px;
    height: 1000px;
    z-index: 1;
    pointer-events: none;
    transform: scaleX(-1) rotate(60deg);
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 850px;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 600;
    color: #C9DF21;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.28;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out 0.15s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 56px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 0.8s ease-out 0.45s both;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-purple);
    color: var(--white);
    padding: 19px 48px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(76, 38, 226, 0.2);
}

.btn-primary:hover {
    background: var(--primary-purple-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 38, 226, 0.4);
}

/* ===== GUARANTEE SECTION ===== */
.guarantee {
    background: var(--white);
    position: relative;
    z-index: 10;
    margin-top: 100px;
}

.guarantee-container {
    width: 80%;
    max-width: 2200px;
    margin: -60px auto 0;
    padding: 0;
}

.guarantee-card {
    background: #22283A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 56px 60px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.guarantee-left {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 56px;
}

.guarantee-title {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 12px;
}

.guarantee-word {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 5px;
    display: block;
}

.guarantee-right h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.guarantee-right p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
    max-width: 48ch;
}

/* BIG SCREENS */
@media (min-width: 1920px) {

    .guarantee-container {
        max-width: 95%;
        margin-top: -80px;
    }

    .guarantee-card {
        padding: 72px 90px;
        gap: 72px;
        border-radius: 28px;
    }

    .guarantee-title {
        font-size: 2.6rem;
    }

    .guarantee-word {
        font-size: 1.05rem;
        letter-spacing: 6px;
    }

    .guarantee-right h3 {
        font-size: 1.4rem;
    }

    .guarantee-right p {
        font-size: 1.1rem;
        line-height: 1.7;
    }
}

/* 2K / 4K */
@media (min-width: 2560px) {

    .guarantee-container {
        max-width: 96%;
    }

    .guarantee-card {
        padding: 88px 110px;
        gap: 88px;
        border-radius: 32px;
    }

    .guarantee-title {
        font-size: 2.9rem;
    }

    .guarantee-word {
        font-size: 1.15rem;
        letter-spacing: 7px;
    }

    .guarantee-right h3 {
        font-size: 1.55rem;
    }

    .guarantee-right p {
        font-size: 1.2rem;
        line-height: 1.75;
        max-width: 52ch;
    }

    .why-title {
        font-size: 1.5rem;
    }

    .why-card h3 {
        font-size: 2.25rem;
    }

    .why-badge {
        font-size: 2.25rem;
    }
}


/* ===== WHY BLOMIRO SECTION ===== */
.why-blomiro {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.why-bg-grid-left {
    position: absolute;
    left: -330px;
    top: 20%;
    width: 510px;
    height: 517px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.9;
}

.why-bg-grid-right {
    position: absolute;
    right: -303px;
    top: -4%;
    width: 510px;
    height: 517px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.9;
}

.why-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.35;
    max-width: 950px;
    margin: 0 auto 70px;
    letter-spacing: -0.5px;
}

.why-title span.purple {
    color: var(--primary-purple);
    font-weight: 700;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1050px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-card-wrapper {
    position: relative;
}

.why-card {
    background: var(--white);
    border-radius: 24px;
    padding: 20px 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.why-badge {
    background: linear-gradient(180deg, #FCFA05 0%, #FCFA05 100%);
    color: var(--text-dark);
    font-family: var(--font-heading);
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 1.9rem;
    font-weight: 700;
    align-self: flex-start;
    box-shadow: 0 4px 10px rgba(255, 230, 0, 0.15);
    align-self: center;
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: -5px;
    letter-spacing: -0.5px;
    align-self: center;
}

.why-card p {
    font-size: 1.125rem;
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 5px;
}

.why-card p strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* Browser Mockup Styling */
.builder-mockup {
    background: #ffffff;
    border: 1.5px solid #E2E8F0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 280px;
    margin-top: 10px;
}

/* Mockup Corner Handles */
.mockup-corner-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ffffff;
    border: 1.5px solid #A8B2C1;
    border-radius: 50%;
    z-index: 10;
}

.node-tl {
    top: -4px;
    left: -4px;
}

.node-tr {
    top: -4px;
    right: -4px;
}

.node-bl {
    bottom: -4px;
    left: -4px;
}

.node-br {
    bottom: -4px;
    right: -4px;
}

.mockup-emojis {
    position: absolute;
    top: -22px;
    left: 45px;
    font-size: 1.8rem;
    z-index: 10;
}

.mockup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1.5px solid #F1F5F9;
    padding: 12px 20px;
}

.mockup-logo {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    color: #1E293B;
    display: flex;
    align-items: center;
    gap: 5px;
}

.mockup-logo svg {
    color: #475569;
}

.mockup-nav {
    display: flex;
    gap: 12px;
    font-size: 0.65rem;
    font-weight: 600;
    color: #94A3B8;
}

.mockup-canvas {
    flex-grow: 1;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.canvas-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

.canvas-left h4 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.15;
    color: #1E293B;
    letter-spacing: -0.5px;
}

.canvas-left h4.disabled {
    color: #CBD5E1;
}

.canvas-btn {
    background: #000000;
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 4px;
    align-self: flex-start;
}

.canvas-btn.disabled {
    background: #E2E8F0;
    color: #94A3B8;
}

.canvas-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.shapes-box {
    width: 175px;
    height: 115px;
    position: relative;
    border-radius: 8px;
    background: rgba(216, 180, 254, 0.08);
    border: 1.5px solid #E9D5FF;
}

.shapes-box.disabled {
    background: rgba(241, 245, 249, 0.5);
    border-color: #E2E8F0;
}

.shapes-box-handle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #ffffff;
    border: 1px solid #A855F7;
    border-radius: 1px;
}

.shapes-box.disabled .shapes-box-handle {
    border-color: #CBD5E1;
}

.sh-tl {
    top: -3px;
    left: -3px;
}

.sh-tr {
    top: -3px;
    right: -3px;
}

.sh-bl {
    bottom: -3px;
    left: -3px;
}

.sh-br {
    bottom: -3px;
    right: -3px;
}

.shape-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #E58254;
    position: absolute;
    top: 15px;
    left: 45px;
    z-index: 1;
}

.shape-circle.disabled {
    background: #CBD5E1;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 40px solid #6366F1;
    position: absolute;
    bottom: 12px;
    left: 15px;
    z-index: 2;
}

.shape-triangle.disabled {
    border-bottom-color: #CBD5E1;
}

.shape-square {
    width: 36px;
    height: 36px;
    background: #D9AF3E;
    border-radius: 3px;
    position: absolute;
    bottom: 15px;
    right: 22px;
    z-index: 2;
}

.shape-square.disabled {
    background: #CBD5E1;
}

.mockup-cursor {
    position: absolute;
    bottom: -10px;
    right: -10px;
    color: #4B5563;
    z-index: 15;
    pointer-events: none;
}

.mockup-cursor.disabled {
    color: #9CA3AF;
}

.mockup-pill-btn {
    position: absolute;
    bottom: 15px;
    left: 15px;
    border: 1.5px solid #E9D5FF;
    background: #FAF5FF;
    color: #A855F7;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
}

.mockup-pill-btn.disabled {
    border-color: #E5E7EB;
    background: #F9FAFB;
    color: #9CA3AF;
}

.price-tag-floating {
    position: absolute;
    bottom: 10px;
    right: -10px;
    background: #000000;
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 800;
    padding: 8px 14px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
}

.price-tag-floating span.yellow-arrow {
    color: #FFE600;
}

/* ===== BONNE NOUVELLE SECTION ===== */
.bonne-nouvelle {
    background: var(--white);
    text-align: center;
    padding-bottom: 50px;
}

.bonne-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.bonne-logo {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 25px;
    display: inline-block;
}

.bonne-logo .blo {
    color: var(--primary-purple);
}

.bonne-logo .miro {
    color: var(--primary-pink);
}

.bonne-subtitle {
    font-size: 1.125rem;
    color: black;
    max-width: 800px;
    margin: 0 auto 35px;
    line-height: 1.6;
}

/* ===== MARQUEE RIBBON ===== */

.marquee-section {
    background: #FCFCE9;
    padding: 68px 0;
    padding-top: 150px !important;
    overflow: hidden;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    z-index: 5;
    border-top: 1px solid rgba(0, 0, 0, 0.02);
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
}

/* Edge fade effect */

.marquee-section::before,
.marquee-section::after {
    content: "";
    position: absolute;
    top: 0;
    width: 180px;
    height: 100%;
    z-index: 20;
    pointer-events: none;
}

.marquee-section::before {
    left: 0;
    background: linear-gradient(to right,
            #FCFCE9 0%,
            rgba(252, 252, 233, 0.95) 30%,
            rgba(252, 252, 233, 0) 100%);
}

.marquee-section::after {
    right: 0;
    background: linear-gradient(to left,
            #FCFCE9 0%,
            rgba(252, 252, 233, 0.95) 30%,
            rgba(252, 252, 233, 0) 100%);
}

.marquee-container {
    display: flex;
    width: max-content;
    animation: marquee 100s linear infinite;
}

.marquee-group {
    display: flex;
    align-items: center;
    gap: 42px;
    padding-right: 42px;
}

.marquee-pill {
    background: #ffffff;
    padding: 16px 24px !important;
    border-radius: 16px;
    display: flex;
    align-items: center;
    white-space: nowrap;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.04),
        0 2px 6px rgba(0, 0, 0, 0.03);

    font-size: 1rem;
    color: #0F172A;
    font-family: var(--font-heading);
    font-weight: 500;

    transition: all 0.35s ease;
    will-change: transform;
}

.marquee-pill svg.pill-icon {
    width: 11px;
    height: 11px;
    fill: #0F172A;
    flex-shrink: 0;
    margin-right: 8px;
}

.marquee-pill .pill-flag {
    font-size: 1.1rem;
    line-height: 1;
    margin-right: 8px;
}

.marquee-pill .text-regular {
    color: #7A869A;
    font-weight: 500;
}

.marquee-pill .text-bold {
    color: #0F172A;
    font-weight: 800;
    margin-left: 5px;
}

/* Organic card angles */

.marquee-pill.p-1 {
    transform: rotate(-6deg) translateY(18px);
}

.marquee-pill.p-2 {
    transform: rotate(4deg) translateY(-18px);
}

.marquee-pill.p-3 {
    transform: rotate(-5deg) translateY(14px);
}

.marquee-pill.p-4 {
    transform: rotate(5deg) translateY(-12px);
}

.marquee-pill.p-5 {
    transform: rotate(-7deg) translateY(20px);
}

.marquee-pill.p-6 {
    transform: rotate(4deg) translateY(-20px);
}

.marquee-pill:hover {
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow:
        0 18px 35px rgba(0, 0, 0, 0.08),
        0 8px 15px rgba(0, 0, 0, 0.05);
    z-index: 25;
}

/* Infinite marquee */

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

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

/* Tablet */

@media (max-width: 991px) {

    .marquee-section {
        padding: 50px 0;
    }

    .marquee-group {
        gap: 28px;
    }

    .marquee-pill {
        font-size: 0.9rem;
        padding: 12px 22px;
    }
}

/* Mobile */

@media (max-width: 767px) {

    .marquee-section {
        padding: 40px 0;
    }

    .marquee-section::before,
    .marquee-section::after {
        width: 70px;
    }

    .marquee-group {
        gap: 20px;
        padding-right: 20px;
    }

    .marquee-pill {
        padding: 10px 18px;
        font-size: 0.85rem;
        border-radius: 12px;
    }

    .marquee-pill.p-1,
    .marquee-pill.p-2,
    .marquee-pill.p-3,
    .marquee-pill.p-4,
    .marquee-pill.p-5,
    .marquee-pill.p-6 {
        transform: rotate(-3deg);
    }
}

.splide__list {
    flex-direction: row-reverse;
}

/* ===== PORTFOLIO SECTION ===== */


/* ==========================
   PORTFOLIO SLICK SLIDER
========================== */

.autoplay {
    width: 100%;
}

.autoplay .slick-list {
    overflow: hidden;
    margin: 0 -15px;
}

.autoplay .slick-track {
    display: flex;
    align-items: center;
}

.autoplay .slick-slide {
    margin: 0 15px;
    height: auto;
}

.autoplay .slick-slide > div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.autoplay img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hide arrows */
.slick-prev,
.slick-next {
    display: none !important;
}

/* Hide dots */
.slick-dots {
    display: none !important;
}


.portfolio {
    padding: 90px 0;
    background: #F8FAFC;
    padding-bottom: 180px !important;
}


/* Tablet */
@media (max-width: 992px) {
    .portfolio-title {
        font-size: 2.1rem;
        margin-bottom: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
}

/* Small Mobile */
@media (max-width: 480px) {

    .why-title {
        font-size: 1rem;
    }
}

.portfolio-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* ===== PORTFOLIO SECTION (SLIDER OVERHAUL) ===== */


.portfolio-slider-container {
    width: 100%;
    overflow: hidden;
}


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


.splide__list {
    align-items: center;
}


.portfolio {
    padding: 90px 0;
    background: #FCFCE9;
    overflow: hidden;
    width: 100%;
    position: relative;
}


.portfolio-slider-container {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.portfolio-slider-group {
    display: flex;
    align-items: center;
    gap: 50px;
    /* Increase for more spacing */
    flex-shrink: 0;
    /* animation: scrollPortfolio 10s ease-in-out infinite; */
    padding-right: 50px;
}

.portfolio-slider-group:nth-child(2) {
    animation-delay: 0s;
}

.portfolio-phone,
.portfolio-browser {
    flex-shrink: 0;
}

.portfolio-phone img,
.portfolio-browser img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portfolio-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}


.portfolio-slider-container .splide__track {
    overflow: hidden;
}


.portfolio-slider-container .splide__list {
    display: flex;
    align-items: center;
}


.portfolio-slider-container .splide__slide {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Keep your old sizes */
.portfolio-phone,
.portfolio-browser {
    flex-shrink: 0;
}

/* @keyframes scrollPortfolio {

    0% {
        transform: translateX(0);
    }

    10% {
        transform: translateX(0);
    }


    25% {
        transform: translateX(-650px);
    }

    35% {
        transform: translateX(-650px);
    }


    50% {
        transform: translateX(-1300px);
    }

    60% {
        transform: translateX(-1300px);
    }


    75% {
        transform: translateX(-1950px);
    }

    85% {
        transform: translateX(-1950px);
    }


    100% {
        transform: translateX(-2600px);
    }
} */


/* Phone Mockup Styling */
.portfolio-phone {
    width: 192px;
    height: 384px;
    background: #000;
    border-radius: 32px;
    padding: 10px;
    position: relative;
    flex-shrink: 0;
    border: 4px solid #1E293B;
}

.portfolio-phone-notch {
    width: 72px;
    height: 16px;
    background: #000;
    border-radius: 0 0 14px 14px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.portfolio-phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: #FAF8F5;
    display: flex;
    flex-direction: column;
    position: relative;
    font-size: 0.75rem;
    color: #0F172A;
}

/* Browser Mockup Styling */
.portfolio-browser {
    width: 580px;
    height: 326px;
    background: #ffffff;
    border-radius: 20px;
    border: 5px solid #F3E6C4;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}


.portfolio-browser-content {
    flex-grow: 1;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Mockup 1: Phone E-Commerce Explorer */
.m1-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px 8px;
}

.m1-search-bar {
    display: flex;
    align-items: center;
    background: #E2E8F0;
    border-radius: 8px;
    padding: 6px 12px;
    margin: 0 16px 12px;
    color: #94A3B8;
}

.m1-search-input {
    flex-grow: 1;
    margin-left: 6px;
    font-size: 0.7rem;
}

.m1-content {
    padding: 0 16px 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.m1-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.m1-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.m1-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    position: relative;
    display: flex;
    flex-direction: column;
}

.m1-card-img {
    height: 65px;
    background: #F1F5F9;
    border-radius: 8px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.m1-card-title {
    font-size: 0.6rem;
    font-weight: 700;
    color: #475569;
    line-height: 1.2;
    margin-bottom: 4px;
}

.m1-card-price {
    font-size: 0.7rem;
    font-weight: 800;
    color: #0F172A;
    margin-top: auto;
}

.m1-plus-btn {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 16px;
    height: 16px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

.m1-nouveautes-title {
    font-size: 0.8rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.m1-row-item {
    background: #ffffff;
    border-radius: 10px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.m1-row-img {
    width: 28px;
    height: 28px;
    background: #F1F5F9;
    border-radius: 6px;
}

.m1-row-desc {
    flex-grow: 1;
    font-size: 0.6rem;
    font-weight: 700;
    color: #475569;
}

.m1-row-arrow {
    width: 16px;
    height: 16px;
    background: #F1F5F9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: #0F172A;
}

/* Mockup 2: Browser Darmain */
.m2-container {
    display: flex;
    height: 100%;
    background: #ffffff;
    font-family: var(--font-heading);
}

.m2-main {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 24px;
    gap: 24px;
    align-items: center;
    position: relative;
}

.m2-left-col {
    flex: 1.1;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.m2-left-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.m2-right-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-right: 30px;
}

.m2-logo-block {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 10;
}

.m2-logo-title {
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #0F172A;
}

.m2-logo-sub {
    font-size: 0.45rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #64748B;
    margin-top: -2px;
}

.m2-nav {
    position: absolute;
    top: 24px;
    right: 48px;
    display: flex;
    gap: 16px;
    font-size: 0.55rem;
    font-weight: 700;
    color: #475569;
}

.m2-h1 {
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.15;
    color: #0F172A;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.m2-dots {
    display: flex;
    gap: 5px;
    margin-bottom: 12px;
}

.m2-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #E2E8F0;
}

.m2-dot.active {
    background: #0F172A;
    width: 12px;
    border-radius: 2px;
}

.m2-desc {
    font-size: 0.65rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 16px;
}

.m2-btn {
    background: #00B1A2;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    align-self: flex-start;
}

.m2-sidebar {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center right;
    display: flex;
    gap: 16px;
    font-size: 0.45rem;
    font-weight: 700;
    color: #94A3B8;
    white-space: nowrap;
}

.m2-arrow-btn {
    position: absolute;
    bottom: 24px;
    left: 24px;
    width: 24px;
    height: 24px;
    background: #00B1A2;
    color: #ffffff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}

/* Mockup 3: Phone Eco */
.m3-content {
    background: #FAF8F5;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px 16px;
    text-align: center;
}

.m3-tag {
    font-size: 0.6rem;
    font-weight: 800;
    color: #2F593E;
    letter-spacing: 1px;
}

.m3-h1 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: #1E3024;
    line-height: 1.15;
    margin: 6px 0;
}

.m3-sub {
    font-size: 0.65rem;
    color: #556B5C;
    padding: 0 10px;
    line-height: 1.4;
}

.m3-img-area {
    flex-grow: 1;
    background: #E8E5DF;
    border-radius: 16px;
    margin: 16px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.m3-btn {
    background: #7B6858;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.5px;
    align-self: center;
}

/* Mockup 4: Browser Vayas */
.m4-container {
    display: flex;
    height: 100%;
    background: #FAF8F6;
    padding: 24px;
    gap: 24px;
    align-items: center;
    position: relative;
}

.m4-left {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.m4-right {
    flex: 1;
    height: 100%;
    background: #E2E8F0;
    border-radius: 12px;
    overflow: hidden;
}

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

.m4-logo {
    position: absolute;
    top: 24px;
    left: 24px;
    font-size: 0.75rem;
    font-weight: 900;
    color: #12103E;
}

.m4-nav {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    gap: 16px;
    font-size: 0.55rem;
    font-weight: 700;
    color: #64748B;
}

.m4-tag {
    font-size: 0.6rem;
    font-weight: 800;
    color: #9061F9;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.m4-h1 {
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1.15;
    color: #0C0A24;
    margin-bottom: 12px;
}

.m4-desc {
    font-size: 0.65rem;
    color: #4B5563;
    line-height: 1.5;
    margin-bottom: 16px;
}

.m4-btn {
    background: #000000;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    align-self: flex-start;
}

/* Mockup 5: Phone Avocado */
.m5-content {
    background: #FDFEFA;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
    text-align: center;
}

.m5-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.6rem;
    font-weight: 800;
    color: #4D6B53;
}

.m5-img-container {
    width: 140px;
    height: 140px;
    background: #FAF8F0;
    border-radius: 50%;
    margin: 16px auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.m5-img-container img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.m5-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #1C3322;
}

.m5-desc {
    font-size: 0.625rem;
    color: #6B7C70;
    margin: 8px 0;
    line-height: 1.4;
}

.m5-btn {
    background: #C27D13;
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.7rem;
    align-self: center;
}

/* Mockup 6: Browser Happy/Healthy */
.m6-container {
    display: flex;
    height: 100%;
    background: #FAF5EE;
    padding: 24px;
    gap: 24px;
    align-items: center;
    position: relative;
}

.m6-left {
    flex: 0.9;
    height: 100%;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    overflow: hidden;
    background: #CBD5E1;
}

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

.m6-right {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.m6-nav {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    gap: 16px;
    font-size: 0.55rem;
    font-weight: 700;
    color: #8C7B6B;
}

.m6-h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #5C4A3A;
    line-height: 1.2;
    margin-bottom: 12px;
}

.m6-desc {
    font-size: 0.65rem;
    color: #8C7B6B;
    line-height: 1.5;
    margin-bottom: 16px;
}

.m6-btn {
    background: #A69280;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    align-self: flex-start;
}

/* Mockup 8: Browser Push Harder */
.m8-container {
    display: flex;
    height: 100%;
    background: #09090B;
    padding: 24px;
    gap: 20px;
    align-items: center;
}

.m8-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.m8-right {
    flex: 1;
    height: 100%;
    background: #18181B;
    border-radius: 12px;
    overflow: hidden;
}

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

.m8-h1 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.m8-desc {
    font-size: 0.625rem;
    color: #A1A1AA;
    line-height: 1.4;
    margin-bottom: 16px;
}

.m8-btn {
    background: #2563EB;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    align-self: flex-start;
}

/* Mockup 10: Browser Delicifood */
.m10-container {
    display: flex;
    height: 100%;
    background: #0D0F12;
    padding: 24px;
    gap: 20px;
    align-items: center;
}

.m10-left {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.m10-right {
    flex: 0.9;
    height: 100%;
    background: #1A1D24;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.m10-right img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.m10-h1 {
    font-size: 1.6rem;
    font-weight: 900;
    color: #FF8F00;
    line-height: 1.15;
    margin-bottom: 12px;
}

.m10-desc {
    font-size: 0.65rem;
    color: #94A3B8;
    line-height: 1.5;
    margin-bottom: 16px;
}

.m10-btn {
    background: #FF8F00;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    align-self: flex-start;
}


/* =========================
   BASE SECTION
========================= */

.portfolio {
    padding: clamp(40px, 6vw, 90px) 0;
    background: #FCFCE9;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.portfolio-title {
    font-family: var(--font-heading);
    font-size: 2.975rem;
    font-weight: 600;
    color: #0F172A;
    text-align: center;
    margin-bottom: clamp(35px, 6vw, 80px);
    line-height: 1.3;
}

/* =========================
   SLIDER SYSTEM (FIXED)
========================= */

.portfolio-slider-container {
    width: 100%;
    overflow: hidden;
    display: flex;
    position: relative;
    margin-top: clamp(10px, 1.6vw, 24px);
}

.portfolio-slider-group {
    display: flex;
    align-items: center;
    gap: clamp(16px, 4vw, 50px);
    flex-shrink: 0;
    width: max-content;
    animation: scrollPortfolio 25s linear infinite;
}

/* Smooth infinite scroll */
@keyframes scrollPortfolio {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Center slides */
.splide__slide,
.splide__list {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================
   DEVICE MOCKUPS (FLUID)
========================= */

.portfolio-phone {
    width: clamp(120px, 14.4vw, 192px);
    height: clamp(240px, 28.8vw, 384px);
    background: #000;
    border-radius: 32px;
    padding: 10px;
    position: relative;
    border: 4px solid #1E293B;
    flex-shrink: 0;
}

.portfolio-browser {
    width: clamp(240px, 45vw, 580px);
    height: clamp(135px, 25.3vw, 326px);
    background: #fff;
    border-radius: 20px;
    border: 5px solid #F3E6C4;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    flex-shrink: 0;
}

/* =========================
   INNER STRUCTURE FIXES
========================= */

.portfolio-phone img,
.portfolio-browser img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portfolio-phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: #FAF8F5;
}

/* =========================
   BROWSER BAR
========================= */


/* =========================
   RESPONSIVE BREAKPOINTS
========================= */

/* TABLET */
@media (max-width: 1024px) {

    .portfolio {
        padding: 70px 0;
    }

    .portfolio-slider-group {
        gap: 30px;
    }

    .portfolio-phone {
        width: 160px;
        height: 320px;
    }


}

/* MOBILE */
@media (max-width: 768px) {

    .portfolio {
        padding: 50px 0;
    }

    .portfolio-slider-group {
        gap: 18px;
        animation-duration: 20s;
    }

    .portfolio-phone {
        width: 136px;
        height: 272px;
    }


    /* STACK INNER MOCKUPS */
    .m2-main,
    .m4-container,
    .m6-container,
    .m8-container,
    .m10-container {
        flex-direction: column;
        padding: 16px;
    }

    .m2-right-col,
    .m4-left,
    .m6-right,
    .m8-left,
    .m10-left {
        padding-right: 0;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .splide__list {
        gap: 20px;
    }

    .portfolio-phone {
        width: 128px;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {

    .portfolio-slider-group {
        gap: 12px;
    }

    .portfolio-phone {
        width: 80px;
        height: 160px;
        border: 1px;
        padding: 6px;
        border-radius: 12px;
    }

    .portfolio-phone-notch{
        width: 40%;
        height: 8px;
        top: 6px;
        border-radius: 0 0 8px 8px;
    }
    .portfolio-phone-screen{
        border-radius: 12PX;
    }


    .portfolio {
        padding: 40px 0;
    }
}


/* ===== 2 ÉTAPES SECTION ===== */


/* ===== ETAPES BACKGROUND B ===== */

#process {

     background-image: url("assets/images/Home.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
    width: 100%;
    min-height: 100vh; /* or the height you need */

}


BIG B

#process::before {

    content:"b";

    position:absolute;


    top:50%;

    left:50%;


    transform:translate(-50%, -50%) rotate(-20deg);


    font-family:var(--font-heading);


    font-size:1445px;


    font-weight:900;


    color:rgba(255,255,255,0.025);


    line-height:1;


    z-index:0;


    pointer-events:none;

}


/* keep content above B */

#process > div {

    position:relative;

    z-index:10;

}

.etapes-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.etapes-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.etapes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.etape-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.etape-badge-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.etape-number {
    width: 32px;
    height: 32px;
    background: #FFA500;
    color: #000000;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.1rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.etape-time {
    background: #34C759;
    color: var(--white);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.etape-col h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--white);
}

.etape-col p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.etapes-btn-row {
    text-align: center;
    position: relative;
    z-index: 2;
}

.btn-yellow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--lime-yellow);
    color: var(--text-dark);
    padding: 16px 45px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 230, 0, 0.2);
}

.btn-yellow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 230, 0, 0.4);
}

/* ===== CTA BANNER TWO-COLUMN OVERHAUL ===== */
.cta-banner {
    background: #4500D3;
    padding: 0;
    color: var(--white);
    overflow: hidden;
    position: relative;
    width: 100%;
    min-height:620px;
    display:flex;
    align-items:center !important;
    align-content: center !important;
}


.cta-banner-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 100% !important;
    width: 100%;
    margin: 0 auto;
    padding: 0 0px;
    position: relative;
    z-index:2;
}

.cta-banner-left {
    flex: 1 1 55%;
    max-width: 520px;
    z-index: 10;
    padding-left: 10px !important;
}

.cta-banner-left h2 {
    font-family: var(--font-heading);
    font-size: 2.975rem;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--white);
    text-align: left;
}

.cta-banner-left p {
    font-size: 1.35rem;
    opacity: 0.9;
    margin-bottom: 35px;
    text-align: left;
    font-family: var(--font-body);
}

.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--primary-purple);
    padding: 18px 45px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    background: #FAF8F5;
}

.cta-banner-right {
    position:absolute;
    right:0;
    bottom:0;
    width:48%;
    display:flex;
    justify-content:flex-end;
    pointer-events:none;
}

.cta-banner-img {
    max-width: 100%;
    height: auto;
    transition: transform 0.5s ease;
    margin-left: 211px;
}


/* ===== FOOTER ===== */
.footer {
    background: var(--white);
    color: var(--text-dark);
    padding: 80px 80px 30px 80px;
    border-top: 1px solid #E2E8F0;
    width:100% !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    width:100% !important;
}

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

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.footer-logo .blo {
    color: var(--primary-purple);
}

.footer-logo .miro {
    color: var(--primary-pink);
}

.footer-brand p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 400px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #1e1b4b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-purple);
    transform: translateY(-2px);
}

.footer-social a svg {
    width: 22px;
    height: 22px;
    fill: var(--white);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    font-size: 1rem;
    color: var(--primary-purple);
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-purple);
}

.footer-contact-item {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 12px;
}


/* ==========================================================
   FOOTER RESPONSIVE
========================================================== */


/* Large Desktop */

@media (min-width:1400px){

    .footer{
        padding-left:50px;
        padding-right:50px;
    }

}


/* Laptop */

@media (max-width:1200px){


    .footer{

        padding:70px 50px 30px;

    }


}


/* Tablet */

@media (max-width:1024px){


    .footer{

        padding:60px 35px 30px;

    }


    .footer-col:last-child{

        grid-column:span 2;

    }


}


/* Mobile */

@media (max-width:768px){


    .footer{

        padding:50px 20px 25px;

    }


    .footer-col:last-child{

        grid-column:auto;

    }


    .footer-brand{

        gap:15px;

    }


    .footer-logo{

        font-size:1.6rem;

    }


    .footer-brand p{

        font-size:0.875rem;

        max-width:100%;

        line-height:1.6;

    }


    .footer-social a{

        width:40px;

        height:40px;

    }


    .footer-social a svg{

        width:18px;

        height:18px;

    }


    .footer-col h4{

        font-size:0.95rem;

        margin-bottom:15px;

    }


    .footer-col ul{

        gap:10px;

    }


    .footer-col ul li a{

        font-size:0.8rem;

    }


    .footer-contact-item{

        font-size:0.8rem;

    }


}


/* Small Mobile */

@media (max-width:480px){

    .footer{
        padding:45px 15px 20px;
    }

    .footer-logo{
        font-size:1.45rem;
    }

    .footer-social{
        gap:10px;
    }

    .footer-social a{
        width:36px;
        height:36px;
    }

    .footer-col h4{
        font-size:0.9rem;
    }

    .footer-col ul li a{
        font-size:0.75rem;
    }

}

/* Extra Small Devices */

@media (max-width:360px){

    .footer{
        padding:40px 12px 20px;
    }

    .footer-brand p{
        font-size:0.8rem;
    }

    .footer-social a{
        width:34px;
        height:34px;
    }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {

    /* Announcement Bar */
    .announcement-bar{
        padding: 10px 20px;
        gap: 8px;
        text-align: center;
    }

    /* Navbar */
    .navbar{
        padding: 14px 25px;
    }

    .nav-links{
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 1000;
    }

    .nav-links.active{
        display: flex;
    }

    .nav-links a{
        color: var(--text-dark);
        font-size: 1.3rem;
    }

    .nav-toggle{
        display: flex;
    }

    /* Hero */
    .hero{
        padding: 100px 20px 80px;
    }

    .hero-img-grid{
        width: clamp(516px, 44vw, 960px);
        height: clamp(569px, 48vw, 1120px);
    }

    .hero-img-blob-left{
        width: clamp(1083px, 85vw, 2800px);
        height: clamp(876px, 80vw, 2200px);
    }

    .hero-img-blob-right{
        width: clamp(855px, 75vw, 2000px);
        height: clamp(923px, 85vw, 2400px);
    }

    /* Guarantee */
    .guarantee-container{
        margin-top: -30px;
    }

    .guarantee-card{
        grid-template-columns: 1fr;
        padding: 36px 30px;
        gap: 28px;
        text-align: center;
    }

    .guarantee-left{
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-right: 0;
        padding-bottom: 28px;
    }

    .guarantee-word{
        letter-spacing: 4px;
    }

    .guarantee-title{
        font-size: 1.9rem;
    }

    .guarantee-right p{
        max-width: none;
        margin: 0 auto;
    }

    /* Why Section */
    .why-grid{
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-title{
        font-size: 1.8rem;
    }

    .why-card-grid-left,
    .why-card-grid-right{
        display: none;
    }

    /* Bonne Section */
    .bonne-title{
        font-size: 1.8rem;
    }

    .bonne-logo{
        font-size: 3rem;
    }

    /* Etapes */
    .etapes-grid{
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .etapes-title{
        font-size: 1.8rem;
    }

    /* CTA */
    .cta-banner{
        padding: 60px 0;
    }

    .cta-banner-container{
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 0 20px;
    }

    .cta-banner-left{
        max-width: 100%;
        text-align: center;
    }

    .cta-banner-left h2{
        text-align: center;
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .cta-banner-left p{
        text-align: center;
        font-size: 1.1rem;
        margin-bottom: 24px;
    }

    .cta-banner-right{
        display: none;
    }

    /* Footer */

    .footer-brand{
        align-items: center;
    }

    .footer-social{
        justify-content: center;
    }
}

@media (max-width: 1300px) {

    .hero-img-blob-left{
        width: clamp(420px, 46vw, 700px);
        height: auto;
        left: clamp(-320px, -26vw, -180px);
        bottom: clamp(-140px, -9vw, -60px);
    }

    .hero-img-blob-right{
        width: clamp(400px, 44vw, 660px);
        height: auto;
        right: clamp(-230px, -18vw, -120px);
        top: clamp(-330px, -26vw, -180px);
    }

    .hero-img-grid{
        width: clamp(208px, 21.6vw, 320px);
        height: auto;
        left: -64px;
    }

    .cta-banner-img{
        margin-left: 0;
    }
}

/* =========================
   GLOBAL RESET FIX (IMPORTANT)
========================= */

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

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevent layout overflow from containers */
.container,
.wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow-x: clip;
}

/* =========================
   FLEX / GRID SAFETY FIX
========================= */

.flex, .row {
    flex-wrap: wrap;
}

[class*="grid"] {
    min-width: 0;
}

/* =========================
   TABLET (≤1024px)
========================= */

@media (max-width: 1024px) {

    .navbar {
        padding: 12px 20px;
    }

    .hero {
        padding: 80px 20px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.4rem;
        line-height: 1.3;
    }

    .hero-tagline {
        font-size: 1.125rem;
    }

    .guarantee-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .cta-banner-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .cta-banner-right {
        display: none;
    }
}

/* =========================
   MOBILE (≤768px)
========================= */

@media (max-width: 768px) {

    .hero {
        padding: 70px 16px;
    }

    .hero-title {
        font-size: 1.9rem;
        line-height: 1.3;
    }

    .hero-tagline {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    /* NAV FIX */
    .nav-links.active {
        gap: 16px;
        width: 100%;
    }

    .guarantee-card {
        padding: 28px 22px;
    }

    .guarantee-title {
        font-size: 1.75rem;
    }

    .guarantee-right h3 {
        font-size: 1.15rem;
    }

    .why-card h3 {
        font-size: 1.5rem;
    }

    .why-badge {
        font-size: 1.25rem;
    }

    .cta-banner-left p {
        font-size: 0.875rem;
    }
}

/* =========================
   SMALL MOBILE (≤480px)
========================= */

@media (max-width: 480px) {

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.32;
    }

    .hero-tagline {
        font-size: 0.8rem;
    }

    .btn-primary {
        padding: 12px 18px;
        font-size: 0.8rem;
        align-self: center;
    }

    .guarantee-title {
        font-size: 1.6rem;
    }

    .why-title {
        font-size: 1rem;
    }


}

/* =========================
   ABSOLUTE ELEMENT FIX
========================= */

.hero-img-grid,
.hero-img-blob-left,
.hero-img-blob-right {
    position: absolute;
    max-width: none;
    height: auto;
    pointer-events: none;
    will-change: transform;
}

@media (max-width: 1200px) {

    .hero-img-grid {
        opacity: 0.8;
    }

    .hero-img-blob-left {
        opacity: 0.7;
    }

    .hero-img-blob-right {
        opacity: 0.7;
        transform: scaleX(-1) rotate(60deg);
    }
}

/* ==========================================================================
   TARIFS PAGE STYLES
   ========================================================================== */

/* ===== PRICING HERO ===== */
.pricing-hero {
    text-align: center;
    padding: 150px 20px 70px 20px;
    background: var(--white);
    height: 550px;
}

.pricing-hero-tagline {
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--primary-purple);
    margin-bottom: 32px;
    text-transform: uppercase;
}

.pricing-hero-title {
    font-size: 3.24rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.28;
    font-family: var(--font-heading);
}

.highlight-yellow {
    background: linear-gradient(180deg, #FCFA05 0%, #FCFA05 100%);;
    padding: 4px 24px;
    border-radius: 100px;
    display: inline-block;
    color: #000;
}

/* ===== PRICING MARQUEE ===== */
.pricing-marquee {
    background: #70F4B7;
    padding: 70px 0;
    overflow: hidden;
    width: 100%;
    position: relative;
    display: flex;
}

.pricing-marquee-track {
    display: flex;
    width: max-content;
    align-items: center;
    animation: marquee 25s linear infinite;
}

.marquee-item {
    background: var(--white);
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 28px;
    border-radius: 8px;
    margin: 0 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    white-space: nowrap;
}

/* Alternating rotation for a playful look */
.marquee-item:nth-child(odd) {
    transform: rotate(-1.5deg);
}

.marquee-item:nth-child(even) {
    transform: rotate(1.5deg);
}

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

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

/* ===== PRICING CARDS ===== */
.pricing-cards-section {
    background: #222A3D;
    padding-top: 170px;
    padding-bottom: 124px;
    padding-left: 50px;
    padding-right: 50px;
    color: var(--white);
    position: relative;
}

.pricing-toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.pricing-toggle {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    padding: 6px;
    border-radius: 50px;
    display: flex;
    gap: 5px;
}

.toggle-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
    text-align: center;
}

.toggle-btn.active {
    background: var(--white);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 55px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    color: var(--text-dark);
    border: none;
    border-radius: 24px;
    padding: 45px 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.pricing-card.popular {
    max-height: none;
}

.pricing-card.popular:hover {
    transform: scale(1.03) translateY(-8px);
}

/* Tablet */
@media (max-width: 1024px) {
    .pricing-card.popular {
        max-height: none;
    }

    .pricing-card.popular:hover {
        transform: scale(1.02) translateY(-8px);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .pricing-card.popular {
        transform: none;
        max-height: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .pricing-card.popular {
        transform: none;
        max-height: none;
    }

    .pricing-card.popular:hover {
        transform: none;
    }
}

.pricing-card.popular:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 25px;
    background: #B55FE6;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.growth-badge {
    position: absolute;
    top: 20px;
    right: 25px;
    background: #70F4B8;
    color: #065F46;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.pricing-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #0F172A;
}

.pricing-desc {
    font-size: 0.85rem;
    color: #64748B;
    margin-bottom: 25px;
    line-height: 1.5;
}

.price-box {
    display: flex;
    align-items: baseline;
    margin-bottom: 10px;
    color: #0F172A;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.price-box .currency {
    font-size: 1.4rem;
    font-weight: 600;
    margin-right: 2px;
    align-self: flex-start;
    margin-top: 6px;
}

.price-box .amount {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

#pur {
    color:#A81CEE;
}

#yellow {
    color: #F2A500;
}

#green {
    color:#70F4B8;
}


.price-box .amount.purple-text {
    color: #A81CEE;
}

.price-box .amount.orange-text {
    color: #F2A500;
}

.price-box .amount.green-text {
    color: #8EF5B5;
}

.price-box .period {
    font-size: 1.125rem;
    font-weight: 600;
    color: black;
    margin-left: 5px;
    align-self: center;
}

.price-sub {
    font-size: 1rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 15px;
    align-self: center;
}

.price-strike {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #0F172A;
    align-self: center;
}

del {
    color: #C40000;
}

.strike-red {
    color: #C40000;
    text-decoration: line-through;
}

.plan-btn {
    width: 100%;
    padding: 14px 20px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.1s ease;
}

.plan-btn:hover {
    opacity: 0.9;
}

.plan-btn:active {
    transform: scale(0.98);
}

.purple-btn {
    background: #B55FE6;
    color: var(--white);
}

.yellow-btn {
    background: #FFA700;
    color: #000000;
}

.green-btn {
    background: #5EEDC1;
    color: #000000;
}

.btn-sub {
    text-align: center;
    font-size: 0.875rem;
    margin-top: 10px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.save-link {
    color: #475569;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-weight: 600;
}

.save-link:hover {
    text-decoration: underline;
}


.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 12px;
    color: #334155;
}

.features-list li.feature-title {
    font-weight: 400;
    margin-bottom: 18px;
    font-size: 1.125rem;
    color: #0F172A;
}

.circle-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 2px;
}

.circle-check.purple {
    background: #B55FE6;
}

.circle-check.orange {
    background: #FFA700;
}

.circle-check.green {
    background: #10B981;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: #4318CD;
    color: var(--white);
    padding: 70px 0;
    text-align: center;

}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat-item h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1.2rem;
    font-weight: 700;
    opacity: 0.95;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: #FFFFE7;
    padding: 110px 0;
    color: var(--text-dark);
    border-bottom: 3.5px solid var(--text-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-left h2 {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.15;
}

.about-left p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.about-buttons {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.btn-dark {
    background: var(--text-dark);
    border:0px !important;
    color: var(--white);
    padding: 13px 28px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 0.875rem;
    cursor: pointer;
    min-width: 170px;
    text-align: center;
}

.btn-purple {
    background: var(--primary-purple);
    border:0px !important;
    color: var(--white);
    padding: 13px 28px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 0.875rem;
    cursor: pointer;
    min-width: 170px;
    text-align: center;
}

.about-right img {
    width: 100%;
    aspect-ratio: 3 / 2;
    height: auto;
    object-fit: cover;
    border-radius: 28px;
    display: block;
}

/* ===== FAQ SECTION ===== */

.faq-section {

    background-image: url("Pricing.jpg");

    padding: 100px 0;

    color: #fff;


    overflow: hidden;

}


/* Background image */
/* ===== FAQ BACKGROUND SHAPE ===== */

/* FAQ background shapes */

.faq-section {
    background-image: url("assets/images/Pricing.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
    width: 100%;
    min-height: 100vh; /* or the height you need */
}


/* left top shape

.faq-section::before {

    content:"b";

    position:absolute;


    top:50%;

    left:50%;


    transform:translate(-50%, -50%) rotate(-20deg);


    font-family:var(--font-heading);

    font-size:1500px;

    font-weight:900;


    color:rgba(255,255,255,0.025);


    line-height:1;


    z-index:0;


    pointer-events:none;

} */


.faq-container {

    z-index:2;
    align-items: center;
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;

}


/* TITLE */

.faq-section h2 {


    font-family: var(--font-heading);


    font-size: 3.6rem;


    font-weight: 700;


    line-height: 1.05;


    color: #fff;

    


}


/* subtitle */

.faq-subtitle {


    font-size: 1.125rem;
    font-weight: 400;


    color: rgba(255, 255, 255, .75);


    margin-bottom: 30px;
    margin-top: 66px;;


}


/* contact */

.faq-contact {


    font-size: 1.125rem;


    color: #ffb000;


    font-weight: 700;


    line-height: 2;


    margin-bottom: 45px;
    row-gap:9px !important;


}


.faq-contact a {


    color: #ffb000;


    text-decoration: none;


}


/* Accordion */

.faq-accordion {


    display: flex;


    flex-direction: column;


    gap: 10px;


    text-align: left;
        min-width: 800px;
        max-width: 800px;

}

.faq-accordion {

    display:flex;

    flex-direction:column;

    gap:10px;

    text-align:left;

    width:calc(100% - 40px);

    max-width:700px;

    margin:0 auto;

}


.faq-item {


    border-radius: 0;


    overflow: hidden;


}


.faq-question {


    height: 44px;


    padding: 0 12px;


    font-size: 1.125rem;


    font-weight: 600;


    color: white;


    background: #303949;


    display: flex;


    justify-content: space-between;


    align-items: center;


    cursor: pointer;
    padding:10px;


}


.faq-icon {


    font-size: 1.75rem;


    color: white;


}


.faq-answer {


    padding: 14px 12px;


    font-size: 1.125rem;


    line-height: 1.7;


    color: rgba(255, 255, 255, .75);


    display: none;


}


.faq-item.active .faq-answer {


    display: block;


}


@media(max-width:768px) {


    .faq-container {

        padding: 0 20px;

    }


    .faq-section h2 {

        font-size: 2rem;

    }


}

/* ==========================================================
   FINAL RESPONSIVE FIX - ALL DEVICES
========================================================== */


/* ================= LARGE DESKTOP ================= */

@media (min-width:1400px){

    .pricing-cards-grid{
        max-width:1200px;
        margin:auto;
    }


    .faq-accordion{
        width:700px;
    }


    .faq-section::before{
        font-size:1500px;
    }

}


/* ================= LAPTOP ================= */

@media (max-width:1200px){


    .pricing-hero{

        padding:120px 30px 60px;

        height:auto;

    }


    .pricing-hero-title{

        font-size:2.7rem;

    }


    .pricing-cards-grid{

        grid-template-columns:repeat(3,1fr);

        gap:30px;

    }


    .pricing-card{

        padding:35px 25px;

    }


    .faq-accordion{

        width:90%;

        max-width:700px;

        min-width:0;

    }


}


/* ================= TABLET ================= */

@media (max-width:1024px){


    .pricing-cards-grid{

        grid-template-columns:repeat(2,1fr);

    }


    .pricing-card.popular{

        transform:none;

    }


    .stats-grid{

        grid-template-columns:repeat(3,1fr);

        gap:20px;

    }


    .about-grid{

        grid-template-columns:1fr;

        gap:40px;

    }


    .about-right{

        order:-1;

    }


    .faq-section{

        padding:70px 25px;

    }


    .faq-section h2{

        font-size:2.5rem;

    }


    .faq-section::before{

        font-size:900px;

    }


}


/* ================= MOBILE ================= */

@media (max-width:768px){


    /* HERO */


    .pricing-hero{

        padding:100px 20px 50px;

    }


    .pricing-hero-title{

        font-size:1.98rem;

        line-height:1.2;

    }


    .highlight-yellow{

        padding:4px 14px;

    }


    /* MARQUEE */


    .pricing-marquee{

        padding:35px 0;

    }


    .marquee-item{

        font-size:0.85rem;

        padding:10px 18px;

    }


    /* PRICING */


    .pricing-cards-grid{

        grid-template-columns:1fr;

        gap:25px;

    }


    .pricing-cards-section{

        padding:90px 20px;

    }


    .pricing-toggle{

        width:100%;

        justify-content:center;

    }


    .toggle-btn{

        padding:10px 15px;

        font-size:0.8rem;

    }


    .price-box .amount{

        font-size:3rem;

    }


    /* STATS */


    .stats-grid{

        grid-template-columns:1fr;

    }


    .stat-item h2{

        font-size:3rem;

    }


    /* ABOUT */


    .about-section{

        padding:70px 20px;

    }


    .about-left h2{

        font-size:2.2rem;

        text-align:center;

    }


    .about-left p{

        text-align:center;

        font-size:1rem;

    }


    .about-buttons{

        flex-direction:column;

    }


    .btn-dark,
    .btn-purple{

        width:100%;

        text-align:center;

    }


    /* FAQ */


    .faq-section{

        padding:60px 20px;

    }


    .faq-section h2{

        font-size:2rem;

    }


    .faq-container{

        width:100%;

    }


    .faq-accordion{

        width:100%;

        min-width:0;

        max-width:700px;

    }


    .faq-section::before{

        font-size:600px;

    }


    .faq-question{

        height:auto;

        min-height:45px;

        padding:12px;

        font-size:0.8rem;

    }


    .faq-answer{

        font-size:0.8rem;

        padding:14px;

    }


}


/* ================= SMALL MOBILE ================= */

@media (max-width:480px){


    .pricing-hero-title{

        font-size:1.62rem;

    }


    .pricing-hero-tagline{

        font-size:0.75rem;

    }


    .pricing-card{

        padding:30px 20px;

    }


    .price-box .amount{

        font-size:2.6rem;

    }


    .popular-badge,
    .growth-badge{

        top:15px;

        right:15px;

        font-size:0.65rem;

    }


    .features-list li{

        font-size:0.85rem;

    }


    .faq-section h2{

        font-size:1.75rem;

    }


    .faq-contact{

        font-size:0.75rem;

    }


    .faq-section::before{

        font-size:450px;

    }

}


/* ================= VERY SMALL ================= */

@media (max-width:360px){


    .pricing-hero-title{

        font-size:1.44rem;

    }


    .faq-question{

        font-size:0.75rem;

    }


    .faq-answer{

        font-size:0.75rem;

    }


    .faq-section::before{

        display:none;

    }


}


/* Terms and Condition */

.terms-page {
    padding: 100px 0;
    background: #fff;
    padding-bottom: 0px !important;
}

.terms-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.terms-page h1,
.terms-page h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1d2433;
    margin-bottom: 25px;
}

.terms-page h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 40px 0 15px;
    color: #1d2433;
}

.terms-page p {
    color: #5f6779;
    line-height: 1.8;
    margin-bottom: 20px;
}

.terms-page ul {
    padding-left: 20px;
    margin-bottom: 25px;
}

.terms-page li {
    color: #5f6779;
    line-height: 1.8;
    margin-bottom: 8px;
}

.terms-page hr {
    border: none;
    height: 1px;
    background: #e5e7eb;
    margin: 50px 0;
}

.tnc{
    padding:0px !important;
}

/* ===== HERO decor : paliers fluides ===== */
@media (max-width: 768px) {
    .hero-img-blob-left {
        width: clamp(300px, 62vw, 420px);
        left: clamp(-210px, -34vw, -140px);
        bottom: clamp(-110px, -14vw, -60px);
    }

    .hero-img-blob-right {
        width: clamp(290px, 60vw, 400px);
        right: clamp(-170px, -26vw, -110px);
        top: clamp(-230px, -34vw, -150px);
    }

    .hero-img-grid {
        width: clamp(152px, 27.2vw, 208px);
        left: clamp(-72px, -10.4vw, -44px);
    }
}

@media (max-width: 480px) {
    .hero-img-blob-left {
        width: 300px;
        left: -160px;
        bottom: -80px;
    }

    .hero-img-blob-right {
        width: 290px;
        right: -130px;
        top: -170px;
    }

    .hero-img-grid {
        width: 152px;
        left: -56px;
    }
}


/* ===== Portfolio title : paliers 768 / 480 ===== */
@media (max-width: 768px) {
    .portfolio-title { font-size: 1.8rem; }
}
@media (max-width: 480px) {
    .portfolio-title { font-size: 1.5rem; }
}


/* ===== Carrousel : images de cadre remplissent sans bande blanche ===== */
.autoplay .portfolio-browser-content img,
.autoplay .portfolio-phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}


/* saut de ligne visible uniquement en mobile */
.br-mobile { display: none; }
@media (max-width: 768px) {
    .br-mobile { display: inline; }
}


/* Harmonisation de la ligne "Donnees hebergees" avec les autres features */
.features-list .txt {
    font-size: 1rem;
    line-height: 1.5;
    color: #334155;
}
.features-list .list-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.features-list .list-icon svg {
    width: 18px;
    height: 18px;
}


/* fleche vers l'offre annuelle : visible uniquement en mode "sans abonnement" */
.btn-sub-link {
    display: none;
    align-items: center;
    margin-left: 6px;
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s ease;
}
.btn-sub.show-link .btn-sub-link {
    display: inline-flex;
}
.btn-sub-link:hover {
    transform: translateX(2px);
}


/* ============================
   PAGE NOS ENGAGEMENTS
============================ */
.engagements-intro {
    max-width: 640px;
    margin: 28px auto 0;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-gray);
    text-align: center;
}

.engagements-section {
    background: #FFFFE7;
    padding: 90px 0 110px;
}

.engagements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: start;
}

.engagement-card {
    background: var(--white);
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-dark);
}

.engagement-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
}

.engagement-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.engagement-logo img {
    max-width: 240px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.engagement-card h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 14px;
    color: var(--text-dark);
}

.engagement-card p {
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-gray);
    margin: 0 0 26px;
    max-width: 420px;
}

.engagement-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-purple);
    transition: gap 0.2s ease;
}

.engagement-card:hover .engagement-link {
    gap: 10px;
}

@media (max-width: 768px) {
    .engagements-section {
        padding: 60px 0 70px;
    }
    .engagements-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .engagement-card {
        padding: 38px 28px;
    }
    .engagements-intro {
        font-size: 1rem;
    }
}


/* ============================
   PAGE METIERS (HUB)
============================ */
.metiers-section {
    background: var(--white);
    padding: 80px 0 100px;
}

.metiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 1080px) {
    .metiers-grid { grid-template-columns: repeat(2, 1fr); }
}

.metier-card {
    display: flex;
    align-items: stretch;
    background: var(--white);
    border: 1px solid #E6E8F0;
    border-radius: 22px;
    box-shadow: 0 8px 26px rgba(15, 23, 42, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    color: var(--text-dark);
    overflow: hidden;
}

.metier-card-preview {
    flex-shrink: 0;
    width: 150px;
    background: #22283A;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 22px 16px 0;
    overflow: hidden;
}

.metier-card-preview img {
    width: 100%;
    max-width: 130px;
    height: auto;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.14);
    display: block;
}

.metier-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
    border-color: var(--primary-purple);
}

.metier-card-body {
    padding: 34px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.metier-card h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--text-dark);
}

.metier-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0 0 22px;
}

.metier-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary-purple);
    transition: gap 0.2s ease;
}

.metier-card:hover .metier-link {
    gap: 11px;
}

.metiers-more {
    text-align: center;
    max-width: 640px;
    margin: 64px auto 0;
    padding: 40px 32px;
    background: #FFFFE7;
    border-radius: 22px;
}

.metiers-more h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 12px;
}

.metiers-more p {
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text-gray);
    margin: 0 0 24px;
}

.metiers-more-cta {
    display: inline-flex;
    align-items: center;
    background: var(--primary-purple);
    color: var(--white);
    padding: 13px 30px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s ease;
}

.metiers-more-cta:hover {
    background: var(--primary-purple-hover);
}

@media (max-width: 768px) {
    .metiers-section { padding: 55px 0 70px; }
    .metiers-grid { grid-template-columns: 1fr; gap: 22px; }
    .metier-card-body { padding: 30px 26px; }
}


/* Footer 4 colonnes : responsive */
@media (max-width: 1024px) {
}
@media (max-width: 560px) {
}


/* ===== Grilles decoratives page metiers ===== */
.metiers-hero {
    position: relative;
    overflow: hidden;
}
.metiers-section {
    position: relative;
    overflow: hidden;
}
.metiers-deco {
    position: absolute;
    width: 340px;
    height: auto;
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
}
.metiers-hero > *:not(.metiers-deco) {
    position: relative;
    z-index: 1;
}
.metiers-section > .container,
.metiers-section > .metiers-more {
    position: relative;
    z-index: 1;
}
.metiers-deco-1 {
    top: -80px;
    left: -120px;
}
.metiers-deco-2 {
    top: 20px;
    right: -110px;
    width: 280px;
}
.metiers-deco-3 {
    bottom: -100px;
    right: -100px;
    width: 320px;
}

@media (max-width: 768px) {
    .metiers-deco-1 { width: 200px; top: -50px; left: -90px; }
    .metiers-deco-2 { width: 170px; right: -80px; }
    .metiers-deco-3 { width: 190px; bottom: -60px; right: -70px; }
}


/* Cartes metier : apercu responsive */
@media (max-width: 768px) {
    .metier-card-preview {
        width: 110px;
        padding: 16px 10px 0;
    }
    .metier-card-preview img { max-width: 92px; }
    .metier-card-body { padding: 24px 20px; }
}
@media (max-width: 480px) {
    .metier-card-preview { display: none; }
}


/* Coordonnees sous le CTA metiers */
.metiers-more-contact {
    margin-top: 18px;
    font-size: 1rem;
    color: var(--text-gray);
}

.metiers-more-contact a {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: none;
}

.metiers-more-contact a:hover {
    text-decoration: underline;
}

.metiers-more-sep {
    margin: 0 10px;
    color: #C7CBD6;
}

@media (max-width: 480px) {
    .metiers-more-contact { font-size: 0.92rem; }
    .metiers-more-sep { display: block; height: 0; margin: 6px 0; overflow: hidden; }
}


/* ===== FOOTER : cascade responsive unique ===== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}
@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }
    .footer-brand {
        align-items: center;
    }
    .footer-social {
        justify-content: center;
    }
}

/* ===== 404 / PAGE INTROUVABLE ===== */
.notfound {
    padding: 120px 0 100px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.notfound .container {
    max-width: 760px;
    text-align: center;
}

.notfound-code {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--primary-purple);
    margin-bottom: 12px;
}

.notfound-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.notfound-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-gray);
    max-width: 52ch;
    margin: 0 auto 40px;
}

.notfound-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.notfound-links {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.95rem;
}

.notfound-links a {
    color: var(--primary-purple);
    text-decoration: none;
    transition: color 0.2s;
}

.notfound-links a:hover {
    text-decoration: underline;
}

.notfound-sep {
    color: var(--text-gray);
}

@media (max-width: 640px) {
    .notfound {
        padding: 80px 0 60px;
    }
    .notfound-actions {
        flex-direction: column;
        align-items: center;
    }
    .notfound-actions a {
        width: 100%;
        max-width: 320px;
    }
}