/* ============================================
   MOSECURE AI - CYBERPUNK THEME
   ============================================ */

/* CSS Variables */
:root {
  --bg-primary: #05050A;
  --bg-surface: #0F111A;
  --cyan: #00F0FF;
  --purple: #7000FF;
  --text-primary: #FFFFFF;
  --text-muted: #8A8F98;
  --red: #FF4757;
  --green: #2ED573;
  --yellow: #FFA502;
  --border-color: rgba(255, 255, 255, 0.1);
  
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

/* ============================================
   BACKGROUND EFFECTS
   ============================================ */

.grid-pattern {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}

.noise-overlay::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
  z-index: 1;
}

.gradient-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  top: 0;
  left: 25%;
  width: 600px;
  height: 600px;
  background: rgba(0, 240, 255, 0.05);
}

.orb-2 {
  bottom: 0;
  right: 25%;
  width: 500px;
  height: 500px;
  background: rgba(112, 0, 255, 0.05);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-gradient {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-cyan {
  color: var(--cyan) !important;
}

.text-red {
  color: var(--red) !important;
}

.text-muted-custom {
  color: var(--text-muted);
}

.section-py {
  padding: 100px 0;
  position: relative;
  z-index: 10;
}

/* Glass Effect */
.glass {
  background: rgba(15, 17, 26, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Glow Effects */
.glow-cyan {
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4),
              0 0 40px rgba(0, 240, 255, 0.2);
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
  z-index: 1000;
}

.navbar.scrolled {
  background: rgba(15, 17, 26, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.brand-icon {
  width: 32px;
  height: 32px;
  color: var(--cyan);
}

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

.brand-accent {
  color: var(--cyan);
}

.nav-link {
  color: var(--text-muted) !important;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  position: relative;
}

.nav-link:hover {
  color: var(--text-primary) !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 60%;
}

/* Buttons */
.btn-cyan {
  background: var(--cyan);
  color: var(--bg-primary);
  border: none;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-cyan:hover {
  background: #00D4DD;
  color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3);
}

.btn-outline-cyan {
  background: transparent;
  color: var(--cyan);
  border: 1px solid var(--cyan);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.btn-outline-cyan:hover {
  background: rgba(0, 240, 255, 0.1);
  color: var(--cyan);
  transform: translateY(-2px);
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.digital-rain {
  position: absolute;
  inset: 0;
  opacity: 0.4;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(5, 5, 10, 0.5) 50%, var(--bg-primary) 100%);
  pointer-events: none;
}

.hero-bottom-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to top, var(--bg-primary), transparent);
  pointer-events: none;
}

/* Floating Elements */
.floating-element {
  position: absolute;
  border: 1px solid rgba(0, 240, 255, 0.2);
  animation: float 6s ease-in-out infinite;
  pointer-events: none;
}

.elem-1 {
  top: 25%;
  left: 5%;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  animation-delay: 0s;
}

.elem-2 {
  bottom: 30%;
  right: 8%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border-color: rgba(112, 0, 255, 0.2);
  animation-delay: 2s;
}

.elem-3 {
  top: 35%;
  right: 25%;
  width: 45px;
  height: 45px;
  border-radius: 4px;
  transform: rotate(45deg);
  border-color: rgba(0, 240, 255, 0.1);
  animation-delay: 4s;
}

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

/* Hero Content */
.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(15, 17, 26, 0.8);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-badge i {
  width: 16px;
  height: 16px;
  color: var(--cyan);
}

.hero-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.hero-cta {
  margin-bottom: 4rem;
}

.hero-cta .btn {
  margin: 0.5rem;
}

/* Hero Stats */
.hero-stats {
  max-width: 800px;
  margin: 0 auto;
}

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

.stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 240, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
  background: rgba(0, 240, 255, 0.2);
}

.stat-icon i {
  width: 24px;
  height: 24px;
  color: var(--cyan);
}

.stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: rgba(15, 17, 26, 0.8);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--cyan);
  margin-bottom: 1.5rem;
}

.section-badge.badge-red {
  border-color: rgba(255, 71, 87, 0.3);
  color: var(--red);
}

.section-badge i {
  width: 16px;
  height: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */

.problem-card {
  background: rgba(15, 17, 26, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
}

.problem-card:hover {
  border-color: rgba(0, 240, 255, 0.3);
  transform: translateY(-5px);
}

.problem-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 71, 87, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
}

.problem-icon i {
  width: 28px;
  height: 28px;
  color: var(--red);
}

.problem-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.problem-stat {
  text-align: right;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 700;
}

.stat-number.text-red {
  color: var(--red);
}

.stat-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.problem-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Stats Bar */
.stats-bar {
  background: rgba(15, 17, 26, 0.8);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 3rem;
}

.bar-stat-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 0.25rem;
}

.bar-stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ============================================
   SOLUTION SECTION
   ============================================ */

.solution-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: rgba(0, 240, 255, 0.03);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.workflow-steps {
  position: relative;
}

.workflow-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(15, 17, 26, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.workflow-step:hover {
  border-color: rgba(0, 240, 255, 0.3);
}

.step-number {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cyan);
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.step-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 240, 255, 0.1);
  border-radius: 8px;
}

