/* ========================================
   AI-AUTOMATED.EU — FUTURISTIC DARK THEME
   ======================================== */

:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #0d0d18;
  --bg-card: rgba(255,255,255,0.03);
  --border: rgba(255,255,255,0.08);
  --neon-green: #00ff88;
  --violet: #7c3aed;
  --blue: #3b82f6;
  --text-primary: #f0f0f5;
  --text-secondary: #8888aa;
  --font-title: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --glow-green: 0 0 20px rgba(0,255,136,0.3);
  --glow-violet: 0 0 20px rgba(124,58,237,0.3);
  --glow-blue: 0 0 20px rgba(59,130,246,0.3);
  --radius: 16px;
  --radius-sm: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- UTILITIES ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-gradient {
  background: linear-gradient(135deg, var(--neon-green), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--neon-green);
  color: var(--neon-green);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: var(--font-title);
}
.section-title {
  font-family: var(--font-title);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 48px;
  text-align: center;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--neon-green), #00cc6a);
  color: #0a0a0f;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--glow-green); }
.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}
.btn-secondary:hover { border-color: var(--neon-green); color: var(--neon-green); }
.btn-glow { box-shadow: var(--glow-green); }

/* ---- NAVIGATION ---- */
.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}
.main-nav.scrolled {
  background: rgba(10,10,15,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-title);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-cta {
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--neon-green), #00cc6a) !important;
  color: #0a0a0f !important;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
  font-family: var(--font-title);
}
.nav-burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--text-primary); transition: all 0.3s; }

/* ---- HERO SECTION ---- */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 60px;
}
#particles-js {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-left: calc((100vw - 1200px) / 2);
  padding-left: max(24px, calc((100vw - 1200px) / 2));
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0,255,136,0.08);
  border: 1px solid rgba(0,255,136,0.2);
  border-radius: 100px;
  margin-bottom: 28px;
  font-size: 13px;
  font-weight: 500;
  color: var(--neon-green);
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--neon-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,255,136,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(0,255,136,0); }
}
.hero-title {
  font-family: var(--font-title);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}
/* Fix: prevent page jump during typing by reserving fixed height */
.hero-title-fixed {
  height: 2.6em;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}
.cursor-blink { animation: blink 1s infinite; color: var(--neon-green); }
@keyframes blink { 0%,50% { opacity: 1; } 51%,100% { opacity: 0; } }
.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-subtitle strong { color: var(--text-primary); }
.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-title);
  font-size: 36px;
  font-weight: 800;
  color: var(--neon-green);
  display: inline;
}
.stat-unit { font-size: 24px; font-weight: 700; color: var(--neon-green); }
.stat-label { display: block; font-size: 12px; color: var(--text-secondary); margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* HERO VISUAL */
.hero-visual {
  position: absolute;
  right: max(24px, calc((100vw - 1200px) / 2));
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.ai-brain-visual { position: relative; width: 360px; height: 360px; }
.brain-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate linear infinite;
}
.ring-1 { width: 200px; height: 200px; border-color: rgba(0,255,136,0.2); animation-duration: 8s; }
.ring-2 { width: 280px; height: 280px; border-color: rgba(124,58,237,0.15); animation-duration: 12s; animation-direction: reverse; }
.ring-3 { width: 360px; height: 360px; border-color: rgba(59,130,246,0.1); animation-duration: 20s; }
@keyframes rotate { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }
.brain-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100px; height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,255,136,0.15), rgba(10,10,15,0.8));
  border: 1px solid rgba(0,255,136,0.3);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--glow-green);
}
.data-nodes { position: absolute; inset: 0; }
.node {
  position: absolute;
  padding: 8px 14px;
  background: rgba(10,10,15,0.9);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-title);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.n1 { top: 1.5%; left: 42.0%; border-color: rgba(0,255,136,0.3); color: var(--neon-green); animation-delay: 0.0s; }
