/* ══════════════════════════════════════
   BISCONOVA – style.css
   Dark Blue Premium Theme
══════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
  --bg:          #090d1a;
  --bg-2:        #0d1526;
  --bg-3:        #111d35;
  --blue:        #1a8cff;
  --blue-light:  #38a8ff;
  --blue-glow:   rgba(26, 140, 255, 0.25);
  --cyan:        #00d4ff;
  --white:       #ffffff;
  --text:        #c8d4e8;
  --text-muted:  #7a8faa;
  --border:      rgba(255, 255, 255, 0.08);
  --border-blue: rgba(26, 140, 255, 0.3);
  --card-bg:     rgba(13, 21, 38, 0.8);
  --card-hover:  rgba(17, 29, 53, 0.95);
  --radius:      16px;
  --radius-sm:   10px;
  --shadow:      0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-blue: 0 8px 40px rgba(26, 140, 255, 0.2);
  --font-head:   'Syne', sans-serif;
  --font-body:   'DM Sans', sans-serif;
  --nav-h:       70px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
select { font-family: inherit; }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-blue); border-radius: 3px; }

/* ─── Scroll Progress ─── */
#scrollProgress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  z-index: 9999; transition: width 0.1s;
}

/* ─── Container ─── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

/* ──────────────────────────────────────
   BUTTONS
────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  transition: var(--transition); cursor: pointer; white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(26, 140, 255, 0.35);
}
.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26, 140, 255, 0.5);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}
.btn-ghost-dark {
  background: rgba(0, 0, 0, 0.25);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-ghost-dark:hover {
  background: rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
  padding: 11px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--blue);
  color: white;
  transform: translateY(-2px);
}
.btn-sm {
  padding: 9px 20px;
  font-size: 13px;
  border-radius: 50px;
  background: var(--blue);
  color: white;
  font-weight: 600;
  transition: var(--transition);
}
.btn-sm:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ──────────────────────────────────────
   NAVIGATION
────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; width: 100%;
  height: var(--nav-h); z-index: 1000;
  background: rgba(9, 13, 26, 0.4);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
nav.scrolled {
  background: rgba(9, 13, 26, 0.92);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-size: 22px; font-weight: 800;
  color: var(--white); letter-spacing: -0.5px;
}
.logo-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, #1a6fff, #00d4ff);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden;
}
.logo-img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 10px;
}
.logo .accent { color: var(--blue-light); }

/* Nav links */
.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--text-muted);
  position: relative; transition: color var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: var(--blue); border-radius: 2px; transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

/* Discord nav tag */
.nav-discord {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 16px; border-radius: 50px;
  font-size: 14px; font-weight: 600;
  background: rgba(88, 101, 242, 0.15);
  border: 1px solid rgba(88, 101, 242, 0.4);
  color: #8b97ff !important;
  transition: var(--transition);
}
.nav-discord:hover {
  background: rgba(88, 101, 242, 0.3);
  border-color: rgba(88, 101, 242, 0.7);
  color: #fff !important;
  transform: translateY(-2px);
}
.nav-discord::after { display: none !important; }

.mob-discord {
  color: #8b97ff !important;
  font-weight: 600;
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 32px; padding: 4px;
}
.hamburger span {
  display: block; height: 2px; border-radius: 2px;
  background: var(--white); transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; width: 100%;
  background: rgba(9, 13, 26, 0.97); backdrop-filter: blur(20px);
  z-index: 999; padding: 20px 40px 30px;
  border-bottom: 1px solid var(--border);
  transform: translateY(-10px); opacity: 0;
  transition: var(--transition);
}
.mobile-menu.open {
  display: block; transform: translateY(0); opacity: 1;
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 0; }
.mobile-menu a {
  display: block; padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text); font-size: 16px; font-weight: 500;
}
.mobile-menu a:hover { color: var(--blue-light); }

/* ──────────────────────────────────────
   HERO
────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 20% 60%, #0a1f45 0%, #090d1a 60%);
}

/* Canvas wave */
#waveCanvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0.5;
}

/* Glow blobs */
.hero-glow {
  position: absolute; border-radius: 50%;
  filter: blur(80px); animation: glowPulse 8s ease-in-out infinite;
}
.g1 {
  width: 500px; height: 500px; top: -100px; left: -100px;
  background: radial-gradient(circle, rgba(26, 100, 255, 0.2) 0%, transparent 70%);
  animation-delay: 0s;
}
.g2 {
  width: 400px; height: 400px; bottom: -80px; right: 10%;
  background: radial-gradient(circle, rgba(0, 180, 255, 0.15) 0%, transparent 70%);
  animation-delay: 3s;
}
.g3 {
  width: 300px; height: 300px; top: 40%; left: 55%;
  background: radial-gradient(circle, rgba(26, 140, 255, 0.12) 0%, transparent 70%);
  animation-delay: 6s;
}
@keyframes glowPulse {
  0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.8; }
  50% { transform: scale(1.2) translate(30px, -30px); opacity: 1; }
}

