/* 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: #374151;
    background-color: #ffffff;
}

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

/* Header */
.header {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #f3f4f6;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 40px;
    width: auto;
}

.company-name {
    font-size: 18px;
    font-weight: bold;
    color: #111827;
}

.tagline {
    font-size: 14px;
    font-weight: 500;
    color: #059669;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.nav-link:hover {
    color: #059669;
}

.demo-button {
    background: #059669;
    color: white !important;
    padding: 8px 16px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.demo-button:hover {
    background: #047857;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 48px 0 32px;
}

.hero-content {
    text-align: center;
}

.hero-logo {
    margin-bottom: 32px;
}

.hero-logo-img {
    height: 96px;
    width: auto;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    color: #6b7280;
}

.hero-message {
    margin-bottom: 32px;
}

.main-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 24px;
    line-height: 1.2;
}

.highlight {
    color: #059669;
}

.main-description {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 768px;
    margin: 0 auto;
    line-height: 1.6;
}

.coming-soon-box {
    background: #ecfdf5;
    border-left: 4px solid #059669;
    padding: 32px;
    border-radius: 0 8px 8px 0;
    max-width: 672px;
    margin: 0 auto 32px;
}

.coming-soon-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.clock-icon {
    width: 32px;
    height: 32px;
    color: #059669;
    margin-right: 12px;
}

.coming-soon-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
}

.coming-soon-text {
    font-size: 1.125rem;
    color: #374151;
    margin-bottom: 16px;
}

/* Features Section */
.features {
    padding: 48px 0;
    background: #ffffff;
}

.features-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 2.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 768px;
    margin: 0 auto;
}

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

.feature-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 32px;
    transition: all 0.3s ease;
}

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

.feature-icon-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.feature-icon-bg {
    width: 48px;
    height: 48px;
    background: #ecfdf5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: #059669;
}

.feature-accent {
    width: 4px;
    height: 48px;
    background: #059669;
    border-radius: 2px;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 12px;
}

.feature-description {
    color: #6b7280;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 48px 0;
    background: #f9fafb;
}

.contact-header {
    text-align: center;
    margin-bottom: 48px;
}

.contact-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 32px;
    max-width: 672px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon-bg {
    width: 48px;
    height: 48px;
    background: #ecfdf5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: #059669;
}

.contact-label {
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.contact-value {
    color: #6b7280;
}

/* Footer */
.footer {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    padding: 32px 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    height: 32px;
    width: auto;
}

.footer-company {
    font-weight: bold;
    color: #111827;
}

.footer-tagline {
    font-size: 14px;
    color: #059669;
}

.footer-copyright {
    font-size: 14px;
    color: #9ca3af;
}

/* Contact link styling */
.contact-value a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-value a:hover {
    color: #059669;
    text-decoration: underline;
}

/* Touch-friendly improvements */
.nav-link, .contact-value a {
    min-height: 44px;
    display: flex;
    align-items: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .navigation {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .main-heading {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-logo-img {
        height: 80px;
    }
    
    .coming-soon-box {
        margin: 0 auto 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 24px 0 20px;
    }
    
    .features {
        padding: 24px 0;
    }
    
    .contact {
        padding: 24px 0;
    }
    
    .coming-soon-box {
        padding: 20px;
        margin: 0 auto 20px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .main-heading {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .main-description {
        font-size: 1.125rem;
    }
    
    .hero-logo-img {
        height: 64px;
    }
    
    .logo {
        height: 32px;
    }
    
    .footer-logo-img {
        height: 28px;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .main-heading {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .coming-soon-box {
        padding: 16px;
    }
    
    .feature-card {
        padding: 16px;
    }
    
    .contact-card {
        padding: 16px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo, .hero-logo-img, .footer-logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Landscape orientation on mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 16px 0 12px;
    }
    
    .hero-logo-img {
        height: 48px;
        margin-bottom: 12px;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 8px;
    }
    
    .main-heading {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    
    .coming-soon-box {
        padding: 16px;
        margin-bottom: 16px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    /* Keep light theme for brand consistency */
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