.n2 { top: 7.4%; left: 64.0%; border-color: rgba(59,130,246,0.3); color: var(--blue); animation-delay: 0.27s; }
.n6 { top: 23.5%; left: 80.1%; border-color: rgba(239,68,68,0.3); color: #f87171; animation-delay: 0.54s; }
.n11 { top: 45.5%; left: 86.0%; border-color: rgba(0,255,136,0.3); color: var(--neon-green); animation-delay: 0.81s; }
.n7 { top: 67.5%; left: 80.1%; border-color: rgba(59,130,246,0.3); color: var(--blue); animation-delay: 1.08s; }
.n3 { top: 83.6%; left: 64.0%; border-color: rgba(124,58,237,0.3); color: #a78bfa; animation-delay: 1.35s; }
.n10 { top: 89.5%; left: 42.0%; border-color: rgba(245,158,11,0.3); color: #fbbf24; animation-delay: 1.62s; }
.n4 { top: 83.6%; left: 20.0%; border-color: rgba(0,255,136,0.3); color: var(--neon-green); animation-delay: 1.89s; }
.n13 { top: 67.5%; left: 3.9%; border-color: rgba(124,58,237,0.3); color: #a78bfa; animation-delay: 2.16s; }
.n9 { top: 45.5%; left: -2.0%; border-color: rgba(16,185,129,0.3); color: #34d399; animation-delay: 2.43s; }
.n5 { top: 23.5%; left: 3.9%; border-color: rgba(59,130,246,0.3); color: var(--blue); animation-delay: 2.7s; }
.n12 { top: 7.4%; left: 20.0%; border-color: rgba(245,158,11,0.3); color: #fbbf24; animation-delay: 2.97s; }
.n8 { display: none; }

/* ---- PROBLEM SECTION ---- */
.problem-section { padding: 100px 0; background: var(--bg-secondary); }
.problem-section .container { text-align: center; }
.pain-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 48px 0; }
.pain-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s ease;
  text-align: left;
}
.pain-card:hover { border-color: rgba(124,58,237,0.3); box-shadow: var(--glow-violet); transform: translateY(-4px); }
.pain-icon { font-size: 32px; margin-bottom: 16px; }
.pain-card h3 { font-family: var(--font-title); font-size: 20px; margin-bottom: 12px; }
.pain-card p { color: var(--text-secondary); font-size: 15px; line-height: 1.6; }
.problem-highlight {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 32px;
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: var(--radius);
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}
.highlight-bar { width: 4px; min-width: 4px; height: 60px; background: linear-gradient(to bottom, var(--violet), var(--blue)); border-radius: 2px; }
.problem-highlight p { font-size: 16px; line-height: 1.7; color: var(--text-secondary); }
.problem-highlight strong { color: var(--text-primary); }

/* ---- SERVICES SECTION ---- */
.services-section { padding: 100px 0; }
.services-section .container { text-align: center; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
/* 8 services: 4 columns, 2 rows */
.services-grid-wide { grid-template-columns: repeat(4, 1fr); }
.service-card {
  padding: 36px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: left;
  position: relative;
  transition: all 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); }
.service-card.featured {
  border-color: rgba(0,255,136,0.3);
  background: linear-gradient(135deg, rgba(0,255,136,0.05), rgba(59,130,246,0.05));
  box-shadow: var(--glow-green);
}
.service-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  padding: 4px 14px;
  background: linear-gradient(135deg, var(--neon-green), #00cc6a);
  color: #0a0a0f;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.service-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: rgba(0,255,136,0.08);
  border: 1px solid rgba(0,255,136,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--neon-green);
}
.service-card:not(.featured) .service-icon-wrap { background: rgba(124,58,237,0.08); border-color: rgba(124,58,237,0.2); color: #a78bfa; }
.service-card h3 { font-family: var(--font-title); font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.service-card p { color: var(--text-secondary); font-size: 15px; line-height: 1.6; margin-bottom: 24px; }
.service-features { list-style: none; }
.service-features li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text-secondary); }
.service-features li:last-child { border-bottom: none; }
.check { color: var(--neon-green); font-weight: 700; margin-right: 8px; }

/* ---- HOW SECTION ---- */
.how-section { padding: 100px 0; background: var(--bg-secondary); }
.how-section .container { text-align: center; }
.steps-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: stretch; gap: 0; margin: 64px 0; }
/* Equal-height step blocks */
.steps-equal .step-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.steps-equal .step-content { flex: 1; }
.step-item { padding: 32px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); }
.step-arrow { font-size: 28px; color: var(--neon-green); padding: 0 16px; }
/* Separate arrow element (not inside step-item) */
.step-arrow-sep { font-size: 28px; color: var(--neon-green); padding: 0 16px; display: flex; align-items: center; }
.step-num {
  font-family: var(--font-title);
  font-size: 48px;
  font-weight: 800;
  color: rgba(0,255,136,0.15);
  margin-bottom: 16px;
}
.step-item h3 { font-family: var(--font-title); font-size: 18px; margin-bottom: 12px; }
.step-item p { color: var(--text-secondary); font-size: 14px; line-height: 1.6; }
.flow-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 32px;
  overflow-x: auto;
}
.flow-node {
  padding: 12px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-title);
  white-space: nowrap;
}
.flow-node.highlight {
  border-color: var(--neon-green);
  color: var(--neon-green);
  box-shadow: var(--glow-green);
  background: rgba(0,255,136,0.05);
}
.flow-arrow { padding: 0 16px; color: var(--text-secondary); font-size: 18px; }

