@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800;900&family=Fraunces:ital,opsz,wght@1,9..144,300;1,9..144,400&display=swap');

:root {
    --bg-color: #ffffff;
    --text-color: #000000;
    --accent-color: #437dff;
    --accent-gradient: linear-gradient(135deg, #437dff 0%, #1e4ef2 100%);
    --grid-color: rgba(0, 0, 0, 0.04);
    /* Très léger */
    --marker-color: rgba(0, 0, 0, 0.1);
    --glass-bg: rgba(0, 0, 0, 0.02);
    --glass-border: rgba(0, 0, 0, 0.05);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --font-accent: 'Fraunces', serif;
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* RTL Support — universel pour toutes les langues RTL (ar, he, fa, ur…) */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .logo,
[dir="rtl"] nav,
[dir="rtl"] .hero-content,
[dir="rtl"] .section-title {
    text-align: right;
}

[dir="rtl"] .lang-dropdown {
    direction: ltr;
}

[dir="rtl"] .lang-switcher {
    padding-left: 0;
    padding-right: 1rem;
    border-left: none;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

[dir="rtl"] .portfolio-item:nth-child(even) {
    flex-direction: row;
}

[dir="rtl"] .portfolio-item:nth-child(odd) {
    flex-direction: row-reverse;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    letter-spacing: -2px;
}

/* Header & Nav */
.burger-menu {
    display: none !important;
    font-size: 2.2rem;
    color: var(--text-color);
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition);
}

.burger-menu:active {
    transform: scale(0.9);
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    padding: 1.2rem 5%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -1.5px;
    color: #000;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav ul li a {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    opacity: 0.6;
    transition: var(--transition);
}

nav ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.lang-switcher {
    padding-left: 1rem;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.03);
    color: #000;
    transition: var(--transition);
}

.lang-btn:hover {
    background: rgba(0, 0, 0, 0.08);
}

.lang-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: #fff;
    min-width: 180px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 1rem 0;
    margin-top: 1rem;
    z-index: 1001;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Pont invisible pour maintenir le hover entre le bouton et le menu */
.lang-content::before {
    content: '';
    position: absolute;
    top: -1.2rem;
    left: 0;
    right: 0;
    height: 1.5rem;
    background: transparent;
}

.lang-content a {
    color: #666;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.lang-content a:hover {
    background-color: #f8f9fa;
    color: var(--accent-color);
    padding-left: 1.8rem;
}

.lang-content a.active {
    color: var(--accent-color);
    font-weight: 700;
}

.lang-dropdown:hover .lang-content {
    display: block;
    animation: fadeInScale 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }

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

/* Grid Background */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Aligner vers le haut pour contrôler l'espacement */
    align-items: center;
    position: relative;
    padding: 250px 5% 150px;
    /* Beaucoup plus d'espace en haut */
    overflow: hidden;
    background-color: var(--bg-color);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 80px 80px;
    background-position: center center;
    -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 80%);
    mask-image: radial-gradient(circle at center, black 0%, transparent 80%);
    pointer-events: none;
    z-index: 1;
}

