:root {
  --bg-main: #06080F;
  --bg-secondary: #0A0D17;
  --bg-glass: rgba(16, 20, 36, 0.6);
  --border-glass: rgba(255, 255, 255, 0.05);
  --accent-cyan: #00E5FF;
  --accent-violet: #B400FF;
  --text-main: #E2E8F0;
  --text-muted: #94A3B8;
  --success: #10B981;
  --error: #EF4444;
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6, .brand, .plan-name, .plan-price, .act-tab-btn {
  font-family: 'Orbitron', sans-serif;
  letter-spacing: 0.5px;
}

a {
  text-decoration: none;
  color: inherit;
}

.text-gradient {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Background Animations */
.bg-elements {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.blob {
  position: absolute;
  filter: blur(100px);
  opacity: 0.4;
  border-radius: 50%;
  animation: float 20s infinite alternate ease-in-out;
}
.blob-1 {
  width: 400px; height: 400px;
  background: var(--accent-violet);
  top: -100px; left: -100px;
}
.blob-2 {
  width: 300px; height: 300px;
  background: var(--accent-cyan);
  bottom: 20%; right: -50px;
  animation-delay: -5s;
}
.blob-3 {
  width: 500px; height: 500px;
  background: rgba(0, 102, 255, 0.2);
  top: 40%; left: 30%;
  animation-delay: -10s;
}
@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 30px) scale(1.1); }
  100% { transform: translate(-30px, 50px) scale(0.9); }
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  background: rgba(6, 8, 15, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glass);
  z-index: 100;
  padding: 1rem 0;
}
.nav-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  gap: 4.5rem;
  flex-wrap: nowrap;
}
.brand {
  font-size: 1.35rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
  flex-shrink: 0;
}
.brand span {
  color: var(--accent-cyan);
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.6rem;
  flex-shrink: 0;
  flex-wrap: nowrap;
}
.nav-menu a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.nav-menu a:hover {
  color: var(--text-main);
}
.nav-menu a.active {
  color: var(--accent-cyan);
}
.btn-discord {
  padding: 0.5rem 1.1rem;
  background: rgba(88, 101, 242, 0.1);
  border: 1px solid #5865F2;
  color: #5865F2;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn-discord:hover {
  background: #5865F2;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(88, 101, 242, 0.4);
}

/* ===== NAVBAR MOBILE HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  position: relative;
  z-index: 110;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.contact-dropdown-container {
  position: relative;
  display: inline-block;
}

.btn-contact {
  padding: 0.5rem 1.1rem;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-contact:hover {
  background: var(--accent-cyan);
  color: #06080F;
  border-color: var(--accent-cyan);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 229, 255, 0.4);
}

.contact-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.75rem;
  background: rgba(10, 13, 23, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: 12px;
  padding: 1.2rem 1rem;
  width: 260px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.5), 0 0 20px rgba(0, 229, 255, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1000;
  text-align: center;
}

.contact-dropdown-container:hover .contact-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.contact-dropdown::before {
  content: '';
  position: absolute;
  bottom: 100%;
  right: 25px;
  border-width: 8px;
  border-style: solid;
  border-color: transparent transparent rgba(0, 229, 255, 0.25) transparent;
}

.contact-dropdown-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact-dropdown-email {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  color: var(--accent-cyan);
  margin-bottom: 0.6rem;
  font-weight: 600;
  padding: 0.4rem;
  background: rgba(0, 229, 255, 0.05);
  border-radius: 6px;
  border: 1px dashed rgba(0, 229, 255, 0.2);
  transition: all 0.2s ease;
  word-break: break-all;
}

.contact-dropdown-email:hover {
  background: rgba(0, 229, 255, 0.1);
  border-color: var(--accent-cyan);
}

.contact-dropdown-hint {
  font-size: 0.7rem;
  color: var(--text-muted);
}

@media (max-width: 1200px) {
  .nav-container {
    justify-content: space-between !important;
    gap: 1rem !important;
  }
  .nav-actions {
    gap: 0.35rem !important;
  }
  .btn-discord, .btn-contact {
    padding: 0.5rem 0.85rem !important;
    font-size: 0.8rem !important;
  }
  .contact-dropdown {
    display: none; /* No hover dropdown on mobile screen bounds */
  }
}