/* Grid overlay */
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(26, 140, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 140, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 860px; padding: 0 20px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; margin-bottom: 28px;
  background: rgba(26, 140, 255, 0.12);
  border: 1px solid rgba(26, 140, 255, 0.35);
  border-radius: 50px; font-size: 13px; font-weight: 500;
  color: var(--blue-light); letter-spacing: 0.5px;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800; color: var(--white);
  line-height: 1.2; margin-bottom: 24px;
  letter-spacing: -1px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--cyan) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px; color: var(--text-muted); margin-bottom: 44px;
  letter-spacing: 0.3px;
}

.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--text-muted); font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase; z-index: 2;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--blue-light), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); }
}

/* ──────────────────────────────────────
   REVEAL ANIMATIONS
────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  animation: revealUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.8s; }
@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll-triggered */
.sc-animate {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--d, 0s);
}
.js-ready .sc-animate {
  opacity: 0; transform: translateY(40px);
}
.js-ready .sc-animate.in-view {
  opacity: 1; transform: translateY(0);
}

/* ──────────────────────────────────────
   SECTION COMMON
────────────────────────────────────── */
.section { padding: 120px 0; }

.section-head {
  text-align: center; margin-bottom: 64px;
}
.section-head.catalog-head {
  text-align: left;
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}

.chip {
  display: inline-block; padding: 6px 16px; margin-bottom: 16px;
  background: rgba(26, 140, 255, 0.12);
  border: 1px solid rgba(26, 140, 255, 0.3);
  border-radius: 50px; font-size: 13px; font-weight: 600;
  color: var(--blue-light); text-transform: uppercase; letter-spacing: 1px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800; color: var(--white);
  line-height: 1.15; letter-spacing: -1px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px; color: var(--text-muted);
  max-width: 560px; margin: 0 auto; line-height: 1.7;
}
.catalog-head .section-sub { margin: 0; }

