:root {
  --bg: #03060f;
  --bg-2: #060c1c;
  --blue: #1e7bff;
  --blue-bright: #3b9dff;
  --blue-glow: #2b8bff;
  --cyan: #4fd2ff;
  --silver: #c7d4e6;
  --white: #f3f8ff;
  --muted: #8aa0c0;
  --panel-bg: rgba(12, 22, 44, 0.55);
  --panel-brd: rgba(90, 150, 255, 0.22);
  --radius: 16px;
  --shadow-glow: 0 0 24px rgba(43, 139, 255, 0.45);
  --t-fast: 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  --t-med: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Rajdhani", system-ui, sans-serif;
  background: var(--bg);
  color: var(--silver);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ---------- Background layers ---------- */
.bg-image {
  position: fixed;
  inset: 0;
  background: url("background.jpg") center/cover no-repeat fixed;
  z-index: -3;
  transform: scale(1.05);
  animation: bgDrift 30s ease-in-out infinite alternate;
}
.bg-overlay {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 50% 18%, rgba(30, 123, 255, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(3, 6, 15, 0.55) 0%, rgba(3, 6, 15, 0.82) 55%, rgba(3, 6, 15, 0.97) 100%);
  z-index: -2;
}
.grid-lines {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(60, 157, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(60, 157, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 75%);
}
@keyframes bgDrift {
  from { transform: scale(1.05) translateY(0); }
  to { transform: scale(1.12) translateY(-18px); }
}

/* ---------- Top bar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 26px;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(5, 10, 24, 0.85), rgba(5, 10, 24, 0.45));
  border-bottom: 1px solid var(--panel-brd);
}
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: rgba(20, 36, 70, 0.5);
  border: 1px solid var(--panel-brd);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--t-fast);
}
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--cyan);
  border-radius: 2px;
  transition: var(--t-fast);
}
.hamburger:hover { box-shadow: var(--shadow-glow); border-color: var(--blue-bright); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(120, 180, 255, 0.5);
  box-shadow: 0 0 14px rgba(43, 139, 255, 0.5);
}
.brand-name {
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--white);
  font-size: 1.25rem;
}
.brand-accent { color: var(--blue-bright); }

.topnav { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.topnav a {
  color: var(--silver);
  text-decoration: none;
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 10px;
  letter-spacing: 0.5px;
  transition: var(--t-fast);
}
.topnav a:hover { color: var(--white); background: rgba(40, 90, 180, 0.25); }
.topnav .contact-open {
  color: var(--silver);
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  padding: 9px 14px;
  border-radius: 10px;
  letter-spacing: 0.5px;
  border: none;
  background: none;
  cursor: pointer;
  transition: var(--t-fast);
}
.topnav .contact-open:hover { color: var(--white); background: rgba(40, 90, 180, 0.25); }
.topnav-cta {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: var(--white) !important;
  box-shadow: var(--shadow-glow);
}
.topnav-cta:hover { filter: brightness(1.12); }

/* ---------- Slide-out drawer ---------- */
.drawer {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 320px;
  max-width: 85vw;
  z-index: 90;
  background: linear-gradient(160deg, rgba(8, 16, 36, 0.97), rgba(4, 8, 20, 0.98));
  border-right: 1px solid var(--panel-brd);
  box-shadow: 8px 0 40px rgba(0, 0, 0, 0.6);
  transform: translateX(-105%);
  transition: transform var(--t-med);
  display: flex;
  flex-direction: column;
  padding: 18px;
}
.drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--panel-brd); }
.drawer-logo { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 16px rgba(43, 139, 255, 0.6); }
.drawer-close {
  background: none; border: none; color: var(--silver);
  font-size: 2rem; line-height: 1; cursor: pointer; transition: var(--t-fast);
}
.drawer-close:hover { color: var(--blue-bright); transform: rotate(90deg); }

.drawer-nav { display: flex; flex-direction: column; gap: 2px; margin-top: 14px; overflow-y: auto; flex: 1; }
.drawer-nav a {
  display: flex; align-items: center; gap: 12px;
  color: var(--silver);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 12px 14px;
  border-radius: 10px;
  border-left: 2px solid transparent;
  transition: var(--t-fast);
}
.drawer-nav .nav-ico { color: var(--blue); font-size: 0.55rem; transition: var(--t-fast); }
.drawer-nav a:hover {
  background: rgba(40, 90, 180, 0.22);
  color: var(--white);
  border-left-color: var(--cyan);
  transform: translateX(4px);
}
.drawer-nav a:hover .nav-ico { color: var(--cyan); }

.drawer-nav-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  color: var(--silver);
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  padding: 12px 14px;
  border-radius: 10px;
  border: none;
  border-left: 2px solid transparent;
  background: none;
  cursor: pointer;
  transition: var(--t-fast);
}
.drawer-nav-contact:hover {
  background: rgba(40, 90, 180, 0.22);
  color: var(--white);
  border-left-color: var(--cyan);
  transform: translateX(4px);
}
.drawer-nav-contact:hover .nav-ico { color: var(--cyan); }

