* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, rgba(134, 190, 65, 0.05) 100%);
    min-height: 100vh;
}

.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styles */
.header {
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(134, 190, 65, 0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.75rem;
    font-weight: bold;
    background: linear-gradient(135deg, #86be41, #6ba832);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.toggle-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 2px solid #86be41;
    color: #86be41;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.toggle-btn:hover {
    background: #86be41;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(134, 190, 65, 0.3);
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 3rem 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 4rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #333, #666);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: #737474;
    max-width: 48rem;
    margin: 0 auto;
}

/* Pricing Container */
.pricing-container {
    position: relative;
}

.pricing-content {
    transition: all 0.5s ease;
}

.pricing-content.blurred {
    opacity: 0.3;
    filter: blur(4px);
}

.pricing-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* Countdown Overlay */
.countdown-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    text-align: center;
    min-width: 320px;
    max-width: 90vw;
    border: 1px solid rgba(134, 190, 65, 0.2);
}

.countdown-overlay.hidden {
    display: none;
}

.countdown-header {
    margin-bottom: 2rem;
}

.countdown-title {
    font-size: 2rem;
    font-weight: bold;
    color: #86be41;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.countdown-subtitle {
    color: #737474;
    font-size: 1.1rem;
}

/* Timer Styles */
.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.time-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #86be41;
    display: block;
    background: linear-gradient(135deg, #86be41, #6ba832);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.time-label {
    font-size: 0.875rem;
    color: #737474;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

.time-separator {
    font-size: 2rem;
    color: #86be41;
    font-weight: bold;
}

/* Launch Info */
.launch-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(134, 190, 65, 0.2);
}

.launch-title {
    font-size: 1.5rem;
    color: #86be41;
    margin-bottom: 1rem;
    font-weight: bold;
}

.launch-description {
    color: #737474;
    line-height: 1.6;
}

/* Info Section */
.info-section {
    margin-top: 4rem;
    text-align: center;
}

.info-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 32rem;
    margin: 0 auto;
}

.info-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #86be41;
    margin-bottom: 1rem;
}

.info-text {
    color: #737474;
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 2rem 1rem;
    border-top: 1px solid rgba(134, 190, 65, 0.1);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: #737474;
}

.footer-content p {
    margin: 0.25rem 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .countdown-overlay {
        padding: 2rem;
        margin: 1rem;
    }
    
    .countdown-timer {
        gap: 0.5rem;
    }
    
    .time-number {
        font-size: 2rem;
    }
    
    .time-separator {
        font-size: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .countdown-title {
        font-size: 1.5rem;
    }
    
    .time-number {
        font-size: 1.75rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    height: 50%;
    width: 90%;
    max-width: 900px;
    position: relative;
    top: 30%;
    transform: translateY(-50%);
}

.close {
    color: #fff;
    position: absolute;
    right: 25px;
    top: 10px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #ccc;
}

.pricing-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: scale(1.02);
}

.hero-cta {
    text-align: center;
    margin-bottom: 3rem; /* Adds space below the button */
    width: 100%;
}

.schedule-appointment-btn {
    background: linear-gradient(135deg, #86be41, #9dd147);
    color: white;
    border: none;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(134, 190, 65, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.schedule-appointment-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.schedule-appointment-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(134, 190, 65, 0.4);
    background: linear-gradient(135deg, #9dd147, #86be41);
}

.schedule-appointment-btn:hover::before {
    left: 100%;
}

.schedule-appointment-btn:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 6px 20px rgba(134, 190, 65, 0.3);
}

.schedule-appointment-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.schedule-appointment-btn:hover i {
    transform: rotate(15deg) scale(1.1);
}

