/* ============ BIZOKVILL — Tactical Night (static HTML/CSS) ============ */
:root {
  --bg: #0A0A0A;
  --surface: #141414;
  --hairline: #262626;
  --brand: #FF4500;
  --brand-light: #FF5A1F;
  --brand-soft: #FF7A45;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.55);
  --muted-2: rgba(255, 255, 255, 0.7);
  --max: 1240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--brand); color: #fff; }

.font-display { font-family: "Cabinet Grotesk", system-ui, sans-serif; }

/* grain */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--brand); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.section { padding: 96px 0; position: relative; z-index: 2; }
@media (min-width: 768px) { .section { padding: 128px 0; } }

/* kicker */
.kicker { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.kicker span.line { height: 1px; width: 32px; background: var(--brand); }
.kicker span.text { color: var(--brand-soft); font-size: 12px; text-transform: uppercase; letter-spacing: .25em; }

h2.title { font-family: "Cabinet Grotesk", sans-serif; font-weight: 700; letter-spacing: -.02em; font-size: clamp(2rem, 5vw, 3.75rem); line-height: 1.05; }

/* ============ Header ============ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background-color .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.header.scrolled { background: rgba(0,0,0,.7); backdrop-filter: blur(18px); border-bottom-color: rgba(255,255,255,.1); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
@media (min-width: 640px) { .header-inner { height: 80px; } }
.brand { display: flex; align-items: center; gap: 8px; }
.brand .mark { height: 28px; width: 28px; background: var(--brand); display: grid; place-items: center; }
.brand .mark span { font-family: "Cabinet Grotesk"; font-weight: 900; font-size: 14px; }
.brand .name { font-family: "Cabinet Grotesk"; font-weight: 700; letter-spacing: -.02em; font-size: 20px; }
.brand .name b { color: var(--brand); font-weight: 700; }

.nav { display: none; align-items: center; gap: 32px; }
@media (min-width: 1024px) { .nav { display: flex; } }
.nav a { font-size: 14px; color: var(--muted-2); position: relative; transition: color .2s; cursor: pointer; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -4px; height: 1px; width: 0; background: var(--brand); transition: width .25s; }
.nav a:hover { color: #fff; }
.nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.lang { display: flex; border: 1px solid rgba(255,255,255,.15); font-size: 12px; }
.lang button { background: none; border: 0; color: var(--muted); padding: 7px 10px; text-transform: uppercase; cursor: pointer; transition: color .2s, background-color .2s; font-family: inherit; }
.lang button.active { background: var(--brand); color: #fff; }
.btn-call {
  display: none; align-items: center; gap: 8px; background: var(--brand); color: #fff;
  font-weight: 500; font-size: 14px; padding: 10px 16px; transition: background-color .2s;
}
.btn-call:hover { background: var(--brand-light); }
@media (min-width: 640px) { .btn-call { display: inline-flex; } }
.hamburger { display: inline-flex; background: none; border: 0; color: #fff; font-size: 22px; cursor: pointer; padding: 4px; }
@media (min-width: 1024px) { .hamburger { display: none; } }

.mobile-menu { display: none; background: rgba(0,0,0,.96); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-menu.open { display: block; }
.mobile-menu .container { display: flex; flex-direction: column; gap: 16px; padding-top: 24px; padding-bottom: 24px; }
.mobile-menu a { font-family: "Cabinet Grotesk"; font-weight: 700; font-size: 26px; color: rgba(255,255,255,.9); cursor: pointer; }

/* ============ Hero ============ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, var(--bg) 0%, rgba(10,10,10,.7) 45%, rgba(10,10,10,.4) 100%); }
.hero-inner { position: relative; z-index: 2; width: 100%; padding: 128px 0 80px; }
@media (min-width: 640px) { .hero-inner { padding-bottom: 112px; } }
.hero-kicker { color: var(--brand-soft); text-transform: uppercase; letter-spacing: .3em; font-size: 12px; margin-bottom: 24px; opacity: 0; animation: fade .8s ease .1s forwards; }
.hero-title { font-family: "Cabinet Grotesk"; font-weight: 900; letter-spacing: -.03em; line-height: .92; font-size: clamp(2.75rem, 9vw, 6rem); }
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line span { display: block; transform: translateY(110%); animation: lineUp .9s cubic-bezier(.22,1,.36,1) forwards; }
.hero-title .line:nth-child(1) span { animation-delay: .15s; }
.hero-title .line:nth-child(2) span { animation-delay: .30s; }
.hero-title .line:nth-child(3) span { animation-delay: .45s; color: var(--brand); text-shadow: 0 0 40px rgba(255,69,0,.35); }
.hero-lead { margin-top: 32px; max-width: 560px; color: var(--muted-2); font-size: clamp(1rem, 2vw, 1.125rem); opacity: 0; animation: fadeUp .8s ease .7s forwards; }
.hero-cta { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; opacity: 0; animation: fadeUp .8s ease .9s forwards; }
@media (min-width: 640px) { .hero-cta { flex-direction: row; } }
.hero-scroll { position: absolute; bottom: 24px; right: 24px; z-index: 2; color: rgba(255,255,255,.4); font-size: 12px; letter-spacing: .15em; text-transform: uppercase; display: none; align-items: center; gap: 8px; }
@media (min-width: 640px) { .hero-scroll { display: flex; } }
.hero-scroll i { animation: bounce 1.6s infinite; }

@keyframes lineUp { to { transform: translateY(0); } }
@keyframes fade { to { opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; font-weight: 600; padding: 16px 28px; transition: background-color .2s, border-color .2s, color .2s; cursor: pointer; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-light); }
.btn-ghost { border: 1px solid rgba(255,255,255,.25); color: #fff; }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand-soft); }

/* ============ Marquee ============ */
.marquee { border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); background: var(--surface); padding: 20px 0; overflow: hidden; position: relative; z-index: 2; }
.marquee-track { display: flex; width: max-content; animation: scroll-x 28s linear infinite; }
.marquee-track span.item { font-family: "Cabinet Grotesk"; font-weight: 900; text-transform: uppercase; letter-spacing: -.02em; font-size: clamp(1.75rem, 4vw, 3rem); color: rgba(255,255,255,.9); padding: 0 32px; }
.marquee-track span.dot { height: 8px; width: 8px; border-radius: 50%; background: var(--brand); align-self: center; }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ Services ============ */
.services-head { max-width: 640px; margin-bottom: 56px; }
@media (min-width: 768px) { .services-head { margin-bottom: 80px; } }
.grid-services { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); }
@media (min-width: 768px) { .grid-services { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .grid-services { grid-template-columns: 1fr 1fr 1fr; } }
.svc { background: var(--bg); padding: 40px; position: relative; transition: background-color .3s; }
.svc:hover { background: var(--surface); }
.svc-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 32px; }
.svc-top i { font-size: 34px; color: var(--brand); }
.svc-num { font-family: "Cabinet Grotesk"; font-weight: 900; font-size: 48px; color: rgba(255,255,255,.05); transition: color .3s; }
.svc:hover .svc-num { color: rgba(255,69,0,.2); }
.svc h3 { font-family: "Cabinet Grotesk"; font-weight: 700; font-size: 22px; letter-spacing: -.01em; margin-bottom: 12px; line-height: 1.2; }
.svc p { color: var(--muted); font-size: 15px; }
.svc-bar { position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--brand); transition: width .5s; }
.svc:hover .svc-bar { width: 100%; }

