*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0A0A0F;
  --surface: #13131A;
  --border: #1E1E2E;
  --accent: #4F8EF7;
  --text: #F0F0F8;
  --muted: #8888AA;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Inter', sans-serif;
}

body { background: var(--bg); color: var(--text); font-family: var(--font-body); line-height: 1.6; }

/* NAV */
.nav { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 6%; border-bottom: 1px solid var(--border); position: sticky; top: 0; background: rgba(10,10,15,0.92); backdrop-filter: blur(12px); z-index: 100; }
.nav-logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--text); text-decoration: none; }
.nav-logo span { color: var(--accent); }
.nav-links { list-style: none; display: flex; gap: 2rem; align-items: center; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta { background: var(--accent); color: #fff !important; padding: 0.5rem 1.1rem; border-radius: 6px; font-weight: 600; }

/* HERO */
.hero { max-width: 780px; margin: 0 auto; padding: 6rem 6% 5rem; text-align: center; }
.hero-badge { display: inline-block; border: 1px solid var(--border); padding: 0.3rem 0.9rem; border-radius: 999px; font-size: 0.8rem; color: var(--muted); margin-bottom: 1.8rem; }
.hero h1 { font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 800; line-height: 1.08; margin-bottom: 1.4rem; letter-spacing: -0.02em; }
.accent { color: var(--accent); }
.hero-sub { color: var(--muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto 2.4rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.4rem; }
.hero-trust { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; font-size: 0.8rem; color: var(--muted); }

/* BUTTONS */
.btn-primary { background: var(--accent); color: #fff; padding: 0.75rem 1.8rem; border-radius: 8px; font-weight: 600; text-decoration: none; font-size: 0.95rem; transition: opacity 0.2s; display: inline-block; }
.btn-primary:hover { opacity: 0.85; }
.btn-ghost { border: 1px solid var(--border); color: var(--text); padding: 0.75rem 1.6rem; border-radius: 8px; text-decoration: none; font-size: 0.95rem; }
.btn-ghost:hover { border-color: var(--accent); }

/* SERVICES */
.services { padding: 5rem 6%; max-width: 1100px; margin: 0 auto; }
.section-label { color: var(--accent); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.8rem; }
.services h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 3rem; line-height: 1.15; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.5rem; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; transition: border-color 0.2s, transform 0.2s; }
.card:hover { border-color: var(--accent); transform: translateY(-3px); }
.card-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.card h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; }
.card p { color: var(--muted); font-size: 0.9rem; }
.card-link { display: inline-block; margin-top: 1rem; color: var(--accent); font-size: 0.85rem; text-decoration: none; }

/* CTA BAND */
.cta-band { text-align: center; padding: 5rem 6%; border-top: 1px solid var(--border); }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-bottom: 1rem; }
.cta-band p { color: var(--muted); max-width: 520px; margin: 0 auto 2rem; }

/* ADDRESSES */
.address-row { display: flex; gap: 2rem; justify-content: center; align-items: flex-start; margin-top: 3rem; flex-wrap: wrap; }
.address-card { text-align: left; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 1.5rem 2rem; min-width: 240px; }
.address-card .flag { font-size: 1.5rem; display: block; margin-bottom: 0.4rem; }
.address-card strong { font-size: 0.85rem; color: var(--accent); text-transform: uppercase; letter-spacing: 0.06em; }
.address-card p { margin-top: 0.5rem; color: var(--muted); font-size: 0.88rem; line-height: 1.7; }
.address-divider { width: 1px; height: 100px; background: var(--border); align-self: center; }

/* FORM */
.form-section { padding: 5rem 6%; border-top: 1px solid var(--border); }
.form-wrapper { max-width: 780px; margin: 0 auto; }
.form-intro { margin-bottom: 2.5rem; }
.form-intro h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; margin-bottom: 0.8rem; }
.form-intro p { color: var(--muted); }
.lead-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
label { font-size: 0.82rem; color: var(--muted); font-weight: 500; }
input, select, textarea { background: var(--surface); border: 1px solid var(--border); color: var(--text); padding: 0.75rem 1rem; border-radius: 8px; font-family: var(--font-body); font-size: 0.92rem; transition: border-color 0.2s; outline: none; width: 100%; }
input:focus, select:focus, textarea:focus { border-color: var(--accent); }
input::placeholder, textarea::placeholder { color: #44445A; }
select option { background: var(--surface); }
textarea { resize: vertical; }
.btn-submit { align-self: flex-start; cursor: pointer; border: none; margin-top: 0.5rem; }
.form-success { text-align: center; padding: 4rem 2rem; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; }
.form-success span { font-size: 3rem; display: block; margin-bottom: 1rem; }
.form-success h3 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 0.6rem; }
.form-success p { color: var(--muted); }
.form-error { background: #2A1010; border: 1px solid #5A1010; color: #FF8080; padding: 0.9rem 1.2rem; border-radius: 8px; font-size: 0.88rem; margin-bottom: 1.2rem; }

/* FOOTER */
.footer { border-top: 1px solid var(--border); padding: 3rem 6% 1.5rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 2rem; flex-wrap: wrap; margin-bottom: 2rem; }
.footer-brand p { color: var(--muted); font-size: 0.85rem; margin-top: 0.5rem; max-width: 220px; }
.footer-logo { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; }
.footer-logo span { color: var(--accent); }
.footer-addresses { display: flex; gap: 3rem; flex-wrap: wrap; }
.footer-addresses strong { font-size: 0.78rem; color: var(--accent); text-transform: uppercase; letter-spacing: 0.06em; display: block; margin-bottom: 0.4rem; }
.footer-addresses p { color: var(--muted); font-size: 0.82rem; line-height: 1.7; }
.footer-bottom { display: flex; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 1.2rem; color: var(--muted); font-size: 0.78rem; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom a { color: var(--muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--accent); }

/* MOBILE */
@media (max-width: 640px) {
  .nav-links li:not(:last-child) { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .address-divider { display: none; }
  .footer-inner, .footer-addresses { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}