/* Hero Section */
.hero-section {
  padding: 8.5rem 0 4rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Hero Banner Left */
.hero-banner-left {
  display: none; /* Hidden by default, shown via media query on large screens */
  max-width: 260px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(0, 229, 255, 0.35);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.12);
  transition: all 0.3s ease;
  cursor: pointer;
}
.hero-banner-left:hover {
  transform: translateY(-4px) scale(1.02) !important;
  border-color: rgba(0, 229, 255, 0.6);
  box-shadow: 0 0 35px rgba(0, 229, 255, 0.25);
}
.hero-banner-left img {
  width: 100%;
  display: block;
  height: auto;
}

/* Absolute positioning relative to container on large screens */
@media (min-width: 1500px) {
  .hero-container {
    position: relative;
  }
  .hero-banner-left {
    display: block;
    position: absolute;
    /* Keep the brochure in the free space at the left edge of the viewport. */
    left: calc((100vw - 100%) / -2 + 1.5rem);
    right: auto;
    margin-right: 0;
    top: 0;
    transform: none;
    z-index: 10;
  }
}
@media (max-width: 1499px) {
  .hero-banner-left {
    display: none !important;
  }
}
.tagline {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--accent-cyan);
}
.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.hero-stats {
  display: flex;
  gap: 2rem;
}
.stat {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.stat span {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-main);
}
.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.hero-pill {
  border: 1px solid rgba(0, 229, 255, 0.24);
  background: rgba(0, 229, 255, 0.08);
  color: var(--text-main);
  font-family: inherit;
  font-weight: 700;
  border-radius: 10px;
  padding: 0.85rem 1.1rem;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.hero-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 229, 255, 0.5);
  background: rgba(0, 229, 255, 0.14);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
.page-section {
  display: block;
}
.page-section:not(.hero-section) {
  min-height: 100vh;
  padding-top: 8.5rem;
}

/* Chatbot / Activation Glass */
.hero-activation {
  position: relative;
}
.hero-activation::before {
  content: "";
  position: absolute;
  top: -20px; left: -20px; right: -20px; bottom: -20px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet));
  filter: blur(40px);
  opacity: 0.15;
  border-radius: 24px;
  z-index: 0;
}
.activation-glass {
  position: relative;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 1.5rem;
  z-index: 1;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.act-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.pulse-dot {
  width: 12px; height: 12px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--success);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.act-title {
  font-size: 1.1rem;
  font-weight: 600;
}
.act-subtitle {
  font-size: 0.8rem;
  color: var(--success);
}

/* Activation Tabs Custom Styling */
.act-tabs {
  display: flex;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.8rem;
  margin-bottom: 1.5rem;
}
.act-tab-btn {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  flex-shrink: 0;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ESN Aktivasyon Tab Specifics */
.act-tab-btn[data-act-tab="esn"] {
  border-color: rgba(0, 229, 255, 0.1);
}
.act-tab-btn[data-act-tab="esn"]:hover {
  color: var(--accent-cyan);
  background: rgba(0, 229, 255, 0.03);
  border-color: rgba(0, 229, 255, 0.25);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.05);
}
.act-tab-btn[data-act-tab="esn"].active {
  color: #fff;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(180, 0, 255, 0.1));
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.25);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

/* HWID Tab Specifics (Red accented & eye-catching) */
.act-tab-btn[data-act-tab="hwid"] {
  border-color: rgba(239, 68, 68, 0.1);
}
.act-tab-btn[data-act-tab="hwid"]:hover {
  color: #ff6b6b;
  background: rgba(239, 68, 68, 0.04);
  border-color: rgba(239, 68, 68, 0.3);
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.08);
}
.act-tab-btn[data-act-tab="hwid"].active {
  color: #fff;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(150, 0, 0, 0.15));
  border-color: #ef4444;
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.35);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}
.act-tab-content {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}
.act-tab-content.active {
  display: block;
}
.hwid-warning-box {
  margin-top: 1rem;
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 10px;
  padding: 0.8rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}