/* ──────────────────────────────────────
   SERVICES
────────────────────────────────────── */
.services-section { background: var(--bg-2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.service-card:hover {
  background: var(--card-hover);
  border-color: var(--border-blue);
  transform: translateY(-6px);
  box-shadow: var(--shadow-blue);
}
.sc-icon {
  font-size: 40px; margin-bottom: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  width: 68px; height: 68px;
  background: rgba(26, 140, 255, 0.1);
  border: 1px solid rgba(26, 140, 255, 0.2);
  border-radius: 16px;
  transition: var(--transition);
}
.service-card:hover .sc-icon {
  background: rgba(26, 140, 255, 0.18);
  transform: scale(1.08) rotate(4deg);
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 21px; font-weight: 700; color: var(--white);
  margin-bottom: 12px;
}
.service-card p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ──────────────────────────────────────
   CATALOG
────────────────────────────────────── */
.catalog-section { background: var(--bg); }

/* Tabs */
.catalog-tabs {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px;
}
.tab-btn {
  padding: 9px 22px; border-radius: 50px;
  font-size: 14px; font-weight: 500;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: var(--transition); cursor: pointer;
}
.tab-btn:hover { border-color: var(--border-blue); color: var(--blue-light); }
.tab-btn.active {
  background: var(--blue); color: white;
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(26, 140, 255, 0.3);
}

/* Catalog grid */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}

.catalog-card {
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  display: flex; flex-direction: column;
}
.catalog-card:hover {
  border-color: rgba(26, 140, 255, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(26, 140, 255, 0.18);
}
.catalog-card.hidden { display: none; }

/* Badge */
.card-badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  padding: 5px 14px; border-radius: 50px;
  font-size: 12px; font-weight: 600;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: white;
}
.card-badge.featured {
  background: linear-gradient(135deg, #f59e0b, #f97316);
}

/* Card image */
.card-img {
  height: 200px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.catalog-card:hover .card-img img { transform: scale(1.05); }

.card-emoji { font-size: 56px; filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4)); }

/* Image backgrounds */
.consulting-img { background: linear-gradient(135deg, #0d1f3c, #162a50); }
.c2 { background: linear-gradient(135deg, #0a1b35, #1a3060); }
.website-img { background: linear-gradient(135deg, #091e38, #0f2d55); }
.w2 { background: linear-gradient(135deg, #0b2040, #163470); }
.w3 { background: linear-gradient(135deg, #0a1d38, #10285a); }
.w4 { background: linear-gradient(135deg, #081828, #0d2246); }
.bot-img { background: linear-gradient(135deg, #0e1a3a, #162850); }
.b2 { background: linear-gradient(135deg, #0c1a38, #1a3060); }
.b3 { background: linear-gradient(135deg, #091530, #0f2248); }

/* Card body */
.card-body {
  padding: 24px; display: flex; flex-direction: column; gap: 8px; flex: 1;
}
.card-cat {
  font-size: 12px; font-weight: 600; color: var(--blue-light);
  text-transform: uppercase; letter-spacing: 1px;
}
.card-body h3 {
  font-family: var(--font-head);
  font-size: 19px; font-weight: 700; color: var(--white);
}
.card-body p { font-size: 14px; color: var(--text-muted); line-height: 1.6; flex: 1; }

.card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--border);
}
.card-price { display: flex; flex-direction: column; gap: 2px; }
.price-label { font-size: 11px; color: var(--text-muted); font-weight: 500; }
.price {
  font-family: var(--font-head);
  font-size: 20px; font-weight: 800;
  color: var(--blue-light);
}
.price.nego {
  font-size: 15px; color: var(--cyan); font-weight: 700;
}

/* ──────────────────────────────────────
   CTA BANNER
────────────────────────────────────── */
.cta-banner {
  padding: 60px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-box {
  background: linear-gradient(135deg, rgba(26, 80, 180, 0.25), rgba(0, 120, 220, 0.15));
  border: 1px solid rgba(26, 140, 255, 0.25);
  border-radius: 24px; padding: 60px 56px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 140, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 800;
  color: var(--white); margin-bottom: 16px; letter-spacing: -0.8px;
}
.cta-box p { font-size: 17px; color: var(--text-muted); margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ──────────────────────────────────────
   PORTFOLIO
────────────────────────────────────── */
.portfolio-section { background: var(--bg-2); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 24px;
}

.pf-card {
  position: relative; border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.pf-card:hover {
  border-color: rgba(26, 140, 255, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5);
}

.pf-badge {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  padding: 5px 14px; border-radius: 50px;
  font-size: 12px; font-weight: 700;
}
.pf-badge.live {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.5);
  color: #10b981;
}

.pf-img {
  position: relative; height: 280px; overflow: hidden;
}
.pf-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.pf-card:hover .pf-img img { transform: scale(1.08); }

/* Fallback emoji backgrounds */
.pf1 { background: linear-gradient(135deg, #0d1f40, #162d5a); display: flex; align-items: center; justify-content: center; font-size: 72px; }
.pf3 { background: linear-gradient(135deg, #0e1d3c, #1a2e5a); display: flex; align-items: center; justify-content: center; font-size: 72px; }
.pf5 { background: linear-gradient(135deg, #0c1c3a, #162850); display: flex; align-items: center; justify-content: center; font-size: 72px; }
.pf6 { background: linear-gradient(135deg, #0a1830, #101f44); display: flex; align-items: center; justify-content: center; font-size: 72px; }
.pf2, .pf4 { background: #0d1526; }

.pf1::after { content: '🏢'; }
.pf3::after { content: '🎮'; }
.pf5::after { content: '🎓'; }
.pf6::after { content: '⚙️'; }

.pf-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5, 10, 25, 0.97) 0%, rgba(5, 10, 25, 0.5) 50%, transparent 100%);
  padding: 24px; display: flex; flex-direction: column; justify-content: flex-end;
  transform: translateY(20px); opacity: 0;
  transition: var(--transition);
}
.pf-card:hover .pf-overlay { transform: translateY(0); opacity: 1; }

.pf-tag {
  display: inline-block; padding: 4px 12px;
  background: rgba(26, 140, 255, 0.25); border: 1px solid rgba(26, 140, 255, 0.4);
  border-radius: 50px; font-size: 11px; font-weight: 600;
  color: var(--blue-light); margin-bottom: 8px; text-transform: uppercase;
}
.pf-overlay h4 {
  font-family: var(--font-head); font-size: 20px;
  font-weight: 700; color: var(--white); margin-bottom: 6px;
}
.pf-overlay p { font-size: 13px; color: var(--text-muted); }

/* ──────────────────────────────────────
   CONTACT
────────────────────────────────────── */
/* ──────────────────────────────────────
   DISCORD JOIN SECTION
────────────────────────────────────── */
.discord-join-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}
.discord-join-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

/* Animated background blobs */
.dj-blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none; opacity: 0;
  animation: djBlobFloat 8s ease-in-out infinite;
}
.dj-blob-1 {
  width: 500px; height: 500px; top: -100px; left: -100px;
  background: radial-gradient(circle, rgba(88,101,242,0.18) 0%, transparent 70%);
  animation-delay: 0s;
  opacity: 0.7;
}
.dj-blob-2 {
  width: 400px; height: 400px; top: 40%; right: -80px;
  background: radial-gradient(circle, rgba(26,140,255,0.15) 0%, transparent 70%);
  animation-delay: 3s;
  opacity: 0.6;
}
.dj-blob-3 {
  width: 350px; height: 350px; bottom: -50px; left: 30%;
  background: radial-gradient(circle, rgba(0,212,255,0.1) 0%, transparent 70%);
  animation-delay: 5s;
  opacity: 0.5;
}
@keyframes djBlobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.96); }
}

.dj-container {
  position: relative;
  z-index: 1;
}

/* Label */
.dj-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: #5865f2;
  margin-bottom: 28px;
}
.dj-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #5865f2;
  display: inline-block;
  box-shadow: 0 0 8px #5865f2;
}

/* Title */
.dj-title {
  font-family: var(--font-head); font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800; line-height: 1.15;
  color: var(--white); margin-bottom: 22px;
}
.dj-gradient-text {
  background: linear-gradient(135deg, #5865f2 0%, var(--blue) 40%, var(--cyan) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dj-subtitle {
  font-size: 17px; color: var(--text-muted); line-height: 1.75;
  max-width: 600px; margin: 0 auto 60px;
  text-wrap: balance;
}

/* Benefit Cards */
.dj-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 56px; text-align: left;
  align-items: stretch;
}
.dj-benefit-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
  backdrop-filter: blur(12px);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.dj-benefit-card:hover {
  border-color: rgba(88,101,242,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(88,101,242,0.15);
}
.dj-benefit-featured {
  border-color: rgba(88,101,242,0.45);
  background: linear-gradient(145deg, rgba(88,101,242,0.12) 0%, rgba(13,21,38,0.95) 100%);
  box-shadow: 0 8px 40px rgba(88,101,242,0.2);
}
.dj-featured-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, #5865f2, var(--blue));
  color: white; font-size: 11px; font-weight: 700;
  letter-spacing: 1px; padding: 5px 16px; border-radius: 99px;
  white-space: nowrap;
}
.dj-benefit-icon {
  width: 52px; height: 52px;
  background: rgba(88,101,242,0.12);
  border: 1px solid rgba(88,101,242,0.25);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #7289da;
  margin-bottom: 20px;
}
.dj-benefit-featured .dj-benefit-icon {
  background: rgba(88,101,242,0.2);
  border-color: rgba(88,101,242,0.4);
  color: #5865f2;
}
.dj-benefit-card h4 {
  font-family: var(--font-head); font-size: 17px; font-weight: 700;
  color: var(--white); margin-bottom: 10px;
}
.dj-benefit-card p {
  font-size: 14px; color: var(--text-muted); line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}
.dj-benefit-card p strong { color: var(--white); }
.dj-benefit-tag {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  font-size: 12px; font-weight: 600;
  color: #7289da;
  background: rgba(88,101,242,0.12);
  border: 1px solid rgba(88,101,242,0.2);
  border-radius: 99px;
  padding: 5px 14px;
  white-space: normal;
}
.dj-tag-gold {
  color: #f0b429;
  background: rgba(240,180,41,0.1);
  border-color: rgba(240,180,41,0.25);
}

/* Steps */
.dj-steps {
  margin-bottom: 60px;
}
.dj-steps-label {
  font-size: 12px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 24px;
}
.dj-steps-track {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
}
.dj-step {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 28px;
  min-width: 150px;
  transition: var(--transition);
  flex: 1 1 160px;
}
.dj-step:hover {
  border-color: rgba(88,101,242,0.4);
  background: var(--card-hover);
}
.dj-step-num {
  font-family: var(--font-head); font-size: 22px; font-weight: 800;
  color: #5865f2; line-height: 1;
}
.dj-step-text {
  font-size: 13px; font-weight: 600; color: var(--white);
}
.dj-step-arrow {
  font-size: 20px; color: var(--text-muted); font-weight: 300;
}

/* CTA Block */
.dj-cta-block {
  max-width: 780px;
  margin: 0 auto;
}
.dj-discord-card {
  background: linear-gradient(145deg, rgba(88,101,242,0.12) 0%, rgba(13,21,38,0.98) 100%);
  border: 1px solid rgba(88,101,242,0.35);
  border-radius: calc(var(--radius) + 4px);
  padding: 48px 44px 40px;
  box-shadow: 0 20px 80px rgba(88,101,242,0.18), 0 0 0 1px rgba(88,101,242,0.08);
  position: relative; overflow: hidden;
}
.dj-discord-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg, transparent, #5865f2 30%, var(--blue) 70%, transparent);
}

.dj-discord-visual {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-bottom: 32px;
}
.dj-discord-logo-wrap {
  position: relative; width: 64px; height: 64px;
  background: #5865f2; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(88,101,242,0.5);
}
.dj-discord-icon { width: 36px; height: 36px; color: white; }
.dj-online-pulse {
  position: absolute; bottom: -3px; right: -3px;
  width: 16px; height: 16px; border-radius: 50%;
  background: #23a55a;
  border: 3px solid var(--bg);
  animation: djPulse 2.5s ease-in-out infinite;
}
@keyframes djPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(35,165,90,0.6); }
  50% { box-shadow: 0 0 0 7px rgba(35,165,90,0); }
}
.dj-server-info { text-align: left; }
.dj-server-name {
  font-family: var(--font-head); font-size: 20px; font-weight: 800;
  color: var(--white); margin-bottom: 6px;
}
.dj-server-stats {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted);
  flex-wrap: wrap;
}
.dj-online-dot {
  display: inline-block; width: 8px; height: 8px;
  background: #23a55a; border-radius: 50%;
  box-shadow: 0 0 6px #23a55a;
}
.dj-stat-online { display: flex; align-items: center; gap: 5px; color: #23a55a; }
.dj-stat-divider { color: var(--border); }

/* Promo strip */
.dj-promo-strip {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; flex-wrap: wrap;
  background: rgba(88,101,242,0.07);
  border: 1px solid rgba(88,101,242,0.15);
  border-radius: var(--radius-sm);
  padding: 14px 24px; margin-bottom: 36px;
  font-size: 13.5px; color: var(--text);
}
.dj-promo-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.dj-promo-item strong { color: var(--white); }
.dj-promo-divider { color: rgba(88,101,242,0.4); }

/* CTA Buttons */
.dj-cta-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap; margin-bottom: 22px;
}
.dj-btn-join {
  display: inline-flex; align-items: center; gap: 10px;
  background: #5865f2;
  color: white; font-family: var(--font-head); font-size: 15px; font-weight: 700;
  padding: 16px 36px; border-radius: var(--radius-sm);
  text-decoration: none; letter-spacing: 0.3px;
  box-shadow: 0 8px 30px rgba(88,101,242,0.45);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.15);
}
.dj-btn-join svg,
.dj-btn-wa svg {
  flex-shrink: 0;
}
.dj-btn-join:hover {
  background: #4752c4;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(88,101,242,0.55);
}
.dj-btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(37,211,102,0.12);
  color: #25d366; font-family: var(--font-head); font-size: 15px; font-weight: 700;
  padding: 16px 32px; border-radius: var(--radius-sm);
  text-decoration: none; letter-spacing: 0.3px;
  border: 1px solid rgba(37,211,102,0.3);
  transition: var(--transition);
}
.dj-btn-wa:hover {
  background: rgba(37,211,102,0.2);
  border-color: rgba(37,211,102,0.5);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(37,211,102,0.2);
}
.dj-cta-note {
  font-size: 13px; color: var(--text-muted);
}
.dj-cta-note a {
  color: var(--blue-light); text-decoration: none;
  transition: color var(--transition);
}
.dj-cta-note a:hover { color: var(--white); }

/* ──────────────────────────────────────
   FOOTER
────────────────────────────────────── */
footer {
  background: #060a14;
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px; margin-bottom: 60px;
}
.footer-brand p {
  font-size: 14px; color: var(--text-muted); line-height: 1.7;
  margin: 16px 0 24px;
}

.socials { display: flex; gap: 12px; }
.soc-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: var(--transition);
}
.soc-icon:hover {
  background: var(--blue); border-color: var(--blue);
  color: white; transform: translateY(-3px);
}

.footer-col h5 {
  font-family: var(--font-head); font-size: 12px; font-weight: 700;
  color: var(--white); letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 14px; color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--blue-light); }

.contact-list { display: flex; flex-direction: column; gap: 14px; }
.contact-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-muted);
}
.contact-list svg { color: var(--blue-light); flex-shrink: 0; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; border-top: 1px solid var(--border);
  font-size: 13px; color: var(--text-muted);
  flex-wrap: wrap; gap: 10px;
}

/* ──────────────────────────────────────
   BACK TO TOP
────────────────────────────────────── */
.back-top, #backTop {
  position: fixed; bottom: 32px; right: 32px; z-index: 900;
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--blue); color: white; font-size: 20px;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(26, 140, 255, 0.4);
  opacity: 0; pointer-events: none;
  transition: var(--transition);
}
.back-top.show, #backTop.show { opacity: 1; pointer-events: all; }
.back-top:hover, #backTop:hover { transform: translateY(-3px); background: var(--blue-light); }

/* ──────────────────────────────────────
   TOAST
────────────────────────────────────── */
.toast {
  position: fixed; bottom: 90px; right: 32px; z-index: 1100;
  padding: 14px 24px; border-radius: 12px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #10b981; font-size: 15px; font-weight: 600;
  backdrop-filter: blur(10px);
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.toast.show { transform: translateX(0); }

/* ──────────────────────────────────────
   RESPONSIVE
────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }
  :root { --nav-h: 60px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero h1 { font-size: 38px; letter-spacing: -0.8px; }
  .hero-sub { font-size: 16px; }
  .scroll-hint { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }

  .section-head.catalog-head {
    flex-direction: column; align-items: flex-start;
  }

  .discord-join-section { padding-bottom: 96px; }
  .dj-subtitle { margin-bottom: 44px; }
  .dj-benefits { grid-template-columns: 1fr; }
  .dj-steps-track { flex-direction: column; gap: 8px; }
  .dj-step-arrow {
    transform: rotate(90deg);
    line-height: 1;
  }
  .dj-discord-card { padding: 36px 24px 32px; }
  .dj-discord-visual { flex-direction: column; gap: 14px; }
  .dj-server-info { text-align: center; }
  .dj-server-stats { justify-content: center; }
  .dj-promo-strip { flex-direction: column; gap: 10px; text-align: center; }
  .dj-promo-divider { display: none; }
  .dj-cta-actions { flex-direction: column; align-items: stretch; }
  .dj-btn-join,
  .dj-btn-wa {
    justify-content: center;
    width: 100%;
  }
  .cta-box { padding: 36px 28px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .dj-title { font-size: 1.9rem; }
  .dj-step { min-width: unset; width: 100%; }
  .dj-benefit-card,
  .dj-discord-card {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Contact Section Rebuild */
#contact.contact-section {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(88, 101, 242, 0.22), transparent 30%),
    radial-gradient(circle at bottom right, rgba(0, 212, 255, 0.16), transparent 35%),
    linear-gradient(180deg, #08101f 0%, #0a1325 100%);
  overflow: hidden;
}

#contact.contact-section::before,
#contact.contact-section::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

#contact.contact-section::before {
  top: 72px;
  left: 50%;
  width: min(1120px, calc(100% - 40px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
}

#contact.contact-section::after {
  top: 0;
  right: 8%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 101, 242, 0.18), transparent 70%);
  filter: blur(8px);
}

#contact.contact-section .contact-wrap {
  position: relative;
  z-index: 1;
}

#contact.contact-section .dj-label {
  margin-bottom: 20px;
  padding: 10px 18px;
  border: 1px solid rgba(88, 101, 242, 0.24);
  border-radius: 999px;
  background: rgba(9, 20, 38, 0.72);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

#contact.contact-section .dj-title {
  max-width: 820px;
  margin: 0 auto 20px;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  letter-spacing: -0.04em;
}

#contact.contact-section .dj-subtitle {
  max-width: 720px;
  margin: 0 auto 56px;
  font-size: 18px;
  color: #aebed8;
}

#contact.contact-section .contact-benefits {
  gap: 22px;
  margin-bottom: 30px;
}

#contact.contact-section .dj-benefit-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(15, 27, 48, 0.96), rgba(11, 20, 37, 0.92));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

#contact.contact-section .dj-benefit-card:hover {
  transform: translateY(-10px);
  border-color: rgba(88, 101, 242, 0.38);
  box-shadow: 0 26px 70px rgba(19, 32, 61, 0.42);
}

