/* =============================================
   EreNet Cloud — Ana Stil Dosyası
   Tasarım: Koyu Fütüristik / Cyber Tech
   ============================================= */

:root {
  --bg:        #040b18;
  --bg2:       #070f1e;
  --bg3:       #0b1628;
  --glass:     rgba(14, 28, 52, 0.65);
  --glass2:    rgba(0, 212, 255, 0.06);
  --border:    rgba(0, 212, 255, 0.15);
  --border2:   rgba(0, 212, 255, 0.35);
  --cyan:      #00d4ff;
  --cyan2:     #00a3cc;
  --purple:    #7c3aed;
  --purple2:   #9d5cf6;
  --green:     #00e676;
  --orange:    #ff9100;
  --red:       #ff3d57;
  --text:      #e2eaf5;
  --text2:     #7a9bbf;
  --text3:     #3d5a7a;
  --white:     #ffffff;
  --radius:    14px;
  --radius-sm: 8px;
  --shadow:    0 8px 40px rgba(0, 212, 255, 0.12);
  --shadow2:   0 20px 60px rgba(0, 0, 0, 0.6);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-head:  'Syne', sans-serif;
  --font-body:  'DM Sans', sans-serif;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}
a { color: var(--cyan); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--white); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ─── CANVAS BG ─── */
#bgCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ─── LAYOUT ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
section { padding: 100px 0; position: relative; z-index: 1; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5 { font-family: var(--font-head); line-height: 1.15; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--glass2);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.section-title span { color: var(--cyan); }
.section-sub {
  font-size: 1.05rem;
  color: var(--text2);
  max-width: 580px;
  margin-bottom: 60px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}
.btn--primary {
  background: linear-gradient(135deg, var(--cyan), var(--cyan2));
  color: var(--bg);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5);
  color: var(--bg);
}
.btn--outline {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--border2);
}
.btn--outline:hover {
  background: var(--glass2);
  color: var(--white);
  border-color: var(--cyan);
}
.btn--ghost {
  background: var(--glass);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover { background: var(--glass2); color: var(--white); border-color: var(--border2); }
.btn--discord {
  background: #5865F2;
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.btn--discord:hover { background: #4752c4; color: #fff; transform: translateY(-1px); }
.btn--lg { padding: 16px 36px; font-size: 1rem; }

/* ─── FLASH ─── */
.flash {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  max-width: 400px;
  animation: slideIn 0.4s ease;
}
.flash--success { background: rgba(0, 230, 118, 0.15); border: 1px solid var(--green); color: var(--green); }
.flash--error   { background: rgba(255, 61, 87, 0.15);  border: 1px solid var(--red);   color: var(--red);   }
.flash__close   { background: none; border: none; color: inherit; margin-left: auto; opacity: 0.7; }
.flash__close:hover { opacity: 1; }
@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: none; } }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(4, 11, 24, 0.92);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  padding: 12px 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  gap: 32px;
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--white);
  white-space: nowrap;
}
.navbar__logo strong { color: var(--cyan); }
.navbar__logo em { color: var(--text2); font-style: normal; font-size: 0.85em; }
.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--bg);
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.navbar__links > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--text2);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
}
.navbar__links > li > a:hover,
.navbar__links > li > a.active {
  color: var(--white);
  background: var(--glass2);
}
.navbar__links > li > a .fa-chevron-down { font-size: 0.7rem; transition: transform var(--transition); }
.has-dropdown { position: relative; }
.has-dropdown:hover > a .fa-chevron-down { transform: rotate(180deg); }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(7, 15, 30, 0.98);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow2);
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown li a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--text2);
  font-size: 0.88rem;
  transition: all var(--transition);
}
.dropdown li a:hover { color: var(--white); background: var(--glass2); }
.dropdown li a i { color: var(--cyan); width: 16px; text-align: center; }
.navbar__actions { display: flex; align-items: center; gap: 12px; }
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  padding: 6px;
}
.navbar__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.hero__content { max-width: 680px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--glass2);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero__eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(0, 230, 118, 0); }
}
.hero__title {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero__title .line2 { color: var(--cyan); display: block; }
.hero__title .line3 { color: var(--text2); font-size: 0.6em; font-weight: 400; display: block; }
.hero__desc {
  font-size: 1.1rem;
  color: var(--text2);
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero__actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero__stats {
  display: flex; gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero__stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--cyan);
}
.hero__stat-label { font-size: 0.8rem; color: var(--text2); }

/* ─── GLASS CARD ─── */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  backdrop-filter: blur(12px);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.glass-card:hover::before { opacity: 1; }
.glass-card:hover {
  border-color: var(--border2);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  background: var(--glass2);
  border: 1px solid var(--border);
}
.card-icon.cyan   { color: var(--cyan);   background: rgba(0,212,255,0.1);  border-color: rgba(0,212,255,0.2); }
.card-icon.purple { color: var(--purple2); background: rgba(124,58,237,0.1); border-color: rgba(124,58,237,0.2); }
.card-icon.green  { color: var(--green);  background: rgba(0,230,118,0.1);  border-color: rgba(0,230,118,0.2); }
.card-icon.orange { color: var(--orange); background: rgba(255,145,0,0.1);  border-color: rgba(255,145,0,0.2); }

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
}
.service-card p { font-size: 0.9rem; color: var(--text2); }
.service-card .btn { margin-top: 20px; }

