:root {
  --black: #0a0a0a;
  --near-black: #111214;
  --surface: #161819;
  --surface-2: #1e2022;
  --silver-dark: #8a9099;
  --silver-mid: #b8bec8;
  --silver-light: #dde2ea;
  --blue: #1a6fff;
  --blue-deep: #0f4fcc;
  --blue-glow: rgba(26, 111, 255, 0.15);
  --blue-border: rgba(26, 111, 255, 0.35);
  --white: #f4f6fa;
  --text-muted: #7a8290;
  --border: rgba(255,255,255,0.07);
  --border-blue: rgba(26,111,255,0.25);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--black); color: var(--white); line-height: 1.6; 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: 0 5%; height: 128px; background: rgba(10,10,10,0.92); border-bottom: 1px solid var(--border); backdrop-filter: blur(12px); }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 110px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--silver-mid); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); }
.nav-cta { background: var(--blue) !important; color: var(--white) !important; padding: 10px 20px; border-radius: 4px; font-size: 12px !important; }
.nav-cta:hover { background: var(--blue-deep) !important; }
.nav-mobile-toggle { display: none; background: none; border: 1px solid var(--border); color: var(--silver-mid); padding: 8px 12px; cursor: pointer; font-size: 18px; }
section { padding: 100px 5%; }
.section-label { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue); margin-bottom: 16px; }
.section-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(36px, 5vw, 54px); font-weight: 800; text-transform: uppercase; line-height: 1; color: var(--white); margin-bottom: 20px; }
.section-body { font-size: 17px; color: var(--silver-mid); max-width: 520px; line-height: 1.7; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--blue); color: #fff; font-size: 14px; font-weight: 600; letter-spacing: 0.04em; padding: 16px 32px; border-radius: 4px; text-decoration: none; border: none; cursor: pointer; transition: background 0.2s, transform 0.1s; text-transform: uppercase; }
.btn-primary:hover { background: var(--blue-deep); transform: translateY(-1px); }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--silver-mid); font-size: 14px; font-weight: 500; letter-spacing: 0.04em; padding: 16px 24px; border-radius: 4px; text-decoration: none; border: 1px solid var(--border); cursor: pointer; transition: color 0.2s, border-color 0.2s; text-transform: uppercase; }
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.2); }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--silver-dark); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: var(--near-black); border: 1px solid var(--border); color: var(--white); font-family: 'Inter', sans-serif; font-size: 14px; padding: 12px 16px; border-radius: 0; outline: none; transition: border-color 0.2s; appearance: none; }
.form-group select option { background: var(--surface); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { height: 100px; resize: vertical; }
.cta-banner { background: var(--blue); padding: 80px 5%; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-banner h2 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(32px, 4vw, 52px); font-weight: 800; text-transform: uppercase; color: #fff; line-height: 1; }
.cta-banner p { font-size: 16px; color: rgba(255,255,255,0.75); margin-top: 8px; }
.btn-white { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--blue); font-size: 14px; font-weight: 700; letter-spacing: 0.06em; padding: 16px 32px; text-decoration: none; text-transform: uppercase; border-radius: 4px; white-space: nowrap; transition: opacity 0.2s; }
.btn-white:hover { opacity: 0.9; }
footer { background: var(--black); padding: 60px 5% 32px; border-top: 1px solid var(--border); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-col h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--silver-dark); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 32px; border-top: 1px solid var(--border); font-size: 12px; color: var(--text-muted); }
@media (max-width: 768px) {
  nav { padding: 0 4%; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: rgba(10,10,10,0.98); padding: 24px 5%; gap: 20px; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-mobile-toggle { display: block; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cta-banner { text-align: center; justify-content: center; }
}
