/* Base & Variables */
:root {
    --bg-color: #f8fafc;
    /* Fond très clair / Blanc cassé */
    --surface-color: rgba(255, 255, 255, 0.8);
    --surface-hover: rgba(255, 255, 255, 1);
    --border-color: rgba(30, 58, 138, 0.1);
    /* Bordures subtiles bleues */

    --primary: #1e3a8a;
    /* Bleu Marine / Navy Blue */
    --primary-hover: #1e40af;
    --secondary: #0f172a;
    /* Texte foncé */
    --accent: #3b82f6;
    /* Bleu plus clair pour les accents */

    --text-primary: #0f172a;
    --text-secondary: #475569;

    /* Category Colors - vibrant pastels */
    --color-cafe: #fed7aa;
    /* Orange/Peach */
    --color-restaurant: #bbf7d0;
    /* Mint Green */
    --color-fastfood: #fef08a;
    /* Yellow/Mustard */
    --color-glacier: #bae6fd;
    /* Sky Blue */

    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-blur: blur(12px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Gradients */
.bg-gradient-1,
.bg-gradient-2 {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.2;
    animation: drift 20s infinite alternate;
}

.bg-gradient-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
}

.bg-gradient-2 {
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    animation-delay: -10s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(5%, 5%) scale(1.1);
    }
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 600;
    line-height: 1.1;
    color: var(--secondary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.highlight {
    color: var(--primary);
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 800;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -1px;
}

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 30px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: var(--transition);
    z-index: 999;
}

.mobile-menu.open {
    left: 0;
}

.mobile-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 2rem;
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
    color: #ffffff;
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
}

.btn-secondary:hover {
    background: var(--surface-hover);
    border-color: var(--primary);
    color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem 2rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    font-size: 0.85rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}

.hero-visual {
    position: relative;
    height: 600px;
}

/* Glass Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 1.5rem;
    position: absolute;
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.08);
}

.main-glass-card {
    width: 80%;
    height: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.small-glass-card {
    width: 200px;
    bottom: 5%;
    right: 0;
    z-index: 2;
}

.floating-1 {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Placeholders Modernisés */
.placeholder-image {
    width: 100%;
    height: 70%;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(59, 130, 246, 0.05));
    position: relative;
    overflow: hidden;
}

.placeholder-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(30, 58, 138, 0.02) 10px, rgba(30, 58, 138, 0.02) 20px);
}

.type-2 {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), transparent);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.image-wrapper {
    position: relative;
}

.about-img {
    height: 500px;
    border-radius: 24px;
    background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
    border: 1px solid var(--border-color);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: #ffffff;
    padding: 2rem;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
}

.experience-badge .number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.features-list {
    list-style: none;
    margin-top: 2rem;
}

.features-list li {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.features-list li:hover {
    transform: translateX(10px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.05);
}

.icon {
    font-size: 2rem;
}

/* Products Section */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-inline: auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

/* Category specific background colors */
.product-card.card-cafe {
    background-color: var(--color-cafe);
}

.product-card.card-restaurant {
    background-color: var(--color-restaurant);
}

.product-card.card-fastfood {
    background-color: var(--color-fastfood);
}

.product-card.card-glacier {
    background-color: var(--color-glacier);
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.1);
}

.product-img-wrapper {
    position: relative;
    height: 250px;
    padding: 1rem;
}

.product-img-wrapper .placeholder-image {
    height: 100%;
    margin: 0;
    border-radius: 12px;
    background: #f1f5f9;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 58, 138, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    border-radius: 24px 24px 0 0;
}

.product-card:hover .overlay {
    opacity: 1;
}

