@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@700;800&family=Barlow:wght@400;500&display=swap');

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

:root {
  --red: #CC0000;
  --red-dark: #a30000;
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --border: rgba(255,255,255,0.08);
  --light: rgba(255,255,255,0.04);
  --mid: #aaa;
  --text: #fff;
  --off-white: #141414;
  --font-display: 'Bebas Neue', sans-serif;
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--black); overflow-x: hidden; animation: page-fade-in 0.55s ease both; }

/* ── NAV ── */
.site-nav {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
  z-index: 1000;
  width: min(980px, calc(100vw - 40px));
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 8px 8px 24px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.04);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo img { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; }
.nav-logo-text strong { font-family: var(--font-head); font-size: 15px; font-weight: 800; color: #fff; letter-spacing: 1px; display: block; line-height: 1.1; }
.nav-logo-text span { font-size: 9px; color: #999; letter-spacing: 2px; text-transform: uppercase; display: block; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { font-family: var(--font-body); font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.78); text-decoration: none; padding: 7px 13px; border-radius: 100px; transition: all 0.2s; }
.nav-links a:hover { color: #fff; background: var(--light); }
.nav-links a.active { color: #fff; background: var(--light); }
.nav-phone { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.85) !important; white-space: nowrap; }
.nav-cta { background: var(--red) !important; color: #fff !important; font-family: var(--font-head) !important; font-size: 14px !important; font-weight: 700 !important; padding: 9px 22px !important; border-radius: 100px !important; letter-spacing: 0.3px; box-shadow: 0 0 20px rgba(204,0,0,0.25); transition: all 0.28s cubic-bezier(0.4,0,0.2,1) !important; animation: cta-glow-pulse 2.8s ease-in-out infinite; }
.nav-cta:hover { background: var(--red-dark) !important; box-shadow: 0 0 45px rgba(204,0,0,0.65), 0 4px 16px rgba(204,0,0,0.35) !important; transform: translateY(-1px) !important; animation: none !important; }

/* ── BUTTONS ── */
.btn { display: inline-block; text-decoration: none; cursor: pointer; font-family: var(--font-head); font-weight: 700; letter-spacing: 0.5px; border-radius: 100px; transition: all 0.28s cubic-bezier(0.4,0,0.2,1); border: 2px solid transparent; text-align: center; position: relative; overflow: hidden; }
.btn::after { content: ''; position: absolute; top: 0; left: 0; width: 55%; height: 100%; background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%); transform: translateX(-160%); pointer-events: none; border-radius: inherit; }
.btn:hover::after { animation: btn-shimmer 0.55s cubic-bezier(0.4,0,0.2,1) forwards; }
.btn:active { transform: scale(0.96) !important; transition-duration: 0.1s !important; }
.btn-lg { font-size: 16px; padding: 14px 36px; }
.btn-md { font-size: 14px; padding: 11px 28px; }
.btn-sm { font-size: 12px; padding: 8px 20px; }
.btn-red { background: var(--red); color: #fff; border-color: var(--red); box-shadow: 0 4px 20px rgba(204,0,0,0.25); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(204,0,0,0.5), 0 2px 8px rgba(204,0,0,0.3), 0 0 0 1px rgba(255,100,100,0.1) inset; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.2); }
.btn-outline-white:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.4); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,0.06); }
.btn-outline-red { background: transparent; color: var(--red); border-color: rgba(204,0,0,0.35); }
.btn-outline-red:hover { background: var(--red); color: #fff; border-color: var(--red); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(204,0,0,0.35); }
.btn-dark { background: var(--dark2); color: #fff; border-color: var(--border); }
.btn-dark:hover { background: #222; transform: translateY(-2px); }

/* ── TRUST BAR ── */
.trust-bar { background: var(--red); padding: 11px 40px; display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 8px; }
.trust-bar span { font-family: var(--font-head); font-size: 13px; font-weight: 600; color: #fff; letter-spacing: 0.5px; display: flex; align-items: center; gap: 6px; }
.trust-bar span::before { content: '✓'; font-weight: 900; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--dark);
  padding: 140px 80px 64px;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(204,0,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: ''; position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(204,0,0,0.09) 0%, transparent 65%);
  border-radius: 50%;
  top: 50%; right: -180px;
  transform: translateY(-50%);
  pointer-events: none;
  animation: hero-orb-drift 9s ease-in-out infinite;
}
.page-hero-label { font-family: var(--font-head); font-size: 11px; font-weight: 700; color: var(--red); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 16px; position: relative; animation: hero-text-in 0.7s cubic-bezier(0.25,0.46,0.45,0.94) both; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(52px, 7vw, 96px); color: #fff; line-height: 0.95; margin-bottom: 16px; letter-spacing: 1px; position: relative; animation: hero-text-in 0.9s 0.1s cubic-bezier(0.25,0.46,0.45,0.94) both; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.78); max-width: 520px; line-height: 1.7; position: relative; animation: hero-text-in 0.9s 0.22s cubic-bezier(0.25,0.46,0.45,0.94) both; }

/* ── SECTIONS ── */
.section { padding: 80px 80px; }
.section-sm { padding: 56px 80px; }
.section-label { font-family: var(--font-head); font-size: 11px; font-weight: 700; color: var(--red); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 12px; display: block; }
.section-title { font-family: var(--font-display); font-size: clamp(36px, 4.5vw, 60px); line-height: 0.95; letter-spacing: 1px; color: #fff; margin-bottom: 12px; }
.section-title.dark { color: #111; }
.section-sub { font-size: 15px; color: var(--mid); line-height: 1.7; }
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { max-width: 480px; margin: 0 auto; }

/* ── SERVICE CARDS ── */
.service-card { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 16px; padding: 28px 22px; text-align: center; transition: all 0.3s; text-decoration: none; color: inherit; display: block; }
.service-card:hover { border-color: rgba(204,0,0,0.3); transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.35), 0 0 40px rgba(204,0,0,0.08); background: rgba(204,0,0,0.04); }
.service-card-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(204,0,0,0.08); border: 1px solid rgba(204,0,0,0.15); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--red); transition: all 0.3s; }
.service-card:hover .service-card-icon { background: rgba(204,0,0,0.15); }
.service-card h3 { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.service-card p { font-size: 12px; color: #999; line-height: 1.5; }

/* ── FOOTER ── */
.site-footer { background: var(--dark); border-top: 1px solid var(--border); padding: 60px 80px 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand img { width: 52px; height: 52px; border-radius: 50%; margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: #888; line-height: 1.7; max-width: 200px; }
.footer-col h4 { font-family: var(--font-head); font-size: 11px; font-weight: 700; color: #fff; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 18px; }
.footer-col a, .footer-col p { display: block; font-size: 13px; color: #888; text-decoration: none; line-height: 1; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--red); }
.footer-col .highlight { color: #888; font-weight: 600; font-family: var(--font-head); font-size: 16px; }
.footer-email { color: #888 !important; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; color: #777; }
.footer-bottom span { color: var(--red); }

/* ── UTIL ── */
.red { color: var(--red); }
.img-placeholder { background: repeating-linear-gradient(-45deg, #1a1a1a 0px, #1a1a1a 4px, #222 4px, #222 12px); display: flex; align-items: center; justify-content: center; font-family: var(--font-body); font-size: 12px; color: #333; text-align: center; letter-spacing: 0.5px; }
.img-placeholder.dark { background: repeating-linear-gradient(-45deg, #141414 0px, #141414 4px, #1c1c1c 4px, #1c1c1c 12px); color: #333; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px) scale(0.99); transition: opacity 0.85s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.85s cubic-bezier(0.25,0.46,0.45,0.94); }
.reveal.visible { opacity: 1; transform: translateY(0) scale(1); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

/* ── KEYFRAMES ── */
@keyframes btn-shimmer {
  to { transform: translateX(280%); }
}
@keyframes cta-glow-pulse {
  0%, 100% { box-shadow: 0 0 16px rgba(204,0,0,0.25); }
  50%       { box-shadow: 0 0 40px rgba(204,0,0,0.55), 0 0 70px rgba(204,0,0,0.12); }
}
@keyframes hero-orb-drift {
  0%, 100% { transform: translateY(-50%) scale(1);    opacity: 0.7; }
  50%       { transform: translateY(-52%) scale(1.12); opacity: 1;   }
}
@keyframes hero-text-in {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes page-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float-up-down {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}