:root {
    --primary: #FF9800;
    --secondary: #2196F3;
    --accent: #E91E63;
    --bg-color: #81D4FA;
    --text-dark: #333;
    --text-light: #fff;
    --basic-plan: #4CAF50;
    --premium-plan: #FFC107;
}

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

body {
    font-family: 'Nunito', sans-serif;
    background: #81D4FA;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Fredoka One', cursive;
    color: var(--text-light);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem 4rem 1rem;
    min-height: 80vh;
    background: linear-gradient(135deg, #81D4FA 0%, #4FC3F7 100%);
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png'), linear-gradient(135deg, #81D4FA 0%, #4FC3F7 100%);
}

.hero-image {
    width: 100%;
    max-width: 400px;
    display: flex;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
    margin-bottom: 2rem;
    z-index: 2;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0px 20px 25px rgba(0,0,0,0.5));
    border-radius: 20px;
}

.hero-content {
    width: 100%;
    max-width: 600px;
    text-align: center;
    animation: slideIn 1s ease-out;
    z-index: 3;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #FFEB3B;
    -webkit-text-stroke: 1.5px #E65100;
    text-shadow: 3px 3px 0 #E65100;
}

.hero-content p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 2.5rem;
    font-weight: 900;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.3rem;
    font-family: 'Fredoka One', cursive;
    color: white;
    background: var(--accent);
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 0 #C2185B, 0 15px 20px rgba(0,0,0,0.3);
    transition: all 0.2s;
    text-transform: uppercase;
    position: relative;
    z-index: 10;
}

.cta-button:hover {
    transform: translateY(4px);
    box-shadow: 0 4px 0 #C2185B, 0 10px 10px rgba(0,0,0,0.3);
}

.cta-button:active {
    transform: translateY(8px);
    box-shadow: 0 0 0 #C2185B, 0 5px 5px rgba(0,0,0,0.3);
}

/* SVG Divider */
.divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: white;
    margin-top: -5px;
}

.divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
    transform: rotateY(180deg);
}

.divider .shape-fill {
    fill: #4FC3F7;
}

/* Benefits Section */
.benefits {
    padding: 3rem 1rem;
    background: white;
    text-align: center;
}

.benefits h2 {
    color: var(--secondary);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    -webkit-text-stroke: 1px #1565C0;
    text-shadow: 2px 2px 0 #1565C0;
}

.benefits-visual {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.benefits-image {
    max-width: 90%;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border: 4px solid #fff;
}

.benefit-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.card {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 20px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    border: 3px solid #eee;
    text-align: left;
}

.card h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-shadow: none;
}

.card p {
    font-size: 1rem;
    color: #555;
    font-weight: 700;
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, #FF9800 0%, #FF5722 100%);
    position: relative;
}

.pricing-section h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: white;
    -webkit-text-stroke: 1px #BF360C;
    text-shadow: 2px 2px 0 #BF360C;
}

.pricing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.pricing-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 30px;
    width: 100%;
    max-width: 350px;
    position: relative;
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

.pricing-card.basic {
    border: 5px solid var(--basic-plan);
}

.pricing-card.premium {
    border: 5px solid var(--premium-plan);
    background: linear-gradient(to bottom, #ffffff 0%, #FFF8E1 100%);
    z-index: 10;
}

.premium-image-container {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    margin-bottom: 15px;
}

.premium-img {
    width: 150px;
    height: auto;
    border-radius: 15px;
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.2));
    animation: float 3s infinite;
}

.popular-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
    animation: pulse 2s infinite;
    z-index: 11;
}

.pricing-card h3 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-shadow: none;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.price .currency {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.features li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 0.5rem;
    font-weight: 700;
}

.buy-button {
    display: block;
    padding: 1rem;
    border-radius: 50px;
    font-family: 'Fredoka One', cursive;
    font-size: 1.3rem;
    color: white;
    text-decoration: none;
    transition: all 0.2s;
    text-transform: uppercase;
}

.basic-btn {
    background: var(--basic-plan);
    box-shadow: 0 6px 0 #388E3C, 0 10px 15px rgba(0,0,0,0.2);
}

.basic-btn:active {
    transform: translateY(6px);
    box-shadow: 0 0px 0 #388E3C;
}

.premium-btn {
    background: var(--premium-plan);
    color: #333;
    box-shadow: 0 6px 0 #FFA000, 0 10px 15px rgba(0,0,0,0.2);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

.premium-btn:active {
    transform: translateY(6px);
    box-shadow: 0 0px 0 #FFA000;
    animation: none;
}

/* Footer */
footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    font-size: 1.1rem;
    font-weight: 700;
}

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

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

@keyframes pulse {
    0% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.05); }
    100% { transform: translateX(-50%) scale(1); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    60% { transform: translateY(-4px); }
}

/* Media Queries for Desktop - as it is mobile first now */
@media (min-width: 768px) {
    .hero {
        flex-direction: row-reverse;
        padding: 4rem 2rem;
    }
    
    .hero-content {
        text-align: left;
        max-width: 50%;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-image {
        max-width: 45%;
        margin-bottom: 0;
    }
    
    .benefit-cards {
        flex-direction: row;
        justify-content: center;
    }
    
    .pricing-container {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    
    .pricing-card {
        margin: 0;
    }
    
    .pricing-card.premium {
        transform: scale(1.1);
    }
    
    .pricing-card.premium:hover {
        transform: translateY(-10px) scale(1.15);
    }
    
    .pricing-card.basic:hover {
        transform: translateY(-10px);
    }
    
    .benefits-image {
        max-width: 600px;
    }
}
