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

body {
    font-family: 'Shantell Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-logo h2 {
    font-family: 'Fredoka', cursive;
    font-size: 1.8rem;
    color: #8B5FBF;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #8B5FBF;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-family: 'Fredoka', cursive;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h1 i {
    color: #FFD700;
    margin-right: 10px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

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

.stat-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.stat-label i {
    margin-right: 8px;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    margin: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button i {
    margin-right: 10px;
}

.cta-button.primary {
    background: #25D366;
    color: white;
}

.cta-button.primary:hover {
    background: #1ea952;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary {
    background: #8B5FBF;
    color: white;
}

.cta-button.secondary:hover {
    background: #7a52a8;
    transform: translateY(-2px);
}

.cta-button.large {
    padding: 20px 40px;
    font-size: 1.3rem;
}

/* Content Grid */
.content-grid {
    background: #f8f9fa;
    padding: 80px 0;
}

.content-grid .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

/* Cards */
.card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.card-icon {
    font-size: 3rem;
    color: #8B5FBF;
    margin-bottom: 1.5rem;
    text-align: center;
}

.card h3 {
    font-family: 'Fredoka', cursive;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}

.card h4 {
    font-family: 'Fredoka', cursive;
    font-size: 1.3rem;
    color: #8B5FBF;
    margin-bottom: 1rem;
}

.card p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.card ul {
    list-style: none;
    margin-bottom: 1rem;
}

.card li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.card li i {
    margin-right: 10px;
    color: #dc3545;
}

/* Specific Card Styles */
.highlight-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.highlight-card .card-icon {
    color: #FFD700;
}

.highlight-card h3 {
    color: white;
}

.solution-card {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
}

.solution-card .card-icon {
    color: #FFD700;
}

.solution-card h3,
.solution-card h4 {
    color: white;
}

.kit-contents {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.kit-contents .card-icon {
    color: #FFD700;
}

.kit-contents h3 {
    color: white;
}

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

.kit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.kit-item i {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.kit-item h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.quality-note {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
}

.pricing-card {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    text-align: center;
}

.pricing-card .card-icon {
    color: #FFD700;
}

.pricing-card h3 {
    color: white;
}

.price-container {
    margin: 2rem 0;
}

.old-price {
    font-size: 1.5rem;
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.new-price {
    font-size: 3rem;
    font-weight: 700;
    color: #FFD700;
}

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

.testimonial {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #8B5FBF;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #8B5FBF;
}

.value-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.value-card .card-icon {
    color: #FFD700;
}

.value-card h3 {
    color: white;
}

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

.value-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.value-item i {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.urgency-card {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
}

.urgency-card .card-icon {
    color: #FFD700;
}

.urgency-card h3 {
    color: white;
}

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

.risk-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.risk-list li i {
    color: #FFD700;
    margin-right: 10px;
}

.final-cta {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
    text-align: center;
}

.final-cta .card-icon {
    color: #FFD700;
}

.final-cta h3 {
    color: white;
}

.author {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.checklist {
    margin: 2rem 0;
}

.check-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.check-item i {
    color: #FFD700;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.highlight-text {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Fixed Elements */
.countdown-timer {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: #dc3545;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

.timer-text {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.timer-display {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.notification-popup {
    position: fixed;
    top: 100px;
    right: 20px;
    background: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.notification-popup.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.notification-content i {
    color: #25D366;
    font-size: 1.2rem;
}

.whatsapp-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button {
    background: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background: #1ea952;
    transform: scale(1.05);
}

.whatsapp-button i {
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 2rem;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: #8B5FBF;
    transform: translateY(-3px);
}

.footer-info p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

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

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

.card {
    animation: slideIn 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .card {
        padding: 2rem;
    }
    
    .card h3 {
        font-size: 1.5rem;
    }
    
    .kit-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .value-list {
        grid-template-columns: 1fr;
    }
    
    .countdown-timer {
        bottom: 140px;
        right: 10px;
        padding: 10px 15px;
    }
    
    .timer-display {
        font-size: 1.2rem;
    }
    
    .notification-popup {
        right: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
    }
    
    .whatsapp-button {
        padding: 12px 16px;
    }
    
    .whatsapp-button span {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .content-grid {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .cta-button.large {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .countdown-timer,
    .notification-popup,
    .whatsapp-widget {
        display: none;
    }
    
    .hero {
        background: white;
        color: black;
    }
    
    .card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}