:root {
    --primary: #E1306C;
    --gradient: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    --text: #262626;
    --bg: #fafafa;
    --card-bg: #ffffff;
}
* { margin: 0; padding: 0; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
body { background-color: var(--bg); color: var(--text); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
.nav { position: sticky; top: 0; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); z-index: 100; border-bottom: 1px solid #dbdbdb; padding: 15px 5%; display: flex; justify-content: space-between; align-items: center; }
.nav-brand { font-size: 24px; font-weight: bold; background: var(--gradient); -webkit-background-clip: text; color: transparent; }
.nav-links a { margin-left: 20px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--primary); }
.container { max-width: 1200px; margin: 0 auto; padding: 40px 20px; }
.hero { text-align: center; padding: 80px 20px; background: #fff; }
.hero h1 { font-size: 42px; margin-bottom: 20px; }
.hero p { font-size: 18px; color: #8e8e8e; margin-bottom: 30px; max-width: 800px; margin-inline: auto; }
.btn-group { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.btn { padding: 12px 30px; border-radius: 8px; font-weight: 600; text-align: center; display: inline-block; transition: transform 0.2s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gradient); color: white; border: none; }
.btn-secondary { background: #efefef; color: #262626; border: 1px solid #dbdbdb; }
.data-bar { display: flex; justify-content: space-around; flex-wrap: wrap; padding: 40px 20px; background: var(--gradient); color: white; text-align: center; }
.data-item h3 { font-size: 32px; margin-bottom: 5px; }
.data-item p { font-size: 14px; opacity: 0.9; }
.section { padding: 60px 20px; background: #fff; margin-bottom: 20px; border-radius: 12px; }
.section-title { text-align: center; font-size: 32px; margin-bottom: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { background: var(--card-bg); padding: 30px; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.05); border: 1px solid #efefef; transition: transform 0.3s; }
.card:hover { transform: translateY(-5px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.card h3 { color: var(--primary); margin-bottom: 15px; font-size: 20px; }
.faq-item { margin-bottom: 20px; background: #fff; padding: 20px; border-radius: 8px; border: 1px solid #efefef; }
.faq-item h3 { margin-bottom: 10px; font-size: 18px; color: var(--primary); }
.img-fluid { max-width: 100%; height: auto; border-radius: 12px; margin-top: 20px; display: block; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.text-center { text-align: center; }
.footer { background: #1a1a1a; color: #fff; padding: 40px 20px; text-align: center; }
.footer-links { margin-bottom: 20px; }
.footer-links a { margin: 0 15px; color: #aaa; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }