/* ===================== SERVICES PAGE STYLES ===================== */

/* Using the design system variables from style.css */

/* ===================== ENHANCED SERVICES HERO SECTION ===================== */
.enhanced-services-hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--text-primary) 0%, #0f1419 50%, #1a202c 100%);
  overflow: hidden;
}

.services-hero-background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.floating-particle {
  display: none;
}

.services-hero-content {
  position: relative;
  z-index: 2;
}

.services-hero-badge-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--accent-cool) 0%, var(--accent-mid) 100%);
  color: white;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(66, 93, 207, 0.4);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.services-hero-badge:hover {
  box-shadow: 0 8px 20px rgba(66, 93, 207, 0.3);
}

.services-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: white;
  margin-bottom: 1.5rem;
}

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

.services-hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
}

.services-hero-stats {
  margin-top: 3rem;
}

.services-stat-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  text-align: center;
}

.services-stat-card:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 25px rgba(66, 93, 207, 0.15);
}

.services-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-cool) 0%, var(--accent-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.5rem;
}

.services-stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.services-hero-cta {
  margin-top: 2rem;
}

.services-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  position: relative;
  margin: 0 auto 0.5rem;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}

/* ===================== ENHANCED TECHNOLOGY SECTION ===================== */
.enhanced-technology-section {
  position: relative;
}