.hwid-warning-box strong {
  color: var(--error);
}

.act-messages {
  height: 250px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-right: 0.5rem;
}
.act-messages::-webkit-scrollbar {
  width: 6px;
}
.act-messages::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
}
.msg {
  display: flex;
  gap: 0.8rem;
  align-items: flex-end;
}
.msg-avatar {
  font-size: 1.5rem;
}
.msg-bubble {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-glass);
  padding: 1rem;
  border-radius: 12px 12px 12px 2px;
  font-size: 0.95rem;
  max-width: 85%;
}
.user-msg {
  flex-direction: row-reverse;
}
.user-msg .msg-bubble {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(180, 0, 255, 0.1));
  border-color: rgba(0, 229, 255, 0.2);
  border-radius: 12px 12px 2px 12px;
}
.act-input-area {
  display: flex;
  gap: 0.8rem;
}
#chatInput {
  flex: 1;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  padding: 0 1.2rem;
  color: #fff;
  font-family: inherit;
  outline: none;
  transition: all 0.3s;
}
#chatInput:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.15);
}
#chatInput::placeholder {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.88rem;
}

#hwidInput {
  flex: 1;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  padding: 0 1.2rem;
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  outline: none;
  transition: all 0.3s;
}
#hwidInput:focus {
  border-color: #ef4444;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.2);
}
#hwidInput::placeholder {
  color: rgba(255, 255, 255, 0.45);
  font-family: sans-serif;
  font-size: 0.85rem;
}
#sendBtn {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet));
  border: none;
  width: 48px; height: 48px;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
#sendBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 229, 255, 0.3);
}
#sendBtn svg {
  width: 20px; height: 20px;
}

#hwidSendBtn {
  background: linear-gradient(135deg, #ef4444, #960000);
  border: none;
  width: 48px; height: 48px;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
#hwidSendBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(239, 68, 68, 0.35);
}
#hwidSendBtn svg {
  width: 20px; height: 20px;
}

/* Sections Global */
.section-head {
  margin-bottom: 3rem;
}
.section-head h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.section-head p {
  color: var(--text-muted);
  font-size: 1.1rem;
}
.text-center {
  text-align: center;
}

/* Tabs Section */
.info-section {
  padding-bottom: 5rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}
.tabs-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 2rem;
}
.tabs-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-right: 1px solid var(--border-glass);
  padding-right: 2rem;
}
.tab-btn {
  background: transparent;
  border: none;
  text-align: left;
  padding: 1rem 1.5rem;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s;
}
.tab-btn:hover {
  background: rgba(255,255,255,0.02);
  color: var(--text-main);
}
.tab-btn.active {
  background: rgba(0, 229, 255, 0.1);
  color: var(--accent-cyan);
  border-left: 3px solid var(--accent-cyan);
}
.tabs-content {
  padding: 1rem 0;
}
.tab-pane {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}
.tab-pane.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.tab-pane h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text-main);
}
.tab-pane p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.styled-list {
  list-style: none;
}
.styled-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 1rem;
  color: var(--text-muted);
}
.styled-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-weight: bold;
}
.btn-outline {
  display: inline-block;
  padding: 0.8rem 2rem;
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  color: var(--text-main);
  transition: all 0.3s;
}
.btn-outline:hover {
  border-color: var(--accent-cyan);
  background: rgba(0,229,255,0.05);
}