#contact.contact-section .dj-benefit-featured {
  transform: translateY(-10px);
  border-color: rgba(88, 101, 242, 0.42);
  background:
    linear-gradient(180deg, rgba(30, 43, 78, 0.98), rgba(12, 21, 39, 0.96));
}

#contact.contact-section .dj-featured-badge {
  top: 18px;
  left: 20px;
  transform: none;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

#contact.contact-section .dj-benefit-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.22), rgba(0, 212, 255, 0.12));
  color: #dbe4ff;
}

#contact.contact-section .dj-benefit-card h4 {
  font-size: 22px;
  margin-bottom: 12px;
}

#contact.contact-section .dj-benefit-card p {
  font-size: 15px;
  color: #9eb0c8;
}

#contact.contact-section .dj-benefit-tag {
  padding: 8px 14px;
  color: #edf3ff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.1);
}

#contact.contact-section .contact-steps-panel {
  margin-bottom: 34px;
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background: rgba(9, 18, 33, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

#contact.contact-section .dj-steps-label {
  color: #7f95b7;
  margin-bottom: 18px;
}

#contact.contact-section .dj-step {
  min-height: 104px;
  justify-content: center;
  background: rgba(13, 24, 44, 0.92);
  border-color: rgba(255, 255, 255, 0.08);
}

