:root {
  --bg: #070707;
  --bg-2: #101010;
  --carbon: #161616;
  --ink: #f4f1ec;
  --muted: #a8a39a;
  --chrome: #d8d8d8;
  --chrome-2: #8d8d8d;
  --orange: #ff4d00;
  --orange-2: #ff7a18;
  --red: #b30000;
  --line: rgba(255, 255, 255, 0.08);
  --glass: rgba(18, 18, 18, 0.72);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --radius: 18px;
  --font: "Rajdhani", "Segoe UI", sans-serif;
  --display: "Orbitron", "Rajdhani", sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
  background:
    radial-gradient(1200px 500px at 50% -10%, rgba(255, 77, 0, 0.18), transparent 55%),
    repeating-linear-gradient(135deg, #0c0c0c 0 2px, #141414 2px 4px),
    repeating-linear-gradient(45deg, #0a0a0a 0 2px, #171717 2px 4px);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(7, 7, 7, 0.78);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 0 24px rgba(255, 77, 0, 0.35);
}

.brand-txt {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-txt b {
  font-family: var(--display);
  letter-spacing: 0.12em;
  font-size: 13px;
  background: linear-gradient(90deg, #fff, #ff7a18 55%, #b30000);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-txt span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 12px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
}

.nav-links a:hover { color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-fire {
  color: #140700;
  background: linear-gradient(135deg, #ffb067, var(--orange) 40%, var(--red));
  box-shadow: 0 10px 30px rgba(255, 77, 0, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--chrome);
  border: 1px solid rgba(216, 216, 216, 0.28);
}

.hero {
  position: relative;
  z-index: 1;
  padding: 36px 0 20px;
}

.hero-stage {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: min(78vh, 760px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 36px 18px 32px;
  border: 1px solid rgba(255, 122, 24, 0.28);
  box-shadow: var(--shadow), inset 0 0 80px rgba(255, 77, 0, 0.08);
  background:
    radial-gradient(700px 280px at 50% 20%, rgba(255, 77, 0, 0.22), transparent 60%),
    radial-gradient(500px 240px at 80% 80%, rgba(179, 0, 0, 0.18), transparent 55%),
    linear-gradient(180deg, #0b0b0b, #050505);
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0 42%, rgba(255, 255, 255, 0.05) 50%, transparent 58%);
  animation: shine 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shine {
  0%, 100% { transform: translateX(-20%); opacity: 0.2; }
  50% { transform: translateX(20%); opacity: 0.7; }
}

.hero-logo {
  width: min(720px, 92%);
  filter: drop-shadow(0 20px 50px rgba(255, 77, 0, 0.28));
  animation: floaty 5s ease-in-out infinite;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-copy {
  position: relative;
  text-align: center;
  width: min(720px, 90%);
  z-index: 1;
}

.kicker {
  color: var(--orange-2);
  letter-spacing: 0.42em;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 700;
}

h1, h2, h3 { font-family: var(--display); margin: 0; }
.hero-copy h1 {
  margin: 8px 0 10px;
  font-size: clamp(22px, 4vw, 40px);
  letter-spacing: 0.08em;
}

.hero-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }

.marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
  margin-top: 28px;
}

.marquee-track {
  display: flex;
  gap: 36px;
  padding: 12px 0;
  width: max-content;
  animation: slide 22s linear infinite;
  color: var(--chrome);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.marquee-track span::after {
  content: "◆";
  margin-left: 36px;
  color: var(--orange);
}

@keyframes slide {
  to { transform: translateX(-50%); }
}

.section { position: relative; z-index: 1; padding: 64px 0; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.section-head h2 {
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: 0.12em;
}

.section-head p { color: var(--muted); margin: 8px 0 0; font-size: 16px; }

.filters { display: flex; gap: 8px; flex-wrap: wrap; }

.filter {
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

.filter.active, .filter:hover {
  color: #140700;
  background: linear-gradient(135deg, #ffb067, var(--orange));
  border-color: transparent;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 22px;
}

.card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(28,28,28,0.92), rgba(10,10,10,0.96));
  border: 1px solid rgba(216, 216, 216, 0.14);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  transform: translateY(0);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 77, 0, 0.7);
  box-shadow: 0 24px 50px rgba(255, 77, 0, 0.16);
}

.card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #090909;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card-media img { transform: scale(1.06); }

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.65);
  border: 1px solid rgba(255,122,24,0.4);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.card-body { padding: 16px 16px 18px; }
.card-body h3 {
  font-size: 16px;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 4.3em;
}

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
}

.price {
  font-family: var(--display);
  color: var(--orange-2);
  font-size: 14px;
  letter-spacing: 0.04em;
}

.btn-mini {
  padding: 8px 12px;
  font-size: 11px;
}

.empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 18px;
  border: 1px dashed rgba(255,122,24,0.35);
  border-radius: var(--radius);
  color: var(--muted);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
}

.panel {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  backdrop-filter: blur(12px);
}

.panel h2 { margin-bottom: 12px; letter-spacing: 0.1em; }
.panel p { color: var(--muted); line-height: 1.6; margin: 0 0 16px; }

.features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.features li {
  position: relative;
  padding: 12px 14px 12px 42px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  line-height: 1.4;
}

.features li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: linear-gradient(135deg, #ffb067, var(--orange));
  box-shadow: 0 0 12px rgba(255, 77, 0, 0.45);
}

.features strong {
  display: block;
  color: var(--ink);
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.visits {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
  padding: 28px 24px;
  border-radius: 22px;
  border: 1px solid rgba(255, 122, 24, 0.35);
  background:
    radial-gradient(420px 180px at 80% -10%, rgba(255, 77, 0, 0.28), transparent 60%),
    linear-gradient(180deg, rgba(22, 22, 22, 0.96), rgba(8, 8, 8, 0.98));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.visits-pulse {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: live 1.8s ease-out infinite;
}

@keyframes live {
  70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.visits-num {
  font-family: var(--display);
  font-size: clamp(42px, 6vw, 64px);
  letter-spacing: 0.06em;
  line-height: 1;
  margin: 10px 0 8px;
  background: linear-gradient(90deg, #fff, #ffb067 45%, #ff4d00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.visits-label {
  margin: 0 0 18px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
}

.visits-sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.visits-sub div {
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.28);
}

.visits-sub b {
  display: block;
  font-family: var(--display);
  font-size: 20px;
  color: var(--orange-2);
}

.visits-sub span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  padding: 28px 0 110px;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.footer a { color: var(--chrome); }

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0,0,0,0.72);
}

.modal.open { display: grid; }

.modal-card {
  width: min(860px, 100%);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: #0d0d0d;
  border: 1px solid rgba(255,77,0,0.35);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.modal-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.modal-body { padding: 24px; }
.modal-body h3 { font-size: 22px; margin-bottom: 10px; }
.modal-body p { color: var(--muted); line-height: 1.55; }
.close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #111;
  cursor: pointer;
}

.wa-dock {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-hint {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #140700;
  background: linear-gradient(135deg, #ffb067, var(--orange));
  padding: 8px 12px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(255, 77, 0, 0.28);
}

.wa-fab {
  position: relative;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid rgba(255, 182, 103, 0.45);
  cursor: pointer;
  color: #06210f;
  text-decoration: none;
  background:
    radial-gradient(circle at 30% 28%, #9dffc4, #25d366 42%, #0e7a3d);
  box-shadow:
    0 14px 32px rgba(37, 211, 102, 0.32),
    0 0 0 5px rgba(255, 77, 0, 0.16);
}

.wa-fab svg { width: 34px; height: 34px; position: relative; z-index: 1; }

.wa-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.45);
  animation: ping 2s ease-out infinite;
}

@keyframes ping {
  0% { transform: scale(0.85); opacity: 0.8; }
  100% { transform: scale(1.25); opacity: 0; }
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  background: #111;
  border: 1px solid var(--orange);
  padding: 10px 14px;
  border-radius: 12px;
  z-index: 90;
  display: none;
}

.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

.lead-card {
  width: min(420px, 100%);
  background: linear-gradient(180deg, #16110d, #0b0b0b);
  border: 1px solid rgba(255, 122, 24, 0.45);
  border-radius: 22px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.lead-card img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 16px;
  margin: 0 auto 12px;
  box-shadow: 0 0 24px rgba(255, 77, 0, 0.3);
}

.lead-card h3 {
  margin: 6px 0 8px;
  letter-spacing: 0.06em;
}

.lead-card p { color: var(--muted); margin: 0 0 12px; line-height: 1.45; }
.lead-card label { display: block; margin: 10px 0 6px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--chrome); }
.lead-card input:not(.hp) {
  width: 100%;
  background: #101010;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
}

.news-card {
  background: linear-gradient(180deg, #141414, #090909);
  border: 1px solid rgba(255, 122, 24, 0.35);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.news-brand {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 18px;
}

.news-brand img { width: 52px; height: 52px; border-radius: 12px; object-fit: cover; }
.news-hero { width: 100%; max-height: 420px; object-fit: cover; }
.news-body { padding: 22px; }
.news-body h1 { font-size: clamp(22px, 4vw, 32px); margin-bottom: 12px; }
.news-body p { color: var(--muted); line-height: 1.6; }

@media (max-width: 860px) {
  .nav-links a:not(.btn) { display: none; }
  .about-grid, .modal-card { grid-template-columns: 1fr; }
  .hero-stage { min-height: 520px; }
  .brand-txt { display: none; }
  .wa-hint { display: none; }
}