/* Features Grid */
.features-section {
  padding-bottom: 5rem;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.f-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.f-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255,255,255,0.1);
}
.f-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}
.f-card h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.f-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Pricing Grid */
.pricing-section {
  padding-bottom: 6rem;
  background: var(--bg-secondary);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
}
.price-card {
  background: var(--bg-main);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  transition: transform 0.3s;
}
.price-card:hover {
  transform: translateY(-10px);
}
.price-card.popular {
  border: 2px solid var(--accent-violet) !important;
  background: var(--bg-secondary) !important;
  box-shadow: 0 15px 30px rgba(180, 0, 255, 0.15) !important;
  padding: 4rem 2rem;
  overflow: visible !important;
}
.popular-badge {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet));
  color: #06080f !important;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.2);
}
.plan-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.plan-price {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 2rem;
}
.plan-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}
.plan-features {
  list-style: none;
  margin-bottom: 2.5rem;
}
.plan-features li {
  margin-bottom: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.btn-buy {
  display: block;
  padding: 1rem;
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: center;
}
.btn-buy:hover {
  background: rgba(0, 229, 255, 0.08);
  border-color: var(--accent-cyan);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 229, 255, 0.15);
}
.btn-buy.glow {
  background: var(--text-main);
  color: var(--bg-main);
  border: none;
}
.btn-buy.glow:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255,255,255,0.25), 0 0 20px rgba(0, 229, 255, 0.2);
}

/* ==========================================================================
   FOOTER — Yeniden Tasarım
   ========================================================================== */
footer {
  background: #020408;
  padding: 0;
  border-top: none;
  position: relative;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), var(--accent-violet), transparent);
  opacity: 0.4;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 4rem;
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-col-brand {
  padding-right: 1rem;
}

.footer-logo {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  color: var(--text-main);
  text-decoration: none;
}
.footer-logo span {
  color: var(--accent-cyan);
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.footer-nav {
  list-style: none !important;
  list-style-type: none !important;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0 !important;
  margin: 0 !important;
}
.footer-nav li {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.footer-nav li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  transition: all 0.25s ease;
  position: relative;
  padding-left: 14px;
  text-decoration: none;
  display: inline-block;
}
.footer-nav li a::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.25s ease;
  font-size: 0.75rem;
}
.footer-nav li a:hover {
  color: var(--text-main);
  transform: translateX(4px);
}
.footer-nav li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 280px;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0.8rem 1.4rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid transparent;
  width: 100%;
  box-sizing: border-box;
}
.footer-social-btn span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer-social-discord {
  background: rgba(88, 101, 242, 0.1);
  border-color: rgba(88, 101, 242, 0.3);
  color: #a0a8f8;
}
.footer-social-discord:hover {
  background: rgba(88, 101, 242, 0.22);
  border-color: #5865F2;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(88, 101, 242, 0.25);
}

.footer-social-email {
  background: rgba(0, 229, 255, 0.05);
  border-color: rgba(0, 229, 255, 0.2);
  color: rgba(0,229,255,0.75);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
}
.footer-social-email:hover {
  background: rgba(0, 229, 255, 0.1);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 229, 255, 0.15);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

.footer-bottom-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: flex-start;
}

.footer-disclaimer {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.2);
}

.footer-online-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 255, 136, 0.05);
  border: 1px solid rgba(34, 255, 136, 0.15);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(34, 255, 136, 0.85);
  box-shadow: 0 0 10px rgba(34, 255, 136, 0.05);
  white-space: nowrap;
}

.online-dot {
  width: 8px;
  height: 8px;
  background-color: #22ff88;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #22ff88;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 255, 136, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(34, 255, 136, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 255, 136, 0);
  }
}

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer-col-brand {
    grid-column: span 2;
    padding-right: 0;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    align-items: center;
  }
  .footer-bottom-info {
    align-items: center;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0 2rem;
  }
  .footer-col-brand {
    grid-column: span 1;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    align-items: center;
  }
  .footer-bottom-info {
    align-items: center;
    text-align: center;
  }
}