/* ---- PACKAGES SECTION ---- */
.packages-section { padding: 100px 0; }
.packages-section .container { text-align: center; }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.package-card {
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: left;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.package-card:hover { transform: translateY(-4px); }
.package-card.featured {
  border-color: var(--neon-green);
  box-shadow: var(--glow-green);
  background: linear-gradient(160deg, rgba(0,255,136,0.05), rgba(10,10,15,0));
}
.pkg-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 20px;
  background: linear-gradient(135deg, var(--neon-green), #00cc6a);
  color: #0a0a0f;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.pkg-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  font-family: var(--font-title);
}
.pkg-badge.starter { background: rgba(59,130,246,0.15); color: var(--blue); border: 1px solid rgba(59,130,246,0.3); }
.pkg-badge.business { background: rgba(0,255,136,0.15); color: var(--neon-green); border: 1px solid rgba(0,255,136,0.3); }
.pkg-badge.enterprise { background: rgba(124,58,237,0.15); color: #a78bfa; border: 1px solid rgba(124,58,237,0.3); }
.pkg-header h3 { font-family: var(--font-title); font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.pkg-header p { color: var(--text-secondary); font-size: 14px; margin-bottom: 24px; }
.pkg-price { padding: 20px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 24px; }
.price-setup { font-family: var(--font-title); font-size: 24px; font-weight: 800; color: var(--text-primary); }
.price-label { display: block; font-size: 12px; color: var(--text-secondary); margin: 4px 0; }
.price-retainer { font-size: 14px; color: var(--neon-green); font-weight: 600; }
.pkg-features { list-style: none; margin-bottom: 28px; flex: 1; }
.pkg-features li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text-secondary); }
.pkg-features li:last-child { border-bottom: none; }
.pkg-cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
  margin-top: auto;
}
.pkg-cta:hover { border-color: var(--neon-green); color: var(--neon-green); }
.pkg-cta.btn-glow {
  background: linear-gradient(135deg, var(--neon-green), #00cc6a);
  color: #0a0a0f;
  border-color: transparent;
  box-shadow: var(--glow-green);
}
.pkg-cta.btn-glow:hover { box-shadow: 0 0 30px rgba(0,255,136,0.5); }

/* ---- INDUSTRIES ---- */
.industries-section { padding: 80px 0; background: var(--bg-secondary); }
.industries-section .container { text-align: center; }
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.industry-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}
.industry-item:hover { border-color: rgba(0,255,136,0.3); color: var(--neon-green); transform: translateY(-2px); }
.ind-icon { font-size: 24px; }

