/* ===================================
   VARIABLES & RESET
   =================================== */
:root {
    /* Christmas Color Palette */
    --christmas-red: #C41E3A;
    --christmas-green: #165B33;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --silver: #C0C0C0;
    
    /* Additional Colors */
    --dark-green: #0D3B1F;
    --light-red: #E84C5F;
    --cream: #FFFEF2;
    --dark-gray: #2C2C2C;
    --light-gray: #F5F5F5;
    
    /* Typography */
    --font-main: 'Poppins', sans-serif;
    --font-accent: 'Playfair Display', serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 20px;
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===================================
   SNOWFLAKES ANIMATION
   =================================== */
.snowflakes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -10%;
    color: var(--silver);
    font-size: 1.5em;
    opacity: 0.7;
    animation: fall linear infinite;
}

.snowflake:nth-child(1) { left: 10%; animation-duration: 10s; animation-delay: 0s; }
.snowflake:nth-child(2) { left: 20%; animation-duration: 12s; animation-delay: 2s; font-size: 1.2em; }
.snowflake:nth-child(3) { left: 30%; animation-duration: 15s; animation-delay: 4s; }
.snowflake:nth-child(4) { left: 40%; animation-duration: 11s; animation-delay: 1s; font-size: 1.8em; }
.snowflake:nth-child(5) { left: 50%; animation-duration: 13s; animation-delay: 3s; }
.snowflake:nth-child(6) { left: 60%; animation-duration: 14s; animation-delay: 5s; font-size: 1.3em; }
.snowflake:nth-child(7) { left: 70%; animation-duration: 16s; animation-delay: 2s; }
.snowflake:nth-child(8) { left: 85%; animation-duration: 12s; animation-delay: 6s; font-size: 1.6em; }

@keyframes fall {
    0% {
        transform: translateY(-10vh) rotate(0deg);
    }
    100% {
        transform: translateY(110vh) rotate(360deg);
    }
}

/* ===================================
   HEADER
   =================================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--christmas-green), var(--dark-green));
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.logo i {
    color: var(--gold);
    font-size: 1.8rem;
}

.logo .dot {
    color: var(--gold);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--gold);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--christmas-red), var(--light-red));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.btn-cta {
    background: linear-gradient(135deg, var(--christmas-red), #D32F2F);
    color: var(--white);
    font-size: 1.1rem;
    padding: 16px 40px;
    box-shadow: 0 6px 25px rgba(196, 30, 58, 0.4);
    animation: pulse 2s infinite;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.6);
}

.btn-large {
    font-size: 1.2rem;
    padding: 18px 50px;
}

.btn-huge {
    font-size: 1.4rem;
    padding: 20px 60px;
    font-weight: 700;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 6px 25px rgba(196, 30, 58, 0.4);
    }
    50% {
        box-shadow: 0 6px 35px rgba(196, 30, 58, 0.6);
    }
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--christmas-green) 0%, var(--dark-green) 100%);
    padding: 150px 0 80px;
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(192, 192, 192, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.ornament {
    position: absolute;
    font-size: 3rem;
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

.ornament-1 { top: 10%; left: 10%; animation-delay: 0s; }
.ornament-2 { top: 20%; right: 15%; animation-delay: 1s; }
.ornament-3 { bottom: 20%; left: 15%; animation-delay: 2s; }
.ornament-4 { bottom: 30%; right: 10%; animation-delay: 3s; }

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.advent-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), #FFD700);
    color: var(--dark-gray);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

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

.hero-title {
    font-family: var(--font-accent);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--gold);
}

.hero-description {
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-description p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-description i {
    color: var(--gold);
}

.offer-box {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--gold);
}

.offer-header {
    margin-bottom: 20px;
}

.offer-badge {
    background: linear-gradient(135deg, var(--christmas-red), var(--light-red));
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
}

.offer-content {
    color: var(--dark-gray);
}

.price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.old-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.old-price .strike {
    font-size: 1.8rem;
    color: #999;
    text-decoration: line-through;
}

.new-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.new-price .amount {
    font-size: 4rem;
    font-weight: 800;
    color: var(--christmas-red);
    font-family: var(--font-accent);
}

.per-month {
    font-size: 1.2rem;
    color: #666;
}

.discount-badge {
    background: var(--gold);
    color: var(--dark-gray);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
}

.offer-details {
    margin: 25px 0;
}

.offer-details p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.offer-details i {
    color: var(--gold);
    margin-right: 8px;
}

.modules-list {
    color: var(--christmas-green);
    font-weight: 600;
    font-size: 1rem !important;
}

.offer-note {
    margin-top: 15px;
    font-size: 0.95rem;
    color: #666;
}

/* ===================================
   SECTION HEADERS
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    color: var(--christmas-green);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--christmas-red), var(--gold));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
}

/* ===================================
   WHY CHOOSE SECTION
   =================================== */
.why-choose {
    padding: var(--section-padding);
    background: var(--white);
}

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

.benefit-card {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--gold);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--christmas-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.benefit-icon i {
    font-size: 2.5rem;
    color: var(--gold);
}

.benefit-title {
    font-size: 1.4rem;
    color: var(--christmas-green);
    margin-bottom: 20px;
    text-align: center;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1rem;
}

.benefit-list li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--christmas-red);
    font-size: 1.2rem;
}

/* ===================================
   WHAT YOU GET SECTION
   =================================== */