/* Chat Output Formatting */
.license-reveal {
  margin-top: 1rem;
  background: rgba(0,0,0,0.5);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(0, 229, 255, 0.3);
  text-align: center;
}
.license-key-display {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.2rem;
  color: var(--accent-cyan);
  margin-bottom: 0.8rem;
  letter-spacing: 2px;
}
.copy-btn {
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.3s;
}
.copy-btn:hover {
  background: rgba(255,255,255,0.2);
}

/* Responsive */
@media(max-width: 992px) {
  .hero-container, .tabs-container {
    grid-template-columns: 1fr;
  }
  .tabs-nav {
    border-right: none;
    border-bottom: 1px solid var(--border-glass);
    padding-right: 0;
    padding-bottom: 0.75rem;
    flex-direction: row;
    overflow-x: auto;
    gap: 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .tabs-nav::-webkit-scrollbar {
    display: none;
  }
  .tab-btn {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    border-left: none !important;
    border-bottom: 3px solid transparent;
    border-radius: 8px 8px 0 0;
    text-align: center;
  }
  .tab-btn.active {
    background: rgba(0, 229, 255, 0.08);
    border-bottom: 3px solid var(--accent-cyan);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .footer-copy {
    text-align: center;
  }
}
@media(max-width: 1200px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hamburger {
    display: flex;
  }
  .nav-menu {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 20, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 0 1.5rem;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(0, 229, 255, 0.15);
    z-index: 1000;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                opacity 0.3s ease, 
                padding 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
  }
  .nav-menu.open {
    max-height: 450px;
    opacity: 1;
    padding: 1rem 1.5rem 1.5rem;
    pointer-events: auto;
  }
  .nav-menu li a {
    display: block;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  
  /* ===== DISCORD TESTIMONIAL CARDS ===== */
  .discord-message {
    transition: all 0.3s ease;
  }
  .discord-message:hover {
    transform: translateY(-4px);
    border-color: rgba(88, 101, 242, 0.35) !important;
    box-shadow: 0 12px 30px rgba(0,0,0,0.4), 0 0 20px rgba(88, 101, 242, 0.15) !important;
  }
  .hero-section {
    padding-top: 7rem;
  }
  .page-section:not(.hero-section) {
    padding-top: 7rem;
  }
  .hero-stats {
    gap: 1rem;
    flex-wrap: wrap;
  }
}

/* ==========================================================================
   Video Rehberler Section
   ========================================================================== */
.videos-section {
  padding-bottom: 5rem;
  background: var(--bg-main);
  border-top: 1px solid var(--border-glass);
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}
@media(max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.video-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.video-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 229, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 229, 255, 0.1);
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-info {
  padding: 2rem;
}
.video-info h4 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.video-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   Ekran Görüntüleri (Gallery) Section
   ========================================================================== */
.gallery-section {
  padding-bottom: 5rem;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.gallery-item {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover {
  transform: translateY(-5px);
  border-color: rgba(180, 0, 255, 0.25);
  box-shadow: 0 15px 30px rgba(180, 0, 255, 0.1);
}
.gallery-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
}
.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover .gallery-img-wrapper img {
  transform: scale(1.05);
}
.gallery-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(6, 8, 15, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.zoom-icon {
  font-size: 2rem;
  color: var(--accent-cyan);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.3);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
  transition: transform 0.3s ease;
}
.gallery-item:hover .zoom-icon {
  transform: scale(1.1);
}
.gallery-info {
  padding: 1.2rem;
}
.gallery-info h5 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--text-main);
}
.gallery-info p {
  font-size: 0.85rem;
  color: var(--accent-cyan);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   Lightbox Modal
   ========================================================================== */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 5rem;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(3, 4, 8, 0.95);
  backdrop-filter: blur(15px);
}
.lightbox-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 1000px;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid var(--border-glass);
  box-shadow: 0 20px 50px rgba(0,0,0,0.8), 0 0 40px rgba(0, 229, 255, 0.15);
  animation: zoomIn 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@keyframes zoomIn {
  from {transform: scale(0.9); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}
.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  color: var(--text-muted);
  font-size: 2.5rem;
  font-weight: 300;
  transition: color 0.3s, transform 0.2s;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-glass);
}
.lightbox-close:hover {
  color: var(--text-main);
  transform: rotate(90deg);
  background: rgba(255,255,255,0.08);
}
.lightbox-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 1000px;
  text-align: center;
  color: var(--text-main);
  padding: 1.5rem 0;
  font-size: 1.1rem;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  animation: fadeIn 0.4s ease;
}