/* ---- WHY US ---- */
.why-section { padding: 100px 0; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-advantages { margin-top: 36px; display: flex; flex-direction: column; gap: 24px; }
.adv-item { display: flex; gap: 20px; align-items: flex-start; }
.adv-icon {
  font-size: 24px;
  width: 48px;
  min-width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0,255,136,0.08);
  border: 1px solid rgba(0,255,136,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.adv-item h4 { font-family: var(--font-title); font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.adv-item p { color: var(--text-secondary); font-size: 14px; line-height: 1.6; }
.why-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.metric-card {
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.3s ease;
}
.metric-card:hover { border-color: rgba(0,255,136,0.3); box-shadow: var(--glow-green); }
.metric-val {
  font-family: var(--font-title);
  font-size: 40px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--neon-green), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 8px;
}
.metric-lbl { font-size: 13px; color: var(--text-secondary); line-height: 1.4; }

/* ---- AUDIT FORM ---- */
.audit-section { padding: 100px 0; background: var(--bg-secondary); }
.audit-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.audit-promises { list-style: none; margin: 24px 0; }
.audit-promises li { padding: 10px 0; display: flex; gap: 12px; align-items: center; color: var(--text-secondary); font-size: 15px; border-bottom: 1px solid var(--border); }
.audit-promises li:last-child { border-bottom: none; }
.check-green { color: var(--neon-green); font-weight: 700; font-size: 16px; }
.audit-guarantee {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(0,255,136,0.05);
  border: 1px solid rgba(0,255,136,0.15);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 24px;
}
.guarantee-icon { font-size: 20px; }

/* FORM */
.audit-form-wrap {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.audit-form { padding: 40px; }
.form-step { display: none; }
.form-step.active { display: block; }
.step-title { font-family: var(--font-title); font-size: 16px; font-weight: 600; color: var(--neon-green); margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; color: var(--text-secondary); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 15px;
  font-family: var(--font-body);
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--neon-green);
  box-shadow: 0 0 0 3px rgba(0,255,136,0.1);
}
.form-group select option { background: var(--bg-primary); }
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.checkbox-item, .radio-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
}
.checkbox-item:hover, .radio-item:hover { border-color: rgba(0,255,136,0.3); }
.checkbox-item input, .radio-item input { accent-color: var(--neon-green); }
.radio-group { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.step-nav { display: flex; gap: 12px; justify-content: space-between; margin-top: 24px; }
.btn-submit { width: 100%; justify-content: center; margin-top: 16px; }
.ai-analyzing {
  padding: 20px;
  background: rgba(0,255,136,0.05);
  border: 1px solid rgba(0,255,136,0.15);
  border-radius: var(--radius-sm);
  text-align: center;
  margin-bottom: 20px;
}
.analyze-icon { font-size: 32px; margin-bottom: 8px; }
.ai-analyzing p { font-size: 14px; color: var(--text-secondary); }
.form-progress { height: 3px; background: rgba(255,255,255,0.05); }
.progress-bar { height: 100%; background: linear-gradient(90deg, var(--neon-green), var(--blue)); transition: width 0.4s ease; }
.form-success { padding: 48px 40px; text-align: center; }
.success-icon { font-size: 48px; margin-bottom: 16px; }
.form-success h3 { font-family: var(--font-title); font-size: 22px; margin-bottom: 12px; }
.form-success p { color: var(--text-secondary); font-size: 15px; margin-bottom: 8px; }
.form-success a { color: var(--neon-green); }
.success-sub { font-size: 13px; }

/* ---- FOOTER ---- */
.site-footer { padding: 80px 0 32px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { font-family: var(--font-title); font-size: 24px; font-weight: 800; margin-bottom: 16px; }
.footer-brand p { color: var(--text-secondary); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  transition: all 0.2s;
}
.social-links a:hover { border-color: var(--neon-green); color: var(--neon-green); }
.footer-links h4, .footer-contact h4 { font-family: var(--font-title); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 20px; color: var(--text-secondary); }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a, .footer-contact a { color: var(--text-secondary); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-links a:hover, .footer-contact a:hover { color: var(--neon-green); }
.footer-contact p { font-size: 14px; color: var(--text-secondary); margin-bottom: 10px; }
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(0,255,136,0.08);
  border: 1px solid rgba(0,255,136,0.2);
  border-radius: 100px;
  font-size: 12px;
  color: var(--neon-green);
  margin-top: 16px;
}
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-secondary);
}

/* ---- NAV DROPDOWN ---- */
.nav-item-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-chevron { font-size: 11px; transition: transform 0.2s; }
.nav-item-dropdown:hover .nav-chevron { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  background: rgba(10,10,15,0.98);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(-4px);
  backdrop-filter: blur(20px);
  z-index: 1000;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6);
}
.nav-item-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary) !important;
  font-size: 13px;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}
.nav-dropdown a:hover {
  background: rgba(255,255,255,0.05);
  color: var(--text-primary) !important;
}
.dd-icon { font-size: 14px; flex-shrink: 0; width: 18px; text-align: center; }

/* Mobile dropdown */
@media (max-width: 768px) {
  .nav-dropdown {
    position: static;
    transform: none;
    width: 100%;
    opacity: 1;
    visibility: visible;
    border: none;
    background: rgba(255,255,255,0.03);
    padding: 4px 0;
    display: none;
  }
  .nav-item-dropdown.open .nav-dropdown { display: block; }
  .nav-item-dropdown.open .nav-chevron { transform: rotate(180deg); }
  .nav-dropdown a { padding: 8px 16px; }
}

/* ========================================
   SERVICE PAGES — Individual page styles
   ======================================== */

/* Back link */
.svc-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 24px;
  transition: color 0.2s;
}
.svc-back:hover { color: var(--neon-green); }