/* ============ About ============ */
.about { background: var(--surface); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.about-grid { display: grid; grid-template-columns: 1fr; gap: 64px; align-items: start; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.chapters { margin-top: 48px; display: flex; flex-direction: column; gap: 40px; }
.chapter { display: flex; gap: 24px; border-left: 1px solid var(--hairline); padding-left: 24px; }
.chapter .num { font-family: "Cabinet Grotesk"; font-weight: 900; font-size: 34px; color: var(--brand); line-height: 1; flex-shrink: 0; }
.chapter h3 { font-family: "Cabinet Grotesk"; font-weight: 700; font-size: 19px; margin-bottom: 8px; }
.chapter p { color: var(--muted); font-size: 15px; }
.about-quote { margin-top: 48px; font-family: "Cabinet Grotesk"; font-weight: 500; font-size: clamp(1.25rem, 3vw, 1.5rem); line-height: 1.3; color: rgba(255,255,255,.9); border-left: 2px solid var(--brand); padding-left: 24px; }
.about-media { position: relative; }
@media (min-width: 1024px) { .about-media { position: sticky; top: 112px; } }
.about-frame { position: relative; }
.about-frame::before { content: ""; position: absolute; inset: -12px; border: 1px solid rgba(255,69,0,.4); z-index: -1; }
.about-frame img { width: 100%; height: 360px; object-fit: cover; }
@media (min-width: 640px) { .about-frame img { height: 440px; } }
.bullets { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.bullet { display: flex; align-items: flex-start; gap: 12px; }
.bullet i { color: var(--brand); font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.bullet span { font-size: 15px; color: rgba(255,255,255,.8); }

/* ============ Work ============ */
.work-head { display: flex; flex-direction: column; gap: 32px; margin-bottom: 56px; }
@media (min-width: 768px) { .work-head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.work-head .lead { margin-top: 20px; color: var(--muted); font-size: 15px; max-width: 520px; }
.grid-work { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .grid-work { grid-template-columns: 1fr 1fr 1fr; grid-auto-rows: 256px; } }
.work-item { position: relative; overflow: hidden; border: 1px solid var(--hairline); }
.work-item.big { grid-column: span 2; grid-row: span 2; }
.work-item img { width: 100%; height: 256px; object-fit: cover; transition: transform .7s; }
@media (min-width: 640px) { .work-item.big img { height: 100%; } .work-item img { height: 100%; } }
.work-item:hover img { transform: scale(1.05); }
.work-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,.8), transparent 60%); opacity: .7; transition: opacity .3s; }
.work-item:hover::after { opacity: .9; }

/* ============ Stats ============ */
.stats { background: var(--brand); position: relative; z-index: 2; }
.stats-grid { display: grid; grid-template-columns: 1fr; }
@media (min-width: 640px) { .stats-grid { grid-template-columns: 1fr 1fr 1fr; } }
.stat { padding: 48px 0; text-align: center; border-top: 1px solid rgba(255,255,255,.2); }
@media (min-width: 640px) { .stat { padding: 64px 40px; border-top: 0; border-left: 1px solid rgba(255,255,255,.2); } .stat:first-child { border-left: 0; } }
.stat .v { font-family: "Cabinet Grotesk"; font-weight: 900; font-size: clamp(3rem, 7vw, 4.5rem); letter-spacing: -.02em; line-height: 1; }
.stat .l { margin-top: 12px; text-transform: uppercase; letter-spacing: .15em; font-size: 13px; color: rgba(255,255,255,.85); }

/* ============ Reviews ============ */
.grid-reviews { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) { .grid-reviews { grid-template-columns: 1fr 1fr; } }
.review { position: relative; border: 1px solid var(--hairline); background: var(--surface); padding: 40px; transition: border-color .3s; }
.review:hover { border-color: rgba(255,69,0,.5); }
.review .quote { position: absolute; top: 24px; right: 24px; font-size: 34px; color: rgba(255,69,0,.25); }
.review .stars { display: flex; gap: 4px; margin-bottom: 20px; color: var(--brand); }
.review p { color: rgba(255,255,255,.8); font-size: 17px; margin-bottom: 32px; }
.review .who { display: flex; align-items: center; gap: 16px; padding-top: 24px; border-top: 1px solid var(--hairline); }
.review .who .av { height: 44px; width: 44px; background: var(--brand); display: grid; place-items: center; font-family: "Cabinet Grotesk"; font-weight: 900; flex-shrink: 0; }
.review .who .name { font-family: "Cabinet Grotesk"; font-weight: 700; }
.review .who .role { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.45); }

.google-cta { margin-top: 16px; border: 1px solid var(--hairline); background: var(--brand); position: relative; overflow: hidden; padding: 48px; display: flex; flex-direction: column; gap: 24px; }
@media (min-width: 768px) { .google-cta { flex-direction: row; align-items: center; justify-content: space-between; } }
.google-cta .stars { display: flex; gap: 4px; margin-bottom: 16px; color: #fff; }
.google-cta h3 { font-family: "Cabinet Grotesk"; font-weight: 700; font-size: clamp(1.5rem, 3vw, 1.875rem); letter-spacing: -.01em; margin-bottom: 8px; }
.google-cta p { color: rgba(255,255,255,.85); font-size: 15px; max-width: 560px; }
.google-cta .cta-text { position: relative; z-index: 2; }
.google-btn { position: relative; z-index: 2; flex-shrink: 0; display: inline-flex; align-items: center; gap: 12px; background: var(--bg); color: #fff; font-weight: 600; padding: 16px 28px; transition: background-color .2s; }
.google-btn:hover { background: #000; }
.google-btn i.fa-google { color: var(--brand); }
.google-cta .watermark { position: absolute; right: -40px; bottom: -64px; font-size: 220px; color: rgba(255,255,255,.1); pointer-events: none; z-index: 1; }

/* ============ Footer ============ */
.footer { background: var(--bg); border-top: 1px solid var(--hairline); position: relative; z-index: 2; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; padding: 56px 0; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer .fname { font-family: "Cabinet Grotesk"; font-weight: 900; font-size: 24px; letter-spacing: -.02em; margin-bottom: 12px; }
.footer .fname b { color: var(--brand); }
.footer .tag { color: rgba(255,255,255,.5); font-size: 14px; max-width: 280px; }
.footer .col { display: flex; flex-direction: column; gap: 12px; font-size: 14px; }
.footer .col a { color: var(--muted-2); display: inline-flex; align-items: center; gap: 8px; transition: color .2s; }
.footer .col a:hover { color: var(--brand-soft); }
.footer .col .label { color: rgba(255,255,255,.35); font-size: 11px; text-transform: uppercase; letter-spacing: .18em; margin-bottom: 4px; }
.footer .meta { font-size: 14px; color: rgba(255,255,255,.5); }
@media (min-width: 768px) { .footer .meta { text-align: right; } }
.footer .meta .rights { color: rgba(255,255,255,.35); font-size: 12px; margin-top: 4px; }

/* ============ Mobile call bar ============ */
.mobile-call { position: fixed; bottom: 0; left: 0; right: 0; z-index: 50; background: var(--brand); color: #fff; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 16px; box-shadow: 0 -8px 30px rgba(0,0,0,.5); }
@media (min-width: 640px) { .mobile-call { display: none; } }
.mobile-spacer { height: 64px; }
@media (min-width: 640px) { .mobile-spacer { display: none; } }

/* ============ Cookie ============ */
.cookie { position: fixed; z-index: 60; bottom: 80px; left: 16px; right: 16px; background: var(--surface); border: 1px solid var(--hairline); padding: 20px; box-shadow: 0 20px 60px rgba(0,0,0,.6); transform: translateY(24px); opacity: 0; transition: opacity .4s, transform .4s; }
@media (min-width: 640px) { .cookie { left: auto; right: 24px; bottom: 24px; max-width: 380px; padding: 24px; } }
.cookie.show { opacity: 1; transform: translateY(0); }
.cookie.hidden { display: none; }
.cookie .row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.cookie .row i { color: var(--brand); font-size: 24px; flex-shrink: 0; }
.cookie p { font-size: 14px; color: var(--muted-2); }
.cookie p a { color: var(--brand-soft); text-decoration: underline; }
.cookie .actions { display: flex; gap: 12px; }
.cookie .actions button { flex: 1; font-family: inherit; font-size: 14px; padding: 10px 16px; cursor: pointer; border: 0; transition: background-color .2s, border-color .2s; }
.cookie .accept { background: var(--brand); color: #fff; font-weight: 600; }
.cookie .accept:hover { background: var(--brand-light); }
.cookie .decline { background: none; border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.8); }
.cookie .decline:hover { border-color: rgba(255,255,255,.4); }

/* ============ Reveal on scroll ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============ Legal pages ============ */
.legal { padding: 128px 0 96px; position: relative; z-index: 2; min-height: 100vh; }
@media (min-width: 640px) { .legal { padding-top: 152px; } }
.legal .wrap { max-width: 760px; margin: 0 auto; padding: 0 20px; }
.legal .back { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 14px; margin-bottom: 32px; transition: color .2s; }
.legal .back:hover { color: var(--brand-soft); }
.legal .accent { height: 1px; width: 40px; background: var(--brand); display: block; margin-bottom: 20px; }
.legal h1 { font-family: "Cabinet Grotesk"; font-weight: 700; letter-spacing: -.02em; font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 12px; }
.legal .updated { color: rgba(255,255,255,.45); font-size: 12px; text-transform: uppercase; letter-spacing: .15em; margin-bottom: 32px; }
.legal .intro { color: var(--muted-2); margin-bottom: 48px; }
.legal section { margin-bottom: 40px; }
.legal section h2 { font-family: "Cabinet Grotesk"; font-weight: 700; font-size: clamp(1.25rem, 3vw, 1.5rem); margin-bottom: 16px; }
.legal section p { color: rgba(255,255,255,.65); font-size: 15px; margin-bottom: 12px; }

/* language visibility helper (legal pages) */
.only-en { display: none; }
html[data-lang="en"] .only-hu { display: none; }
html[data-lang="en"] .only-en { display: block; }