.drawer-foot { display: flex; gap: 10px; padding-top: 14px; border-top: 1px solid var(--panel-brd); }
.drawer-btn {
  flex: 1; text-align: center; text-decoration: none;
  padding: 11px; border-radius: 10px; font-weight: 700; letter-spacing: 0.5px;
  transition: var(--t-fast);
}
.drawer-btn.ghost { color: var(--silver); border: 1px solid var(--panel-brd); }
.drawer-btn.ghost:hover { color: var(--white); border-color: var(--blue-bright); }
.drawer-btn.solid { background: linear-gradient(135deg, var(--blue), var(--blue-bright)); color: var(--white); box-shadow: var(--shadow-glow); }
.drawer-btn.solid:hover { filter: brightness(1.12); }

.drawer-scrim {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(2, 5, 14, 0.6);
  backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden;
  transition: var(--t-med);
}
.drawer-scrim.show { opacity: 1; visibility: visible; }

/* ---------- Contact modal ---------- */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med);
}
.contact-modal.open { opacity: 1; pointer-events: auto; }
.contact-modal-scrim {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(2, 5, 14, 0.72);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--t-med);
}
.contact-modal-scrim.show { opacity: 1; visibility: visible; pointer-events: auto; }
.contact-modal-panel {
  position: relative;
  width: min(480px, 100%);
  padding: 32px 28px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--panel-brd);
  background: linear-gradient(160deg, rgba(8, 16, 36, 0.98), rgba(4, 8, 20, 0.99));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), var(--shadow-glow);
  transform: translateY(16px) scale(0.98);
  transition: transform var(--t-med);
}
.contact-modal.open .contact-modal-panel {
  transform: translateY(0) scale(1);
}
.contact-modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  color: var(--silver);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--t-fast);
}
.contact-modal-close:hover { color: var(--blue-bright); transform: rotate(90deg); }
.contact-modal-title {
  font-family: "Orbitron", sans-serif;
  color: var(--white);
  font-size: 1.35rem;
  letter-spacing: 1px;
  margin-bottom: 22px;
}
.contact-modal-item + .contact-modal-item { margin-top: 20px; }
.contact-modal-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.contact-modal-item a {
  color: var(--cyan);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  word-break: break-word;
  transition: var(--t-fast);
}
.contact-modal-item a:hover { color: var(--white); }
.contact-modal-item address {
  font-style: normal;
  color: var(--silver);
  line-height: 1.6;
  font-size: 1.05rem;
  font-weight: 500;
}

/* ---------- Hero ---------- */
.hero {
  text-align: center;
  padding: 70px 20px 60px;
  max-width: 920px;
  margin: 0 auto;
}
.hero-logo-wrap { display: inline-block; position: relative; }
.hero-logo {
  width: 200px; height: 200px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 50px rgba(43, 139, 255, 0.55), inset 0 0 30px rgba(0,0,0,0.6);
  animation: float 6s ease-in-out infinite;
}
.hero-logo-wrap::after {
  content: "";
  position: absolute; inset: -14px;
  border-radius: 50%;
  border: 1px solid rgba(79, 210, 255, 0.35);
  animation: pulseRing 4s ease-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes pulseRing {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.25); opacity: 0; }
}
.hero-kicker {
  margin-top: 26px;
  letter-spacing: 6px;
  font-size: 0.85rem;
  color: var(--cyan);
  font-weight: 600;
}
.hero-title {
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  letter-spacing: 3px;
  color: var(--white);
  margin: 10px 0;
  text-shadow: 0 0 30px rgba(43, 139, 255, 0.5);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 30px;
  line-height: 1.5;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 14px 26px;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--t-fast);
  font-size: 1rem;
}
.btn.sm { padding: 10px 18px; font-size: 0.9rem; }
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  color: var(--white);
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-3px); filter: brightness(1.12); }
.btn-glow {
  background: rgba(13, 28, 60, 0.6);
  color: var(--cyan);
  border: 1px solid var(--cyan);
  box-shadow: 0 0 18px rgba(79, 210, 255, 0.35);
}
.btn-glow:hover { background: rgba(79, 210, 255, 0.15); transform: translateY(-3px); }
.btn-outline {
  background: transparent;
  color: var(--silver);
  border: 1px solid var(--panel-brd);
}
.btn-outline:hover { color: var(--white); border-color: var(--blue-bright); transform: translateY(-3px); box-shadow: var(--shadow-glow); }

/* ---------- Section titles ---------- */
.section-title {
  text-align: center;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 40px;
  position: relative;
}
.section-title::after {
  content: "";
  display: block;
  width: 80px; height: 3px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, transparent, var(--blue-bright), transparent);
  border-radius: 3px;
}