#contact.contact-section .dj-step-arrow {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #c9d5ea;
}

#contact.contact-section .contact-cta-block {
  max-width: 100%;
}

#contact.contact-section .contact-card-main {
  padding: 36px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(140deg, rgba(88, 101, 242, 0.2), rgba(14, 23, 38, 0.96) 42%),
    linear-gradient(180deg, rgba(11, 19, 35, 0.98), rgba(7, 14, 28, 0.98));
  box-shadow: 0 30px 80px rgba(4, 10, 20, 0.55);
}

#contact.contact-section .contact-card-main::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

#contact.contact-section .dj-discord-visual {
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#contact.contact-section .dj-server-name {
  font-size: 24px;
}

#contact.contact-section .dj-server-stats {
  gap: 10px;
  font-size: 14px;
}

#contact.contact-section .dj-promo-strip {
  justify-content: flex-start;
  gap: 12px;
  padding: 0;
  margin: 28px 0;
  background: transparent;
  border: 0;
}

#contact.contact-section .dj-promo-item {
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

#contact.contact-section .dj-promo-divider {
  display: none;
}

#contact.contact-section .dj-cta-actions {
  justify-content: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

#contact.contact-section .dj-btn-join,
#contact.contact-section .dj-btn-wa {
  min-width: 220px;
  justify-content: center;
  border-radius: 16px;
  padding: 16px 24px;
}

