:root {
  --navy: #0b1628; --navy-mid: #152038; --navy-light: #1e304f;
  --orange: #f4580a; --orange-light: #ff7a35;
  --white: #ffffff; --text-muted: #8a96aa; --border: rgba(255,255,255,0.08);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--navy); color: var(--white); overflow-x: hidden; }
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 18px 48px; background: rgba(11,22,40,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.4rem; letter-spacing: -0.02em; text-decoration: none; color: var(--white); }
.logo span { color: var(--orange); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--text-muted); font-size: 0.88rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta { background: var(--orange); color: var(--white) !important; padding: 10px 22px; border-radius: 6px; font-weight: 600 !important; font-size: 0.88rem !important; text-decoration: none; transition: background 0.2s; }
.nav-cta:hover { background: var(--orange-light) !important; }
footer { background: var(--navy-mid); border-top: 1px solid var(--border); padding: 60px 48px 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-col h4 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; color: var(--text-muted); }
.footer-col a { display: block; text-decoration: none; color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 28px; display: flex; justify-content: space-between; font-size: 0.78rem; color: var(--text-muted); }
.btn-primary { background: var(--orange); color: var(--white); border: none; border-radius: 10px; padding: 14px 28px; font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 700; cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s, transform 0.15s, box-shadow 0.2s; }
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(244,88,10,0.35); }
.section-tag { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--orange); margin-bottom: 12px; }
.section-title { font-family: 'Syne', sans-serif; font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); }
.form-group select, .form-group input, .form-group textarea { background: var(--navy-light); border: 1px solid var(--border); border-radius: 8px; padding: 12px 14px; color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 0.9rem; outline: none; transition: border-color 0.2s; -webkit-appearance: none; }
.form-group select:focus, .form-group input:focus { border-color: var(--orange); }
.form-group select option { background: var(--navy-mid); }
.sticky-mobile { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 99; background: var(--navy-mid); border-top: 1px solid var(--border); padding: 16px 20px; gap: 12px; }
.sticky-mobile a { flex: 1; text-align: center; padding: 14px; border-radius: 8px; font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.88rem; text-decoration: none; }
.sticky-mobile a:first-child { background: var(--orange); color: var(--white); }
.sticky-mobile a:last-child { background: var(--navy-light); color: var(--white); border: 1px solid var(--border); }
@media (max-width: 900px) { nav { padding: 16px 24px; } .nav-links { display: none; } footer { padding: 60px 24px 40px; } .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } .sticky-mobile { display: flex; } body { padding-bottom: 80px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