/* ==========================================================================
   Footer Links & Legal Modal Styles
   ========================================================================== */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-links h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--accent-cyan);
}

.legal-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(3, 4, 8, 0.8);
  backdrop-filter: blur(15px);
  padding: 4rem 1rem;
  align-items: center;
  justify-content: center;
}
.legal-modal-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  width: 100%;
  max-width: 750px;
  padding: 3rem;
  border-radius: 24px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 50px rgba(0, 229, 255, 0.1);
  animation: slideUp 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin: auto;
}
@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.legal-modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--text-muted);
  font-size: 2rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-glass);
  transition: all 0.3s ease;
}
.legal-modal-close:hover {
  color: var(--text-main);
  transform: rotate(90deg);
  background: rgba(255,255,255,0.08);
}
.legal-modal-body {
  margin-top: 1.5rem;
  max-height: 55vh;
  overflow-y: auto;
  padding-right: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
}
.legal-modal-body::-webkit-scrollbar {
  width: 6px;
}
.legal-modal-body::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.08);
  border-radius: 3px;
}
.legal-modal-body h3 {
  color: var(--text-main);
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}
.legal-modal-body p {
  margin-bottom: 1.2rem;
}
.legal-modal-body strong {
  color: var(--text-main);
}

/* ================================================================
   EXELANS MACRO — UPGRADE PACK v1.0
   Particle canvas, scroll reveals, 3D tilt, typewriter, progress
   ================================================================ */

/* === SCROLL PROGRESS BAR === */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-violet));
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px rgba(0,229,255,0.6);
}

/* === PARTICLE CANVAS === */
#particle-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
}

/* === SCAN-LINE OVERLAY === */
body::after {
  content: "";
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.03) 2px,
    rgba(0,0,0,0.03) 4px
  );
  pointer-events: none;
  z-index: 0;
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* === 3D TILT === */
.tilt-card {
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
  transition: transform 0.1s ease;
  will-change: transform;
}
.tilt-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.5) !important;
  border-color: rgba(0,229,255,0.25) !important;
}

/* === TYPEWRITER CURSOR === */
.typewriter-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: var(--accent-cyan);
  margin-left: 4px;
  vertical-align: text-bottom;
  animation: blink-cursor 0.7s step-end infinite;
  box-shadow: 0 0 8px var(--accent-cyan);
  border-radius: 1px;
}
@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* === GLITCH BRAND === */
.brand-glitch {
  position: relative;
  display: inline-block;
}
.brand-glitch::before,
.brand-glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}
.brand-glitch::before {
  color: var(--accent-cyan);
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
  animation: glitch-top 3s steps(2) infinite;
  opacity: 0;
}
.brand-glitch::after {
  color: var(--accent-violet);
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
  animation: glitch-bot 3s steps(2) infinite;
  opacity: 0;
}
.brand:hover .brand-glitch::before,
.brand:hover .brand-glitch::after {
  opacity: 1;
}
@keyframes glitch-top {
  0%,90%,100% { transform: translate(0); }
  92% { transform: translate(-3px, -2px); }
  94% { transform: translate(3px, 2px); }
  96% { transform: translate(-2px, 0); }
}
@keyframes glitch-bot {
  0%,90%,100% { transform: translate(0); }
  92% { transform: translate(3px, 2px); }
  94% { transform: translate(-3px, -2px); }
  96% { transform: translate(2px, 0); }
}