#contact.contact-section .dj-btn-join {
  background: linear-gradient(135deg, #6a75ff, #4b57de);
}

#contact.contact-section .dj-btn-wa {
  background: rgba(37, 211, 102, 0.14);
  color: #7effb5;
  border-color: rgba(126, 255, 181, 0.22);
}

#contact.contact-section .dj-cta-note {
  color: #92a5c2;
}

#contact.contact-section .dj-cta-note a {
  color: #ffffff;
}

@media (max-width: 1024px) {
  #contact.contact-section .contact-benefits {
    grid-template-columns: 1fr;
  }

  #contact.contact-section .dj-benefit-featured {
    transform: none;
  }

  #contact.contact-section .dj-discord-visual {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  #contact.contact-section .dj-title {
    font-size: 2.4rem;
  }

  #contact.contact-section .dj-subtitle {
    font-size: 16px;
    margin-bottom: 36px;
  }

  #contact.contact-section .contact-steps-panel,
  #contact.contact-section .contact-card-main {
    padding: 24px 20px;
  }

  #contact.contact-section .dj-discord-visual,
  #contact.contact-section .dj-cta-actions {
    align-items: stretch;
  }

  #contact.contact-section .dj-server-info {
    text-align: left;
  }

  #contact.contact-section .dj-btn-join,
  #contact.contact-section .dj-btn-wa {
    width: 100%;
    min-width: 0;
  }
}

