@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: #1a202c;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    min-height: 100vh;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 3.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    pointer-events: none;
}

header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    position: relative;
    letter-spacing: -1px;
}

.tagline {
    font-size: 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
}

main {
    padding: 3rem 0;
}

section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3.5rem;
    margin: 2.5rem 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.05) 100%);
    border: 2px solid rgba(102, 126, 234, 0.2);
    position: relative;
}

.hero h2 {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
    line-height: 1.3;
}

.hero p {
    font-size: 1.2rem;
    text-align: center;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.8;
}

.features h2,
.pricing h2,
.order-form h2,
.about h2 {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.75rem;
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 700;
}

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

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.5);
}

.icon {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.feature-card h3 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
    font-weight: 700;
}

.feature-card p {
    color: #4a5568;
    font-weight: 400;
    line-height: 1.6;
}

.price-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.price-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 25px;
    text-align: center;
    border: 3px solid;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
}

.price-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.flavor-lemon {
    border-color: #fbbf24;
}

.flavor-lemon::before {
    background: linear-gradient(90deg, #fef3c7, #fbbf24, #f59e0b);
}

.flavor-fruit-punch {
    border-color: #ec4899;
}

.flavor-fruit-punch::before {
    background: linear-gradient(90deg, #fce7f3, #ec4899, #be185d);
}

.flavor-grape {
    border-color: #8b5cf6;
}

.flavor-grape::before {
    background: linear-gradient(90deg, #ede9fe, #8b5cf6, #6d28d9);
}

.flavor-blueberry {
    border-color: #3b82f6;
}

.flavor-blueberry::before {
    background: linear-gradient(90deg, #dbeafe, #3b82f6, #1d4ed8);
}

.flavor-strawberry {
    border-color: #ef4444;
}

.flavor-strawberry::before {
    background: linear-gradient(90deg, #fee2e2, #ef4444, #dc2626);
}

.flavor-pineapple {
    border-color: #eab308;
}

.flavor-pineapple::before {
    background: linear-gradient(90deg, #fef9c3, #eab308, #ca8a04);
}

.flavor-mango {
    border-color: #f97316;
}

.flavor-mango::before {
    background: linear-gradient(90deg, #ffedd5, #f97316, #ea580c);
}

.flavor-watermelon {
    border-color: #10b981;
}

.flavor-watermelon::before {
    background: linear-gradient(90deg, #d1fae5, #f43f5e, #10b981);
}

.flavor-papaya {
    border-color: #fb923c;
}

.flavor-papaya::before {
    background: linear-gradient(90deg, #fed7aa, #fb923c, #f97316);
}

.flavor-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

.price-card.featured {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.3);
}

.price-card.featured:hover {
    transform: translateY(-10px) scale(1.08);
}

.badge {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
    letter-spacing: 0.5px;
}

.price-card h3 {
    font-family: 'Poppins', sans-serif;
    color: #1a202c;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.price {
    font-size: 3.25rem;
    font-weight: 800;
    margin: 1.5rem 0;
    font-family: 'Poppins', sans-serif;
}

.flavor-lemon .price {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.flavor-fruit-punch .price {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.flavor-grape .price {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.flavor-blueberry .price {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.flavor-strawberry .price {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.flavor-pineapple .price {
    background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.flavor-mango .price {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.flavor-watermelon .price {
    background: linear-gradient(135deg, #f43f5e 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.flavor-papaya .price {
    background: linear-gradient(135deg, #fb923c 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-card p {
    color: #4a5568;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.6;
}

.order-form {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.form-intro {
    text-align: center;
    color: #57534e;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    font-weight: 300;
}

form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.75rem;
}

label {
    display: block;
    margin-bottom: 0.6rem;
    color: #92400e;
    font-weight: 500;
    font-size: 0.95rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #d6d3d1;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: white;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.thank-you {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-radius: 20px;
    border: 2px solid #6ee7b7;
}

.thank-you h3 {
    font-family: 'Playfair Display', serif;
    color: #065f46;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.thank-you p {
    color: #047857;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 300;
    line-height: 1.7;
}

.about {
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.1) 0%, rgba(245, 175, 25, 0.05) 100%);
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.about p {
    font-size: 1.15rem;
    color: #57534e;
    margin-bottom: 1.25rem;
    text-align: center;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.8;
}

footer {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 2.5rem 0;
    text-align: center;
    margin-top: 3rem;
    border-top: 2px solid rgba(102, 126, 234, 0.2);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
}

footer p {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 1rem;
}

@media (max-width: 768px) {
    header {
        padding: 2.5rem 0;
    }

    header h1 {
        font-size: 2.25rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .hero h2,
    .features h2,
    .pricing h2,
    .order-form h2,
    .about h2 {
        font-size: 2rem;
    }

    section {
        padding: 2rem 1.5rem;
        margin: 1.5rem 0;
    }

    .feature-grid,
    .price-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .price-card.featured {
        transform: scale(1);
    }

    .price {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.875rem;
    }

    .container {
        padding: 0 16px;
    }

    section {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .hero h2,
    .features h2,
    .pricing h2,
    .order-form h2,
    .about h2 {
        font-size: 1.75rem;
    }

    .submit-btn {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
}