/* ---------- Panels ---------- */
.panels { max-width: 1180px; margin: 0 auto; padding: 40px 24px; }
.panel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}
.panel {
  position: relative;
  display: block;
  text-decoration: none;
  background: var(--panel-bg);
  border: 1px solid var(--panel-brd);
  border-radius: var(--radius);
  padding: 28px 24px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: var(--t-med);
  isolation: isolate;
}
.panel-glow {
  position: absolute;
  top: -40%; left: -40%;
  width: 180%; height: 180%;
  background: radial-gradient(circle, rgba(43, 139, 255, 0.25), transparent 60%);
  opacity: 0;
  transition: var(--t-med);
  z-index: -1;
}
.panel:hover {
  transform: translateY(-8px);
  border-color: var(--blue-bright);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55), var(--shadow-glow);
}
.panel:hover .panel-glow { opacity: 1; }
.panel-icon {
  font-size: 2rem;
  color: var(--cyan);
  margin-bottom: 14px;
  text-shadow: 0 0 18px rgba(79, 210, 255, 0.6);
}
.panel h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.panel p { color: var(--muted); line-height: 1.5; font-size: 0.98rem; margin-bottom: 16px; }
.panel-link {
  color: var(--blue-bright);
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: var(--t-fast);
}
.panel:hover .panel-link { color: var(--cyan); letter-spacing: 1.5px; }

/* ---------- Account strip ---------- */
.account-strip { max-width: 1180px; margin: 20px auto; padding: 20px 24px; }
.account-card {
  background: linear-gradient(135deg, rgba(20, 44, 96, 0.6), rgba(8, 16, 36, 0.6));
  border: 1px solid var(--panel-brd);
  border-radius: var(--radius);
  padding: 34px;
  text-align: center;
  backdrop-filter: blur(10px);
}
.account-card h3 {
  font-family: "Orbitron", sans-serif;
  color: var(--white);
  font-size: 1.4rem;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.account-card p { color: var(--muted); margin-bottom: 22px; }
.account-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Community / social ---------- */
.community { max-width: 900px; margin: 30px auto; padding: 50px 24px 20px; text-align: center; }
.community-sub { color: var(--muted); margin-bottom: 34px; font-size: 1.05rem; }
.social-bar { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; }
.social-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  padding: 18px 34px;
  border-radius: 14px;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  border: 1px solid var(--panel-brd);
  background: var(--panel-bg);
  backdrop-filter: blur(10px);
  transition: var(--t-med);
}
.social-btn svg { transition: var(--t-fast); }
.social-btn.facebook:hover {
  border-color: #1877f2;
  color: #fff;
  box-shadow: 0 12px 30px rgba(24, 119, 242, 0.45);
  transform: translateY(-5px);
  background: rgba(24, 119, 242, 0.16);
}
.social-btn.facebook:hover svg { color: #6ea8ff; }

/* ---------- Footer ---------- */
.footer {
  margin-top: 40px;
  border-top: 1px solid var(--panel-brd);
  background: rgba(4, 8, 20, 0.7);
  backdrop-filter: blur(10px);
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-logo { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 14px rgba(43, 139, 255, 0.4); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: var(--muted); text-decoration: none; font-weight: 600; transition: var(--t-fast); }
.footer-links a:hover { color: var(--cyan); }
.footer-copy { color: var(--muted); font-size: 0.85rem; }

/* ---------- Price list page ---------- */
.price-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.price-intro {
  text-align: center;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: -20px auto 40px;
  line-height: 1.5;
}
.price-table-wrap {
  background: var(--panel-bg);
  border: 1px solid var(--panel-brd);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.05rem;
}
.price-table thead th {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: var(--white);
  text-align: left;
  padding: 18px 24px;
  border-bottom: 1px solid var(--panel-brd);
  background: rgba(20, 44, 96, 0.35);
}
.price-table tbody th {
  font-weight: 700;
  color: var(--white);
  text-align: left;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(90, 150, 255, 0.12);
}
.price-table tbody td {
  color: var(--silver);
  font-weight: 600;
  font-size: 1.15rem;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(90, 150, 255, 0.12);
}
.price-table tbody tr:last-child th,
.price-table tbody tr:last-child td {
  border-bottom: none;
}
.price-table tbody tr:hover {
  background: rgba(40, 90, 180, 0.12);
}
.price-table tbody tr:hover td {
  color: var(--cyan);
}
.price-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}
.topnav a.topnav-active {
  color: var(--cyan);
  background: rgba(40, 90, 180, 0.25);
}
.drawer-nav a[aria-current="page"] {
  color: var(--cyan);
  background: rgba(40, 90, 180, 0.22);
  border-left-color: var(--cyan);
}

@media (max-width: 600px) {
  .price-table-wrap { overflow-x: auto; }
  .price-table { min-width: 480px; }
  .price-table thead th,
  .price-table tbody th,
  .price-table tbody td {
    padding: 14px 16px;
    font-size: 0.95rem;
  }
  .price-table tbody td { font-size: 1.05rem; }
}

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .topnav { display: none; }
  .hero { padding-top: 48px; }
  .hero-logo { width: 150px; height: 150px; }
  .brand-name { font-size: 1.05rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