/* Plus markers at intersections - Tiny and faint */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 3.5V6.5' stroke='rgba(0,0,0,0.1)' stroke-width='0.8'/%3E%3Cpath d='M3.5 5H6.5' stroke='rgba(0,0,0,0.1)' stroke-width='0.8'/%3E%3C/svg%3E");
    background-size: 80px 80px;
    background-position: center center;
    -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 80%);
    mask-image: radial-gradient(circle at center, black 0%, transparent 80%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    z-index: 10;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-availability {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #fff;
    padding: 10px 22px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    gap: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.badge-availability::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #2dd4bf;
    border-radius: 50%;
    box-shadow: 0 0 15px #2dd4bf;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-content h1 {
    font-size: clamp(2rem, 7.5vw, 5.5rem);
    line-height: 0.95;
    margin: 0 auto 2.5rem;
    font-weight: 800;
    color: #111;
    letter-spacing: -4px;
    text-align: center;
}

.hero-content h1 em {
    font-style: italic;
    font-family: var(--font-accent);
    color: var(--accent-color);
    font-weight: 400;
    letter-spacing: 0;
    display: inline-block;
    padding-left: 15px;
}

.hero-content p {
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 3.5rem;
    color: rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    text-align: center;
}

.btn-primary {
    background: var(--accent-color);
    color: #fff;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition);
    box-shadow: 0 20px 40px rgba(67, 125, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(67, 125, 255, 0.35);
}

.btn-outline {
    background: transparent;
    color: #000;
    border: 1px solid rgba(0, 0, 0, 0.15);
    padding: 1.1rem 3rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--transition);
}

.btn-outline:hover {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}

.btn-premium-gold {
    background: #ffb800;
    background: linear-gradient(135deg, #ffb800 0%, #ff8a00 100%);
    color: #fff;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-premium-gold:hover {
    background: linear-gradient(135deg, #ffc42e 0%, #ff9d2d 100%);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Floating Elements Fix */
.floating-cursor {
    position: absolute;
    display: flex;
    align-items: flex-start;
    gap: 0;
    pointer-events: none;
    z-index: 5;
    animation: float-around 12s ease-in-out infinite;
}

.cursor-icon {
    width: 20px;
    height: 20px;
    margin-top: -2px;
    margin-left: -2px;
}

.cursor-label {
    background: var(--tag-color, var(--accent-color));
    color: #fff;
    padding: 8px 18px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

@keyframes float-around {

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

    33% {
        transform: translate(30px, -20px);
    }

    66% {
        transform: translate(-20px, 40px);
    }
}

.trusted-by {
    width: 100%;
    padding: 6rem 10% 8rem;
    background: #fff;
    text-align: center;
    position: relative;
    z-index: 10;
}

.trusted-by p {
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    opacity: 0.4;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 5rem;
    opacity: 0.3;
    filter: grayscale(1);
}

.logos-grid img {
    height: 30px;
    width: auto;
    transition: var(--transition);
}

.logos-grid img:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* Services */
.services {
    padding: 10rem 5%;
    background: #fbfbfc;
}

/* About Section */
.about {
    padding: 10rem 5%;
    background: #fff;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 8%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-img {
    flex: 1;
    border-radius: 5px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

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

.about-content {
    flex: 1.2;
}

.about-content p {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.stats-row {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: -2px;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.4;
}


.section-title {
    margin-bottom: 6rem;
    max-width: 800px;
}

.section-title h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #000;
}

.section-title p {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.4);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.service-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 4rem;
    border-radius: 5px;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.service-card:hover {
    background: #fff;
    border-color: var(--accent-color);
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
}

.service-card i {
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
    display: block;
    color: var(--accent-color);
}

.service-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-card p {
    color: rgba(0, 0, 0, 0.5);
    font-size: 1.05rem;
}

/* Portfolio Highlight */
.portfolio {
    padding: 10rem 5%;
    background: #fff;
}

.portfolio-item {
    display: flex;
    align-items: center;
    gap: 8%;
    margin-bottom: 12rem;
}

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

.portfolio-img {
    flex: 1.2;
    border-radius: 5px;
    overflow: hidden;
    height: 600px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-img:hover img {
    transform: scale(1.08);
}

.portfolio-info {
    flex: 1;
}

.portfolio-info h3 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #111;
}

.portfolio-info p {
    font-size: 1.15rem;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* Testimonials */
.testimonials {
    padding: 10rem 5%;
    background: #fbfbfc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fff;
    padding: 4rem;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-content p {
    font-size: 1.4rem;
    font-family: var(--font-accent);
    color: #111;
    line-height: 1.5;
    margin-bottom: 3rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info strong {
    display: block;
    font-size: 1.1rem;
    color: #111;
}

.author-info span {
    font-size: 0.9rem;
    opacity: 0.5;
}


/* Contact Section */
.contact {
    padding: 10rem 5%;
    background: #fff;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 8%;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-info {
    padding-top: 2rem;
}

.info-block {
    margin-bottom: 4rem;
}

.info-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.info-block p {
    font-size: 1.1rem;
    opacity: 0.6;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-block p a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.info-block p a:hover {
    color: var(--accent-color);
}

.info-block i {
    color: var(--accent-color);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #111;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    transform: translateY(-5px);
}

form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: #fff;
    padding: 4.5rem;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.input-group label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(0, 0, 0, 0.4);
}

input,
textarea {
    background: #f8f9fa;
    border: 1px solid transparent;
    padding: 1.4rem;
    border-radius: 5px;
    color: #000;
    width: 100%;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

input:focus,
textarea:focus {
    outline: none;
    background: #fff;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(67, 125, 255, 0.1);
}


/* Footer */
footer {
    padding: 8rem 5% 4rem;
    background: #000;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto 6rem;
}

.footer-brand .logo {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    font-size: 1.2rem;
    opacity: 0.6;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    opacity: 0.4;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    opacity: 0.6;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 4rem;
    text-align: center;
}

.copyright {
    opacity: 0.4;
    font-size: 0.9rem;
    font-weight: 500;
}


/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure content is visible if JS fails or for hero section */
.hero .reveal {
    opacity: 1 !important;
    transform: none !important;
}

@media (max-width: 1024px) {

    .portfolio-item,
    .portfolio-item:nth-child(even) {
        flex-direction: column;
        gap: 3rem;
        margin-bottom: 8rem;
    }

    .portfolio-img {
        height: 400px;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 4rem;
    }

    .about-container,
    .contact-container {
        flex-direction: column;
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .about-img {
        height: 400px;
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1.5rem 5%;
    }

    .burger-menu {
        display: block !important;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-color);
        padding: 3rem 5%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        text-align: center;
        z-index: 1000;
        transition: all 0.3s ease;
    }

    nav.active {
        display: block;
        animation: fadeInDown 0.3s forwards;
    }

    nav ul {
        flex-direction: column;
        gap: 2rem;
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

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

    .section-title h2 {
        font-size: 3rem;
    }

    .service-card {
        padding: 2.5rem;
    }

    form {
        padding: 2.5rem;
    }

    .stats-row {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Redesign Page Specific Styles --- */
:root {
    --bg-dark: #050505;
    --glass-white: rgba(255, 255, 255, 0.03);
    --glass-border-white: rgba(255, 255, 255, 0.1);
}

.redesign-hero {
    padding: 180px 5% 100px;
    background: var(--bg-dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.redesign-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(67, 125, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.redesign-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.tag-status {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(67, 125, 255, 0.1);
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.redesign-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #fff;
}

.redesign-hero p.lead-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin-bottom: 3rem;
}

/* Before/After Showcase */
.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 5rem;
}

.showcase-item {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid var(--glass-border-white);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.showcase-item label {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: #fff;
    color: #000;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    z-index: 10;
}

.showcase-item.after label {
    background: var(--accent-color);
    color: #fff;
}

.showcase-item img {
    width: 100%;
    display: block;
    transition: transform 0.8s ease;
}

.showcase-item:hover img {
    transform: scale(1.05);
}

/* Benefits Section */
.benefits-section {
    padding: 100px 5%;
    background: #fff;
}

.benefit-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.benefit-card {
    padding: 3.5rem;
    border-radius: 5px;
    background: #f8f9fa;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    display: block;
}

.benefit-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.benefit-card p {
    color: rgba(0, 0, 0, 0.5);
    font-size: 1rem;
}

/* Pricing & Options */
.order-section {
    padding: 100px 5%;
    background: #fbfbfc;
}

.order-card {
    background: #fff;
    border-radius: 5px;
    padding: 5rem;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 5rem;
}

.order-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.price-tag {
    font-size: 4rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--accent-color);
    margin-bottom: 2rem;
    letter-spacing: -3px;
}

.options-list {
    list-style: none;
    margin-top: 2rem;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 5px;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.option-item:hover {
    background: #fff;
    border-color: var(--accent-color);
}

.option-item.active {
    background: #fff;
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(67, 125, 255, 0.1);
}

.option-item input[type="checkbox"] {
    width: 24px;
    height: 24px;
    border-radius: 5px;
    cursor: pointer;
}

.option-info strong {
    display: block;
    font-size: 1.1rem;
}

.option-info span {
    font-size: 0.85rem;
    opacity: 0.5;
}

.cta-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.secure-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.8rem;
    opacity: 0.4;
    justify-content: center;
}

@media (max-width: 991px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .benefit-cards {
        grid-template-columns: 1fr;
    }

    .order-card {
        grid-template-columns: 1fr;
        padding: 3rem;
    }
}

/* Additional layout fixes */
.section-contact {
    background: transparent;
}

.contact-header {
    text-align: center;
    margin: 0 auto 4rem;
}

.contact-form-redesign {
    max-width: 700px;
    margin: 0 auto;
}

.btn-submit-redesign {
    justify-content: center;
}

.footer-redesign {
    margin-top: 5rem;
}

.footer-copy {
    text-align: center;
    opacity: 0.5;
}


/* --- Redesign Configurator Specific Styles --- */

/* Header reset for light theme */
#main-header.header-fixed-dark {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

#main-header.header-fixed-dark .logo {
    color: #000 !important;
}

#main-header.header-fixed-dark nav ul li a {
    color: #000 !important;
    opacity: 0.8;
}

#main-header.header-fixed-dark .lang-btn {
    background: rgba(0, 0, 0, 0.05) !important;
    color: #000 !important;
}

.configurator-hero {
    padding: 160px 5% 100px;
    background: #fcfdfe;
    color: #111;
    position: relative;
    overflow: hidden;
}

.configurator-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(67, 125, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.config-header-centered {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.config-header-centered h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 25px;
    color: #111;
    letter-spacing: -3px;
}

.config-header-centered h1 em {
    font-style: italic;
    color: var(--accent-color);
    font-weight: 400;
}

.config-header-centered .lead-text {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 0;
    max-width: 750px;
    margin: 0 auto;
}

.hero-config-wrapper {
    display: grid;
    grid-template-columns: 1fr 550px;
    gap: 60px;
    align-items: start;
    max-width: 1500px;
    margin: 0 auto;
}

/* Comparison Slider (Redesign) */
.comparison-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 12;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
    background: #f0f0f0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    user-select: none;
    touch-action: none;
}

.comparison-slider.is-dragging {
    cursor: grabbing !important;
}

.before-image,
.after-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.after-image {
    position: absolute;
    inset: 0;
    width: 100%;
    z-index: 2;
    clip-path: inset(0 50% 0 0);
    /* On rogne la partie droite */
}

.before-image img,
.after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    pointer-events: none;
}

.badge {
    position: absolute;
    bottom: 25px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 10;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.badge i {
    margin-right: 6px;
}

.badge.avant {
    left: 25px;
    background: rgba(255, 255, 255, 0.9);
    color: #111;
    backdrop-filter: blur(8px);
}

.badge.apres {
    right: 25px;
    background: var(--accent-gradient);
    color: #fff;
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: #fff;
    z-index: 3;
    cursor: grab;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.handle-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: #fff;
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.comparison-slider:hover .handle-icon {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 15px 50px rgba(67, 125, 255, 0.4);
}

.handle-icon::before,
.handle-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #fff;
    animation: handle-pulse 2s infinite;
}

.handle-icon::after {
    animation-delay: 1s;
}

@keyframes handle-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.comparison-slider[style*="transition"] .after-image,
.comparison-slider[style*="transition"] .slider-handle {
    transition: inherit;
}

/* Feature Cards (Redesign) */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.f-card {
    background: #fff;
    padding: 25px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.f-card i {
    font-size: 1.4rem;
    color: var(--accent-color);
}

.f-info strong {
    display: block;
    font-size: 1rem;
    color: #111;
}

.f-info span {
    font-size: 0.8rem;
    color: #999;
}

/* Sidebar Config (Redesign) */
.config-sidebar {
    position: sticky;
    top: 120px;
}

.config-panel {
    background: #fff;
    padding: 40px;
    border-radius: 5px;
    color: #000;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.control-group {
    margin-bottom: 40px;
}

.control-group h3 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

.base-price-box {
    padding: 25px;
    background: #f8f9fa;
    border-radius: 5px;
    border: 1px solid #eee;
}

.base-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.base-main strong {
    font-size: 1.1rem;
    color: #111;
}

.base-val {
    font-weight: 800;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.base-price-box p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.extension-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.ext-info strong {
    display: block;
    font-size: 1rem;
    color: #111;
}

.ext-info span {
    font-size: 0.8rem;
    color: #888;
}

.switch {
    position: relative;
    display: inline-block;
    width: 54px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #eee;
    transition: .4s;
    border-radius: 5px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

input:checked+.slider {
    background-color: var(--accent-color);
}

input:checked+.slider:before {
    transform: translateX(24px);
}

.config-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #f0f0f0;
}

.total-row-config {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.total-label-config {
    font-size: 0.8rem;
    font-weight: 800;
    color: #999;
    letter-spacing: 1px;
}

.total-price-config {
    font-size: 2.8rem;
    font-weight: 900;
    color: #111;
    line-height: 1;
    margin-top: 10px;
    letter-spacing: -2px;
}

.total-price-config span {
    font-size: 1rem;
    color: #aaa;
    font-weight: 500;
    margin-left: 5px;
}

.delay-info-config {
    text-align: right;
    color: #999;
    font-size: 0.8rem;
}

.delay-info-config strong {
    display: block;
    color: #111;
    font-size: 1rem;
    margin-top: 5px;
}

.btn-cart-config {
    width: 100%;
    background: var(--accent-gradient);
    color: #fff;
    padding: 22px;
    border-radius: 5px;
    font-weight: 800;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(67, 125, 255, 0.2);
}

.btn-cart-config:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(67, 125, 255, 0.3);
}

.footer-note-config {
    font-size: 0.75rem;
    color: #bbb;
    text-align: center;
    margin-top: 20px;
}

@media (max-width: 1100px) {
    .hero-config-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .config-sidebar {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-text-content h1 {
        font-size: 2.5rem;
    }
}

/* Benefits (Redesign) */
.benefits-section-redesign {
    padding: 100px 5%;
    background: #fff;
    color: #111;
    text-align: center;
}

.benefits-section-redesign .section-title h2 {
    color: #111;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefits-section-redesign .section-title p {
    color: #888;
    margin-bottom: 50px;
}

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

.benefit-card-redesign {
    background: #fff;
    padding: 40px;
    border-radius: 5px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
}

.benefit-card-redesign i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.benefit-card-redesign h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #111;
}

.benefit-card-redesign p {
    font-size: 0.95rem;
    color: #777;
}

/* --- Enhanced Redesign Styles --- */

.urgency-banner {
    background: linear-gradient(90deg, #0f0f0f, #1a1a2e);
    color: #fff;
    padding: 14px 5%;
    text-align: center;
    position: relative;
    z-index: 1100;
    font-size: 0.9rem;
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #f43f5e;
    border-radius: 50%;
    box-shadow: 0 0 10px #f43f5e;
    animation: pulse 2s infinite;
}

.guarantee-badge {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

.guarantee-badge i {
    color: #2dd4bf;
    font-size: 1rem;
}

/* ========== GROWTH HERO ========== */
.growth-hero {
    padding: 120px 5% 100px;
    background: #fcfdfe;
    position: relative;
    overflow: hidden;
}

.growth-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(67, 125, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.growth-hero-inner {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.growth-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(67, 125, 255, 0.08);
    border: 1px solid rgba(67, 125, 255, 0.2);
    color: var(--accent-color);
    padding: 10px 24px;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.growth-hero-inner h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.05;
    color: #111;
    letter-spacing: -3px;
    margin-bottom: 1.5rem;
}

.growth-hero-inner h1 em {
    font-style: italic;
    font-family: var(--font-accent);
    color: var(--accent-color);
    font-weight: 400;
    letter-spacing: 0;
}

.growth-hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.growth-hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-glow {
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        box-shadow: 0 20px 40px rgba(67, 125, 255, 0.25);
    }

    50% {
        box-shadow: 0 20px 60px rgba(67, 125, 255, 0.45);
    }
}

.btn-outline-light {
    background: transparent;
    color: #333;
    border: 2px solid rgba(0, 0, 0, 0.12);
    padding: 1.1rem 2.5rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-outline-light:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* Problem / Solution Bar */
.problem-solution-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.04);
}

.ps-card {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: 5px;
}

.ps-problem {
    background: #fff5f5;
}

.ps-solution {
    background: #f0fdf4;
}

.ps-problem .ps-icon {
    color: #ef4444;
    font-size: 1.5rem;
}

.ps-solution .ps-icon {
    color: #22c55e;
    font-size: 1.5rem;
}

.ps-text strong {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
    color: #111;
}

.ps-text span {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.ps-arrow {
    color: #ccc;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ========== IMPACT SECTION ========== */
.impact-section {
    padding: 100px 5%;
    background: #fcfdfe;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.impact-card {
    background: #fff;
    padding: 40px;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

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

.impact-card-accent {
    background: var(--accent-gradient);
    color: #fff;
    border: none;
}

.impact-card-accent .impact-icon i {
    color: #fff !important;
}

.impact-card-accent .impact-value {
    color: #fff !important;
}

.impact-card-accent .impact-label {
    color: rgba(255, 255, 255, 0.9) !important;
}

.impact-card-accent p {
    color: rgba(255, 255, 255, 0.7) !important;
}

.impact-icon {
    width: 64px;
    height: 64px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: rgba(67, 125, 255, 0.08);
}

.impact-card-accent .impact-icon {
    background: rgba(255, 255, 255, 0.15);
}

.impact-icon i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.impact-value {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-color);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -2px;
}

.impact-label {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    color: #111;
    margin-bottom: 12px;
}

.impact-card p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.5;
}

/* ========== PILLARS SECTION ========== */
.pillars-section {
    padding: 100px 5%;
    background: #fff;
}

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

.pillar-card {
    position: relative;
    background: #f8f9fa;
    padding: 45px 35px;
    border-radius: 5px;
    transition: var(--transition);
    border: 2px solid transparent;
    overflow: hidden;
}

.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
    background: #fff;
}

.pillar-card-highlight {
    background: #fff;
    border-color: var(--accent-color);
    box-shadow: 0 30px 80px rgba(67, 125, 255, 0.12);
}

.pillar-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-gradient);
    color: #fff;
    padding: 6px 16px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pillar-number {
    font-size: 5rem;
    font-weight: 900;
    color: var(--accent-color);
    opacity: 0.06;
    line-height: 1;
    margin-bottom: 10px;
}

.pillar-icon {
    width: 60px;
    height: 60px;
    background: rgba(67, 125, 255, 0.08);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pillar-icon i {
    font-size: 1.4rem;
    color: var(--accent-color);
}

.pillar-card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.pillar-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.pillar-checklist {
    list-style: none;
    padding: 0;
}

.pillar-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}

.pillar-checklist li i {
    color: #22c55e;
    font-size: 0.8rem;
}

/* ========== TRANSFORM / COMPARISON SECTION ========== */
.transform-section {
    padding: 100px 5%;
    background: #fcfdfe;
}

.transform-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.transform-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.t-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    background: #fff;
    padding: 12px 20px;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.t-highlight i {
    color: var(--accent-color);
}

/* ========== SOCIAL PROOF ========== */
.social-proof-section {
    padding: 100px 5%;
    background: #fff;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 35px;
    max-width: 1100px;
    margin: 0 auto;
}

.proof-card {
    background: #fff;
    padding: 40px;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 25px;
    transition: var(--transition);
}

.proof-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
}

.proof-result {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.proof-number {
    font-size: 3rem;
    font-weight: 900;
    font-family: var(--font-heading);
    color: var(--accent-color);
    letter-spacing: -2px;
    line-height: 1;
}

.proof-metric {
    font-size: 1rem;
    font-weight: 600;
    color: #555;
}

.proof-quote p {
    font-size: 1.15rem;
    font-family: var(--font-accent);
    color: #333;
    line-height: 1.6;
    font-style: italic;
}

.proof-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.proof-author-info strong {
    display: block;
    font-size: 1rem;
    color: #111;
}

.proof-author-info span {
    font-size: 0.85rem;
    color: #888;
}

/* ========== INVESTMENT SECTION ========== */
.investment-section {
    padding: 100px 5%;
    background: #f8f9fb;
}

.invest-wrapper {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.invest-included h3 {
    font-size: 2rem;
    color: #111;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.invest-included h3 i {
    color: var(--accent-color);
    margin-right: 10px;
}

.invest-subtitle {
    font-size: 1.05rem;
    color: #888;
    margin-bottom: 35px;
}

.include-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.include-list li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.include-list li:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.include-icon {
    width: 48px;
    height: 48px;
    border-radius: 5px;
    background: rgba(67, 125, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.include-icon i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.include-text strong {
    display: block;
    font-size: 1.05rem;
    color: #111;
    margin-bottom: 4px;
}

.include-text span {
    font-size: 0.9rem;
    color: #888;
}

.invest-pricing {
    position: sticky;
    top: 120px;
}

.invest-price-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.invest-label {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #999;
    display: block;
    margin-bottom: 10px;
}

.invest-price {
    font-size: 3.2rem;
    font-weight: 900;
    color: #111;
    font-family: var(--font-heading);
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 10px;
}

.invest-price .ht-label {
    font-size: 1rem;
    color: #aaa;
    font-weight: 500;
    margin-left: 5px;
}

.invest-note {
    font-size: 0.85rem;
    color: #22c55e;
    font-weight: 600;
}

.invest-trust-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #999;
    font-weight: 600;
}

.trust-item i {
    color: #22c55e;
    font-size: 0.85rem;
}

/* Form reassurance */
.form-reassurance {
    text-align: center;
    font-size: 0.85rem;
    color: #999;
    margin-top: 10px;
    font-weight: 500;
}

.form-reassurance i {
    color: #22c55e;
    margin-right: 6px;
}

/* Process Section */
.process-section {
    padding: 100px 5%;
    background: #fff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

.process-step {
    position: relative;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 5px;
    transition: var(--transition);
}

.process-step:hover {
    background: #fff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
    transform: scale(1.02);
}

.step-num {
    font-size: 5rem;
    font-weight: 900;
    color: var(--accent-color);
    opacity: 0.1;
    position: absolute;
    top: -10px;
    right: 20px;
    line-height: 1;
}

.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.process-step p {
    font-size: 0.95rem;
    color: #666;
    position: relative;
    z-index: 2;
}

.redesign-testimonials {
    background: #fcfdfe;
}

/* ========== CHECKOUT SECTION ========== */
.checkout-section {
    padding: 100px 5%;
    background: #fff;
}

.checkout-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.checkout-summary {
    background: #f8f9fb;
    padding: 35px;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 120px;
}

.checkout-summary h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: #111;
    letter-spacing: -0.5px;
}

.checkout-summary h3 i {
    color: var(--accent-color);
    margin-right: 10px;
}

.checkout-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.95rem;
    color: #444;
}

.checkout-line strong {
    color: #111;
    white-space: nowrap;
}

.checkout-line-option {
    font-size: 0.9rem;
    color: #666;
}

.checkout-line-option strong {
    color: var(--accent-color);
    font-weight: 700;
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 0;
    margin-top: 10px;
    font-size: 1.1rem;
    font-weight: 800;
    color: #111;
}

.checkout-total strong {
    font-size: 1.6rem;
    font-family: var(--font-heading);
    color: var(--accent-color);
    letter-spacing: -1px;
}

.checkout-guarantees {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cg-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #777;
    font-weight: 600;
}

.cg-item i {
    color: #22c55e;
    font-size: 0.9rem;
    width: 18px;
    text-align: center;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: #fff;
    padding: 40px;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.04);
}

.btn-checkout {
    width: 100%;
    background: var(--accent-gradient);
    color: #fff;
    padding: 22px;
    border-radius: 5px;
    font-weight: 800;
    border: none;
    font-size: 1.15rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(67, 125, 255, 0.25);
    animation: glow-pulse 3s ease-in-out infinite;
}

.btn-checkout:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(67, 125, 255, 0.35);
}

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

@media (max-width: 1100px) {
    .invest-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .invest-pricing {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .checkout-wrapper {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .growth-hero {
        padding: 140px 5% 60px;
    }

    .growth-hero-inner h1 {
        font-size: 2.5rem;
        letter-spacing: -2px;
    }

    .problem-solution-bar {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }

    .ps-arrow {
        transform: rotate(90deg);
    }

    .impact-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .impact-value {
        font-size: 2.8rem;
    }

    .proof-grid {
        grid-template-columns: 1fr;
    }

    .growth-hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .invest-price {
        font-size: 2.5rem;
    }

    .checkout-form {
        padding: 25px;
    }
}

/* ========== 404 PAGE & LEGAL PAGES ========== */

.error-404 {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.error-404-number {
    font-size: 8rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--accent-color), #818cf8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 0;
}

.legal-content {
    padding: 12rem 5% 8rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.legal-content h1 {
    font-size: 3.5rem;
    margin-bottom: 4rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}


/* ========== STRIPE INTEGRATION ========== */

/* Payment Badges */
.stripe-payment-badges {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.stripe-powered {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #999;
    font-weight: 600;
}

.stripe-powered i {
    font-size: 1.8rem;
    color: #635bff;
}

.payment-cards {
    display: flex;
    gap: 10px;
    align-items: center;
}

.payment-cards i {
    font-size: 2rem;
    color: #bbb;
    transition: color 0.3s ease;
}

.payment-cards i:hover {
    color: #635bff;
}

/* Checkout Button States */
.btn-checkout {
    position: relative;
}

.btn-checkout-text,
.btn-checkout-loading {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-checkout:disabled {
    opacity: 0.85;
    cursor: not-allowed;
    transform: none !important;
}

.btn-checkout .fab.fa-stripe-s {
    font-size: 1.3rem;
}

/* Spinner */
.stripe-spinner {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: stripe-spin 0.7s linear infinite;
    display: inline-block;
    flex-shrink: 0;
}

@keyframes stripe-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Error Message */
.stripe-error {
    text-align: center;
    padding: 14px 20px;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 5px;
    color: #dc2626;
    font-size: 0.9rem;
    font-weight: 600;
    animation: stripe-shake 0.4s ease;
}

@keyframes stripe-shake {

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

    20% {
        transform: translateX(-8px);
    }

    40% {
        transform: translateX(8px);
    }

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

    80% {
        transform: translateX(5px);
    }
}

/* ========== STRIPE RESULT PAGES (Success / Cancel) ========== */
.stripe-result-section {
    padding: 160px 5% 100px;
    background: linear-gradient(180deg, #f8f9fb 0%, #fff 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.stripe-result-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 50px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.stripe-result-icon {
    margin-bottom: 30px;
}

.success-circle,
.cancel-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    animation: stripe-pop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.success-circle {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.3);
}

.cancel-circle {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.3);
}

@keyframes stripe-pop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    60% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.stripe-result-card h1 {
    font-size: 2.5rem;
    letter-spacing: -1.5px;
    margin-bottom: 15px;
    color: #111;
}

.stripe-result-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto 40px;
}

/* Next Steps */
.stripe-next-steps {
    text-align: left;
    background: #f8f9fb;
    padding: 35px;
    border-radius: 5px;
    margin-bottom: 35px;
}

.stripe-next-steps h3 {
    font-size: 1.3rem;
    color: #111;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.stripe-next-steps h3 i {
    color: var(--accent-color);
    margin-right: 10px;
}

.next-steps-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.next-step-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 15px 20px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
}

.next-step-item:hover {
    transform: translateX(6px);
}

.next-step-num {
    width: 36px;
    height: 36px;
    background: var(--accent-gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.next-step-content strong {
    display: block;
    font-size: 1rem;
    color: #111;
    margin-bottom: 4px;
}

.next-step-content span {
    font-size: 0.9rem;
    color: #888;
}

.stripe-result-actions {
    margin-top: 10px;
}

.stripe-result-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .stripe-result-card {
        padding: 40px 25px;
    }

    .stripe-result-card h1 {
        font-size: 1.8rem;
    }

    .stripe-next-steps {
        padding: 25px 20px;
    }

    .stripe-payment-badges {
        flex-direction: column;
    }
}