/* === FEATURE CARD GLOW ON HOVER === */
.f-card {
  position: relative;
  overflow: hidden;
}
.f-card::before {
  content: "";
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(0,229,255,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.f-card:hover::before {
  opacity: 1;
}

/* === STAT COUNTER GLOW === */
.stat span {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px rgba(0,229,255,0.4));
}

/* === PRICE CARD SHINE === */
.price-card {
  overflow: hidden;
}
.price-card::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 60%;
  height: 300%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.04) 50%, transparent 60%);
  transition: transform 0.6s ease;
  transform: translateX(-100%);
}
.price-card:hover::after {
  transform: translateX(400%);
}

/* === NAVBAR ACTIVE UNDERLINE ANIMATION === */
.nav-menu a {
  position: relative;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent-cyan);
  transition: width 0.3s ease;
  box-shadow: 0 0 8px var(--accent-cyan);
}
.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

/* === CORNER BRACKET EFFECT for activation glass === */
.activation-glass {
  position: relative;
}
.activation-glass::after {
  content: "";
  position: absolute;
  bottom: 16px; right: 16px;
  width: 20px; height: 20px;
  border-bottom: 2px solid rgba(0,229,255,0.3);
  border-right: 2px solid rgba(0,229,255,0.3);
  transition: all 0.3s ease;
}
.activation-glass:hover::after {
  width: 30px; height: 30px;
  border-color: rgba(0,229,255,0.6);
}

/* === HERO SECTION FLOATING GRID === */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0,229,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, transparent 10%, black 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, transparent 10%, black 70%);
}
.hero-section {
  position: relative;
}

/* === TOAST NOTIFICATION === */
#toast {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: rgba(16,20,36,0.95);
  border: 1px solid var(--accent-cyan);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  color: var(--text-main);
  font-size: 0.9rem;
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.165,0.84,0.44,1);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(0,229,255,0.1);
  display: flex;
  align-items: center;
  gap: 10px;
}
#toast.show {
  transform: translateY(0);
  opacity: 1;
}
#toast .toast-icon {
  font-size: 1.2rem;
}

/* === STATS COUNTER RING === */
.stat {
  position: relative;
  padding-left: 1rem;
}
.stat::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 70%;
  background: linear-gradient(180deg, var(--accent-cyan), var(--accent-violet));
  border-radius: 2px;
  opacity: 0.5;
}

/* === SECTION HEADER ACCENT === */
.section-head h2 {
  position: relative;
  display: inline-block;
}

/* === ELEGANT STATIC BORDER for popular plan === */
.price-card.popular {
  position: relative;
  border: 2px solid var(--accent-violet);
  box-shadow: 0 20px 40px rgba(180, 0, 255, 0.12), 0 0 25px rgba(0, 229, 255, 0.04);
}

/* === CURSOR GLOW === */
#cursor-glow {
  position: fixed;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,255,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

/* === FOOTER CONTACT SECTION === */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-contact h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}
.footer-discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.7rem 1.4rem;
  background: rgba(88, 101, 242, 0.12);
  border: 1px solid #5865F2;
  color: #a0a8f8;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.footer-discord-btn:hover {
  background: #5865F2;
  color: #fff;
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.4);
  transform: translateY(-2px);
}
.footer-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.7rem 1.4rem;
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid rgba(0, 229, 255, 0.3);
  color: var(--accent-cyan);
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.85rem;
  font-family: 'JetBrains Mono', monospace;
  transition: all 0.3s ease;
  text-decoration: none;
}
.footer-email-btn:hover {
  background: rgba(0, 229, 255, 0.12);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
  transform: translateY(-2px);
}

/* Update footer-content grid for 4 columns */
.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 3rem;
  align-items: start;
}
.footer-copy {
  text-align: right;
  color: var(--text-muted);
  font-size: 0.85rem;
}
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  .footer-copy {
    text-align: left;
  }
}
@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* === GENERAL MOBILE CONTAINER PADDING === */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem !important;
  }
  .hero-stats {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  .stat {
    padding-left: 1rem !important;
  }
}

