:root {
  --bg: #0e0f10;
  --bg2: #151618;
  --bg3: #1c1e20;
  --orange: #e8610a;
  --orange-light: #ff7d2b;
  --gold: #c89b3c;
  --text: #f0ece4;
  --text-muted: #8a8780;
  --border: rgba(255,255,255,0.07);
  --radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 82px;
  background: rgba(14,15,16,0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 64px; width: auto; object-fit: contain; background: #fff; padding: 6px 14px; border-radius: 4px; }
.footer-brand img { height: 64px !important; object-fit: contain !important; background: #fff; padding: 6px 14px; border-radius: 4px; margin-bottom: 20px; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--text-muted);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta { background: var(--orange); color: #fff !important; padding: 10px 22px; border-radius: var(--radius); transition: background 0.2s !important; }
.nav-cta:hover { background: var(--orange-light) !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--text); transition: all 0.3s; }
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: rgba(14,15,16,0.98); backdrop-filter: blur(18px); border-bottom: 1px solid var(--border); padding: 24px 48px; z-index: 99; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; font-size: 15px; font-weight: 500; color: var(--text-muted); text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--border); transition: color 0.2s; }
.mobile-menu a:hover { color: var(--text); }
.page-hero {
  padding: 140px 48px 80px;
  background: linear-gradient(135deg, #0e0f10 0%, #1a0d04 100%);
  border-bottom: 1px solid var(--border);
}
.section-label { font-size: 11px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(48px, 7vw, 96px); line-height: 0.92; letter-spacing: 1px; color: var(--text); margin-bottom: 24px; }
h1 em, h2 em { font-style: normal; color: var(--orange); }
h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px, 4vw, 56px); line-height: 1; letter-spacing: 0.5px; color: var(--text); margin-bottom: 20px; }
h3 { font-family: 'DM Sans', sans-serif; font-size: 18px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.section-intro { font-size: 16px; color: var(--text-muted); max-width: 560px; line-height: 1.8; }
section { padding: 80px 48px; }
.btn-primary { display: inline-flex; align-items: center; gap: 10px; background: var(--orange); color: #fff; font-size: 13px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; padding: 16px 32px; border-radius: var(--radius); text-decoration: none; transition: background 0.2s, transform 0.2s; }
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); }
.btn-secondary { display: inline-flex; align-items: center; gap: 10px; background: transparent; border: 1px solid rgba(255,255,255,0.2); color: var(--text); font-size: 13px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; padding: 16px 32px; border-radius: var(--radius); text-decoration: none; transition: border-color 0.2s, background 0.2s; }
.btn-secondary:hover { border-color: var(--orange); background: rgba(232,97,10,0.08); }
footer { background: #080909; padding: 64px 48px 32px; border-top: 1px solid var(--border); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border); margin-bottom: 32px; }
.footer-brand img { height: 48px; object-fit: contain; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; }
.footer-contact-item { display: flex; gap: 10px; font-size: 14px; color: var(--text-muted); margin-bottom: 10px; align-items: flex-start; }
.footer-contact-item a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--orange); }
.footer-col h4 { font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text); margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 13px; color: var(--text-muted); }
.footer-socials { display: flex; gap: 16px; }
.footer-socials a { width: 36px; height: 36px; border: 1px solid var(--border); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--text-muted); text-decoration: none; font-size: 14px; transition: border-color 0.2s, color 0.2s; }
.footer-socials a:hover { border-color: var(--orange); color: var(--orange); }
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.cta-strip { background: linear-gradient(135deg, #1a0d04 0%, #2a1506 40%, #1a0d04 100%); border-top: 1px solid rgba(232,97,10,0.2); border-bottom: 1px solid rgba(232,97,10,0.2); padding: 80px 48px; text-align: center; }
.cta-strip h2 { font-size: clamp(32px, 4vw, 64px); margin-bottom: 16px; }
.cta-strip p { font-size: 18px; color: var(--text-muted); margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-phone { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px, 5vw, 64px); color: var(--orange); letter-spacing: 3px; text-decoration: none; display: block; margin-bottom: 24px; transition: color 0.2s; }
.cta-phone:hover { color: var(--orange-light); }
@media (max-width: 1024px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 56px 24px; }
  .page-hero { padding: 110px 24px 60px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .cta-strip { padding: 56px 24px; }
  footer { padding: 48px 24px 24px; }
  .mobile-menu { padding: 16px 24px; }
}
