/* Styles pour le nouveau design de la page d'accueil */

/* Hero Section Moderne */
.hero-modern {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f6f0 0%, #ffffff 50%, #f0f8f0 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="heroPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23D4A574" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%234A7C59" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23heroPattern)"/></svg>');
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(45, 90, 63, 0.05) 100%);
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

.hero-title {
    font-family: var(--font-accent);
    margin-bottom: 2rem;
    line-height: 1.1;
}

.title-highlight {
    display: block;
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    margin-bottom: 0.5rem;
    animation: slideInLeft 0.8s ease-out;
}

.title-subtitle {
    display: block;
    font-size: 2rem;
    color: var(--gold-accent);
    font-weight: 500;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.hero-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 3rem;
    max-width: 90%;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.btn-hero {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-hero.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: white;
    box-shadow: 0 8px 25px rgba(45, 90, 63, 0.3);
}

.btn-hero.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(45, 90, 63, 0.4);
}

.btn-hero.btn-secondary {
    background: white;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-hero.btn-secondary:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-3px);
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-hero:hover .btn-icon {
    transform: translateX(5px);
}

/* Hero Visual Simplifié */
.hero-visual-simple {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-image-container:hover .hero-main-image {
    transform: scale(1.05);
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(45, 90, 63, 0.1) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
}

.overlay-badge {
    background: rgba(45, 90, 63, 0.9);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(45, 90, 63, 0.3);
    animation: slideInUp 1s ease-out 1s both;
}

/* Section Produits Premium */
.products-premium {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-accent), #E6B887);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    font-family: var(--font-accent);
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.products-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-premium {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid var(--gray-200);
}

.product-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(45, 90, 63, 0.2);
}

.product-visual {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-premium:hover .product-visual img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.product-badge {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-content {
    padding: 2rem;
}

.product-content h3 {
    font-family: var(--font-secondary);
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-content p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.product-features span {
    background: rgba(45, 90, 63, 0.1);
    color: var(--primary-green);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.product-link:hover {
    color: var(--accent-green);
    transform: translateX(5px);
}

.products-cta {
    text-align: center;
}

.btn-explore {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(45, 90, 63, 0.3);
    transition: all 0.3s ease;
}

.btn-explore:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(45, 90, 63, 0.4);
}

.btn-count {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.3rem;
}

/* Section Avantages */
.advantages-section {
    padding: 6rem 0;
    background: var(--cream);
}

.advantages-header {
    text-align: center;
    margin-bottom: 4rem;
}

.advantages-header h2 {
    font-family: var(--font-accent);
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 700;
}

.advantages-header p {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(45, 90, 63, 0.15);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.advantage-card h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.advantage-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.advantage-card ul {
    list-style: none;
    padding: 0;
}

.advantage-card li {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.advantage-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

.certifications {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.cert-badge {
    background: linear-gradient(135deg, var(--accent-green), var(--light-green));
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.flexibility-items {
    display: flex;
    gap: 1rem;
}

.flex-item {
    text-align: center;
    padding: 1rem;
    background: var(--gray-100);
    border-radius: 10px;
    flex: 1;
}

.flex-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.3rem;
}

.flex-label {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.global-stats {
    display: flex;
    gap: 1rem;
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.3rem;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.support-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.support-features span {
    background: rgba(45, 90, 63, 0.1);
    color: var(--primary-green);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.custom-services {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.custom-services span {
    background: rgba(212, 165, 116, 0.2);
    color: var(--gold-accent);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Section Marque Blanche Premium */
.private-label-premium {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.pl-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.pl-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-accent), #E6B887);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.pl-header h2 {
    font-family: var(--font-accent);
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.pl-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.pl-process {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 90, 63, 0.15);
}

.step-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
}

.pl-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(45, 90, 63, 0.1);
    border-radius: 10px;
    font-weight: 500;
    color: var(--primary-green);
}

.benefit-icon {
    font-size: 1.2rem;
}

.btn-pl {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: white;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(45, 90, 63, 0.3);
    transition: all 0.3s ease;
}

.btn-pl:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(45, 90, 63, 0.4);
}

.pl-visual {
    position: relative;
}

.pl-showcase {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.showcase-item {
    position: relative;
}

.showcase-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.showcase-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(45, 90, 63, 0.9);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.pl-stats {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.pl-stat {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--gold-accent);
    flex: 1;
}

.pl-stat .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.3rem;
}

.pl-stat .stat-label {
    font-size: 0.8rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Section À Propos Moderne */
.about-modern {
    padding: 6rem 0;
    background: var(--cream);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-image-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: white;
    padding: 0.8rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(45, 90, 63, 0.3);
}

.about-highlights {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
}

.highlight-icon {
    font-size: 1.5rem;
}

.highlight-item strong {
    display: block;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.highlight-item small {
    color: var(--gray-500);
    font-size: 0.8rem;
}

.about-badge-text {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-accent), #E6B887);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-header h2 {
    font-family: var(--font-accent);
    font-size: 2.8rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-intro {
    font-size: 1.2rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-story h3 {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-story p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-values {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(45, 90, 63, 0.15);
}

.value-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.value-item h4 {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: white;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(45, 90, 63, 0.3);
    transition: all 0.3s ease;
}

.btn-about:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(45, 90, 63, 0.4);
}

/* Section CTA Finale */
.cta-final {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-green) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="ctaPattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23ctaPattern)"/></svg>');
}

.cta-content-final {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-main h2 {
    font-family: var(--font-accent);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-main p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.cta-icon {
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    color: var(--primary-green);
    padding: 1.3rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-cta-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-cta-secondary {
    display: flex;
    align-items: center;
    background: transparent;
    color: white;
    padding: 1.3rem 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .title-highlight {
        font-size: 2.5rem;
    }
    
    .title-subtitle {
        font-size: 1.6rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-visual-simple {
        height: 350px;
        margin-top: 2rem;
    }
    
    .hero-image-container {
        max-width: 300px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .products-showcase {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .pl-layout,
    .about-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pl-process {
        grid-template-columns: 1fr;
    }
    
    .pl-benefits {
        grid-template-columns: 1fr;
    }
    
    .about-highlights {
        flex-direction: column;
    }
    
    .cta-main h2 {
        font-size: 2.5rem;
    }
    
    .cta-features {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-trust {
        gap: 1.5rem;
    }
}