.step-icon i {
  width: 20px;
  height: 20px;
  color: var(--cyan);
}

.step-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.step-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.step-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  background: rgba(0, 240, 255, 0.1);
  color: var(--cyan);
  font-size: 0.75rem;
  border-radius: 4px;
}

.step-tag i {
  width: 12px;
  height: 12px;
}

/* Solution Image */
.solution-image-wrapper {
  position: relative;
}

.solution-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 240, 255, 0.2);
}

.solution-image img {
  width: 100%;
  display: block;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 5, 10, 0.8), transparent);
}

.floating-label {
  position: absolute;
  padding: 0.5rem 1rem;
  background: rgba(15, 17, 26, 0.9);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--cyan);
}

.label-1 {
  top: 1rem;
  left: 1rem;
}

.label-2 {
  bottom: 1rem;
  right: 1rem;
  color: var(--green);
  border-color: rgba(46, 213, 115, 0.3);
}

.decor-square {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 8px;
  z-index: -1;
}

.decor-circle {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(112, 0, 255, 0.2);
  border-radius: 50%;
  z-index: -1;
}

/* Code Preview */
.code-preview {
  background: rgba(15, 17, 26, 0.8);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 3rem;
}

.code-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid var(--border-color);
}

.code-dots {
  display: flex;
  gap: 0.5rem;
}

.code-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.code-dots span:nth-child(1) { background: var(--red); }
.code-dots span:nth-child(2) { background: var(--yellow); }
.code-dots span:nth-child(3) { background: var(--green); }

