/* =============================================
   ROOT VARIABLES & RESET
   ============================================= */
:root {
  --neon-blue: #138ae1;
  --neon-green: #2bcd76;
  --neon-gradient: linear-gradient(135deg, #138ae1, #2bcd76);
  --bg-dark: #0a0a0a;
  --bg-card: #141414;
  --bg-card2: #1a1a1a;
  --border-dim: #1f1f1f;
  --text-white: #f8f8f8;
  --text-gray: #9ca3af;
  --text-gray-dim: #6b7280;
  --radius: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.25rem;
  --container: 1280px;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, textarea, select {
  font-family: inherit;
  font-size: 0.875rem;
  outline: none;
}

/* =============================================
   UTILITY CLASSES
   ============================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.neon-text {
  background: var(--neon-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.neon-glow {
  box-shadow: 0 0 20px rgba(19, 138, 225, 0.3), 0 0 40px rgba(43, 205, 118, 0.15);
}

.neon-border {
  border: 2px solid transparent;
  background-clip: padding-box;
  background-image: linear-gradient(var(--bg-card), var(--bg-card)), var(--neon-gradient);
  background-origin: border-box;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  border-radius: var(--radius-xl);
  transition: all var(--transition);
  cursor: pointer;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border: none;
}

.btn-primary {
  background: var(--neon-gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(19, 138, 225, 0.25);
}
.btn-primary:hover { opacity: 0.88; transform: scale(1.03); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #333;
}
.btn-outline:hover {
  border-color: var(--neon-green);
  background: rgba(43, 205, 118, 0.08);
}

.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.badge-blue {
  background: rgba(19, 138, 225, 0.1);
  border: 1px solid rgba(19, 138, 225, 0.3);
  color: var(--neon-blue);
}

.badge-green {
  background: rgba(43, 205, 118, 0.1);
  border: 1px solid rgba(43, 205, 118, 0.3);
  color: var(--neon-green);
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(19, 138, 225, 0.25), rgba(43, 205, 118, 0.15), transparent);
  margin: 0;
}

/* Visible gray separator band between sections */
.section-sep {
  height: 72px;
  background: #111418;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}

.section-sep::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 80px,
    rgba(19,138,225,0.03) 80px,
    rgba(19,138,225,0.03) 81px
  );
}

/* Alternating section backgrounds */
.section-alt {
  background-color: #0d0d0d !important;
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes pulseSlow {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.8; }
}
@keyframes counter {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideDown {
  from { opacity: 0; max-height: 0; }
  to   { opacity: 1; max-height: 600px; }
}
@keyframes slideUp {
  from { opacity: 1; max-height: 600px; }
  to   { opacity: 0; max-height: 0; }
}
@keyframes barGrow {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}
@keyframes blinkDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.animate-fade-up { animation: fadeInUp 0.6s ease forwards; }
.animate-fade { animation: fadeIn 0.6s ease forwards; }
.animate-pulse-slow { animation: pulseSlow 3s ease infinite; }

.scroll-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.5s ease, transform 0.5s ease; }
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   HEADER / NAV
   ============================================= */
#header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(19, 138, 225, 0.15);
  height: 72px;
  display: flex;
  align-items: center;
}

nav.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}

.nav-logo img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-logo span {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--neon-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links button {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-gray);
  transition: color var(--transition);
}
.nav-links button:hover { color: var(--neon-blue); }

.lang-switcher {
  display: flex;
  align-items: center;
  border: 1px solid var(--neon-blue);
  border-radius: 999px;
  overflow: hidden;
}

.lang-switcher button {
  padding: 0.2rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-gray);
  transition: all var(--transition);
}

.lang-switcher button.active {
  background: var(--neon-blue);
  color: #fff;
}

.lang-switcher .lang-sep {
  width: 1px;
  height: 16px;
  background: var(--neon-blue);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  padding: 0.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(19, 138, 225, 0.2);
  border-radius: 0.5rem;
  color: #fff;
  line-height: 1;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(19, 138, 225, 0.15);
  padding: 1.5rem;
  flex-direction: column;
  gap: 1rem;
  animation: fadeIn 0.2s ease;
  z-index: 99;
}

.mobile-menu.open { display: flex; }

.mobile-menu button {
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-gray);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-dim);
  transition: color var(--transition);
}
.mobile-menu button:last-of-type { border-bottom: none; }
.mobile-menu button:hover { color: var(--neon-blue); }

/* =============================================
   HERO SECTION
   ============================================= */
#hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 3rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.75);
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--bg-dark), transparent 30%, transparent 70%, var(--bg-dark));
  z-index: 2;
}

.hero-glow-1,
.hero-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  animation: pulseSlow 4s ease infinite;
}