/* ─── PRICING ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.pricing-card.featured {
  border-color: var(--cyan);
  background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(7,15,30,0.9));
  box-shadow: 0 0 40px rgba(0,212,255,0.15);
}
.pricing-badge {
  position: absolute;
  top: 18px; right: 18px;
  background: var(--cyan);
  color: var(--bg);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pricing-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text2);
  margin-bottom: 6px;
}
.pricing-price {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1;
}
.pricing-price sub { font-size: 1rem; color: var(--text2); font-weight: 400; }
.pricing-period { font-size: 0.8rem; color: var(--text3); margin-bottom: 28px; }
.pricing-features {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  margin-bottom: 28px;
}
.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text2);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.pricing-features li i.fa-check { color: var(--green); }
.pricing-features li i.fa-xmark { color: var(--text3); }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--border2); }
.pricing-card.featured:hover { border-color: var(--cyan); }

/* ─── FEATURES ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.feature-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--glass);
  transition: all var(--transition);
}
.feature-item:hover { border-color: var(--border2); transform: translateY(-3px); background: var(--glass2); }
.feature-item .icon { font-size: 2rem; margin-bottom: 16px; }
.feature-item h4 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.feature-item p { font-size: 0.85rem; color: var(--text2); }

/* ─── COMPARISON TABLE ─── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.compare-table thead th {
  padding: 16px 20px;
  text-align: left;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  background: rgba(0,212,255,0.08);
  border-bottom: 1px solid var(--border);
}
.compare-table thead th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.compare-table thead th:last-child  { border-radius: 0 var(--radius-sm) 0 0; }
.compare-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background var(--transition);
}
.compare-table tbody tr:hover { background: var(--glass2); }
.compare-table td {
  padding: 14px 20px;
  color: var(--text2);
  vertical-align: middle;
}
.compare-table td:first-child { color: var(--text); font-weight: 500; }
.compare-table td .check { color: var(--green); }
.compare-table td .cross { color: var(--text3); }
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }

/* ─── DISCORD BOT ─── */
.discord-hero {
  background: linear-gradient(135deg, rgba(88,101,242,0.15), rgba(4,11,24,0.8));
  border: 1px solid rgba(88,101,242,0.3);
  border-radius: var(--radius);
  padding: 60px;
  text-align: center;
}
.discord-hero h2 { font-size: 2.5rem; color: var(--white); }
.discord-hero p { color: var(--text2); max-width: 500px; margin: 16px auto 32px; }
.discord-mockup {
  background: #2b2d31;
  border-radius: var(--radius);
  padding: 20px;
  text-align: left;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.dm-msg { display: flex; gap: 12px; padding: 8px 0; }
.dm-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, #5865F2, #7c3aed);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #fff;
}
.dm-name { font-size: 0.85rem; font-weight: 700; color: #5865F2; }
.dm-text { font-size: 0.88rem; color: #dcddde; margin-top: 2px; }
.bot-tag {
  font-size: 0.65rem; background: #5865F2; color: #fff;
  padding: 1px 5px; border-radius: 3px; vertical-align: middle; margin-left: 4px;
}

/* ─── FAQ ─── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--border2); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  background: var(--glass);
  transition: all var(--transition);
}
.faq-question:hover { color: var(--white); }
.faq-question i { color: var(--cyan); transition: transform var(--transition); }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 0.9rem;
  color: var(--text2);
  background: rgba(7,15,30,0.7);
}
.faq-answer-inner { padding: 0 22px 20px; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ─── CONTACT ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-info h2 { font-size: 2rem; color: var(--white); margin-bottom: 16px; }
.contact-info p { color: var(--text2); margin-bottom: 32px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--glass);
  margin-bottom: 12px;
  transition: all var(--transition);
}
.contact-item:hover { border-color: var(--border2); }
.contact-item-icon {
  width: 44px; height: 44px;
  background: var(--glass2);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan); font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-label { font-size: 0.78rem; color: var(--text3); text-transform: uppercase; letter-spacing: 0.1em; }
.contact-item-value { font-size: 0.92rem; color: var(--text); margin-top: 2px; }

/* ─── FORM ─── */
.form-card { background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(4,11,24,0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: all var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: #0a1a30; color: var(--text); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ─── BADGES / TAGS ─── */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.tag--cyan   { background: rgba(0,212,255,0.1);  color: var(--cyan);   border: 1px solid rgba(0,212,255,0.2); }
.tag--purple { background: rgba(124,58,237,0.1); color: var(--purple2); border: 1px solid rgba(124,58,237,0.2); }
.tag--green  { background: rgba(0,230,118,0.1);  color: var(--green);  border: 1px solid rgba(0,230,118,0.2); }
.tag--orange { background: rgba(255,145,0,0.1);  color: var(--orange); border: 1px solid rgba(255,145,0,0.2); }

/* ─── UPTIME BANNER ─── */
.uptime-banner {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.uptime-item { text-align: center; }
.uptime-val { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--green); }
.uptime-label { font-size: 0.78rem; color: var(--text3); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 2px; }
.uptime-divider { width: 1px; height: 50px; background: var(--border); }

/* ─── CTA ─── */
.cta-section {
  background: linear-gradient(135deg, rgba(0,212,255,0.06), rgba(124,58,237,0.06));
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 80px 60px;
  text-align: center;
  margin: 40px 0;
}
.cta-section h2 { font-size: 2.5rem; color: var(--white); margin-bottom: 16px; }
.cta-section p { color: var(--text2); margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-section .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
  position: relative;
  z-index: 1;
}
.footer__glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.footer__brand p { font-size: 0.88rem; color: var(--text2); margin-top: 16px; line-height: 1.7; }
.footer__socials { display: flex; gap: 12px; margin-top: 20px; }
.footer__socials a {
  width: 36px; height: 36px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text2); font-size: 0.9rem;
  transition: all var(--transition);
}
.footer__socials a:hover { color: var(--cyan); border-color: var(--border2); background: var(--glass2); }
.footer__col h4 {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer__col ul li a {
  display: block;
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--text2);
}
.footer__col ul li a:hover { color: var(--white); }
.footer__contact li {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0;
  font-size: 0.88rem;
  color: var(--text2);
}
.footer__contact li i { color: var(--cyan); width: 16px; }
.footer__badge {
  display: flex; align-items: center; gap: 8px;
  margin-top: 20px;
  padding: 10px 14px;
  background: rgba(0,230,118,0.08);
  border: 1px solid rgba(0,230,118,0.2);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--green);
}
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0;
  font-size: 0.82rem;
  color: var(--text3);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { color: var(--text3); }
.footer__legal a:hover { color: var(--text2); }

/* ─── PAGE HERO ─── */
.page-hero {
  padding: 140px 0 80px;
  position: relative;
  z-index: 1;
}
.page-hero__tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--cyan);
  background: var(--glass2); border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 50px; margin-bottom: 20px;
}
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 3.8rem); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.page-hero h1 span { color: var(--cyan); }
.page-hero p { font-size: 1.05rem; color: var(--text2); max-width: 560px; }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .navbar__links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(4,11,24,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 999;
  }
  .navbar__links.open { display: flex; }
  .navbar__links > li > a { font-size: 1.2rem; padding: 12px 24px; }
  .navbar__toggle { display: flex; z-index: 1000; }
  .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: all;
    background: var(--glass2);
    border-color: var(--border);
    display: none;
  }
  .has-dropdown.open .dropdown { display: block; }
  .hero__stats { flex-wrap: wrap; gap: 24px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .uptime-banner { justify-content: center; }
  .uptime-divider { display: none; }
  .cta-section { padding: 50px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .discord-hero { padding: 40px 24px; }
  section { padding: 60px 0; }
  .page-hero { padding: 120px 0 60px; }
}
