/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #2E7D32;
    background: #ffffff;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    animation: slideInFromBottom 0.5s ease-out;
}

.floating-cta.hidden {
    display: none;
}

.floating-btn {
    background: linear-gradient(135deg, #7ED957 0%, #4CAF50 100%);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
    font-weight: bold;
    border-radius: 9999px;
    cursor: pointer;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    animation: pulseGlow 2s ease-in-out infinite;
}

.floating-btn:hover {
    opacity: 0.9;
}

/* Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #7ED957 0%, #4CAF50 50%, #2E7D32 100%);
    color: white;
    padding: 5rem 0;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(126, 217, 87, 0.1) 0%, transparent 50%);
    opacity: 0.5;
}

.hero-float-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.hero-float-1 {
    top: 5rem;
    right: 5rem;
    width: 18rem;
    height: 18rem;
    background: rgba(255, 255, 255, 0.1);
    animation: float 3s ease-in-out infinite;
}

.hero-float-2 {
    bottom: 5rem;
    left: 5rem;
    width: 24rem;
    height: 24rem;
    background: rgba(255, 255, 255, 0.05);
    animation: float 3s ease-in-out infinite 1s;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: bold;
}

.badge-hero {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    font-size: 1.125rem;
    animation: pulseGlow 2s ease-in-out infinite;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
}

.hero-title-line {
    display: block;
}

.hero-title-discount {
    display: block;
    font-size: 4rem;
    color: #FDD835;
    margin-top: 1rem;
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    max-width: 48rem;
}

.hero-brand {
    font-weight: 900;
}

.meta-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: bold;
    font-size: 1.125rem;
}

/* Countdown Timer */
.countdown-timer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 80px;
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 900;
}