.code-filename {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.code-body {
  padding: 1.5rem;
  overflow-x: auto;
}

.code-body pre {
  margin: 0;
  font-family: 'Fira Code', monospace;
  font-size: 0.9rem;
  line-height: 1.6;
}

.code-keyword { color: var(--purple); }
.code-class { color: var(--text-primary); }
.code-string { color: var(--cyan); }
.code-variable { color: var(--text-primary); }
.code-property { color: var(--text-primary); }
.code-method { color: var(--cyan); }

/* ============================================
   FEATURES SECTION
   ============================================ */

.feature-card {
  background: rgba(15, 17, 26, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(0, 240, 255, 0.3);
  transform: translateY(-5px);
}

.feature-card.feature-large {
  display: flex;
  flex-direction: column;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.feature-icon.icon-cyan {
  background: rgba(0, 240, 255, 0.1);
}

.feature-icon.icon-cyan i {
  color: var(--cyan);
}

.feature-icon.icon-purple {
  background: rgba(112, 0, 255, 0.1);
}

.feature-icon.icon-purple i {
  color: var(--purple);
}

.feature-icon i {
  width: 24px;
  height: 24px;
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  color: var(--cyan);
  font-size: 0.875rem;
  margin-top: auto;
  padding-top: 1rem;
}

.feature-link i {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.feature-link:hover i {
  transform: translateX(4px);
}

/* ============================================
   DASHBOARD SECTION
   ============================================ */

.dashboard-section {
  background: linear-gradient(to bottom, var(--bg-primary), rgba(10, 10, 18, 1), var(--bg-primary));
}

.dashboard-main {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 240, 255, 0.2);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
}

.dashboard-main img {
  width: 100%;
  display: block;
}

.dash-stat-card {
  background: rgba(15, 17, 26, 0.8);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1rem;
}

.dash-stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.dash-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.dash-stat-change {
  font-size: 0.75rem;
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
}

.dash-stat-change.positive {
  color: var(--green);
  background: rgba(46, 213, 115, 0.1);
}

.dash-stat-change.neutral {
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
}

/* Chart Cards */
.chart-card {
  background: rgba(15, 17, 26, 0.8);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  height: 100%;
}

.chart-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.chart-container {
  height: 250px;
  position: relative;
}

.pie-chart-container {
  height: 200px;
}

.time-range-buttons {
  display: flex;
  gap: 0.5rem;
}

.time-btn {
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: var(--text-muted);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.time-btn:hover,
.time-btn.active {
  background: var(--cyan);
  color: var(--bg-primary);
}

/* Device Legend */
.device-legend {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

/* Detection Table */
.detection-table {
  margin: 0;
}

.detection-table thead th {
  background: transparent;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  padding: 0.75rem;
}

.detection-table tbody td {
  border-bottom: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 0.875rem;
  padding: 0.75rem;
  vertical-align: middle;
}

.detection-table tbody tr:last-child td {
  border-bottom: none;
}

.detection-table .badge {
  font-size: 0.625rem;
  padding: 0.25rem 0.5rem;
}

.detection-table i {
  width: 14px;
  height: 14px;
}

/* ============================================
   ARCHITECTURE SECTION
   ============================================ */

.arch-image-wrapper {
  margin-bottom: 3rem;
}

.arch-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 240, 255, 0.2);
}

.arch-image img {
  width: 100%;
  display: block;
}

.arch-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 5, 10, 0.9), transparent);
}

.arch-metrics {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.arch-metric {
  background: rgba(15, 17, 26, 0.9);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
}

.metric-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 0.25rem;
}

.metric-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Tech Cards */
.tech-card {
  background: rgba(15, 17, 26, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
}

.tech-card:hover {
  border-color: rgba(0, 240, 255, 0.3);
}

.tech-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 240, 255, 0.1);
  border-radius: 12px;
}

.tech-icon i {
  width: 24px;
  height: 24px;
  color: var(--cyan);
}

.tech-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.tech-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 0.75rem;
  transition: all 0.3s ease;
}

.tech-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.tech-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.tech-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Deployment Card */
.deployment-card {
  background: rgba(15, 17, 26, 0.8);
  border: 1px solid rgba(0, 240, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 3rem;
}

.deployment-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.deployment-desc {
  color: var(--text-muted);
  margin: 0;
}

.deployment-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.deployment-option {
  padding: 0.5rem 1rem;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--cyan);
}

/* ============================================
   PRICING SECTION
   ============================================ */

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.toggle-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.toggle-label.active {
  color: var(--text-primary);
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 24px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  transition: all 0.3s ease;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: var(--text-muted);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.toggle-switch input:checked + .toggle-slider {
  background: rgba(0, 240, 255, 0.2);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(24px);
  background: var(--cyan);
}

.save-badge {
  padding: 0.25rem 0.5rem;
  background: rgba(46, 213, 115, 0.2);
  color: var(--green);
  font-size: 0.75rem;
  border-radius: 4px;
}

/* Pricing Cards */
.pricing-card {
  background: rgba(15, 17, 26, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: rgba(0, 240, 255, 0.3);
}

.pricing-card.popular {
  border: 2px solid var(--cyan);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.2);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 1rem;
  background: var(--cyan);
  color: var(--bg-primary);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
}

.pricing-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 240, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 1rem;
}

.pricing-icon i {
  width: 24px;
  height: 24px;
  color: var(--cyan);
}

.pricing-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.pricing-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.pricing-price {
  margin-bottom: 0.5rem;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
}

.price-value.custom {
  font-size: 2rem;
}

.price-period {
  font-size: 1rem;
  color: var(--text-muted);
}

.pricing-billed {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  color: var(--text-primary);
}

