@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@500;600;700&display=swap');

:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary: #16a34a;
  --text: #0f172a;
  --muted: #475569;
  --surface: #ffffff;
  --background: #f8fafc;
  --border: #dbeafe;
  --gradient: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 50%, #dcfce7 100%);
  --shadow: 0 14px 35px rgba(30, 64, 175, 0.12);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--background);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: min(1120px, 92vw); margin: 0 auto; }
.section { padding: 72px 0; }
.section-title {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin: 0 0 14px;
}
.section-lead { color: var(--muted); margin: 0 0 30px; max-width: 760px; }

.site-header {
  position: sticky; top: 0; z-index: 99;
  background: rgba(255,255,255,.9); backdrop-filter: blur(8px);
  border-bottom: 1px solid #e2e8f0;
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 0; }
.brand img { width: min(290px, 76vw); height: auto; }
.menu { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; justify-content: flex-end; }
.menu a { font-weight: 600; color: #1e293b; transition: color .25s ease; }
.menu a:hover, .menu a.active { color: var(--primary); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 20px; border-radius: 999px; font-weight: 700; transition: .25s ease;
  border: 2px solid transparent;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); background: var(--primary-dark); box-shadow: var(--shadow); }
.btn-secondary { border-color: var(--primary); color: var(--primary); background: #fff; }
.btn-secondary:hover { background: #eff6ff; transform: translateY(-2px); }

.hero { background: var(--gradient); padding: 88px 0 80px; }
.hero-grid { display: grid; gap: 40px; grid-template-columns: 1.1fr .9fr; align-items: center; }
.hero h1 { font-family: 'Poppins', 'Inter', sans-serif; font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.2; margin: 0 0 16px; }
.hero p { color: var(--muted); margin: 0 0 26px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-card { background: #fff; border-radius: 22px; padding: 18px; box-shadow: var(--shadow); }
.hero-card img { border-radius: 16px; min-height: 260px; object-fit: cover; }

.grid-3 { display: grid; gap: 24px; grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-2 { display: grid; gap: 24px; grid-template-columns: repeat(2, minmax(0,1fr)); }
.card {
  background: var(--surface); border-radius: 18px; border: 1px solid #e2e8f0;
  padding: 24px; transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card h3 { margin: 0 0 10px; font-family: 'Poppins', 'Inter', sans-serif; font-size: 1.2rem; }
.card p { margin: 0; color: var(--muted); }

.info-banner {
  background: linear-gradient(135deg,#2563eb,#0ea5e9,#16a34a);
  color: #fff; border-radius: 20px; padding: 30px;
  display: flex; justify-content: space-between; gap: 20px; align-items: center; flex-wrap: wrap;
}
.info-banner p { margin: 0; color: #e2e8f0; max-width: 680px; }

.page-hero { background: var(--gradient); padding: 72px 0; }
.page-hero h1 { font-family: 'Poppins', 'Inter', sans-serif; font-size: clamp(1.8rem, 3vw, 2.8rem); margin: 0 0 10px; }
.page-hero p { margin: 0; color: var(--muted); max-width: 760px; }

.form-card {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 18px;
  padding: 26px; box-shadow: 0 8px 26px rgba(15, 23, 42, 0.08);
}
label { display: block; margin-bottom: 7px; font-weight: 600; }
input, textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid #cbd5e1;
  font: inherit; margin-bottom: 14px; transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus, textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px #dbeafe; }
textarea { min-height: 150px; resize: vertical; }
.error { color: #b91c1c; font-size: .92rem; margin: -9px 0 12px; display: none; }
.success-msg { margin-top: 12px; color: #166534; font-weight: 600; display: none; }

.legal { background: #fff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 28px; }
.legal h2 { margin-top: 0; font-family: 'Poppins', 'Inter', sans-serif; }
.legal h3 { margin-bottom: 6px; color: #1e3a8a; }
.legal p { color: #334155; }

.site-footer { margin-top: 48px; background: #0f172a; color: #cbd5e1; padding: 52px 0 26px; }
.footer-grid { display: grid; gap: 24px; grid-template-columns: 1.4fr 1fr 1fr; }
.site-footer h4 { margin: 0 0 10px; color: #f8fafc; }
.site-footer ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.site-footer a:hover { color: #93c5fd; }
.copyright { border-top: 1px solid #334155; margin-top: 26px; padding-top: 18px; color: #94a3b8; font-size: .95rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.show { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .hero-grid, .grid-3, .grid-2, .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 56px; }
  .menu { gap: 14px; }
}