.overlay .btn-icon {
    background: white;
    color: var(--primary);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.overlay .btn-icon:hover {
    transform: scale(1.05);
}

.product-info {
    padding: 2rem;
}

/* Contact Forms */
.glass-panel {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    box-shadow: 0 20px 50px rgba(30, 58, 138, 0.05);
}

.info-items {
    margin-top: 3rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group {
    position: relative;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 1.2rem 1rem;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.input-group label {
    position: absolute;
    left: 1rem;
    top: 1.2rem;
    color: var(--text-secondary);
    transition: var(--transition);
    pointer-events: none;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.input-group input:focus~label,
.input-group input:not(:placeholder-shown)~label,
.input-group textarea:focus~label,
.input-group textarea:not(:placeholder-shown)~label {
    transform: translateY(-2.2rem) scale(0.85);
    color: var(--primary);
    left: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0 5px;
    border-radius: 4px;
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    margin-top: 4rem;
    background: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

/* Animations - Intersection Observer Classes */
.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.fade-in.appear {
    opacity: 1;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.appear {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.appear {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.appear {
    opacity: 1;
    transform: translateX(0);
}


/* Responsive */
@media (max-width: 992px) {

    .hero,
    .about-grid,
    .glass-panel {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero {
        padding-top: 8rem;
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-visual {
        height: 400px;
    }

    .about-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu-btn.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-btn.open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .glass-panel {
        padding: 2rem;
    }

    .experience-badge {
        width: 120px;
        height: 120px;
        padding: 1rem;
    }

    .experience-badge .number {
        font-size: 2rem;
    }
}

/* Category Images */
.prod-cafe {
    background: url('assets/cafe_packaging_1772512616099.png') center/cover no-repeat !important;
}

.prod-restaurant {
    background: url('assets/restaurant_packaging_1772512646447.png') center/cover no-repeat !important;
}

.prod-fast-food {
    background: url('assets/fast_food_packaging_1772512631269.png') center/cover no-repeat !important;
}

.prod-glacier {
    background: url('assets/glacier_packaging_1772512662364.png') center/cover no-repeat !important;
}

/* Features grid in category pages */
.category-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-item {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.05);
    text-align: center;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.category-hero {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 8rem;
    position: relative;
    overflow: hidden;
}

.category-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-color);
    z-index: -1;
}

/* Category specific hero backgrounds */
.hero-cafe::before {
    background: var(--color-cafe);
}

.hero-restaurant::before {
    background: var(--color-restaurant);
}

.hero-fastfood::before {
    background: var(--color-fastfood);
}

.hero-glacier::before {
    background: var(--color-glacier);
}

/* Solutions Personnalisées Section */
.custom-solutions {
    text-align: center;
    padding: 2rem 0;
}

.section-subtitle {
    color: #f97316;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.section-subtitle::before,
.section-subtitle::after {
    content: '';
    width: 20px;
    height: 2px;
    background: #f97316;
}

.custom-solutions h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--primary);
}

.custom-solutions .highlight-orange {
    color: #fdba74;
    text-shadow: 0 0 20px rgba(249, 115, 22, 0.2);
    font-family: var(--font-main);
    font-style: normal;
}

.custom-solutions p {
    max-width: 800px;
    margin: 1.5rem auto 0;
    font-size: 1.1rem;
}

/* Category Badges */
.category-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    margin-bottom: 3rem;
}

.spec-badge {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}

/* Detailed Product Card Exact Match */
.detailed-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.detailed-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    /* Clips the child elements to respect border-radius */
}

.detailed-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(30, 58, 138, 0.08);
    border-color: var(--primary);
}

.detailed-image {
    background: #f8fafc;
    /* Lighter top background */
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    /* Separates image from text slightly */
}

/* Fallback for when no actual image is used, to center emojis for now */
.detailed-image span {
    display: block;
}

.detailed-image img {
    max-height: 80%;
    max-width: 80%;
    object-fit: contain;
}

.detailed-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.detailed-info h3 {
    font-size: 1.3rem;
    color: var(--secondary);
    /* Darker blue */
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.detailed-info .capacity-subtitle {
    color: #64748b;
    /* slate 500 */
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

/* Specifications Table - Exact Match */
.spec-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.spec-table tr:not(:last-child) td {
    border-bottom: 1px dashed #cbd5e1;
    /* Dashed line */
}

.spec-table td {
    padding: 0.8rem 1rem;
    background: #fcfcfc;
    /* Very subtle off-white inside table */
}

.spec-table td:first-child {
    font-weight: 600;
    color: var(--secondary);
    width: 45%;
}

.spec-table td:last-child {
    text-align: right;
    color: #64748b;
    font-weight: 500;
}

.detailed-desc {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: #64748b;
    flex-grow: 1;
    /* Pushes button to bottom */
}

/* WhatsApp Button Externe */
.btn-whatsapp {
    background: #25D366;
    color: white;
    width: 100%;
    text-align: center;
    border-radius: 8px;
    padding: 0.8rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    text-decoration: none;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    margin-top: auto;
}

.btn-whatsapp:hover {
    background: #1ebc59;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    color: white;
}

/* --- NEW HOMEPAGE SECTIONS --- */

/* How It Works Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.step-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.04);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.08);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #f1f5f9;
    /* Light Slate */
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.step-card:hover .step-icon {
    background: var(--primary);
    color: #ffffff;
}

.step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: #f97316;
    /* Orange */
    color: white;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
}

.step-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Client Logo Marquee */
.logo-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: white;
    padding: 1rem 0;
}

.logo-marquee::before,
.logo-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15%;
    height: 100%;
    z-index: 2;
}

.logo-marquee::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.logo-marquee::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.marquee-track {
    display: flex;
    width: calc(250px * 8);
    /* based on 4 images duplicated twice */
    animation: scroll 25s linear infinite;
    align-items: center;
}

.marquee-track img {
    width: 250px;
    height: 120px;
    object-fit: contain;
    padding: 0 2rem;
    filter: grayscale(100%) opacity(0.6);
    transition: var(--transition);
}

.marquee-track img:hover {
    filter: grayscale(0%) opacity(1);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 4));
    }
}

/* Why Choose Us Section */
.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}