.what-you-get {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--cream), var(--light-gray));
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--christmas-red), var(--light-red));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 3rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--christmas-green);
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    font-size: 1rem;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials {
    padding: var(--section-padding);
    background: var(--white);
}

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

.testimonial-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--gold);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stars {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--christmas-green), var(--dark-green));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.author-name {
    font-weight: 600;
    color: var(--christmas-green);
    margin-bottom: 3px;
}

.author-role {
    font-size: 0.9rem;
    color: #666;
}

/* ===================================
   PARTNERS SECTION
   =================================== */
.partners {
    padding: 60px 0;
    background: var(--light-gray);
    overflow: hidden;
}

.partners-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--christmas-green);
    margin-bottom: 40px;
}

.partners-slider {
    overflow: hidden;
    position: relative;
}

.partners-track {
    display: flex;
    gap: 60px;
    animation: slide 30s linear infinite;
}

.partner-logo {
    flex-shrink: 0;
    width: 180px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

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

/* ===================================
   RESULTS SECTION
   =================================== */
.results {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--christmas-green) 0%, var(--dark-green) 100%);
    color: var(--white);
}

.results .section-title {
    color: var(--white);
}

.results .section-title::after {
    background: linear-gradient(90deg, var(--gold), var(--silver));
}

.results .section-subtitle {
    color: var(--gold);
}

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

.result-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.result-icon {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.result-icon i {
    font-size: 2.5rem;
    color: var(--dark-green);
}

.result-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--gold);
}

.result-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* ===================================
   MAIN CTA SECTION
   =================================== */
.main-cta {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--christmas-red) 0%, #D32F2F 100%);
    position: relative;
    overflow: hidden;
}

.main-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-box {
    position: relative;
    z-index: 2;
    background: var(--white);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 4px solid var(--gold);
}

.cta-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    font-size: 2rem;
    animation: sparkle 2s ease-in-out infinite;
}

.sparkle-1 { top: 10%; left: 10%; animation-delay: 0s; }
.sparkle-2 { top: 15%; right: 15%; animation-delay: 0.5s; }
.sparkle-3 { bottom: 15%; left: 15%; animation-delay: 1s; }
.sparkle-4 { bottom: 10%; right: 10%; animation-delay: 1.5s; }

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

.cta-badge-top {
    background: linear-gradient(135deg, var(--christmas-green), var(--dark-green));
    color: var(--gold);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    margin-bottom: 30px;
}

.cta-title {
    font-family: var(--font-accent);
    font-size: 2.5rem;
    color: var(--christmas-green);
    margin-bottom: 40px;
}

.cta-price-section {
    margin: 40px 0;
}

.cta-old-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #999;
}

.strike-large {
    font-size: 2rem;
    text-decoration: line-through;
}

.cta-new-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.price-label {
    font-size: 1.3rem;
    color: var(--dark-gray);
    font-weight: 600;
}

.price-huge {
    font-size: 5rem;
    font-weight: 800;
    color: var(--christmas-red);
    font-family: var(--font-accent);
    line-height: 1;
}

.price-period {
    font-size: 1.5rem;
    color: #666;
}

.cta-urgency {
    display: inline-block;
    background: var(--gold);
    color: var(--dark-gray);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.cta-urgency i {
    margin-right: 8px;
}

.cta-note {
    margin-top: 20px;
    color: #666;
    font-size: 0.95rem;
}

.cta-note i {
    color: var(--christmas-green);
    margin-right: 5px;
}

/* ===================================
   GUARANTEE SECTION
   =================================== */
.guarantee {
    padding: 60px 0;
    background: var(--light-gray);
}

.guarantee-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.guarantee-seal {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--gold), #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-seal i {
    font-size: 4rem;
    color: var(--christmas-green);
}

.guarantee-content h3 {
    font-size: 1.8rem;
    color: var(--christmas-green);
    margin-bottom: 15px;
}

.guarantee-content p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.guarantee-subtext {
    font-size: 0.95rem !important;
    color: #666 !important;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact {
    padding: var(--section-padding);
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--christmas-green), var(--dark-green));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.contact-details h4 {
    font-size: 1.1rem;
    color: var(--christmas-green);
    margin-bottom: 5px;
}

.contact-details p {
    color: #666;
    font-size: 1rem;
}

.contact-map {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--cream), var(--light-gray));
}

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

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--christmas-green);
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question i {
    color: var(--gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: linear-gradient(135deg, var(--dark-green), #0A2817);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo i {
    color: var(--gold);
    font-size: 1.8rem;
}

.footer-slogan {
    font-size: 1.1rem;
    color: var(--gold);
    font-style: italic;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--dark-green);
    transform: translateY(-3px);
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--gold);
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--gold);
}

.footer-section p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section p i {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--silver);
    font-size: 0.95rem;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-grid,
    .features-grid,
    .testimonials-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .price-huge {
        font-size: 3.5rem;
    }
}

@media (max-width: 640px) {
    :root {
        --section-padding: 50px 0;
    }
    
    .hero {
        padding: 120px 0 50px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .offer-box {
        padding: 30px 20px;
    }
    
    .new-price .amount {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .btn-huge {
        font-size: 1.1rem;
        padding: 16px 40px;
    }
    
    .cta-box {
        padding: 40px 20px;
    }
    
    .price-huge {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   SCROLL ANIMATIONS
   =================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
