:root {
    --primary: #27ae60;
    --secondary: #2c3e50;
    --accent: #e74c3c;
    --light: #f8f9fa;
    --dark: #343a40;
    --text: #333;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text);
    line-height: 1.6;
    background-color: var(--light);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--secondary);
}

.logo i {
    margin-right: 8px;
    font-size: 28px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 16px;
}

nav ul li a:hover {
    color: var(--primary);
}

.cta-button {
    background-color: var(--accent);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
}

.cta-button:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #219653 100%);
    color: white;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTIwMCA4MDAiIHByZXNlcnZlQXNwZWN0UmF0aW89Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSI+PGNpcmNsZSBjeD0iNDAwIiBjeT0iNDAwIiByPSI2MDAiLz48Y2lyY2xlIGN4PSI4MDAiIGN5PSIyMDAiIHI9IjQwMCIvPjwvZz48L3N2Zz4=');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    padding-right: 20px;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    margin-bottom: 24px;
    opacity: 0.9;
}

.product-image {
    text-align: center;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 🌟 STYLE IMAJ RESPONSIV */
.product-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    display: block;
}

.product-img:hover {
    transform: scale(1.03);
}

/* Countdown Timer */
.countdown {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 20px;
    margin: 30px 0;
    backdrop-filter: blur(10px);
}

.countdown h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.timer-unit {
    background-color: white;
    color: var(--primary);
    padding: 12px 8px;
    border-radius: var(--radius);
    min-width: 60px;
    flex: 1;
    max-width: 80px;
}

.timer-number {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.timer-label {
    font-size: 12px;
    text-transform: uppercase;
    margin-top: 4px;
}

/* Benefits Section */
.benefits {
    padding: 60px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-title p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.benefit-card {
    background-color: var(--light);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 16px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-card h3 {
    margin-bottom: 12px;
    color: var(--dark);
    font-size: 20px;
}

.benefit-card p {
    flex-grow: 1;
}

/* Product Showcase */
.product-showcase {
    padding: 60px 0;
    background-color: #f0f4f8;
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.showcase-image {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-text h2 {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
}

.showcase-text p {
    margin-bottom: 20px;
    font-size: 18px;
}

.features-list {
    list-style: none;
    margin: 20px 0;
}

.features-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.features-list li i {
    color: var(--primary);
    margin-right: 10px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* How It Works */
.how-it-works {
    padding: 60px 0;
    background-color: white;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 24px 16px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 20px;
    font-weight: 700;
}

.step h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

/* Testimonials */
.testimonials {
    padding: 60px 0;
    background-color: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background-color: var(--light);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ddd;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
}

/* FAQ Section */
.faq {
    padding: 60px 0;
    background-color: #f0f4f8;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    padding: 0 20px 20px;
    max-height: 500px;
}

.faq-toggle {
    font-size: 20px;
    transition: transform 0.3s;
}

.faq-toggle.rotated {
    transform: rotate(45deg);
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #219653 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 24px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-large {
    font-size: 18px;
    padding: 14px 32px;
}

/* Footer */
.footer {
    background: #0f172a;
    color: #cbd5e1;
    text-align: center;
    padding: 25px 15px;
    font-size: 15px;
    line-height: 1.6;
}

.footer-container {
    max-width: 900px;
    margin: 0 auto;
}

.footer .disclaimer {
    font-size: 13px;
    color: #64748b;
    margin-top: 8px;
}

/* 📱 MOBILE RESPONSIVE - PRIORITÈ AKTYÈL */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    nav.active {
        transform: translateY(0);
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    nav ul li {
        margin: 0 0 15px 0;
    }
    
    nav ul li:last-child {
        margin-bottom: 0;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-text {
        padding-right: 0;
        order: 2;
    }
    
    .product-image {
        order: 1;
        padding: 10px;
    }
    
    .hero h1 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    /* IMAJ MOBILE OPTIMIZE */
    .product-img {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .countdown {
        padding: 16px;
        margin: 20px 0;
    }
    
    .timer-unit {
        min-width: 50px;
        padding: 10px 6px;
    }
    
    .timer-number {
        font-size: 20px;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
    
    .section-title p {
        font-size: 16px;
    }
    
    .showcase-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .showcase-text h2 {
        font-size: 26px;
    }
    
    .benefits, .product-showcase, .how-it-works, .testimonials, .faq, .cta-section {
        padding: 40px 0;
    }
    
    .benefit-card, .step, .testimonial-card {
        padding: 20px;
    }
    
    .benefit-icon {
        font-size: 36px;
        margin-bottom: 12px;
    }
    
    .benefit-card h3, .step h3 {
        font-size: 18px;
    }
    
    .cta-section h2 {
        font-size: 26px;
    }
    
    .cta-section p {
        font-size: 16px;
    }
    
    .footer {
        font-size: 14px;
        padding: 20px 10px;
    }
    
    .footer .disclaimer {
        font-size: 12px;
        line-height: 1.5;
    }
}

/* 📱 MOBILE TRÈ PITI */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }
    
    .timer {
        gap: 6px;
    }
    
    .timer-unit {
        min-width: 45px;
        padding: 8px 4px;
    }
    
    .timer-number {
        font-size: 18px;
    }
    
    .timer-label {
        font-size: 10px;
    }
    
    .section-title h2 {
        font-size: 22px;
    }
    
    .benefits-grid, .steps, .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 16px;
    }
    
    /* IMAJ POU EKRAN TRÈ PITI */
    .product-img {
        max-width: 220px;
    }
    
    .footer {
        font-size: 13px;
        padding: 18px 8px;
    }
    
    .footer .disclaimer {
        font-size: 11.5px;
    }
}

/* 💻 DESKTOP */
@media (min-width: 1024px) {
    .product-img {
        max-width: 320px;
    }
}

/* 🖥️ GRAN DESKTOP */
@media (min-width: 1200px) {
    .product-img {
        max-width: 380px;
    }
}

/* Animation for elements */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}