:root {
    --primary-color: #f43f5e;
    --secondary-color: #e11d48;
    --accent-color: #f43f5ecc;
    --dark-color: #881337;
    --light-color: #fff1f2;
    --text-color: #1f2937;
    --border-color: #fff1f299;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(244, 63, 94, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(244, 63, 94, 0.2);
    --transition: all 0.3s ease;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: var(--text-color); line-height: 1.8; background-color: var(--light-color); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
header { background: var(--white); box-shadow: var(--shadow); position: sticky; top: 0; z-index: 1000; }
.header-content { display: flex; justify-content: space-between; align-items: center; padding: 2rem 0; }
.logo { font-size: 1.8rem; font-weight: bold; color: var(--primary-color); text-decoration: none; }
nav ul { display: flex; list-style: none; gap: 3rem; }
nav a { color: var(--text-color); text-decoration: none; font-weight: 500; font-size: 1.1rem; transition: var(--transition); }
nav a:hover { color: var(--primary-color); }
.mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--dark-color); }
.hero { background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); color: var(--white); padding: 8rem 0; text-align: center; }
.hero h1 { font-size: 3.5rem; margin-bottom: 2rem; animation: fadeInUp 0.8s ease; }
.hero p { font-size: 1.5rem; margin-bottom: 3rem; opacity: 0.95; animation: fadeInUp 0.8s ease 0.2s both; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.features-section { padding: 6rem 0; }
.features-section h2 { text-align: center; font-size: 3rem; margin-bottom: 5rem; color: var(--dark-color); }
.minimalist-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 4rem; max-width: 1000px; margin: 0 auto; padding: 0 2rem; }
.minimalist-card { background: var(--white); padding: 3rem; text-align: center; transition: var(--transition); }
.minimalist-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.minimalist-card .feature-icon { font-size: 4rem; margin-bottom: 2rem; }
.minimalist-card h3 { font-size: 2rem; margin-bottom: 1.5rem; color: var(--primary-color); font-weight: 600; }
.minimalist-card p { font-size: 1.2rem; line-height: 2; color: var(--text-color); }
.minimalist-card ul { margin-top: 2rem; list-style: none; padding: 0; }
.minimalist-card li { padding: 1rem 0; font-size: 1.1rem; border-bottom: 1px solid var(--border-color); }
.stats { background: var(--white); padding: 4rem 0; margin: 4rem 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; text-align: center; }
.stat-item { padding: 2rem; }
.stat-number { font-size: 3.5rem; font-weight: bold; color: var(--primary-color); display: block; margin-bottom: 1rem; }
.stat-label { font-size: 1.2rem; color: var(--text-color); }
.cta-section { background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); color: var(--white); padding: 6rem 0; text-align: center; margin-top: 6rem; }
.cta-section h2 { font-size: 3rem; margin-bottom: 2rem; }
.cta-section p { font-size: 1.4rem; margin-bottom: 3rem; }
.contact-info { display: flex; justify-content: center; gap: 4rem; margin-top: 3rem; flex-wrap: wrap; }
.contact-item { display: flex; align-items: center; gap: 1rem; font-size: 1.2rem; }
.contact-item::before { content: '●'; font-size: 1.8rem; }
footer { background: var(--dark-color); color: var(--white); padding: 3rem 0; text-align: center; }
@media (max-width: 768px) { nav ul { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 2rem; box-shadow: var(--shadow); } nav ul.active { display: flex; } .mobile-menu-btn { display: block; } .hero h1 { font-size: 2.5rem; } .hero p { font-size: 1.2rem; } .minimalist-grid { grid-template-columns: 1fr; gap: 2rem; } .contact-info { flex-direction: column; gap: 1.5rem; } }
