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

:root {
    --coffee-50: #fef6ee;
    --coffee-100: #fdead6;
    --coffee-600: #c45a1e;
    --coffee-700: #a54517;
    --gray-900: #111827;
    --gray-600: #4b5563;
    --gray-100: #f3f4f6;
    --green-600: #059669;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--gray-900);
    background: linear-gradient(135deg, var(--coffee-50) 0%, #ffffff 50%, #fff5ee 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0;
}

.logo h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.logo .accent {
    color: var(--coffee-600);
}

.location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.location svg {
    color: var(--coffee-600);
}

.tagline {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    font-weight: 400;
    color: var(--gray-600);
    max-width: 700px;
    margin: 2rem auto;
    line-height: 1.5;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--coffee-100);
    color: var(--coffee-700);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin: 2rem 0;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--coffee-600);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* JotForm Container */
.jotform-container {
    max-width: 600px;
    margin: 2rem auto;
}

.jotform-container .form-note {
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* JotForm iframe styling */
.jotform-container iframe {
    width: 100% !important;
    border: none !important;
    border-radius: 0.5rem;
}

/* Override some JotForm default styles if needed */
.jotform-container .form-all {
    margin: 0 !important;
}


/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--coffee-100);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon svg {
    color: var(--coffee-600);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--coffee-600);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 0;
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 640px) {
    .container {
        padding: 1rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .form-group input,
    .form-group button {
        width: 100%;
    }
    
    .features {
        gap: 1.5rem;
    }
    
    .stats {
        padding: 2rem 1rem;
        gap: 1.5rem;
    }
}
