﻿/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #171a18;
    background: 
        radial-gradient(circle at 20% 80%, rgba(14, 119, 98, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(14, 119, 98, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #01100D 0%, #02241D 50%, #0E7762 100%);
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(14, 119, 98, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(14, 119, 98, 0.03) 0%, transparent 30%);
    pointer-events: none;
    z-index: -1;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cardo', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: 
        radial-gradient(circle at 30% 20%, rgba(14, 119, 98, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #01100D 0%, #02241D 100%);
    color: white;
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(14, 119, 98, 0.02) 50%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero::before {
    content: '';
    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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.hero-grid::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(14, 119, 98, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

.hero-grid::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(14, 119, 98, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-content {
    text-align: left;
    position: relative;
    z-index: 3;
}

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

.hero-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(253,203,90,0.2) 0%, rgba(253,203,90,0.1) 100%);
    padding: 12px 24px;
    border-radius: 30px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(253,203,90,0.3);
    box-shadow: 0 8px 32px rgba(253,203,90,0.2);
    position: relative;
    overflow: hidden;
}

.badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.badge:hover::before {
    left: 100%;
}

.hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #FDCB5A;
    font-family: 'Cardo', serif;
    font-weight: 700;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    opacity: 0.95;
}

.hero-highlight {
    background: linear-gradient(135deg, rgba(253,203,90,0.15) 0%, rgba(253,203,90,0.05) 100%);
    border: 1px solid rgba(253,203,90,0.3);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 900px;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(253,203,90,0.1);
    overflow: hidden;
}

.hero-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.hero-highlight p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    text-align: center;
    line-height: 1.6;
}

.hero-highlight::before {
    content: '+';
    position: absolute;
    top: 10px;
    left: 15px;
    color: #FDCB5A;
    font-size: 1.5rem;
    font-weight: bold;
}

.hero-highlight::after {
    content: '+';
    position: absolute;
    bottom: 10px;
    right: 15px;
    color: #FDCB5A;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 480px;
    margin: 0 auto 3rem;
    position: relative;
}

.hero-features::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -20px;
    width: 2px;
    height: 60%;
    background: linear-gradient(180deg, transparent, #0E7762, transparent);
    transform: translateY(-50%);
    opacity: 0.3;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 15px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

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

.cta-section {
    margin-top: 2rem;
}

.cta-button {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #FDCB5A 0%, #f4c430 50%, #FDCB5A 100%);
    color: #1A2B2B;
    padding: 0;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(253,203,90,0.4), 0 0 0 1px rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    border: none;
    cursor: pointer;
    min-width: 400px;
    overflow: hidden;
    height: 60px;
    position: relative;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(253,203,90,0.6);
}

.cta-text {
    flex: 1;
    text-align: left;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
}

.cta-price {
    background: rgba(255,255,255,0.25);
    padding: 0 20px;
    border-radius: 0 15px 15px 0;
    font-size: 1.1rem;
    font-weight: 700;
    min-width: 120px;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(255,255,255,0.1);
}

/* Why Section */
.why-section {
    padding: 60px 0;
    background: #02241D;
}

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

.why-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(253,203,90,0.4);
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FDCB5A, transparent);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(253,203,90,0.2);
    border-color: rgba(253,203,90,0.4);
}

.why-item:hover::before {
    transform: translateX(100%);
}

.why-item h3 {
    color: #FDCB5A;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-family: 'Cardo', serif;
}

.why-item p {
    color: #ffffff;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #01100D;
}

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

.for-who {
    background: rgba(27, 19, 19, 0.15);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(253,203,90,0.4);
}

.for-who p {
    margin-bottom: 2rem;
    color: #ffffff;
    line-height: 1.6;
}

.benefit.bonus {
    background: rgba(243, 243, 243, 0.884);
    border-color: #FDCB5A;
}

.benefit.bonus .benefit-icon {
    color: #FDCB5A;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

.benefit-icon {
    font-size: 1.5rem;
    color: #FDCB5A;
    margin-top: 5px;
}

.download-info {
    text-align: center;
    background: rgba(253,203,90,0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #FDCB5A;
    color: #ffffff;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #000f0c;
}

.testimonials-carousel {
    position: relative;
    margin-top: 3rem;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 500%; /* 5 tÃ©moignages */
    will-change: transform;
}

.testimonial {
    width: 20%; /* 100% / 5 tÃ©moignages */
    flex-shrink: 0;
    padding: 0 1rem;
}

.testimonial-content {
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(253,203,90,0.4);
    backdrop-filter: blur(15px);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(253,203,90,0.5), transparent);
}

.testimonial-avatar {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.avatar-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FDCB5A;
    box-shadow: 0 8px 25px rgba(253,203,90,0.4);
    transition: all 0.3s ease;
    position: relative;
}

.avatar-img::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(45deg, #FDCB5A, #f4c430, #FDCB5A);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.avatar-img:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(253,203,90,0.6);
}

.avatar-img:hover::before {
    opacity: 1;
}

.stars {
    color: #FDCB5A;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: #ffffff;
    flex-grow: 1;
}

.testimonial-author h4 {
    margin: 0;
    font-size: 1rem;
    color: #ffffff;
    font-family: 'Cardo', serif;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #FDCB5A;
    transform: scale(1.2);
}

/* Guarantee and FAQ Section */
.guarantee-faq {
    padding: 80px 0;
    background: #01100D;
}

.guarantee-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.guarantee {
    background: rgba(255,255,255,0.15);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(253,203,90,0.4);
}

.guarantee p {
    color: #ffffff;
    line-height: 1.6;
    margin-top: 1rem;
}

/* FAQ Section */
.faq {
    background: rgba(255,255,255,0.15);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(253,203,90,0.4);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(253,203,90,0.4);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(253,203,90,0.4);
    box-shadow: 0 8px 30px rgba(253,203,90,0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background: rgba(253,203,90,0.1);
    color: white;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(253,203,90,0.2);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-family: 'Cardo', serif;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #ffffff;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: #02241D;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Cardo', serif;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 1rem;
    font-style: italic;
}

/* Page Header */
.page-header {
    background: 
        radial-gradient(circle at 30% 20%, rgba(14, 119, 98, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, #01100D 0%, #02241D 100%);
    color: white;
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-family: 'Cardo', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FDCB5A;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 480px;
    margin: 0 auto;
}

/* Active navigation link */
.nav-menu li a.active {
    color: #FDCB5A;
}

.nav-menu li a.active::after {
    width: 100%;
}

/* Ebooks Section */
.ebooks-section {
    background: #02241D;
    padding: 80px 0;
}

.ebooks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ebook-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(14, 119, 98, 0.2);
    backdrop-filter: blur(10px);
}

.ebook-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #FDCB5A;
}

.ebook-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.ebook-card:hover .ebook-image img {
    transform: scale(1.1);
}

.ebook-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FDCB5A, #f4c430);
    color: #1A2B2B;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.ebook-content {
    padding: 25px;
}

.ebook-content h3 {
    font-family: 'Cardo', serif;
    font-size: 1.4rem;
    color: #FDCB5A;
    margin-bottom: 15px;
}

.ebook-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.ebook-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.ebook-features .feature {
    background: rgba(14, 119, 98, 0.2);
    color: #0E7762;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.ebook-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FDCB5A;
    margin-bottom: 20px;
}

/* Blog Section */
.blog-section {
    background: #01100D;
    padding: 80px 0;
}

.featured-article {
    background: #02241D;
    padding: 60px 0;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.featured-image {
    position: relative;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
}

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

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #FDCB5A, #f4c430);
    color: #1A2B2B;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
}

.featured-text h2 {
    font-family: 'Cardo', serif;
    font-size: 2.2rem;
    color: #FDCB5A;
    margin-bottom: 20px;
}

.featured-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(14, 119, 98, 0.2);
    backdrop-filter: blur(10px);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: #FDCB5A;
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-category {
    background: rgba(14, 119, 98, 0.2);
    color: #0E7762;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
}

.blog-content h3 {
    font-family: 'Cardo', serif;
    font-size: 1.3rem;
    color: #FDCB5A;
    margin-bottom: 15px;
}

.blog-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.read-more-btn {
    background: linear-gradient(135deg, #FDCB5A, #f4c430);
    color: #1A2B2B;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 203, 90, 0.4);
}

.load-more-section {
    text-align: center;
    margin-top: 50px;
}

.load-more-btn {
    background: rgba(0, 0, 0, 0.05);
    color: #FDCB5A;
    border: 2px solid #FDCB5A;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #FDCB5A;
    color: #1A2B2B;
}

/* Contact Section */
.contact-section {
    background: #02241D;
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Cardo', serif;
    font-size: 2.2rem;
    color: #FDCB5A;
    margin-bottom: 20px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(14, 119, 98, 0.2);
}

.contact-icon {
    background: linear-gradient(135deg, #FDCB5A, #f4c430);
    color: #1A2B2B;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #FDCB5A;
    margin-bottom: 5px;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.social-links h3 {
    color: #FDCB5A;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    background: rgba(0, 0, 0, 0.05);
    color: #FDCB5A;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #FDCB5A;
    color: #1A2B2B;
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(14, 119, 98, 0.2);
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    font-family: 'Cardo', serif;
    font-size: 1.8rem;
    color: #FDCB5A;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #FDCB5A;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FDCB5A;
    background: rgba(255, 255, 255, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #FDCB5A, #f4c430);
    color: #1A2B2B;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 203, 90, 0.4);
}

/* Newsletter Section */
.newsletter-section {
    background: #01100D;
    padding: 60px 0;
    text-align: center;
}

.newsletter-content h2 {
    font-family: 'Cardo', serif;
    font-size: 2rem;
    color: #FDCB5A;
    margin-bottom: 15px;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    color: #ffffff;
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    background: linear-gradient(135deg, #FDCB5A, #f4c430);
    color: #1A2B2B;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 203, 90, 0.4);
}

/* FAQ Section */
.faq-section {
    background: #01100D;
    padding: 80px 0;
}

.faq-section h2 {
    font-family: 'Cardo', serif;
    font-size: 2.5rem;
    color: #FDCB5A;
    text-align: center;
    margin-bottom: 50px;
}

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

/* Responsive Design for new pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .ebooks-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .ebook-card,
    .blog-card {
        margin: 0 10px;
    }
    
    .contact-form-container {
        padding: 25px;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
}

/* Cart Section */
.cart-section {
    background: #02241D;
    padding: 80px 0;
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.cart-items h2 {
    font-family: 'Cardo', serif;
    font-size: 2rem;
    color: #FDCB5A;
    margin-bottom: 30px;
}

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

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto auto;
    gap: 20px;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(14, 119, 98, 0.2);
    backdrop-filter: blur(10px);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details h3 {
    font-family: 'Cardo', serif;
    color: #FDCB5A;
    margin-bottom: 5px;
}

.cart-item-price {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #FDCB5A;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: #FDCB5A;
    color: #1A2B2B;
}

.quantity {
    color: #ffffff;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.cart-item-total {
    color: #FDCB5A;
    font-weight: 700;
    font-size: 1.1rem;
}

.remove-item-btn {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff6b6b;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-item-btn:hover {
    background: #ff6b6b;
    color: #ffffff;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart-content svg {
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.empty-cart-content h3 {
    font-family: 'Cardo', serif;
    color: #FDCB5A;
    margin-bottom: 15px;
}

.empty-cart-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

/* Cart Summary */
.cart-summary {
    position: sticky;
    top: 100px;
}

.summary-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(14, 119, 98, 0.2);
    backdrop-filter: blur(10px);
}

.summary-card h3 {
    font-family: 'Cardo', serif;
    color: #FDCB5A;
    margin-bottom: 25px;
    text-align: center;
}

.summary-details {
    margin-bottom: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-row.total {
    border-bottom: none;
    font-weight: 700;
    font-size: 1.2rem;
    color: #FDCB5A;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid rgba(14, 119, 98, 0.3);
}

.payment-info {
    margin-bottom: 25px;
    text-align: center;
}

.payment-info h4 {
    color: #FDCB5A;
    margin-bottom: 15px;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.payment-method {
    background: rgba(14, 119, 98, 0.2);
    color: #0E7762;
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, #FDCB5A, #f4c430);
    color: #1A2B2B;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.checkout-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 203, 90, 0.4);
}

.checkout-btn:disabled {
    background: rgba(0, 0, 0, 0.05);
    color: rgba(255, 255, 255, 0.5);
    cursor: not-allowed;
}

.security-info {
    text-align: center;
}

.security-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Recommended Section */
.recommended-section {
    background: #01100D;
    padding: 60px 0;
}

.recommended-section h2 {
    font-family: 'Cardo', serif;
    color: #FDCB5A;
    text-align: center;
    margin-bottom: 40px;
}

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

.recommended-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(14, 119, 98, 0.2);
    transition: all 0.3s ease;
}

.recommended-item:hover {
    transform: translateY(-5px);
    border-color: #FDCB5A;
}

.recommended-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.recommended-item h4 {
    font-family: 'Cardo', serif;
    color: #FDCB5A;
    margin-bottom: 10px;
}

.recommended-item .price {
    color: #FDCB5A;
    font-weight: 700;
    margin-bottom: 15px;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, #FDCB5A, #f4c430);
    color: #1A2B2B;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 203, 90, 0.4);
}

/* Thank You Section */
.thank-you-section {
    background: #02241D;
    padding: 80px 0;
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    color: #FDCB5A;
    margin-bottom: 30px;
}

.thank-you-content h1 {
    font-family: 'Cardo', serif;
    font-size: 3rem;
    color: #FDCB5A;
    margin-bottom: 20px;
}

.thank-you-message {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.order-details {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 40px;
    text-align: left;
}

.order-details h2 {
    font-family: 'Cardo', serif;
    color: #FDCB5A;
    text-align: center;
    margin-bottom: 25px;
}

.order-info {
    margin-bottom: 25px;
}

.order-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.order-id {
    font-weight: 700;
    color: #FDCB5A;
}

.order-total {
    font-weight: 700;
    color: #FDCB5A;
    font-size: 1.2rem;
}

.order-items h3 {
    color: #FDCB5A;
    margin-bottom: 20px;
}

.order-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.order-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item-details h4 {
    color: #FDCB5A;
    margin-bottom: 5px;
}

.order-item-details p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.order-item-total {
    color: #FDCB5A;
    font-weight: 700;
}

/* Download Section */
.download-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 40px;
}

.download-section h2 {
    font-family: 'Cardo', serif;
    color: #FDCB5A;
    text-align: center;
    margin-bottom: 25px;
}

.download-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.download-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(14, 119, 98, 0.2);
}

.download-item-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
}

.download-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.download-item-details h3 {
    color: #FDCB5A;
    margin-bottom: 8px;
}

.download-item-details p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.download-btn {
    background: linear-gradient(135deg, #0E7762, #02241D);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 119, 98, 0.4);
}

/* Next Steps */
.next-steps {
    margin-bottom: 40px;
}

.next-steps h2 {
    font-family: 'Cardo', serif;
    color: #FDCB5A;
    text-align: center;
    margin-bottom: 30px;
}

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

.step {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(14, 119, 98, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FDCB5A, #f4c430);
    color: #1A2B2B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    color: #FDCB5A;
    margin-bottom: 15px;
}

.step p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #FDCB5A, #f4c430);
    color: #1A2B2B;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 203, 90, 0.4);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.05);
    color: #FDCB5A;
    border: 2px solid #FDCB5A;
}

.btn-secondary:hover {
    background: #FDCB5A;
    color: #1A2B2B;
}

/* Support Section */
.support-section {
    background: #01100D;
    padding: 60px 0;
    text-align: center;
}

.support-content h2 {
    font-family: 'Cardo', serif;
    color: #FDCB5A;
    margin-bottom: 20px;
}

.support-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.support-option {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(14, 119, 98, 0.2);
}

.support-icon {
    background: linear-gradient(135deg, #FDCB5A, #f4c430);
    color: #1A2B2B;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.support-option h3 {
    color: #FDCB5A;
    margin-bottom: 10px;
}

.support-option p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.support-link {
    color: #FDCB5A;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.support-link:hover {
    color: #ffffff;
}

/* Responsive Design for Cart and Thank You */
@media (max-width: 768px) {
    .cart-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 15px;
    }
    
    .cart-item-quantity,
    .cart-item-total,
    .remove-item-btn {
        grid-column: 1 / -1;
        justify-self: start;
        margin-top: 10px;
    }
    
    .cart-item-quantity {
        justify-self: center;
    }
    
    .cart-item-total {
        justify-self: end;
    }
    
    .remove-item-btn {
        justify-self: end;
    }
    
    .thank-you-content h1 {
        font-size: 2rem;
    }
    
    .order-item,
    .download-item {
        grid-template-columns: 60px 1fr;
        gap: 15px;
    }
    
    .order-item-total,
    .download-item-actions {
        grid-column: 1 / -1;
        margin-top: 10px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .support-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .cart-item {
        padding: 15px;
    }
    
    .summary-card,
    .order-details,
    .download-section {
        padding: 20px;
    }
    
    .thank-you-content h1 {
        font-size: 1.8rem;
    }
}

/* Footer */
.footer {
    background: #01100D;
    color: white;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(14, 119, 98, 0.2);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cardo', serif;
}

.footer-text {
    opacity: 0.8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cta-button {
        min-width: 320px;
        height: 55px;
        border-radius: 15px;
    }
    
    .cta-text {
        padding: 0 15px;
        font-size: 0.85rem;
        font-weight: 600;
    }
    
    .cta-price {
        min-width: 90px;
        font-size: 0.9rem;
        padding: 0 15px;
        border-radius: 0 15px 15px 0;
        font-weight: 700;
    }
    
    .benefits {
        grid-template-columns: 1fr;
    }
    
    .testimonial {
        padding: 0 0.5rem;
    }
    
    .testimonial-content {
        padding: 1.5rem;
    }
    
    .avatar-img {
        width: 50px;
        height: 50px;
    }
    
    .hero-features {
        gap: 0.5rem;
    }
    
    .feature {
        padding: 10px 15px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .guarantee-faq-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-img {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.4rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-button {
        min-width: 300px;
        height: 50px;
        border-radius: 12px;
    }
    
    .cta-text {
        font-size: 0.75rem;
        padding: 0 12px;
        font-weight: 600;
    }
    
    .cta-price {
        min-width: 80px;
        font-size: 0.8rem;
        padding: 0 12px;
        border-radius: 0 12px 12px 0;
        font-weight: 700;
    }
}

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

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

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-content > *:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-content > *:nth-child(3) {
    animation-delay: 0.4s;
}

.hero-content > *:nth-child(4) {
    animation-delay: 0.6s;
}

.hero-content > *:nth-child(5) {
    animation-delay: 0.8s;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.cta-button:focus,
.faq-question:focus {
    outline: 3px solid #ffd700;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .cta-button,
    .footer {
        display: none;
    }
    
    .hero {
        background: white;
        color: black;
    }
    
    .hero::before {
        display: none;
    }
}

/* Benefits Section - Design amï¿½liorï¿½ */
.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(253,203,90,0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #FDCB5A, #FFD700, #FDCB5A);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
    border-color: #FDCB5A;
    box-shadow: 0 10px 30px rgba(253,203,90,0.2);
}

.benefit:hover::before {
    opacity: 1;
}

.benefit p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.benefit-icon {
    font-size: 1.5rem;
    color: #FDCB5A;
    margin-top: 5px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 5px rgba(253,203,90,0.3));
}

.benefit.bonus {
    background: linear-gradient(135deg, rgba(253,203,90,0.15) 0%, rgba(255,215,0,0.05) 100%);
    border-color: #FDCB5A;
    border-width: 2px;
}

.benefit.bonus .benefit-icon {
    color: #FFD700;
    filter: drop-shadow(0 0 8px rgba(255,215,0,0.5));
}

.benefit.bonus p {
    color: #ffffff;
    font-weight: 500;
}

.benefit.bonus p strong {
    color: #FFD700;
}
/* Benefits Section - Design amÃ©liorÃ© */
.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(253,203,90,0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #FDCB5A, #FFD700, #FDCB5A);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
    border-color: #FDCB5A;
    box-shadow: 0 10px 30px rgba(253,203,90,0.2);
}

.benefit:hover::before {
    opacity: 1;
}

.benefit p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.benefit-icon {
    font-size: 1.5rem;
    color: #FDCB5A;
    margin-top: 5px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 5px rgba(253,203,90,0.3));
}

.benefit.bonus {
    background: linear-gradient(135deg, rgba(253,203,90,0.15) 0%, rgba(255,215,0,0.05) 100%);
    border-color: #FDCB5A;
    border-width: 2px;
}

.benefit.bonus .benefit-icon {
    color: #FFD700;
    filter: drop-shadow(0 0 8px rgba(255,215,0,0.5));
}

.benefit.bonus p {
    color: #ffffff;
    font-weight: 500;
}

.benefit.bonus p strong {
    color: #FFD700;
}
/* For-Who Section - Design amÃ©liorÃ© */
.for-who {
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(253,203,90,0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.for-who::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #FDCB5A, #FFD700, #FDCB5A);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.for-who:hover {
    transform: translateY(-5px);
    border-color: #FDCB5A;
    box-shadow: 0 10px 30px rgba(253,203,90,0.2);
}

.for-who:hover::before {
    opacity: 1;
}

.for-who p {
    margin-bottom: 2rem;
    color: #ffffff;
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 400;
}

.for-who .section-title {
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: left;
}

.for-who .cta-button {
    margin-top: 1.5rem;
    transition: all 0.3s ease;
/
}/* Guarantee and FAQ Section - Design amÃ©liorÃ© */
.guarantee {
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(253,203,90,0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.guarantee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #FDCB5A, #FFD700, #FDCB5A);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.guarantee:hover {
    transform: translateY(-5px);
    border-color: #FDCB5A;
    box-shadow: 0 10px 30px rgba(253,203,90,0.2);
}

.guarantee:hover::before {
    opacity: 1;
}

.guarantee p {
    color: #ffffff;
    line-height: 1.6;
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 400;
}

.guarantee .section-title {
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: left;
}

/* FAQ Section - Design amÃ©liorÃ© */
.faq {
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(253,203,90,0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #FDCB5A, #FFD700, #FDCB5A);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq:hover {
    transform: translateY(-5px);
    border-color: #FDCB5A;
    box-shadow: 0 10px 30px rgba(253,203,90,0.2);
}

.faq:hover::before {
    opacity: 1;
}

.faq .section-title {
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: left;
}

.faq-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(253,203,90,0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, #FDCB5A, #FFD700, #FDCB5A);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(253,203,90,0.4);
    box-shadow: 0 8px 30px rgba(253,203,90,0.15);
    transform: translateY(-2px);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background: rgba(253,203,90,0.08);
    color: white;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(253,203,90,0.15);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-family: 'Cardo', serif;
    color: #ffffff;
    font-weight: 500;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: #FDCB5A;
    filter: drop-shadow(0 0 5px rgba(253,203,90,0.3));
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #FFD700;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #ffffff;
    background: rgba(255,255,255,0.02);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}
