:root {
    --primary-color: #44403c;
    --primary-light: #57534e;
    --primary-accent: #a8a29e;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}
main { padding-top: 70px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.hero-banner {
    position: relative;
    background: linear-gradient(135deg, #44403c 0%, #57534e 100%);
    padding: 100px 20px;
    text-align: center;
    color: white;
    overflow: hidden;
}
.hero-bg-shapes { position: absolute; top: 0; left: 0; right: 0; bottom: 0; overflow: hidden; }
.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}
.shape-1 { width: 400px; height: 400px; top: -100px; right: -100px; }
.shape-2 { width: 300px; height: 300px; bottom: -50px; left: -50px; }
.shape-3 { width: 200px; height: 200px; top: 50%; left: 10%; }
.hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.hero-title { font-size: 3rem; font-weight: 800; margin-bottom: 20px; }
.hero-subtitle { font-size: 1.25rem; opacity: 0.9; margin-bottom: 30px; }

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}
.btn-primary { background: white; color: #44403c; }
.btn-primary:hover { background: #f0f0f0; transform: translateY(-2px); }
.btn-white { background: white; color: #44403c; }
.btn-white:hover { background: #f0f0f0; }
.btn-outline { background: transparent; color: white; border: 2px solid white; }
.btn-lg { padding: 16px 40px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

.section { padding: 80px 0; }
.section-gray { background: #f9fafb; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-title { font-size: 2.25rem; font-weight: 700; color: #1f2937; margin-bottom: 16px; }
.section-subtitle { font-size: 1.125rem; color: #6b7280; }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.feature-item {
    background: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}
.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-gradient-blue { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.icon-gradient-purple { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.icon-gradient-green { background: linear-gradient(135deg, #10b981, #059669); }
.icon-gradient-orange { background: linear-gradient(135deg, #f59e0b, #d97706); }
.icon-gradient-gold { background: linear-gradient(135deg, #eab308, #ca8a04); }
.feature-icon svg { width: 32px; height: 32px; color: white; }
.feature-name { font-size: 1.125rem; font-weight: 600; margin-bottom: 12px; }
.feature-text { font-size: 0.95rem; color: #6b7280; line-height: 1.7; }

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.card {
    background: white;
    padding: 36px;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s;
}
.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}
.card-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.card-icon-wrapper svg { width: 28px; height: 28px; color: white; }
.card-title { font-size: 1.25rem; font-weight: 600; margin-bottom: 16px; }
.card-text { font-size: 0.95rem; color: #6b7280; line-height: 1.8; }

.cta-section {
    background: linear-gradient(135deg, #44403c 0%, #57534e 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
}
.cta-content { max-width: 800px; margin: 0 auto; }
.cta-title { font-size: 2.25rem; font-weight: 700; margin-bottom: 16px; }
.cta-text { font-size: 1.125rem; opacity: 0.9; margin-bottom: 32px; }

.site-footer {
    background: #1f2937;
    color: white;
    padding: 60px 20px 30px;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.footer-section h4 { font-size: 1.125rem; margin-bottom: 20px; }
.footer-section p { color: #9ca3af; font-size: 0.95rem; line-height: 2; }
.footer-section a { color: #9ca3af; text-decoration: none; }
.footer-section a:hover { color: white; }
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid #374151;
    color: #9ca3af;
    font-size: 0.875rem;
}

@media (max-width: 1024px) {
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .hero-title { font-size: 2.25rem; }
    .section-title { font-size: 1.75rem; }
    .feature-grid,
    .card-grid,
    .footer-container { grid-template-columns: 1fr; }
    .section { padding: 60px 0; }
}