.enhanced-tech-badge-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.enhanced-tech-badge {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: linear-gradient(135deg, #38b2ac 0%, #319795 100%);
  color: white;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(56, 178, 172, 0.3);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.enhanced-tech-badge:hover {
  box-shadow: 0 8px 20px rgba(56, 178, 172, 0.3);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tech-category {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(25, 42, 77, 0.08);
  border: 1px solid var(--border-color);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}


.tech-category:hover {
  box-shadow: 0 8px 25px rgba(25, 42, 77, 0.12);
}

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

.tech-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, #38b2ac 0%, #319795 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto 1rem;
}

.tech-category-header h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.tech-category-header p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.tech-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-secondary);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.tech-item:hover {
  background: white;
  box-shadow: 0 8px 25px rgba(25, 42, 77, 0.1);
}

.tech-logo {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-cool) 0%, var(--accent-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
  flex-shrink: 0;
}

.tech-info h6 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.tech-info span {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ===================== ENHANCED SERVICES SECTION ===================== */
.enhanced-services-section {
  position: relative;
}

.enhanced-services-badge-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.enhanced-services-badge {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
  color: white;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(237, 137, 54, 0.3);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.enhanced-services-badge:hover {
  box-shadow: 0 8px 20px rgba(237, 137, 54, 0.3);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* ===================== MODERN SERVICE CARDS REDESIGN ===================== */
.service-card-modern {
  background: linear-gradient(145deg, #ffffff 0%, #fafbff 100%);
  border-radius: 24px;
  padding: 0;
  box-shadow: 0 20px 60px rgba(25, 42, 77, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.service-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--accent-cool) 0%, var(--accent-mid) 100%);
  opacity: 0.8;
}

.service-card-modern:hover {
  box-shadow: 0 15px 40px rgba(25, 42, 77, 0.12);
  border-color: rgba(66, 93, 207, 0.2);
}

.service-card-modern:hover::before {
  height: 8px;
  opacity: 1;
}

.service-card-header-new {
  background: linear-gradient(135deg, var(--accent-cool) 0%, var(--accent-mid) 100%);
  color: white;
  padding: 2rem 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.service-card-header-new::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: scale(1.5);
}

.service-icon-new {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-title-new {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: white;
}

.service-badge-new {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent-cool);
}

.gradient-purple {
  background: linear-gradient(135deg, #9f7aea 0%, #805ad5 100%);
}

.gradient-blue {
  background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
}

.gradient-green {
  background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
}

.gradient-orange {
  background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
}

.gradient-tron {
  background: linear-gradient(135deg, #ff073a 0%, #e91e63 100%);
}

.service-card-body {
  padding: 2rem;
}

.service-description-new {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.service-features-new {
  margin-bottom: 2rem;
}

.feature-item-new {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem 0;
}

.feature-icon-new {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.feature-text-new {
  color: var(--text-primary);
  font-size: 0.875rem;
  font-weight: 500;
}

.service-metrics-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.metric-item-new {
  text-align: center;
  padding: 1rem 0.5rem;
  background: rgba(66, 93, 207, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(66, 93, 207, 0.08);
}

.metric-value-new {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-cool) 0%, var(--accent-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.metric-label-new {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-highlights-new {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.highlight-badge-new {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(66, 93, 207, 0.08) 0%, rgba(0, 80, 254, 0.06) 100%);
  border: 1px solid rgba(66, 93, 207, 0.15);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-cool);
}

.highlight-badge-new i {
  font-size: 0.875rem;
}

.service-stats-new {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.stat-row-new {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(66, 93, 207, 0.03);
  border-radius: 12px;
  border-left: 3px solid var(--accent-cool);
}

.stat-row-new i {
  font-size: 1.1rem;
  color: var(--accent-cool);
  flex-shrink: 0;
}

.stat-row-new span {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
}

.service-tiers-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.tier-item-new {
  text-align: center;
  padding: 1rem 0.5rem;
  background: linear-gradient(135deg, rgba(66, 93, 207, 0.05) 0%, rgba(0, 80, 254, 0.03) 100%);
  border-radius: 12px;
  border: 1px solid rgba(66, 93, 207, 0.1);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.tier-item-new:hover {
  background: linear-gradient(135deg, rgba(66, 93, 207, 0.1) 0%, rgba(0, 80, 254, 0.08) 100%);
  border-color: rgba(66, 93, 207, 0.2);
}

.tier-name-new {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.tier-desc-new {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

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

.metric-item {
  text-align: center;
  padding: 0.75rem;
  background: var(--bg-secondary);
  border-radius: 12px;
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-cool) 0%, var(--accent-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

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

.service-card-wide {
  grid-column: 1 / -1;
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 15px 50px rgba(25, 42, 77, 0.1);
  border: 1px solid var(--border-color);
  margin-top: 2rem;
}

.service-card-wide .service-card-header {
  margin-bottom: 2rem;
}

.service-card-wide h3 {
  font-size: 1.75rem;
}

/* ===================== BUTTONS MODERNIZATION ===================== */
.btn-primary-gradient {
  background: linear-gradient(135deg, var(--accent-cool) 0%, var(--accent-mid) 100%);
  border: none;
  color: white;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 12px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary-gradient:hover {
  box-shadow: 0 8px 20px rgba(66, 93, 207, 0.3);
  color: white;
}

/* ===================== SECURITY & OTHER SECTIONS ===================== */
.security-section,
.database-section,
.performance-section,
.features-section {
  padding: 4rem 0;
}

.security-section {
  background: white;
}

.database-section {
  background: var(--bg-secondary);
}

/* ===================== MODERN PERFORMANCE SECTION REDESIGN ===================== */
.performance-section {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #4a5568 100%);
  position: relative;
  overflow: hidden;
}

.performance-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>') repeat;
  opacity: 0.3;
}

.performance-section .container {
  position: relative;
  z-index: 2;
}

.badge-gradient {
  background: linear-gradient(135deg, var(--accent-cool) 0%, var(--accent-mid) 100%);
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(66, 93, 207, 0.4);
  display: inline-flex;
  align-items: center;
}

.performance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.performance-card {
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.performance-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-cool) 0%, var(--accent-mid) 100%);
  opacity: 0.8;
}

.performance-card:hover {
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.4) 100%);
  border-color: rgba(66, 93, 207, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.performance-card:hover::before {
  height: 6px;
  opacity: 1;
}

.performance-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-cool) 0%, var(--accent-mid) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto 2rem;
  box-shadow: 0 10px 30px rgba(66, 93, 207, 0.3);
  position: relative;
}

.performance-icon::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--accent-cool) 0%, var(--accent-mid) 100%);
  border-radius: 22px;
  z-index: -1;
  opacity: 0.3;
  filter: blur(8px);
}

.performance-value {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.performance-label {
  font-size: 1.125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.performance-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.performance-chart {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  height: 8px;
  position: relative;
  overflow: hidden;
}

.chart-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-cool) 0%, var(--accent-mid) 100%);
  border-radius: 12px;
  position: relative;
  transition: all 0.6s ease;
}


.performance-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.highlight-item:hover {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.08) 100%);
  border-color: rgba(66, 93, 207, 0.3);
}

.highlight-item i {
  font-size: 1.5rem;
  color: var(--accent-cool);
  flex-shrink: 0;
}

.highlight-item span {
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
}

.features-section {
  background: var(--bg-secondary);
}

.security-grid,
.database-grid,
.performance-grid,
.deployment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

/* ===================== MODERN SECURITY CARDS REDESIGN ===================== */
.security-card {
  background: linear-gradient(145deg, #ffffff 0%, #fafbff 100%);
  border-radius: 24px;
  padding: 0;
  box-shadow: 0 20px 60px rgba(25, 42, 77, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.security-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
  opacity: 0.8;
}

.security-card:nth-child(2)::before {
  background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
}

.security-header-new {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
  padding: 2rem 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.security-card:nth-child(2) .security-header-new {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.security-header-new::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: scale(1.5);
}

.security-icon-new {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.security-title-new {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: white;
}

.security-level-new {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ef4444;
}

.security-card:nth-child(2) .security-level-new {
  color: #f59e0b;
}

.security-body-new {
  padding: 2rem;
}

.security-description-new {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.security-features-new {
  display: grid;
  gap: 1rem;
}

.security-feature-new {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: rgba(239, 68, 68, 0.03);
  border-radius: 12px;
  border-left: 3px solid #ef4444;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.security-card:nth-child(2) .security-feature-new {
  background: rgba(245, 158, 11, 0.03);
  border-left-color: #f59e0b;
}

.security-feature-new:hover {
  background: rgba(239, 68, 68, 0.08);
}

.security-card:nth-child(2) .security-feature-new:hover {
  background: rgba(245, 158, 11, 0.08);
}

.security-feature-icon-new {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.security-card:nth-child(2) .security-feature-icon-new {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.security-feature-content-new {
  flex: 1;
}

.security-feature-title-new {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.security-feature-desc-new {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
}

.database-card,
.performance-card,
.deployment-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 8px 30px rgba(25, 42, 77, 0.08);
  border: 1px solid var(--border-color);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.security-card:hover {
  box-shadow: 0 15px 40px rgba(25, 42, 77, 0.12);
  border-color: rgba(239, 68, 68, 0.2);
}

.security-card:nth-child(2):hover {
  border-color: rgba(245, 158, 11, 0.2);
}

.security-card:hover::before {
  height: 8px;
  opacity: 1;
}

.database-card:hover,
.performance-card:hover,
.deployment-card:hover {
  box-shadow: 0 8px 25px rgba(25, 42, 77, 0.1);
}

.chart-container {
  text-align: center;
  margin: 1rem 0;
}

.chart-bar {
  height: 8px;
  background: linear-gradient(90deg, var(--accent-cool) 0%, var(--accent-mid) 100%);
  border-radius: 4px;
  margin: 0.5rem 0;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}



/* ===================== SECURITY METRICS & DATABASE ANALYTICS ===================== */
.security-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.metric-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(25, 42, 77, 0.08);
  border: 1px solid var(--border-color);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.metric-card:hover {
  box-shadow: 0 8px 25px rgba(25, 42, 77, 0.12);
}

.metric-card i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--accent-cool) 0%, var(--accent-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.metric-card p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin: 0;
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.analytics-item {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(25, 42, 77, 0.08);
  border: 1px solid var(--border-color);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.analytics-item:hover {
  box-shadow: 0 8px 25px rgba(25, 42, 77, 0.12);
}

.analytics-item i {
  font-size: 2rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--accent-cool) 0%, var(--accent-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.analytics-item h5 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.analytics-item p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin: 0;
}

.analytics-layer {\n  background: white;\n  border-radius: 20px;\n  padding: 2.5rem;\n  box-shadow: 0 15px 50px rgba(25, 42, 77, 0.1);\n  border: 1px solid var(--border-color);\n  margin-top: 2rem;\n}\n\n.analytics-header {\n  text-align: center;\n  margin-bottom: 2rem;\n}\n\n.analytics-header i {\n  font-size: 3rem;\n  margin-bottom: 1rem;\n  background: linear-gradient(135deg, var(--accent-cool) 0%, var(--accent-mid) 100%);\n  -webkit-background-clip: text;\n  -webkit-text-fill-color: transparent;\n  background-clip: text;\n  display: block;\n}\n\n.analytics-header h3 {\n  font-size: 1.75rem;\n  font-weight: 700;\n  color: var(--text-primary);\n  margin-bottom: 0.5rem;\n}\n\n.analytics-header p {\n  color: var(--text-secondary);\n  font-size: 1.125rem;\n  margin: 0;\n}\n\n/* ===================== RESPONSIVE DESIGN ===================== */
@media (max-width: 768px) {
  .services-hero-title {
    font-size: 2.5rem;
  }
  
  .services-stat-number {
    font-size: 2rem;
  }
  
  .tech-grid,
  .services-grid,
  .security-grid,
  .database-grid,
  .performance-grid,
  .deployment-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .tech-category,
  .service-card-modern,
  .service-card-wide {
    padding: 1.5rem;
  }
  
  .tech-icon,
  .icon-wrapper {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .floating-particle {
    display: none;
  }
  
  /* Simplified hover effects are mobile-friendly, no need to disable */
  
  
  .service-metrics {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

@media (max-width: 480px) {
  .services-hero-title {
    font-size: 2rem;
  }
  
  .services-hero-subtitle {
    font-size: 1rem;
  }
  
  .services-stat-card {
    padding: 1rem;
  }
  
  .tech-item {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
}

/* ===================== BADGE OUTLINE MODERNIZATION ===================== */
.badge-outline {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border: 2px solid var(--accent-cool);
  color: var(--accent-cool);
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.badge-outline:hover {
  background: var(--accent-cool);
  color: white;
  box-shadow: 0 8px 20px rgba(66, 93, 207, 0.3);
}

/* Additional responsive design for security metrics and analytics */
@media (max-width: 768px) {
  .security-metrics,
  .analytics-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .security-metrics {
    grid-template-columns: 1fr;
  }
  
  .analytics-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}
/* Service cards responsive design */\n@media (max-width: 768px) {\n  .service-card-header-new {\n    padding: 1.5rem 1.5rem 1rem;\n  }\n  \n  .service-card-body {\n    padding: 1.5rem;\n  }\n  \n  .service-icon-new {\n    width: 60px;\n    height: 60px;\n    font-size: 1.5rem;\n  }\n  \n  .service-title-new {\n    font-size: 1.25rem;\n  }\n  \n  .service-metrics-new {\n    grid-template-columns: 1fr;\n    gap: 0.75rem;\n  }\n  \n  .service-tiers-new {\n    grid-template-columns: 1fr;\n    gap: 0.75rem;\n  }\n  \n  .service-highlights-new {\n    flex-direction: column;\n    gap: 0.5rem;\n  }\n  \n  .security-header-new {\n    padding: 1.5rem 1.5rem 1rem;\n  }\n  \n  .security-body-new {\n    padding: 1.5rem;\n  }\n  \n  .security-icon-new {\n    width: 60px;\n    height: 60px;\n    font-size: 1.5rem;\n  }\n  \n  .security-title-new {\n    font-size: 1.25rem;\n  }\n  \n  .security-feature-icon-new {\n    width: 35px;\n    height: 35px;\n    font-size: 1rem;\n  }\n}\n\n@media (max-width: 480px) {\n  .service-card-modern {\n    margin-bottom: 1.5rem;\n  }\n  \n  .service-card-header-new {\n    padding: 1.25rem 1.25rem 0.75rem;\n  }\n  \n  .service-card-body {\n    padding: 1.25rem;\n  }\n  \n  .service-icon-new {\n    width: 50px;\n    height: 50px;\n    font-size: 1.25rem;\n  }\n  \n  .service-title-new {\n    font-size: 1.125rem;\n  }\n  \n  .security-header-new {\n    padding: 1.25rem 1.25rem 0.75rem;\n  }\n  \n  .security-body-new {\n    padding: 1.25rem;\n  }\n  \n  .security-icon-new {\n    width: 50px;\n    height: 50px;\n    font-size: 1.25rem;\n  }\n  \n  .security-title-new {\n    font-size: 1.125rem;\n  }\n  \n  .security-feature-new {\n    flex-direction: column;\n    text-align: center;\n    gap: 0.75rem;\n  }\n  \n  .security-feature-icon-new {\n    align-self: center;\n  }\n  \n  .performance-grid {\n    grid-template-columns: 1fr;\n    gap: 1.5rem;\n  }\n  \n  .performance-card {\n    padding: 2rem 1.5rem;\n  }\n  \n  .performance-icon {\n    width: 60px;\n    height: 60px;\n    font-size: 1.5rem;\n  }\n  \n  .performance-value {\n    font-size: 2.5rem;\n  }\n  \n  .performance-highlights {\n    grid-template-columns: 1fr;\n    gap: 1rem;\n  }\n  \n  .highlight-item {\n    padding: 1rem;\n  }\n}\n\n/* ===================== TRANSACTION SIGNING SECTION ===================== */
.transaction-signing-section {
  background: var(--bg-primary);
  padding: 4rem 0;
}

.signing-info h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.signing-info p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
}

.signing-features {
  margin-top: 2rem;
}

.signing-feature {
  padding: 1.5rem;
  background: rgba(66, 93, 207, 0.03);
  border-radius: 12px;
  transition: background 0.3s ease;
}

.signing-feature:hover {
  background: rgba(66, 93, 207, 0.06);
}

.feature-icon {
  width: 50px;
  min-width: 50px;
  height: 50px;
  background: rgba(66, 93, 207, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.code-example {
  background: #1a202c;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.code-header {
  background: #2d3748;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.code-title {
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.code-content {
  padding: 1.5rem;
  margin: 0;
  background: transparent;
  border: none;
}

.code-content code {
  color: #e2e8f0;
  font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.6;
  display: block;
  white-space: pre;
  overflow-x: auto;
}

.security-stats {
  padding: 1.5rem;
  background: rgba(66, 93, 207, 0.05);
  border-radius: 16px;
}

.stat-box {
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent-cool) 0%, var(--accent-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

/* ===================== NODE INFRASTRUCTURE REDESIGN ===================== */
.node-infrastructure-showcase {
  padding: 1rem;
}

.infrastructure-header {
  text-align: center;
  margin-bottom: 3rem;
}

.infrastructure-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-cool) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.infrastructure-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin: 0;
}

.infrastructure-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.infra-stat-card {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border: 1px solid rgba(66, 93, 207, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.infra-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(66, 93, 207, 0.12);
  border-color: rgba(66, 93, 207, 0.3);
}

.infra-stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-cool) 0%, var(--accent-mid) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.infra-stat-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.infra-stat-content p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}

.infrastructure-features {
  background: rgba(66, 93, 207, 0.03);
  border-radius: 20px;
  padding: 2rem;
}

.features-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
}

.feature-timeline {
  position: relative;
  padding-left: 2rem;
}

.feature-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-cool), var(--accent-mid));
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: -2rem;
  top: 0;
  width: 40px;
  height: 40px;
  background: white;
  border: 3px solid var(--accent-cool);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cool);
  font-size: 1.1rem;
}

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

.timeline-content p {
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.infrastructure-guarantee {
  margin-top: 2rem;
}

.guarantee-box {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.guarantee-box i {
  font-size: 3rem;
  opacity: 0.9;
}

.guarantee-box h5 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.guarantee-box p {
  margin: 0;
  opacity: 0.95;
  line-height: 1.5;
}

/* Analytics layer responsive design */
@media (max-width: 768px) {
  .analytics-layer {
    padding: 1.5rem;
  }
  
  /* Node Infrastructure Responsive */
  .infrastructure-stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .infrastructure-title {
    font-size: 1.75rem;
  }
  
  .infrastructure-features {
    padding: 1.5rem;
  }
  
  .features-title {
    font-size: 1.25rem;
  }
  
  .feature-timeline {
    padding-left: 1.5rem;
  }
  
  .timeline-item {
    padding-left: 1.5rem;
  }
  
  .timeline-marker {
    left: -1.5rem;
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .guarantee-box {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  
  .guarantee-box i {
    font-size: 2.5rem;
  }
  
  .analytics-header i {
    font-size: 2.5rem;
  }
  
  .analytics-header h3 {
    font-size: 1.5rem;
  }
  
  .analytics-header p {
    font-size: 1rem;
  }
}
