/* ═══════════════════════════════════════
   gonzyles.xyz — dark + orange
   ═══════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --orange: #FF6A00;
  --orange-light: #FF8533;
  --orange-dim: rgba(255,106,0,.12);
  --bg: #0B0B0C;
  --bg2: #101012;
  --card: #141417;
  --card-hover: #19191D;
  --border: #1E1E22;
  --text: #D4D4D8;
  --muted: #71717A;
  --white: #ffffff;
  --r: 14px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1060px; margin: 0 auto; padding: 0 20px; }
.center { text-align: center; }
.accent { color: var(--orange); }

/* ── buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit; font-weight: 700; font-size: .9rem;
  padding: 12px 28px; border-radius: 10px;
  border: none; background: var(--orange); color: var(--white);
  cursor: pointer; transition: .2s ease;
}
.btn:hover { background: var(--orange-light); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(255,106,0,.3); }
.btn-ghost { background: transparent; border: 1.5px solid var(--border); color: var(--text); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); background: transparent; box-shadow: none; }
.btn-sm { padding: 8px 18px; font-size: .82rem; border-radius: 8px; }
.btn-lg { padding: 14px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── nav ── */
.navbar {
  position: fixed; inset: 0 0 auto; z-index: 100;
  background: rgba(11,11,12,.85); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1060px; margin: 0 auto; padding: 0 20px;
  height: 60px; display: flex; align-items: center; gap: 32px;
}
.logo { font-weight: 900; font-size: 1.3rem; margin-right: auto; color: var(--white); }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-weight: 600; font-size: .85rem; color: var(--muted); transition: color .2s; }
.nav-links a:hover { color: var(--orange); }
.mobile-toggle { display: none; background: none; border: none; font-size: 1.4rem; color: var(--text); cursor: pointer; }

/* ── hero ── */
.hero {
  display: flex; flex-direction: column; align-items: center;
  padding: 130px 20px 0; position: relative; overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,106,0,.09) 0%, transparent 55%), var(--bg);
}
.hero-text {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  max-width: 620px; position: relative; z-index: 2; padding-bottom: 48px;
}
.hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 4.4rem); font-weight: 900;
  line-height: 1.05; letter-spacing: -1.8px; color: var(--white);
  margin: 12px 0;
}
.hero-sub { font-size: 1.1rem; color: var(--muted); }
.hero-btns { margin-top: 28px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* hero.png — full bleed banner image at bottom of hero */
.hero-banner {
  width: 100%; max-width: 1060px;
  border-radius: 14px 14px 0 0; overflow: hidden;
  border: 1px solid var(--border); border-bottom: none;
  box-shadow: 0 -8px 60px rgba(255,106,0,.08), 0 0 0 1px var(--border);
  position: relative; z-index: 2;
}
.hero-banner img { width: 100%; display: block; }

.hero-glow {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,106,0,.13) 0%, transparent 60%);
  filter: blur(100px); pointer-events: none; z-index: 1;
}

/* ── sections ── */
.section { padding: 90px 20px; }
.section-alt { background: var(--bg2); }
.tag {
  display: inline-block; font-weight: 800; font-size: .65rem; letter-spacing: 2.5px;
  padding: 4px 12px; border-radius: 6px;
  background: var(--orange-dim); color: var(--orange); border: 1px solid rgba(255,106,0,.2);
  margin-bottom: 14px;
}
.sec-head { text-align: center; margin-bottom: 44px; }
.section h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 900; letter-spacing: -1px;
  color: var(--white); margin-bottom: 8px;
}
.sec-desc { color: var(--muted); font-size: 1rem; max-width: 480px; margin: 0 auto; }

/* ── menu showcase (side by side: screenshot + description) ── */
.menu-showcase {
  display: flex; align-items: center; gap: 40px;
  margin-top: 48px; flex-wrap: wrap;
}
.menu-showcase-right { flex-direction: row-reverse; }

.menu-img-wrap {
  flex: 1; min-width: 280px;
  border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.menu-img-wrap img { width: 100%; display: block; }

.menu-label {
  flex: 0 0 260px; display: flex; flex-direction: column; gap: 12px;
}
.menu-badge {
  display: inline-block; font-weight: 800; font-size: .65rem; letter-spacing: 2px;
  padding: 5px 14px; border-radius: 6px;
  background: var(--orange); color: var(--white);
  width: fit-content;
}
.menu-label p { font-size: .95rem; color: var(--muted); line-height: 1.7; }

@media (max-width: 600px) {
  .menu-showcase, .menu-showcase-right { flex-direction: column; }
  .menu-label { flex: none; }
}

/* ════════════════════════════════════════
   IMAGE COMPARISON SLIDER
   ════════════════════════════════════════ */
.compare {
  position: relative; max-width: 860px; margin: 0 auto;
  border-radius: var(--r); overflow: hidden; cursor: col-resize;
  border: 1px solid var(--border);
  user-select: none; -webkit-user-select: none;
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
}
.compare-under { width: 100%; display: block; }
.compare-over {
  position: absolute; inset: 0; width: 50%; overflow: hidden;
  border-right: 2px solid var(--orange);
}
.compare-over img { width: 200%; height: 100%; object-fit: cover; display: block; position: absolute; left: 0; top: 0; max-width: none; }

.compare-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%); width: 3px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  pointer-events: none; z-index: 5;
}
.handle-line { flex: 1; width: 2px; background: var(--orange); opacity: .8; }
.handle-circle {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; font-weight: 700; flex-shrink: 0;
  box-shadow: 0 0 16px rgba(255,106,0,.5);
}
.compare-label {
  position: absolute; bottom: 14px; font-weight: 700; font-size: .68rem;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 6px;
  background: rgba(11,11,12,.75); backdrop-filter: blur(8px);
  z-index: 4; pointer-events: none; border: 1px solid var(--border);
}
.compare-label-left { left: 14px; color: var(--orange); border-color: rgba(255,106,0,.3); }
.compare-label-right { right: 14px; color: var(--muted); }