/* Hero Section */
.svc-hero {
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}
.svc-hero::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,255,136,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.svc-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}
.svc-hero-content { max-width: 680px; }
.svc-badge-wrap { margin-bottom: 20px; }
.svc-title {
  font-family: var(--font-title);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.svc-tagline {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.4;
}
.svc-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
}
.svc-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Large icon visual */
.svc-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-icon-large {
  width: 220px;
  height: 220px;
  border-radius: 32px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.svc-icon-large::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 33px;
  background: inherit;
  filter: blur(24px);
  opacity: 0.4;
  z-index: -1;
}

/* Features section */
.svc-features {
  padding: 100px 0;
  background: var(--bg-secondary);
}
.svc-features .section-title {
  margin-bottom: 56px;
}
.svc-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.svc-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s;
}
.svc-feature-card:hover {
  border-color: rgba(0,255,136,0.2);
  transform: translateY(-4px);
}
.svc-feat-num {
  font-family: var(--font-title);
  font-size: 40px;
  font-weight: 800;
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 16px;
}
.svc-feature-card h3 {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.svc-feature-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Benefits + Flow two-column */
.svc-benefits-flow {
  padding: 100px 0;
}
.svc-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.svc-benefits .section-title,
.svc-flow .section-title {
  margin-bottom: 32px;
}
.svc-benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.svc-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.svc-check {
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Flow steps */
.svc-flow-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.svc-flow-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.svc-flow-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.svc-flow-step p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  padding-top: 8px;
}

/* Final CTA */
.svc-final-cta {
  padding: 100px 0;
  background: var(--bg-secondary);
}
.svc-cta-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}
.svc-cta-box::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,255,136,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.svc-cta-box h2 {
  font-family: var(--font-title);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  margin-bottom: 16px;
}
.svc-cta-box p {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Service page responsive */
@media (max-width: 1024px) {
  .svc-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .svc-hero-visual { justify-content: flex-start; }
  .svc-icon-large { width: 160px; height: 160px; }
  .svc-two-col { grid-template-columns: 1fr; gap: 60px; }
}
@media (max-width: 768px) {
  .svc-hero { padding: 100px 0 60px; }
  .svc-features-grid { grid-template-columns: 1fr; }
  .svc-features, .svc-benefits-flow, .svc-final-cta { padding: 60px 0; }
  .svc-cta-box { padding: 40px 24px; }
}

/* ---- RESPONSIVE ---- */
/* Tablet large: 4-col grid becomes 2-col */
@media (max-width: 1280px) {
  .services-grid-wide { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; padding-left: 24px; }
  .pain-points, .services-grid, .packages-grid { grid-template-columns: 1fr; }
  .services-grid-wide { grid-template-columns: repeat(2, 1fr); }
  .steps-flow, .steps-equal { grid-template-columns: 1fr; }
  .step-arrow, .step-arrow-sep { display: none; }
  .why-grid, .audit-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; inset: 0; top: 64px; background: rgba(10,10,15,0.98); flex-direction: column; align-items: center; justify-content: flex-start; padding: 48px 24px; gap: 24px; }
  .nav-links.open { display: flex; }
  .nav-burger { display: flex; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .checkbox-grid, .radio-group { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .why-visual { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   GDPR CONSENT CHECKBOX
   ============================================ */
.gdpr-group { margin: 16px 0 20px; }
.gdpr-label { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; }
.gdpr-label input[type='checkbox'] { width: 18px; height: 18px; min-width: 18px; margin-top: 3px; accent-color: #00ff88; cursor: pointer; }
.gdpr-label span { font-size: 13px; color: #aaa; line-height: 1.6; }
.gdpr-label a { color: #00ff88; text-decoration: underline; }
.gdpr-label a:hover { color: #00cc66; }

/* ============================================
   PAGINA POLITICA DE CONFIDENTIALITATE
   ============================================ */
.privacy-page { max-width: 820px; margin: 120px auto 80px; padding: 0 24px; color: #ccc; }
.privacy-page h2 { color: #fff; font-size: 1.4rem; margin: 2rem 0 1rem; border-left: 3px solid #00ff88; padding-left: 14px; }
.privacy-page h3 { color: #aaa; font-size: 1.05rem; margin: 1.2rem 0 0.6rem; }
.privacy-page p { line-height: 1.8; margin-bottom: 1rem; color: #bbb; }
.privacy-page ul { margin: 0.5rem 0 1rem 1.5rem; }
.privacy-page ul li { margin-bottom: 0.5rem; line-height: 1.7; color: #bbb; }
.privacy-page a { color: #00ff88; text-decoration: underline; }
.privacy-page a:hover { color: #00cc66; }
.privacy-page hr { border: none; border-top: 1px solid #222; margin: 2rem 0; }
.privacy-page .privacy-updated { color: #666; font-size: 0.9rem; margin-bottom: 1.5rem; }
.privacy-page strong { color: #eee; }
.privacy-page table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem; font-size: 0.9rem; }
.privacy-page table th { background: #111; color: #00ff88; padding: 10px 14px; text-align: left; border: 1px solid #222; }
.privacy-page table td { padding: 10px 14px; border: 1px solid #222; color: #aaa; vertical-align: top; line-height: 1.6; }
.privacy-page table tr:nth-child(even) td { background: #0d0d12; }
@media (max-width: 768px) {
  .privacy-page { margin-top: 90px; }
  .privacy-page table, .privacy-page thead, .privacy-page tbody, .privacy-page th, .privacy-page td, .privacy-page tr { display: block; }
  .privacy-page thead tr { display: none; }
  .privacy-page td { border: none; border-bottom: 1px solid #222; padding: 8px 12px; }
}

/* Footer legal links */
.footer-legal { display: flex; gap: 12px; align-items: center; margin: 6px 0; font-size: 0.82rem; }
.footer-legal a { color: #666; text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: #00ff88; }
.footer-legal span { color: #333; }

/* ============================================
   TEMPLATE PAGINA GENERICA (page.php)
   ============================================ */
.page-content-wrap { min-height: 70vh; background: #0a0a0f; }
.page-header-simple { background: linear-gradient(180deg, #0d0d1a 0%, #0a0a0f 100%); padding: 120px 0 48px; border-bottom: 1px solid #1a1a2e; }
.page-title-simple { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; margin: 0; }
.page-title-simple::after { content: ''; display: block; width: 48px; height: 3px; background: #00ff88; margin-top: 12px; border-radius: 2px; }
.page-body { padding: 56px 0 80px; max-width: 820px; }

/* ============================================
   FORM SUCCESS MESSAGE
   ============================================ */
.form-success { padding: 32px 24px; text-align: center; animation: fadeInUp 0.5s ease; }
.success-checkmark { margin: 0 auto 20px; display: inline-block; animation: popIn 0.4s cubic-bezier(0.175,0.885,0.32,1.275); }
@keyframes popIn { from { transform: scale(0.5); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.success-title { color: #fff; font-size: 1.4rem; font-weight: 700; margin: 0 0 10px; }
.success-lead { color: #aaa; font-size: 0.95rem; margin: 0 0 24px; line-height: 1.6; }
.success-steps { display: flex; flex-direction: column; gap: 14px; margin: 0 0 20px; text-align: left; }
.success-step { display: flex; align-items: flex-start; gap: 14px; background: rgba(0,255,136,0.05); border: 1px solid rgba(0,255,136,0.12); border-radius: 10px; padding: 14px 16px; }
.ss-num { min-width: 28px; height: 28px; background: #00ff88; color: #0a0a0f; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; margin-top: 2px; }
.ss-content { display: flex; flex-direction: column; gap: 3px; }
.ss-content strong { color: #fff; font-size: 0.9rem; }
.ss-content span { color: #888; font-size: 0.82rem; line-height: 1.5; }
.success-note { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.04); border-radius: 8px; padding: 12px 16px; font-size: 0.82rem; color: #666; margin-bottom: 20px; text-align: left; }
.success-note strong { color: #aaa; }
.success-note svg { min-width: 16px; color: #555; }
.success-social p { color: #666; font-size: 0.85rem; margin: 0 0 10px; }
.success-fb-btn { display: inline-flex; align-items: center; gap: 8px; background: #1877f2; color: #fff; padding: 10px 20px; border-radius: 8px; text-decoration: none; font-size: 0.9rem; font-weight: 600; transition: background 0.2s; }
.success-fb-btn:hover { background: #1565d8; color: #fff; }

/* ================================================================
   BLOG — home.php, single.php
   ================================================================ */

/* Blog Main */
.blog-main { padding: 60px 0 80px; }
.blog-header { text-align: center; margin-bottom: 48px; }
.blog-title { font-family: var(--font-title); font-size: clamp(28px,4vw,44px); font-weight: 800; margin-bottom: 12px; }
.blog-subtitle { color: var(--text-secondary); font-size: 1.05rem; max-width: 560px; margin: 0 auto 0; }

/* Blog Grid */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; margin-bottom: 48px; }
.blog-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; overflow: hidden; transition: border-color 0.3s, transform 0.2s; display: flex; flex-direction: column; }
.blog-card:hover { border-color: var(--neon-green); transform: translateY(-4px); }
.blog-card-img-wrap { display: block; overflow: hidden; aspect-ratio: 16/9; }
.blog-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-img { transform: scale(1.04); }
.blog-card-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 0.8rem; }
.blog-date { color: var(--text-secondary); }
.blog-cat { background: rgba(0,255,136,0.08); border: 1px solid rgba(0,255,136,0.2); border-radius: 20px; padding: 2px 10px; color: var(--neon-green); font-size: 0.75rem; }
.blog-card-title { font-family: var(--font-title); font-size: 1.1rem; font-weight: 700; line-height: 1.4; margin-bottom: 10px; flex: 1; }
.blog-card-title a { color: var(--text-primary); text-decoration: none; }
.blog-card-title a:hover { color: var(--neon-green); }
.blog-card-excerpt { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.6; margin-bottom: 16px; }
.blog-read-more { display: inline-flex; align-items: center; gap: 6px; color: var(--neon-green); font-size: 0.88rem; font-weight: 600; text-decoration: none; transition: gap 0.2s; margin-top: auto; }
.blog-read-more:hover { gap: 10px; }

/* Pagination */
.blog-pagination { text-align: center; margin-bottom: 56px; }
.blog-pagination .nav-links { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.blog-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; transition: all 0.2s; }
.blog-pagination .page-numbers.current, .blog-pagination .page-numbers:hover { border-color: var(--neon-green); color: var(--neon-green); }
.blog-pagination .page-numbers.prev, .blog-pagination .page-numbers.next { width: auto; padding: 0 16px; }

/* Blog CTA box */
.blog-cta-box { background: linear-gradient(135deg, rgba(0,255,136,0.06), rgba(124,58,237,0.06)); border: 1px solid rgba(0,255,136,0.2); border-radius: 16px; padding: 40px 48px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; margin-top: 16px; }
.blog-cta-content h3 { font-family: var(--font-title); font-size: 1.3rem; font-weight: 700; margin-bottom: 6px; }
.blog-cta-content p { color: var(--text-secondary); font-size: 0.95rem; }
.blog-cta-box .btn { flex-shrink: 0; white-space: nowrap; }

/* Blog Empty */
.blog-empty { text-align: center; padding: 80px 0; color: var(--text-secondary); }

/* ============ SINGLE POST ============ */
.single-main { padding: 48px 0 80px; }
.single-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }

/* Breadcrumb */
.single-breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 20px; flex-wrap: wrap; }
.single-breadcrumb a { color: var(--text-secondary); text-decoration: none; }
.single-breadcrumb a:hover { color: var(--neon-green); }

/* Single Meta */
.single-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.single-cat { background: rgba(0,255,136,0.08); border: 1px solid rgba(0,255,136,0.2); border-radius: 20px; padding: 3px 12px; color: var(--neon-green); font-size: 0.78rem; font-weight: 600; }
.single-date, .single-read { color: var(--text-secondary); font-size: 0.82rem; }

/* Single Title */
.single-title { font-family: var(--font-title); font-size: clamp(24px,3.5vw,40px); font-weight: 800; line-height: 1.2; margin-bottom: 28px; }

/* Featured Image */
.single-featured-img { border-radius: 12px; overflow: hidden; margin-bottom: 32px; }
.single-featured-img img { width: 100%; height: auto; max-height: 480px; object-fit: cover; display: block; }

/* Content */
.single-content { font-size: 1rem; line-height: 1.8; color: var(--text-secondary); }
.single-content h2 { font-family: var(--font-title); font-size: 1.5rem; font-weight: 700; color: var(--text-primary); margin: 36px 0 16px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.single-content h3 { font-family: var(--font-title); font-size: 1.2rem; font-weight: 700; color: var(--text-primary); margin: 28px 0 12px; }
.single-content p { margin-bottom: 20px; }
.single-content ul, .single-content ol { padding-left: 24px; margin-bottom: 20px; }
.single-content li { margin-bottom: 8px; }
.single-content strong { color: var(--text-primary); }
.single-content a { color: var(--neon-green); text-decoration: none; border-bottom: 1px solid rgba(0,255,136,0.3); }
.single-content a:hover { border-color: var(--neon-green); }
.single-content blockquote { border-left: 3px solid var(--neon-green); background: rgba(0,255,136,0.04); padding: 16px 20px; margin: 28px 0; border-radius: 0 8px 8px 0; font-style: italic; color: var(--text-primary); }
.single-content img { max-width: 100%; border-radius: 10px; margin: 24px 0; }
.single-content code { background: rgba(255,255,255,0.06); border-radius: 4px; padding: 2px 7px; font-size: 0.88em; color: var(--neon-green); }
.single-content pre { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 20px; overflow-x: auto; margin: 24px 0; }
.single-content pre code { background: none; padding: 0; color: var(--text-secondary); }

/* Tags */
.single-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 32px 0; }
.single-tag { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 4px 12px; font-size: 0.8rem; color: var(--text-secondary); text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.single-tag:hover { border-color: var(--neon-green); color: var(--neon-green); }

/* Share */
.single-share { display: flex; align-items: center; gap: 12px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); margin: 24px 0 40px; font-size: 0.88rem; color: var(--text-secondary); }
.share-btn { padding: 6px 16px; border-radius: 6px; font-size: 0.82rem; font-weight: 600; text-decoration: none; transition: opacity 0.2s; }
.share-fb { background: #1877f2; color: #fff; }
.share-li { background: #0077b5; color: #fff; }
.share-btn:hover { opacity: 0.85; }

/* Related posts */
.related-posts { margin-top: 40px; }
.related-title { font-family: var(--font-title); font-size: 1.2rem; font-weight: 700; margin-bottom: 20px; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.related-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; overflow: hidden; text-decoration: none; transition: border-color 0.2s, transform 0.2s; display: flex; flex-direction: column; }
.related-card:hover { border-color: var(--neon-green); transform: translateY(-2px); }
.related-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.related-card-title { font-size: 0.88rem; font-weight: 600; color: var(--text-primary); padding: 10px 12px 4px; line-height: 1.4; display: block; }
.related-card-date { font-size: 0.75rem; color: var(--text-secondary); padding: 0 12px 10px; display: block; }

/* Sidebar */
.single-sidebar { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 24px; }
.sidebar-cta { background: linear-gradient(135deg, rgba(0,255,136,0.06), rgba(124,58,237,0.06)); border: 1px solid rgba(0,255,136,0.2); border-radius: 14px; padding: 24px; text-align: center; }
.sidebar-cta-icon { font-size: 2.5rem; margin-bottom: 12px; }
.sidebar-cta h4 { font-family: var(--font-title); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.sidebar-cta p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }
.sidebar-cta .btn { display: inline-flex !important; width: auto !important; margin-top: 16px; }
.sidebar-recent { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 20px; }
.sidebar-widget-title { font-family: var(--font-title); font-size: 0.95rem; font-weight: 700; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.sidebar-recent-item { display: flex; flex-direction: column; gap: 3px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.04); text-decoration: none; }
.sidebar-recent-item:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-recent-title { font-size: 0.88rem; color: var(--text-primary); line-height: 1.4; transition: color 0.2s; }
.sidebar-recent-item:hover .sidebar-recent-title { color: var(--neon-green); }
.sidebar-recent-date { font-size: 0.75rem; color: var(--text-secondary); }

@media (max-width: 960px) {
    .single-layout { grid-template-columns: 1fr; }
    .single-sidebar { position: static; }
    .related-grid { grid-template-columns: 1fr 1fr; }
    .blog-cta-box { flex-direction: column; text-align: center; padding: 32px 24px; }
}
@media (max-width: 600px) {
    .related-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   COOKIE CONSENT BANNER
   ================================================================ */
#cookie-consent-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: rgba(10,10,15,0.97); border-top: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(12px); padding: 20px 0; transform: translateY(100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1); }
#cookie-consent-banner.show { transform: translateY(0); }
.cookie-inner { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.cookie-text { flex: 1; min-width: 260px; font-size: 0.88rem; color: var(--text-secondary); line-height: 1.5; }
.cookie-text a { color: var(--neon-green); text-decoration: none; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.btn-cookie-accept { background: var(--neon-green); color: #0a0a0f; border: none; padding: 10px 24px; border-radius: 8px; font-weight: 700; font-size: 0.88rem; cursor: pointer; transition: opacity 0.2s; }
.btn-cookie-accept:hover { opacity: 0.85; }
.btn-cookie-decline { background: transparent; color: var(--text-secondary); border: 1px solid rgba(255,255,255,0.15); padding: 10px 20px; border-radius: 8px; font-size: 0.88rem; cursor: pointer; transition: border-color 0.2s; }
.btn-cookie-decline:hover { border-color: rgba(255,255,255,0.3); }
@media (max-width: 600px) { .cookie-inner { flex-direction: column; } .cookie-actions { width: 100%; } .btn-cookie-accept, .btn-cookie-decline { flex: 1; } }