/* Simple Contact Section */
.contact-simple {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(26, 140, 255, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(0, 212, 255, 0.14), transparent 30%),
    linear-gradient(180deg, #0a1222 0%, #0d172b 100%);
}

.contact-simple::before,
.contact-simple::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.contact-simple::before {
  top: 84px;
  left: 50%;
  width: min(1100px, calc(100% - 40px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.contact-simple::after {
  right: -80px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 140, 255, 0.16), transparent 70%);
  filter: blur(10px);
}

.contact-simple-box {
  position: relative;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(17, 29, 53, 0.98), rgba(10, 18, 34, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 32px;
  padding: 56px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.contact-simple-box::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.contact-simple-head {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.contact-simple-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(26, 140, 255, 0.14);
  border: 1px solid rgba(26, 140, 255, 0.28);
  color: var(--blue-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 10px 30px rgba(26, 140, 255, 0.12);
}

.contact-simple-head h2 {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.contact-simple-head p {
  color: #afc0d8;
  font-size: 17px;
  line-height: 1.7;
}

.contact-simple-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.contact-simple-main,
.contact-simple-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
}

.contact-simple-main {
  padding: 32px;
  background:
    radial-gradient(circle at top right, rgba(26, 140, 255, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(18, 31, 58, 0.98), rgba(11, 20, 37, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.contact-simple-info {
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-simple-info h3,
.contact-simple-card h3 {
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-simple-info p {
  color: #9cb1cf;
  font-size: 15px;
}

.contact-simple-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.contact-simple-point {
  position: relative;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: var(--transition);
}

.contact-simple-point::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  width: 36px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-light), var(--cyan));
}

.contact-simple-point:hover {
  transform: translateY(-4px);
  border-color: rgba(26, 140, 255, 0.2);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.contact-simple-point strong {
  display: block;
  color: var(--white);
  font-size: 16px;
  margin: 14px 0 6px;
}

.contact-simple-point span {
  color: #95a9c6;
  font-size: 14px;
  line-height: 1.6;
}

.contact-simple-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-simple-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 15px 22px;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: var(--transition);
}

.contact-simple-btn-primary {
  background: linear-gradient(135deg, #2a93ff, #116dff);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(26, 140, 255, 0.3);
}

.contact-simple-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(26, 140, 255, 0.36);
}

.contact-simple-btn-primary::after {
  content: "→";
  margin-left: 10px;
}

.contact-simple-btn-secondary {
  background: rgba(37, 211, 102, 0.12);
  color: #7ff2ae;
  border: 1px solid rgba(37, 211, 102, 0.22);
}

.contact-simple-btn-secondary:hover {
  background: rgba(37, 211, 102, 0.16);
  transform: translateY(-2px);
}

.contact-simple-side {
  display: grid;
  gap: 24px;
}

.contact-simple-card {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(18, 29, 50, 0.94), rgba(11, 20, 37, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.contact-simple-steps,
.contact-simple-links {
  display: grid;
  gap: 12px;
}

.contact-simple-steps {
  padding-left: 20px;
  color: var(--text);
}

.contact-simple-steps li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  line-height: 1.7;
}

.contact-simple-steps li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contact-simple-links {
  list-style: none;
}

.contact-simple-links a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--text);
  transition: var(--transition);
}

.contact-simple-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(26, 140, 255, 0.24);
  color: var(--white);
  background: rgba(26, 140, 255, 0.08);
}

@media (max-width: 1024px) {
  .contact-simple-grid {
    grid-template-columns: 1fr;
  }

  .contact-simple-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .contact-simple-box {
    padding: 32px 20px;
    border-radius: 22px;
  }

  .contact-simple-head {
    margin-bottom: 28px;
  }

  .contact-simple-head p {
    font-size: 15px;
  }

  .contact-simple-main,
  .contact-simple-card {
    padding: 22px 18px;
  }

  .contact-simple-actions {
    flex-direction: column;
  }

  .contact-simple-btn {
    width: 100%;
    min-width: 0;
  }
}

/* Order Page */
.order-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(26, 140, 255, 0.16), transparent 24%),
    linear-gradient(180deg, #09111f 0%, #0d172b 100%);
}

.order-layout {
  min-height: 100vh;
  padding: 48px 20px;
}

.order-shell {
  max-width: 1240px;
  margin: 0 auto;
}

.order-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--text-muted);
  font-size: 14px;
}

.order-back:hover {
  color: var(--white);
}

.order-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.25fr);
  gap: 24px;
}

.order-panel {
  background: rgba(12, 21, 38, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.26);
}

.order-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(26, 140, 255, 0.12);
  border: 1px solid rgba(26, 140, 255, 0.24);
  color: var(--blue-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.order-summary h1 {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 14px;
}

.order-lead {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 26px;
}

.order-service-card {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 20px;
}

.order-service-head {
  margin-bottom: 12px;
}

.order-service-cat {
  display: inline-flex;
  padding: 6px 12px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--blue-light);
  font-size: 12px;
  font-weight: 700;
}

.order-service-head h2 {
  font-family: var(--font-head);
  font-size: 28px;
  line-height: 1.2;
  color: var(--white);
}

.order-service-desc {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.order-service-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.order-service-price,
.order-service-duration {
  flex: 1 1 180px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.order-service-price span,
.order-service-duration span {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.order-service-price strong,
.order-service-duration strong {
  color: var(--white);
  font-size: 20px;
}

.order-price-box {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  padding: 20px 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(26, 140, 255, 0.14), rgba(0, 212, 255, 0.05));
  border: 1px solid rgba(26, 140, 255, 0.16);
}

.order-price-box span,
.order-price-box small {
  color: var(--text-muted);
}

.order-price-box strong {
  display: block;
  margin-top: 4px;
  color: var(--white);
  font-size: 30px;
  font-family: var(--font-head);
}

.order-form {
  display: grid;
  gap: 18px;
}

.order-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.order-field {
  display: grid;
  gap: 8px;
}

.order-field span {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

.order-field input,
.order-field select,
.order-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  outline: none;
  transition: var(--transition);
}

.order-field input::placeholder,
.order-field textarea::placeholder {
  color: #778aa7;
}

.order-field input:focus,
.order-field select:focus,
.order-field textarea:focus {
  border-color: rgba(26, 140, 255, 0.34);
  box-shadow: 0 0 0 4px rgba(26, 140, 255, 0.08);
}

.order-alert {
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.6;
}

.order-alert.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #fca5a5;
}

.order-alert.success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #86efac;
}

.order-submit {
  width: 100%;
  padding: 16px 22px;
  border-radius: 16px;
  background: linear-gradient(135deg, #2a93ff, #116dff);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 14px 34px rgba(26, 140, 255, 0.28);
  transition: var(--transition);
}

.order-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(26, 140, 255, 0.34);
}

.order-submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

.order-loading,
.order-error-box {
  color: var(--text-muted);
  line-height: 1.7;
}

.order-error-box {
  color: #fca5a5;
}

@media (max-width: 980px) {
  .order-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .order-layout {
    padding: 24px 14px;
  }

  .order-panel {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .order-field-grid {
    grid-template-columns: 1fr;
  }

  .order-price-box {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ──────────────────────────────────────
   RIPPLE & UTILITY ANIMATIONS
────────────────────────────────────── */
@keyframes ripple { to { transform: scale(2.2); opacity: 0; } }

/* ══════════════════════════════════════
   QRIS MODAL
══════════════════════════════════════ */
.qris-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.75);
  z-index: 1000;
  backdrop-filter: blur(4px);
}
.qris-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
  background: #1a1a1a;
  border: 1px solid #2e2e2e;
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  width: min(460px, 94vw);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0,0,0,.6);
  text-align: center;
}
.qris-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.qris-modal-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #f0f0f0;
  margin: 0;
}
.qris-close {
  background: none; border: none;
  color: #888; font-size: 1.1rem;
  cursor: pointer; padding: .25rem .5rem;
  border-radius: .4rem;
  transition: color .2s, background .2s;
}
.qris-close:hover { color: #f0f0f0; background: #2e2e2e; }

.qris-order-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #111;
  border-radius: .75rem;
  padding: .75rem 1rem;
  font-size: .875rem;
  color: #aaa;
  margin-bottom: 1.25rem;
}
.qris-amount {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #e8c14e;
}

