/* Reset and Base Styles */
* {
    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: #334155;
    background-color: white;
    min-height: 100vh;
}

/* Background Pattern */
.background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.1'%3E%3Ccircle cx='7' cy='7' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Main Container */
.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.main-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s ease-out forwards;
}

/* Logo */
.logo-container {
    margin-bottom: 3rem;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo {
    height: 8rem;
    background: transparent;
}

@media (min-width: 768px) {
    .logo {
        height: 10rem;
    }
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
    background-color: #dbeafe;
    border: 1px solid #bfdbfe;
    border-radius: 9999px;
    color: #1e40af;
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.clock-icon {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}

/* Heading Section */
.heading-section {
    margin-bottom: 4rem;
}

.main-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.highlight-text {
    display: block;
    color: #2563eb;
    background: linear-gradient(to right, #2563eb, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .main-title {
        font-size: 3.75rem;
    }
    
    .subtitle {
        font-size: 1.5rem;
    }
}

/* Features Grid */
.features-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 4rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.blue-icon {
    background-color: #dbeafe;
    color: #2563eb;
}

.green-icon {
    background-color: #dcfce7;
    color: #16a34a;
}

.purple-icon {
    background-color: #f3e8ff;
    color: #9333ea;
}

.feature-title {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.feature-description {
    font-size: 0.875rem;
    color: #64748b;
}

/* Call to Action */
.cta-section {
    margin-top: 4rem;
}

.cta-text {
    color: #374151;
    font-weight: 500;
    margin-bottom: 1rem;
}

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

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

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background-color: #2563eb;
    color: white;
    font-weight: 500;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.cta-button:hover {
    background-color: #1d4ed8;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.phone-info {
    color: #64748b;
}

.phone-info p {
    font-size: 0.875rem;
}

.phone-number {
    font-weight: 500;
}

/* Coming Soon */
.coming-soon {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.coming-soon p {
    color: #374151;
    font-size: 1.125rem;
}

/* Footer */
.footer {
    position: absolute;
    bottom: 1.5rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.875rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .main-content {
        padding: 0 1rem;
    }
    
    .logo {
        height: 6rem;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.125rem;
    }
}