@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

:root {
    --primary: #1e3a8a;
    --primary-light: #3b82f6;
    --accent: #f59e0b;
    --bg-light: #f8fafc;
    --card-bg: #ffffff;
    --text-main: #0f172a;
    --text-muted: #475569;
    --radius: 16px;
    --shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px -10px rgba(59, 130, 246, 0.25);
    --transition: all 0.3s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; color: var(--text-main); background-color: var(--bg-light); line-height: 1.6; overflow-x: hidden; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

header { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid #e2e8f0; padding: 15px 0; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 24px; font-weight: 800; color: var(--primary); letter-spacing: -0.5px; }
.logo img { width: 36px; height: 36px; }
.badge-direct { background: #dbeafe; color: #1e40af; padding: 6px 14px; border-radius: 50px; font-size: 13px; font-weight: 600; display: inline-block; margin-bottom: 20px; border: 1px solid #bfdbfe; }

.hero { padding: 80px 0 60px; text-align: center; background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%); color: white; margin-bottom: 60px; border-radius: 0 0 40px 40px; }
.hero h1 { font-size: 46px; line-height: 1.2; margin-bottom: 24px; font-weight: 800; }
.hero p { font-size: 20px; opacity: 0.9; max-width: 800px; margin: 0 auto 40px; }
.platforms-flex { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.platform-card { background: rgba(255,255,255,0.1); backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.2); padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: 15px; }

.section-title { text-align: center; font-size: 36px; color: var(--primary); margin-bottom: 40px; font-weight: 800; }
.text-block { background: var(--card-bg); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); margin-bottom: 40px; border-left: 5px solid var(--primary-light); }
.text-block h2 { font-size: 24px; color: var(--primary); margin-bottom: 15px; }
.text-block p { font-size: 17px; color: var(--text-muted); margin-bottom: 15px; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-bottom: 60px; }
.card { background: var(--card-bg); border-radius: var(--radius); padding: 40px 30px; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid #f1f5f9; text-align: center; }
.card h3 { font-size: 22px; color: var(--primary); margin-bottom: 15px; font-weight: 800; }
.card p { color: var(--text-muted); font-size: 16px; }

.seo-section { background: white; padding: 60px 0; margin-bottom: 60px; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0; }
.seo-content { column-count: 2; column-gap: 40px; color: var(--text-muted); font-size: 15px; }
.seo-content h3 { color: var(--text-main); font-size: 18px; margin-bottom: 10px; break-inside: avoid; }
.seo-content p { margin-bottom: 15px; break-inside: avoid; }

.cta-box { text-align: center; background: #fffbeb; border: 2px solid #fde68a; padding: 50px; border-radius: var(--radius); margin: 0 auto 60px; max-width: 800px; box-shadow: var(--shadow); }
.cta-box h3 { font-size: 28px; color: #92400e; margin-bottom: 15px; }
.cta-box p { font-size: 18px; color: #b45309; font-weight: 600; }

.form-wrapper { background: var(--card-bg); border-radius: var(--radius); max-width: 600px; margin: 0 auto 80px; padding: 50px; box-shadow: var(--shadow); }
.form-wrapper h2 { text-align: center; margin-bottom: 30px; font-size: 32px; font-weight: 800; color: var(--primary); }
.form-row { display: flex; gap: 15px; margin-bottom: 24px; }
.form-row .form-group { width: 50%; margin-bottom: 0; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: #334155; font-size: 14px; }
input, select, textarea { width: 100%; padding: 16px; border: 2px solid #e2e8f0; border-radius: 10px; font-size: 16px; font-family: inherit; background: #f8fafc; color: var(--text-main); transition: border 0.3s; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--primary-light); background: white; }
input:invalid:focus { border-color: #ef4444; background: #fef2f2; }

button[type="submit"] { width: 100%; background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%); color: white; border: none; padding: 18px; border-radius: 10px; font-size: 18px; font-weight: 800; cursor: pointer; transition: var(--transition); box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3); }
button[type="submit"]:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4); }

footer { background: #0f172a; color: #94a3b8; padding: 60px 0 40px; font-size: 14px; }
.footer-flex { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; }
.footer-legal .legal-title { color: white; font-weight: 600; margin-bottom: 10px; font-size: 16px; }
.footer-legal p { margin-bottom: 6px; }

#formResponse { margin-top: 20px; padding: 15px; border-radius: 10px; font-weight: 600; text-align: center; display: none; }

@media (max-width: 768px) {
    .hero { padding: 60px 0 40px; border-radius: 0 0 20px 20px; }
    .hero h1 { font-size: 32px; }
    .seo-content { column-count: 1; }
    .form-wrapper, .cta-box { padding: 30px; }
    .form-row { flex-direction: column; gap: 24px; }
    .form-row .form-group { width: 100%; }
}