.qris-box {
  background: #fff;
  border-radius: .875rem;
  padding: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  min-width: 240px; min-height: 240px;
}
.qris-img {
  width: 220px; height: 220px;
  object-fit: contain;
  display: block;
}

.qris-instruction {
  font-size: .85rem;
  color: #888;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.qris-instruction strong { color: #ccc; }

.qris-timer {
  font-size: .825rem;
  color: #666;
  margin-bottom: 1.25rem;
}
.qris-timer strong { color: #aaa; }

.qris-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-size: .9rem;
  color: #aaa;
  margin-bottom: 1.25rem;
  min-height: 2rem;
}
.qris-spinner {
  width: 18px; height: 18px;
  border: 2px solid #2e2e2e;
  border-top-color: #e8c14e;
  border-radius: 50%;
  animation: spin .9s linear infinite;
  flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

.qris-check-btn {
  width: 100%;
  padding: .75rem;
  background: transparent;
  border: 1px solid #2e2e2e;
  border-radius: .75rem;
  color: #aaa;
  font-size: .875rem;
  cursor: pointer;
  transition: color .2s, border-color .2s;
}
.qris-check-btn:hover { color: #f0f0f0; border-color: #555; }

@media (max-width: 480px) {
  .qris-modal { padding: 1.5rem 1.25rem; }
  .qris-box   { min-width: 200px; min-height: 200px; }
  .qris-img   { width: 190px; height: 190px; }
}