.hero-glow-1 {
  top: 20%;
  left: 15%;
  background: rgba(19, 138, 225, 0.18);
}

.hero-glow-2 {
  bottom: 20%;
  right: 15%;
  background: rgba(43, 205, 118, 0.18);
  animation-delay: 1.5s;
}

.hero-inner {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.hero-text { flex: 1; }
.hero-visual { flex: 1; }

.hero-text .badge-blue { margin-bottom: 1.5rem; }

.hero-text h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-text h1 .gradient-line {
  background: var(--neon-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 520px;
  font-weight: 500;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  color: var(--text-gray-dim);
  font-weight: 600;
  font-size: 0.9rem;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-badge-item svg { width: 18px; height: 18px; }
.hero-badge-item.blue svg { color: var(--neon-blue); }
.hero-badge-item.green svg { color: var(--neon-green); }

/* Dashboard card */
.dashboard-card {
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(19, 138, 225, 0.25);
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  position: relative;
  z-index: 2;
  box-shadow: 0 0 25px rgba(19, 138, 225, 0.2), 0 0 50px rgba(43, 205, 118, 0.1);
}

.db-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.db-dots { display: flex; gap: 0.4rem; }
.db-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.db-dot.red { background: #ef4444; }
.db-dot.yellow { background: #eab308; }
.db-dot.green-dot { background: #22c55e; }

.db-status {
  font-size: 0.7rem;
  color: var(--text-gray-dim);
  font-family: 'Courier New', monospace;
}

.db-rows { display: flex; flex-direction: column; gap: 0.75rem; }

.db-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0,0,0,0.4);
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
}

.db-row.green-border { border: 1px solid rgba(43, 205, 118, 0.2); }
.db-row.blue-border  { border: 1px solid rgba(19, 138, 225, 0.2); }
.db-row.red-border   { border: 1px solid rgba(239, 68, 68, 0.2); }

.db-row-left { display: flex; align-items: center; gap: 0.75rem; }

.db-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.db-icon.green { background: rgba(43, 205, 118, 0.15); color: var(--neon-green); }
.db-icon.blue  { background: rgba(19, 138, 225, 0.15); color: var(--neon-blue); }
.db-icon.red   { background: rgba(239, 68, 68, 0.15);  color: #ef4444; }

.db-icon svg { width: 18px; height: 18px; }

.db-label { font-size: 0.7rem; color: var(--text-gray-dim); margin-bottom: 2px; }
.db-val   { font-size: 0.875rem; font-weight: 700; color: #fff; }

.db-status-text {
  font-family: 'Courier New', monospace;
  font-weight: 700;
  font-size: 0.8rem;
}

.db-status-text.green  { color: var(--neon-green); animation: blinkDot 1.2s ease infinite; }
.db-status-text.blue   { color: var(--neon-blue); }
.db-status-text.danger { color: #ef4444; }

.db-chart {
  margin-top: 1.25rem;
  height: 96px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  padding: 0.5rem;
  background: rgba(0,0,0,0.2);
  border-radius: 0.5rem;
}

.db-bar {
  flex: 1;
  background: var(--neon-gradient);
  border-radius: 3px 3px 0 0;
  opacity: 0.65;
  transform-origin: bottom;
  animation: barGrow 0.8s ease forwards;
  transition: opacity 0.2s;
}
.db-bar:hover { opacity: 1; }

.dashboard-glow {
  position: absolute;
  inset: -16px;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-green));
  opacity: 0.15;
  filter: blur(40px);
  border-radius: 2rem;
  z-index: -1;
}

/* =============================================
   FEATURES
   ============================================= */
#features {
  padding: 4rem 0;
  background: var(--bg-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  margin-top: 0.75rem;
}

.section-header p {
  color: var(--text-gray);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

.section-alt .feature-card,
.section-alt .guarantee-card,
.section-alt .social-card {
  background: #111111;
}

.section-alt .plan-card,
.section-alt .bot-card {
  background: #111111;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  transition: border-color var(--transition), transform var(--transition);
}

.feature-card:hover {
  border-color: rgba(19, 138, 225, 0.3);
  transform: translateY(-3px);
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 0.5rem;
  background: var(--neon-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 0 15px rgba(19, 138, 225, 0.2);
}
.feature-icon svg { width: 20px; height: 20px; color: #fff; }

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.6;
  font-weight: 500;
}

/* =============================================
   PRICING
   ============================================= */
#pricing {
  padding: 4rem 0;
  background: var(--bg-dark);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.plan-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: 1.25rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition);
}

.plan-card:hover { border-color: rgba(19, 138, 225, 0.3); }

.plan-card.featured {
  border-color: rgba(19, 138, 225, 0.35);
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(19, 138, 225, 0.2), 0 0 50px rgba(43, 205, 118, 0.1);
}

.plan-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
  color: #fff;
}

.plan-tag.blue   { background: var(--neon-blue); }
.plan-tag.green  { background: var(--neon-green); }
.plan-tag.gold   { background: linear-gradient(135deg, #eab308, #f97316); }

.plan-tag svg { width: 12px; height: 12px; fill: currentColor; }

.plan-header {
  text-align: center;
  margin-bottom: 2rem;
}

.plan-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem;
}

.plan-price .amount {
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--neon-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.plan-price .period {
  font-size: 0.9rem;
  color: var(--text-gray);
  font-weight: 600;
}

.plan-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #d1d5db;
  font-weight: 600;
}

.plan-feature svg {
  width: 18px;
  height: 18px;
  color: var(--neon-green);
  flex-shrink: 0;
  margin-top: 2px;
}

.btn-buy {
  width: 100%;
  padding: 1rem;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-buy.primary {
  background: var(--neon-gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(19, 138, 225, 0.25);
}
.btn-buy.primary:hover { opacity: 0.88; }

.btn-buy.secondary {
  background: var(--border-dim);
  color: #fff;
  border: 1px solid rgba(19, 138, 225, 0.2);
}
.btn-buy.secondary:hover { background: #252525; }

/* =============================================
   OTHER BOTS
   ============================================= */
#other-bots { padding: 4rem 0; }

.bots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.bot-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: 1.25rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.bot-card:hover {
  border-color: rgba(19, 138, 225, 0.4);
  transform: translateY(-3px);
}

.bot-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--neon-gradient);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
}

.bot-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--bg-dark);
  border: 1px solid var(--border-dim);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--text-gray);
  transition: color var(--transition), border-color var(--transition);
}
.bot-card:hover .bot-icon-wrap {
  color: var(--neon-green);
  border-color: rgba(43, 205, 118, 0.4);
}
.bot-icon-wrap svg { width: 28px; height: 28px; }

.bot-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}
.bot-card:hover h3 { color: var(--neon-blue); }

.bot-card p {
  font-size: 0.875rem;
  color: var(--text-gray);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  min-height: 4rem;
}

.btn-review {
  width: 100%;
  padding: 0.625rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(19, 138, 225, 0.3);
  background: var(--bg-dark);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all var(--transition);
}
.btn-review:hover { background: var(--neon-blue); border-color: var(--neon-blue); }
.btn-review svg { width: 15px; height: 15px; }

/* =============================================
   GUARANTEE
   ============================================= */
#guarantee { padding: 4rem 0; }

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.guarantee-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: 1.25rem;
  padding: 2rem;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.guarantee-card:hover {
  border-color: rgba(43, 205, 118, 0.3);
  background: var(--bg-card2);
  transform: translateY(-4px);
}

.guarantee-icon {
  width: 56px;
  height: 56px;
  background: var(--neon-gradient);
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(19,138,225,0.2);
}
.guarantee-icon svg { width: 26px; height: 26px; color: #fff; }

.guarantee-card:hover .guarantee-icon { transform: scale(1.1); }

.guarantee-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.guarantee-card p {
  font-size: 0.875rem;
  color: var(--text-gray);
  line-height: 1.65;
}

/* =============================================
   FAQ
   ============================================= */
#faq { padding: 4rem 0; }

.faq-list {
  max-width: 768px;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: rgba(19, 138, 225, 0.3); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.125rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  color: #e5e7eb;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(255,255,255,0.03); }

.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--neon-blue);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 0 1.25rem 1.125rem;
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 500;
  border-top: 1px solid rgba(19, 138, 225, 0.08);
  padding-top: 1rem;
  margin-top: 0.25rem;
}

.faq-cta {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid rgba(19, 138, 225, 0.2);
  border-radius: 1.25rem;
  padding: 2.5rem;
  background-image:
    linear-gradient(rgba(20,20,20,0.92), rgba(20,20,20,0.92)),
    var(--neon-gradient);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.faq-cta h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  background: var(--neon-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.faq-cta p { color: var(--text-gray); margin-bottom: 1.5rem; }

/* =============================================
   SOCIAL MEDIA
   ============================================= */
#social { padding: 4rem 0; }

.social-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-xl);
  transition: all var(--transition);
  cursor: pointer;
}

.social-card:hover {
  border-color: rgba(19, 138, 225, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(19,138,225,0.1);
}

.social-card svg {
  width: 30px;
  height: 30px;
  margin-bottom: 0.75rem;
  color: var(--text-gray);
  transition: color var(--transition);
}

.social-card:hover svg { color: var(--neon-blue); }
.social-card span { font-size: 0.8rem; font-weight: 700; color: #d1d5db; }
.social-card:hover span { color: #fff; }

/* =============================================
   CONTACT
   ============================================= */
#contact { padding: 4rem 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: 1.25rem;
  padding: 2.5rem;
}

.contact-form-wrap h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #d1d5db;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid rgba(19, 138, 225, 0.25);
  border-radius: 0.625rem;
  padding: 0.875rem 1rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #4b5563; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--neon-green);
  box-shadow: 0 0 0 3px rgba(43, 205, 118, 0.12);
}

.form-group select option { background: #111; }
.form-group textarea { resize: none; }

.contact-channels { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-channels h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.channel-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(19, 138, 225, 0.18);
  border-radius: var(--radius-xl);
  transition: border-color var(--transition);
}
.channel-card:hover { border-color: rgba(43, 205, 118, 0.3); }

.channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--neon-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(19,138,225,0.2);
}
.channel-icon svg { width: 20px; height: 20px; color: #fff; }

.channel-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-gray-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 2px;
}

.channel-val {
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  transition: color var(--transition);
}
.channel-card:hover .channel-val { color: var(--neon-blue); }

.channel-telegram {
  background: var(--neon-gradient);
  border: none !important;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(19,138,225,0.25);
}
.channel-telegram .channel-icon {
  background: rgba(255,255,255,0.2);
  box-shadow: none;
}
.channel-telegram .channel-label { color: rgba(255,255,255,0.7); }
.channel-telegram .channel-val { color: #fff; }

.channel-support {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1.125rem;
  background: var(--bg-card);
  border: 1px solid rgba(43, 205, 118, 0.2);
  border-radius: var(--radius-xl);
  font-weight: 700;
  color: var(--neon-green);
  transition: all var(--transition);
}
.channel-support svg { width: 20px; height: 20px; }
.channel-support:hover { background: var(--border-dim); color: #fff; }

/* =============================================
   FOOTER
   ============================================= */
#footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(19, 138, 225, 0.15);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

.footer-brand .logo-icon {
  width: 34px;
  height: 34px;
  background: var(--neon-gradient);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-brand .logo-icon svg { width: 18px; height: 18px; color: #fff; }
.footer-brand .logo-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: var(--neon-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-gray);
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-social {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(19, 138, 225, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  transition: all var(--transition);
}
.footer-social:hover { background: var(--neon-blue); color: #fff; border-color: var(--neon-blue); }
.footer-social svg { width: 15px; height: 15px; }

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: #fff;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-col ul a,
.footer-col ul span {
  font-size: 0.875rem;
  color: var(--text-gray);
  font-weight: 500;
  transition: color var(--transition);
  cursor: pointer;
}
.footer-col ul a:hover,
.footer-col ul span:hover { color: var(--neon-blue); }

.footer-bottom {
  border-top: 1px solid rgba(19, 138, 225, 0.12);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-gray-dim);
  font-weight: 500;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-gray-dim);
  font-weight: 500;
  transition: color var(--transition);
}
.footer-contact:hover { color: var(--neon-blue); }
.footer-contact svg { width: 15px; height: 15px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .features-grid    { grid-template-columns: repeat(2, 1fr); }
  .guarantee-grid   { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid      { grid-template-columns: repeat(2, 1fr); }
  .social-grid      { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner       { flex-direction: column; }
  .hero-text        { text-align: center; }
  .hero-text p      { margin: 0 auto 2rem; }
  .hero-btns        { justify-content: center; }
  .hero-badges      { justify-content: center; }
  .contact-grid     { grid-template-columns: 1fr; }
  .bots-grid        { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links        { display: none; }
  .nav-right .btn   { display: none; }
  .mobile-toggle    { display: flex; }
  .pricing-grid     { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
  .footer-grid      { grid-template-columns: 1fr; }
  .bots-grid        { grid-template-columns: 1fr; }
  .guarantee-grid   { grid-template-columns: 1fr 1fr; }
  .social-grid      { grid-template-columns: repeat(2, 1fr); }
  #hero             { padding: 2rem 0 3rem; min-height: auto; }
  #features, #pricing, #other-bots, #guarantee,
  #faq, #social, #contact { padding: 3rem 0; }
}

@media (max-width: 480px) {
  .features-grid    { grid-template-columns: 1fr; }
  .guarantee-grid   { grid-template-columns: 1fr; }
  .social-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom    { flex-direction: column; text-align: center; }
  #features, #pricing, #other-bots, #guarantee,
  #faq, #social, #contact { padding: 2.5rem 0; }
}
