/* ===== VARIÁVEIS CSS - TEMA PRINCIPAL ===== */
:root {
  --primary: #8B5FBF;
  --primary-dark: #6A3093;
  --primary-light: #A47CC5;
  --secondary: #00C9FF;
  --accent: #FF6B8B;
  --dark: #1A1A2E;
  --darker: #0F0F1B;
  --light: #F5F5F7;
  --gray: #8E8E93;
  --success: #4CD964;
  --warning: #FFCC00;
  --danger: #FF3B30;
  --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, #0099FF 100%);
  --gradient-success: linear-gradient(135deg, var(--success) 0%, #2AC56D 100%);
  --gradient-danger: linear-gradient(135deg, var(--danger) 0%, #D70015 100%);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius: 12px;
  --border-radius-lg: 20px;
}

/* ===== RESET E ESTILOS BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--light);
  background-color: var(--darker);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 100px 0;
}

h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-light {
  background: white;
  color: var(--primary);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
}

.btn-outline-light {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.section-title {
  position: relative;
  margin-bottom: 4rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

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

/* ===== HEADER ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

header.scrolled {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
}

.logo-text span {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-menu li {
  margin-left: 2rem;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
}

/* ===== SERVICE HERO SECTION ===== */
.service-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
}

.service-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><polygon fill="%238B5FBF" points="0,1000 1000,0 1000,1000"/></svg>');
  background-size: cover;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(139, 95, 191, 0.2);
  color: var(--primary-light);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(139, 95, 191, 0.3);
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.hero-visual {
  position: relative;
  height: 500px;
  background: var(--gradient);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

/* ===== COMPONENTES ESPECÍFICOS ===== */

/* Mockup Container (Chat) */
.mockup-container {
  width: 300px;
  height: 600px;
  background: white;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.mockup-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.mockup-contact {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mockup-avatar {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.mockup-chat {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.message {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 0.9rem;
}

.message-received {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.message-sent {
  background: white;
  color: #333;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

/* Repair Station Animation */
.repair-station {
  width: 400px;
  height: 300px;
  position: relative;
}

.tool-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  animation: float 3s ease-in-out infinite;
}

.tool-icon:nth-child(1) { top: 50px; left: 50px; animation-delay: 0s; }
.tool-icon:nth-child(2) { top: 50px; right: 50px; animation-delay: 0.5s; }
.tool-icon:nth-child(3) { bottom: 50px; left: 50px; animation-delay: 1s; }
.tool-icon:nth-child(4) { bottom: 50px; right: 50px; animation-delay: 1.5s; }
.tool-icon:nth-child(5) { top: 50%; left: 50%; transform: translate(-50%, -50%); animation-delay: 2s; }

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

/* WiFi Capture Demo */
.wifi-capture-demo {
  width: 300px;
  height: 600px;
  background: white;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.demo-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: white;
}

.demo-header {
  text-align: center;
  margin-bottom: 30px;
}

.demo-logo {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.demo-form {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.form-input {
  padding: 12px;
  border-radius: 8px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.demo-button {
  background: white;
  color: #667eea;
  border: none;
  padding: 15px;
  border-radius: 8px;
  font-weight: bold;
  margin-top: 10px;
}

/* Proxmox Dashboard */
.proxmox-dashboard {
  width: 350px;
  height: 400px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.dashboard-header {
  background: #E5702A;
  color: white;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dashboard-content {
  padding: 20px;
  color: #333;
}

.vm-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vm-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: #f5f5f5;
  border-radius: 5px;
  font-size: 0.9rem;
}

.vm-status {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.vm-status.running { background: #4CD964; }
.vm-status.stopped { background: #FF3B30; }

/* Proxmox Architecture */
.proxmox-architecture {
  width: 300px;
  height: 300px;
  position: relative;
}

.cluster-node {
  position: absolute;
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-weight: bold;
  font-size: 0.8rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cluster-node:nth-child(1) { top: 20px; left: 50%; transform: translateX(-50%); }
.cluster-node:nth-child(2) { top: 120px; left: 20px; }
.cluster-node:nth-child(3) { top: 120px; right: 20px; }
.cluster-node:nth-child(4) { bottom: 20px; left: 50%; transform: translateX(-50%); }

.cluster-connections {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.connection {
  position: absolute;
  background: rgba(255,255,255,0.5);
  height: 2px;
  transform-origin: left center;
}

/* Filter Animation */
.filter-animation {
  width: 400px;
  height: 400px;
  position: relative;
}

.filter-node {
  position: absolute;
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-weight: bold;
  font-size: 0.8rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.filter-node:nth-child(1) { 
  top: 50px; 
  left: 50%; 
  transform: translateX(-50%); 
  background: var(--success);
  color: white;
}
.filter-node:nth-child(2) { 
  top: 150px; 
  left: 100px; 
  background: var(--warning);
  color: var(--dark);
}
.filter-node:nth-child(3) { 
  top: 150px; 
  right: 100px; 
  background: var(--danger);
  color: white;
}
.filter-node:nth-child(4) { 
  bottom: 150px; 
  left: 100px; 
  background: var(--primary);
  color: white;
}
.filter-node:nth-child(5) { 
  bottom: 150px; 
  right: 100px; 
  background: var(--secondary);
  color: white;
}
.filter-node:nth-child(6) { 
  bottom: 50px; 
  left: 50%; 
  transform: translateX(-50%); 
  background: white;
  color: var(--dark);
}

/* Analytics Dashboard */
.analytics-dashboard {
  width: 300px;
  height: 400px;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.dashboard-stats {
  padding: 20px;
  color: #333;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.stat-value {
  font-weight: bold;
  color: var(--primary);
}

/* Generic Dashboard */
.dashboard {
  width: 350px;
  height: 400px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.stats-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
  font-size: 0.9rem;
}

.stats-value {
  font-weight: bold;
}

.stats-blocked {
  color: var(--danger);
}

.stats-allowed {
  color: var(--success);
}

.stats-warning {
  color: var(--warning);
}

/* ===== SEÇÕES COMUNS ===== */

/* Features Section */
.features {
  background: var(--dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: rgba(139, 95, 191, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
}

.feature-card h3 {
  margin-bottom: 15px;
}

/* Benefits Section */
.benefits {
  background: var(--darker);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.08);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary);
}

/* How It Works Section */
.how-it-works {
  background: var(--darker);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.step-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.step-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.08);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  font-size: 1.2rem;
}

.step-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary);
}

/* Solutions Section */
.solutions {
  background: var(--darker);
}

.solutions-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.solutions-content h2 {
  text-align: left;
}

.solutions-content .section-title::after {
  left: 0;
  transform: none;
}

.solutions-features {
  margin-top: 30px;
}

.solution-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.solution-feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(139, 95, 191, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.solutions-visual {
  position: relative;
  height: 500px;
  background: var(--gradient);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

/* Services Section */
.services {
  background: var(--dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.08);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: rgba(139, 95, 191, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
}

.service-card h3 {
  margin-bottom: 15px;
}

/* Equipment Types Section */
.equipment {
  background: var(--darker);
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.equipment-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.equipment-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.08);
}

.equipment-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary);
}

/* Technologies Section */
.technologies {
  background: var(--dark);
}

.technologies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.technology-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.technology-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.08);
}

.technology-logo {
  font-size: 3rem;
  margin-bottom: 20px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Integration Section */
.integrations {
  background: var(--darker);
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.integration-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.integration-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.08);
}

.integration-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary);
}

/* Process Section */
.process {
  background: var(--darker);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
}

.step-content h3 {
  margin-bottom: 10px;
}

/* Categories Section */
.categories {
  background: var(--dark);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.category-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.category-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.08);
}

.category-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.category-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Pricing Section */
.pricing {
  background: var(--darker);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: 'Mais Popular';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: white;
  padding: 5px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.08);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-header {
  margin-bottom: 30px;
}

.pricing-name {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.pricing-period {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
}

.pricing-features li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-features li i {
  color: var(--success);
  margin-right: 10px;
}

/* FAQ Section */
.faq {
  background: var(--dark);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
  padding: 25px 30px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active .faq-answer {
  padding: 0 30px 25px;
  max-height: 500px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* Guarantee Section */
.guarantee {
  background: var(--dark);
}

.guarantee-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(76, 217, 100, 0.1);
  color: #4CD964;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 30px;
  border: 2px solid rgba(76, 217, 100, 0.3);
}

/* Demo Section */
.demo {
  background: var(--dark);
}

.demo-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.demo-content h2 {
  text-align: left;
}

.demo-content .section-title::after {
  left: 0;
  transform: none;
}

.demo-features {
  margin-top: 30px;
}

.demo-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.demo-feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(139, 95, 191, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.demo-visual {
  position: relative;
  height: 500px;
  background: var(--gradient);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

/* CTA Section */
.cta {
  background: var(--gradient);
  color: white;
  text-align: center;
  padding: 100px 0;
}

.cta h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.cta p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* ===== FOOTER ===== */
footer {
  background: var(--darker);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.footer-logo span {
  color: var(--primary);
}

.footer-description {
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: white;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Proxmox Brand Colors */
.proxmox-color {
  color: #E5702A;
}

.bg-proxmox {
  background: #E5702A;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
  h1 {
    font-size: 2.8rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
  
  .hero-content,
  .solutions-container,
  .demo-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
    font-size: 1.5rem;
    color: white;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--dark);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
    transition: var(--transition);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-menu li {
    margin: 0 0 30px 0;
  }
  
  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
  }
  
  .features-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  section {
    padding: 70px 0;
  }
  
  h1 {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .service-hero {
    padding: 120px 0 60px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Deployment Options Section */
    .deployment {
      background: var(--darker);
    }

    .deployment-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .deployment-card {
      background: rgba(255, 255, 255, 0.05);
      border-radius: var(--border-radius);
      padding: 40px 30px;
      text-align: center;
      transition: var(--transition);
      border: 1px solid rgba(255, 255, 255, 0.05);
      position: relative;
    }

    .deployment-card.featured {
      border: 2px solid var(--primary);
      transform: scale(1.05);
    }

    .deployment-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-lg);
      background: rgba(255, 255, 255, 0.08);
    }

    .deployment-card.featured:hover {
      transform: scale(1.05) translateY(-10px);
    }

    .deployment-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 25px;
      background: rgba(139, 95, 191, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: var(--primary);
    }

    .deployment-badge {
      position: absolute;
      top: -10px;
      right: 20px;
      background: var(--primary);
      color: white;
      padding: 5px 15px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
    }

    .deployment-features {
      list-style: none;
      margin: 20px 0;
      text-align: left;
    }

    .deployment-features li {
      padding: 8px 0;
      display: flex;
      align-items: center;
    }

    .deployment-features li::before {
      content: '✓';
      color: var(--success);
      margin-right: 10px;
      font-weight: bold;
    }


     /* Process Section */
    .process {
      background: var(--darker);
    }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      position: relative;
    }

    .process-step {
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .step-number {
      width: 60px;
      height: 60px;
      background: var(--gradient);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      color: white;
      font-weight: bold;
      font-size: 1.5rem;
    }

    .step-content h3 {
      margin-bottom: 10px;
    }

    /* Guarantee Section */
    .guarantee {
      background: var(--dark);
    }

    .guarantee-content {
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
    }

    .guarantee-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(76, 217, 100, 0.1);
      color: #4CD964;
      padding: 15px 30px;
      border-radius: 50px;
      font-weight: 600;
      margin-bottom: 30px;
      border: 2px solid rgba(76, 217, 100, 0.3);
    }

    /* CTA Section */
    .cta {
      background: var(--gradient);
      color: white;
      text-align: center;
      padding: 100px 0;
    }

    .cta h2 {
      color: white;
      margin-bottom: 1.5rem;
    }

    .cta p {
      color: rgba(255, 255, 255, 0.9);
      max-width: 600px;
      margin: 0 auto 2.5rem;
    }

    .cta-buttons {
      display: flex;
      gap: 15px;
      justify-content: center;
    }

    .btn-light {
      background: white;
      color: var(--primary);
    }

    .btn-light:hover {
      background: rgba(255, 255, 255, 0.9);
      transform: translateY(-3px);
    }

    .btn-outline-light {
      background: transparent;
      color: white;
      border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .btn-outline-light:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: white;
    }

  /*Mikrotik*/

  .mikrotik-dashboard {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            width: 100%;
            max-width: 500px;
            overflow: hidden;
            transition: transform 0.3s ease;
        }
        
        .mikrotik-dashboard:hover {
            transform: translateY(-5px);
        }
        
        .dashboard-header {
            background: linear-gradient(to right, #e53212, #ff6b4a);
            color: white;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
        }
        
        .dashboard-content {
            padding: 20px;
        }
        
        h4 {
            color: #333;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .interface-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 20px;
        }
        
        .interface-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 12px;
            border-radius: 6px;
            background-color: #f8f9fa;
            transition: background-color 0.2s;
        }
        
        .interface-item:hover {
            background-color: #e9ecef;
        }
        
        .interface-status {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }
        
        .status-up {
            background-color: #28a745;
        }
        
        .status-down {
            background-color: #dc3545;
        }
        
        .status-limited {
            background-color: #ffc107;
        }
        
        .stats-container {
            margin-top: 20px;
            padding: 15px;
            background: #e8f4fd;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        
        .stats-row {
            display: flex;
            justify-content: space-between;
        }
        
        .stats-label {
            color: #666;
            font-size: 0.9rem;
        }
        
        .stats-value {
            color: #333;
            font-weight: 500;
        }
        
        .traffic-graph {
            height: 100px;
            background: linear-gradient(to top, #e8f4fd, #f8f9fa);
            border-radius: 6px;
            margin-top: 15px;
            position: relative;
            overflow: hidden;
        }
        
        .traffic-bar {
            position: absolute;
            bottom: 0;
            width: 8px;
            border-radius: 4px 4px 0 0;
        }
        
        .traffic-in {
            background-color: #3498db;
        }
        
        .traffic-out {
            background-color: #2ecc71;
        }
        
        .devices-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin-top: 20px;
        }
        
        .device-card {
            background-color: white;
            border-radius: 10px;
            padding: 15px;
            width: 180px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            text-align: center;
        }
        
        .device-icon {
            font-size: 2rem;
            color: #e53212;
            margin-bottom: 10px;
        }
        
        .device-name {
            font-weight: 600;
            margin-bottom: 5px;
            color: #333;
        }
        
        .device-info {
            font-size: 0.85rem;
            color: #666;
        }
        
        @media (max-width: 768px) {
            .devices-container {
                flex-direction: column;
                align-items: center;
            }
            
            .device-card {
                width: 100%;
                max-width: 250px;
            }
        }

        /*FLOATS*/
        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 20%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            width: 60px;
            height: 60px;
            top: 60%;
            left: 10%;
            animation-delay: 1s;
        }

        .floating-element:nth-child(3) {
            width: 100px;
            height: 100px;
            top: 40%;
            left: 60%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(4) {
            width: 70px;
            height: 70px;
            top: 70%;
            left: 70%;
            animation-delay: 3s;
        }

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