.pricing-features li.disabled {
  color: var(--text-muted);
}

.pricing-features li i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.pricing-features li:not(.disabled) i {
  color: var(--green);
}

.pricing-features li.disabled i {
  color: var(--text-muted);
}

/* ============================================
   SECURITY SECTION
   ============================================ */

.security-section {
  background: linear-gradient(to bottom, var(--bg-primary), rgba(10, 10, 20, 1), var(--bg-primary));
}

.security-bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: rgba(0, 240, 255, 0.03);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.security-card {
  background: rgba(15, 17, 26, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
}

.security-card:hover {
  border-color: rgba(0, 240, 255, 0.3);
}

.security-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 240, 255, 0.1);
  border-radius: 12px;
  flex-shrink: 0;
}

.security-icon i {
  width: 24px;
  height: 24px;
  color: var(--cyan);
}

.security-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.security-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* Compliance Section */
.compliance-section {
  text-align: center;
  margin-top: 3rem;
}

.compliance-text {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.compliance-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.compliance-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(15, 17, 26, 0.8);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--text-primary);
}

.compliance-badge i {
  width: 20px;
  height: 20px;
  color: var(--cyan);
}

/* Security Bottom Cards */
.security-bottom-card {
  background: rgba(15, 17, 26, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  height: 100%;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-form-card {
  background: rgba(15, 17, 26, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
}

.form-label {
  color: var(--text-primary);
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.form-control,
.form-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  padding: 0.75rem 1rem;
}

.form-control::placeholder {
  color: var(--text-muted);
}

.form-control:focus,
.form-select:focus {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.1);
  color: var(--text-primary);
}

.form-select option {
  background: var(--bg-surface);
  color: var(--text-primary);
}

/* Success Message */
.success-message {
  text-align: center;
  padding: 3rem;
}

.success-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 213, 115, 0.2);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}

.success-icon i {
  width: 32px;
  height: 32px;
  color: var(--green);
}

.success-message h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.success-message p {
  color: var(--text-muted);
}

/* Sidebar */
.sidebar-card {
  background: rgba(15, 17, 26, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.sidebar-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

/* Contact Info */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 240, 255, 0.1);
  border-radius: 8px;
}

.contact-icon i {
  width: 20px;
  height: 20px;
  color: var(--cyan);
}

.contact-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}

.contact-value {
  font-size: 0.875rem;
  color: var(--text-primary);
  margin: 0;
  transition: color 0.3s ease;
}

.contact-info-item:hover .contact-value {
  color: var(--cyan);
}

/* Quick Links */
.quick-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.quick-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.quick-link-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 240, 255, 0.1);
  border-radius: 8px;
  flex-shrink: 0;
}

.quick-link-icon i {
  width: 20px;
  height: 20px;
  color: var(--cyan);
}

.quick-link-content {
  flex: 1;
}

.quick-link-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0;
}

.quick-link-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}

.quick-link-arrow {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.quick-link:hover .quick-link-arrow {
  color: var(--cyan);
  transform: translateX(4px);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  position: relative;
  padding: 80px 0 40px;
  z-index: 10;
}

.footer-top-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 240, 255, 0.2), transparent);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 1rem;
}

.footer-brand .brand-icon {
  width: 32px;
  height: 32px;
  color: var(--cyan);
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(0, 240, 255, 0.2);
}

.social-link i {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.social-link:hover i {
  color: var(--cyan);
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid var(--border-color);
}

.copyright {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
}

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

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 991.98px) {
  .section-py {
    padding: 60px 0;
  }
  
  .pricing-card.popular {
    transform: none;
  }
  
  .arch-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .navbar-collapse {
    background: rgba(15, 17, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
  }
  
  .nav-link::after {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .arch-metrics {
    grid-template-columns: 1fr;
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 1rem;
  }
  
  .arch-overlay {
    position: relative;
    background: linear-gradient(to bottom, transparent, var(--bg-primary));
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--cyan), var(--purple));
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #00D4DD, #6000DD);
}

/* Selection */
::selection {
  background: rgba(0, 240, 255, 0.3);
  color: var(--text-primary);
}