.countdown-label {
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.badge-urgency {
    background: #EF5350;
    color: white;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    font-size: 1.25rem;
    font-weight: bold;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: white;
    color: #2E7D32;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover {
    background: #f5f5f5;
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.scroll-indicator {
    margin-top: 3rem;
    animation: bounce 2s infinite;
}

/* Wave Divider */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.wave-divider svg {
    width: 100%;
    height: auto;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.stat-icon {
    width: 3rem;
    height: 3rem;
    color: #7ED957;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2E7D32;
}

.stat-label {
    font-size: 1.125rem;
    color: #666;
    font-weight: 600;
}

/* Platform Section */
.platform-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, white, #f5f5f5);
}

.platform-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .platform-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.platform-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge-feature {
    background: #7ED957;
    color: white;
    font-size: 1.125rem;
    width: fit-content;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #2E7D32;
    line-height: 1.2;
}

.section-description {
    font-size: 1.25rem;
    color: #666;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
}

.feature-list i {
    width: 1.5rem;
    height: 1.5rem;
    color: #7ED957;
    flex-shrink: 0;
}

.btn-secondary {
    background: linear-gradient(135deg, #7ED957 0%, #4CAF50 100%);
    color: white;
    width: fit-content;
}

.btn-secondary:hover {
    opacity: 0.9;
}

.platform-image {
    position: relative;
}

.platform-image-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(126, 217, 87, 0.2) 0%, transparent 50%);
    border-radius: 1.5rem;
    filter: blur(60px);
}

.platform-image img {
    position: relative;
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Offer Section */
.offer-section {
    padding: 5rem 0;
    background: white;
}

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

.section-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-top: 1rem;
}

.offer-card {
    max-width: 56rem;
    margin: 0 auto;
    padding: 3rem;
    border: 4px solid #7ED957;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.offer-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    background: #FF3B30;
    color: white;
    padding: 0.5rem 1.5rem;
    font-weight: 900;
    font-size: 1.125rem;
    transform: rotate(-45deg) translate(-3rem, 1.5rem);
}

.offer-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.offer-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.meta-logo {
    height: 3rem;
}

.offer-title {
    font-size: 2rem;
    font-weight: 900;
    color: #2E7D32;
}

.offer-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.offer-price {
    font-size: 4rem;
    font-weight: 900;
    color: #7ED957;
}

.offer-period {
    font-size: 1.875rem;
    color: #666;
}

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

.badge-savings {
    background: #FDD835;
    color: #1a1a1a;
}

.badge-certified {
    background: #FF3B30;
    color: white;
    font-size: 1.125rem;
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
}

.btn-block {
    width: 100%;
}

/* Comparison Section */
.comparison-section {
    margin-top: 4rem;
}

.comparison-title {
    font-size: 1.875rem;
    font-weight: 900;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

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

.competitor-card {
    padding: 1.5rem;
    text-align: center;
    border: 2px solid #e5e5e5;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.competitor-card:hover {
    border-color: #999;
}

.competitor-logo {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.competitor-name {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.competitor-price {
    font-size: 1.875rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.competitor-period {
    font-size: 0.875rem;
    color: #666;
}

.badge-markup {
    background: #FFEBEE;
    color: #C62828;
    border: 1px solid #FFCDD2;
    margin-top: 0.75rem;
}

.comparison-highlight {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.125rem;
    color: #666;
    font-weight: 600;
}

.highlight-text {
    color: #7ED957;
    font-weight: 900;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f5f5f5, white);
}

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

.testimonial-card {
    padding: 2rem;
    border: 2px solid #e5e5e5;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: #7ED957;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    font-size: 3rem;
}

.testimonial-info {
    text-align: right;
}

.testimonial-name {
    font-weight: bold;
    font-size: 1.125rem;
}

.testimonial-role {
    font-size: 0.875rem;
    color: #666;
}

.testimonial-company {
    font-size: 0.75rem;
    color: #999;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.star-filled {
    width: 1.25rem;
    height: 1.25rem;
    fill: #FDD835;
    color: #FDD835;
}

.testimonial-text {
    color: #333;
    line-height: 1.8;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 90rem;
    margin: 0 auto;
}

.pricing-card {
    padding: 2rem;
    border: 2px solid #7ED957;
    border-radius: 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.pricing-card-featured {
    border-width: 4px;
    background: linear-gradient(to bottom, rgba(126, 217, 87, 0.05), white);
    transform: scale(1.05);
}

.badge-discount {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #FF3B30;
    color: white;
}

.badge-popular {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #FDD835;
    color: #1a1a1a;
    font-weight: 900;
}

.badge-premium {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(to right, #7C4DFF, #2196F3);
    color: white;
}

.pricing-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 900;
    color: #2E7D32;
    margin-bottom: 1.5rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 1rem;
}

.price-main {
    font-size: 3rem;
    font-weight: 900;
    color: #7ED957;
}

.pricing-card-featured .price-main {
    font-size: 3rem;
}

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

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

.pricing-divider {
    height: 1px;
    background: #e5e5e5;
    margin: 1rem 0;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.pricing-features i {
    width: 1.25rem;
    height: 1.25rem;
    color: #7ED957;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.btn-premium {
    background: linear-gradient(to right, #7C4DFF, #2196F3);
    color: white;
}

.btn-premium:hover {
    opacity: 0.9;
}

.guarantee-card {
    max-width: 42rem;
    margin: 3rem auto 0;
    padding: 1.5rem;
    background: linear-gradient(to right, #E8F5E9, #E3F2FD);
    border: 2px solid #7ED957;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.guarantee-icon {
    width: 3rem;
    height: 3rem;
    color: #7ED957;
    flex-shrink: 0;
}

.guarantee-content {
    text-align: right;
}

.guarantee-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: #2E7D32;
}

.guarantee-text {
    color: #333;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, white, #f5f5f5);
}

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

.feature-card {
    padding: 2rem;
    text-align: center;
    border: 2px solid #e5e5e5;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #7ED957;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    color: #7ED957;
    margin: 0 auto 1rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: #666;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #7ED957 0%, #4CAF50 50%, #2E7D32 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-bg-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(126, 217, 87, 0.1) 0%, transparent 50%);
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 10;
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.badge-cta {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.125rem;
    width: fit-content;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 900;
}

.cta-subtitle {
    font-size: 1.5rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.btn-cta-primary {
    background: white;
    color: #2E7D32;
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
    font-weight: bold;
    border-radius: 9999px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.btn-cta-primary:hover {
    background: #f5f5f5;
}

.btn-cta-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
    font-weight: bold;
    border-radius: 9999px;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cta-features {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0;
}

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

.footer-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: #7ED957;
    margin-bottom: 1rem;
}

.footer-description {
    color: #999;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: #7ED957;
}

.social-link i {
    width: 1.25rem;
    height: 1.25rem;
}

.footer-heading {
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #7ED957;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #999;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    width: 1rem;
    height: 1rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #999;
}

.footer-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.footer-meta-logo {
    height: 1.5rem;
}

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

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(126, 217, 87, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(126, 217, 87, 0.6);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

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

@keyframes slideInFromBottom {
    from {
        transform: translate(-50%, 100px);
        opacity: 0;
    }
    to {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}

/* Responsive Typography */
@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-title-discount {
        font-size: 6rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .countdown-value {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5rem;
    }
    
    .hero-title-discount {
        font-size: 7rem;
    }
    
    .hero-subtitle {
        font-size: 1.875rem;
    }
}