/* ==========================================================================
   TOAST NOTIFICATION SYSTEM
   ========================================================================== */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: rgba(10, 13, 23, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 229, 255, 0.1);
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 9999;
  max-width: 340px;
  pointer-events: none;
}
.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}
.toast-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}
@media (max-width: 480px) {
  .toast-notification {
    right: 1rem;
    left: 1rem;
    max-width: none;
    bottom: 1rem;
  }
}

/* ==========================================================================
   SCROLL PROGRESS BAR
   ========================================================================== */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-violet));
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px var(--accent-cyan);
}

/* ==========================================================================
   CURSOR GLOW
   ========================================================================== */
#cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: left 0.08s ease, top 0.08s ease;
}

/* ==========================================================================
   TYPEWRITER CURSOR
   ========================================================================== */
.typewriter-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: var(--accent-cyan);
  margin-left: 3px;
  vertical-align: middle;
  animation: blink 1s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ==========================================================================
   REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ==========================================================================
   TILT CARD
   ========================================================================== */
.tilt-card {
  transition: transform 0.15s ease;
  will-change: transform;
}

/* ==========================================================================
   BRAND GLITCH EFFECT
   ========================================================================== */
.brand-glitch {
  position: relative;
}
.brand-glitch::before {
  content: attr(data-text);
  position: absolute;
  left: 2px;
  top: 0;
  color: var(--accent-cyan);
  opacity: 0;
  clip-path: polygon(0 30%, 100% 30%, 100% 50%, 0 50%);
  animation: glitch 4s infinite;
}
@keyframes glitch {
  0%, 90%, 100% { opacity: 0; transform: translateX(0); }
  92% { opacity: 0.8; transform: translateX(-2px); }
  94% { opacity: 0.8; transform: translateX(2px); }
  96% { opacity: 0; }
}

/* ==========================================================================
   HERO RESPONSIVE — 2-col grid → 1-col on mobile
   ========================================================================== */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
    text-align: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .update-notes-container {
    grid-column: span 1 !important;
  }
  .hero-activation {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   PLAN FEATURES CHECKMARKS STYLING
   ========================================================================== */
.plan-features li {
  transition: color 0.2s;
}
.plan-features li:hover {
  color: var(--text-main);
}

/* ==========================================================================
   SOCIAL PROOF BAR — enhanced
   ========================================================================== */
.social-proof-bar strong {
  color: #22ff88;
  font-variant-numeric: tabular-nums;
}

/* ==========================================================================
   MATRIX CODE TERMINAL BACKGROUND
   ========================================================================== */
#code-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.95rem;
  color: rgba(0, 229, 255, 0.12); /* beautifully visible cyan */
  white-space: pre-wrap;
  overflow: hidden;
  pointer-events: none;
  line-height: 1.8;
  padding: 2rem;
  user-select: none;
  text-align: center;
  animation: code-scroll 160s linear infinite;
}
@keyframes code-scroll {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

/* Accessibility Focus Visible */
*:focus-visible {
  outline: 3px solid var(--accent-cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Screen Reader Only Utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Contrast enhancement for text-muted */
.text-muted {
  color: #a8b2c1;
}

/* Reduced Motion Settings */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: scroll !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
  #code-bg {
    animation: none !important;
  }
}

/* Testimonials Hover Styling */
.testimonial-card:hover {
  border-color: rgba(0, 229, 255, 0.25) !important;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 229, 255, 0.05) !important;
}

/* Blog Hover Styling */
.blog-card:hover {
  border-color: rgba(0, 229, 255, 0.25) !important;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 229, 255, 0.05) !important;
}
.blog-toggle-btn:hover {
  background: var(--accent-cyan) !important;
  color: #06080f !important;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.4);
}