/* ════════════════════════════════════════
   FEATURE COMPARISON TABLE (TABELLA)
   ════════════════════════════════════════ */
.table-wrapper {
  max-width: 860px; margin: 0 auto;
  border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: 0 8px 30px rgba(0,0,0,.3);
}
.feature-table {
  width: 100%; border-collapse: collapse; text-align: left;
}
.feature-table th {
  padding: 18px 24px; font-size: .9rem; font-weight: 800;
  border-bottom: 1px solid var(--border); background: #0E0E10;
}
.th-feature { color: var(--white); width: 50%; }
.th-free { color: var(--muted); text-align: center; width: 25%; }
.th-paid { color: var(--orange); text-align: center; width: 25%; background: var(--orange-dim); }

.badge-accent {
  font-size: .65rem; padding: 2px 7px; border-radius: 4px;
  background: var(--orange); color: var(--white); font-weight: 800;
  margin-left: 6px; vertical-align: middle;
}

.feature-table td {
  padding: 14px 24px; font-size: .88rem;
  border-bottom: 1px solid var(--border);
}
.feature-table tr:last-child td { border-bottom: none; }
.feature-table tr:hover td { background: var(--card-hover); }

.td-feature { color: var(--text); font-weight: 500; }
.td-free { text-align: center; }
.td-paid { text-align: center; background: rgba(255,106,0,.03); }

.check { font-weight: 800; font-size: 1rem; color: #52525B; }
.accent-check { color: var(--orange); font-size: 1.1rem; }
.cross { font-weight: 700; font-size: .9rem; color: #3F3F46; }

/* ════════════════════════════════════════
   PRICING CARDS
   ════════════════════════════════════════ */
.prices {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px; max-width: 960px; margin: 0 auto;
}
.price-box {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 32px 22px; text-align: center;
  transition: .25s ease; position: relative;
}
.price-box:hover { border-color: #2D2D35; transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,.4); }
.price-box.hot { border: 2px solid var(--orange); box-shadow: 0 0 35px var(--orange-dim); }

.hot-tag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-weight: 800; font-size: .62rem; letter-spacing: 1.5px;
  padding: 4px 14px; border-radius: 999px; background: var(--orange); color: var(--white);
}
.price-name { font-weight: 700; font-size: .9rem; color: var(--muted); margin-bottom: 6px; }
.price-amount { font-size: 2.8rem; font-weight: 900; color: var(--white); letter-spacing: -2px; line-height: 1; }
.price-amount small { font-size: 1.2rem; font-weight: 700; }
.price-period { font-size: .8rem; color: var(--muted); margin-top: 4px; margin-bottom: 12px; }
.price-note { font-size: .82rem; color: var(--muted); margin-bottom: 24px; min-height: 38px; display: flex; align-items: center; justify-content: center; }

/* ── down modal ── */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(0,0,0,.7); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.modal-box {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 40px 36px; max-width: 440px; width: 100%;
  text-align: center; box-shadow: 0 20px 60px rgba(0,0,0,.6);
  animation: fadeUp .25s ease forwards;
}
.modal-icon { font-size: 2.2rem; margin-bottom: 16px; }
.modal-box h3 { font-size: 1.3rem; font-weight: 900; color: var(--white); margin-bottom: 10px; }
.modal-box p { font-size: .9rem; color: var(--muted); line-height: 1.6; margin-bottom: 28px; }
.modal-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── discord cta ── */
.cta {
  background: linear-gradient(135deg, var(--orange) 0%, #ff8533 100%);
  text-align: center; color: var(--white);
}
.cta h2 { color: var(--white); }
.cta .sec-desc { color: rgba(255,255,255,.85); }
.cta .btn { background: var(--white); color: var(--orange); }
.cta .btn:hover { background: #f3f3f3; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,0,0,.2); }

/* ── footer ── */
.footer {
  text-align: center; padding: 28px 20px; font-size: .82rem;
  color: var(--muted); border-top: 1px solid var(--border);
}

/* ── responsive ── */
@media (max-width: 700px) {
  .nav-links, .navbar .btn-sm { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.active {
    display: flex; flex-direction: column; position: absolute;
    top: 60px; left: 0; right: 0; background: var(--bg);
    padding: 20px; gap: 14px; border-bottom: 1px solid var(--border);
  }
  .hero { padding: 110px 20px 50px; }
  .prices { grid-template-columns: 1fr; max-width: 340px; }
  .feature-table th, .feature-table td { padding: 12px 14px; font-size: .8rem; }
  .th-feature { width: 45%; }
  .th-free, .th-paid { width: 27.5%; }
}

/* ── scroll reveal ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content { animation: fadeUp .7s ease forwards; }
.anim {
  opacity: 0; transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.anim.visible { opacity: 1; transform: translateY(0); }
