/* Import Inter font - full range of weights as specified */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* CSS Variables / Design Tokens */
:root {
  /* Colors */
  --accent-cool: #425DCF;
  --accent-mid: #0050FE;
  --text-primary: #192A4D;
  --text-secondary: #37435A;
  --text-muted: #6b717d;
  /* Improved contrast from #878E9B */
  --border-color: #E4E8F0;
  --bg-primary: #FFFFFF;
  --bg-secondary: #FAFAFA;
  --shadow-sm: 0 4px 6px rgba(25, 42, 77, .05);
  --shadow-md: 0 4px 12px rgba(25, 42, 77, .12);

  /* Spacing */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;

  /* Container */
  --container-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.5;
  font-size: 16px;
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
li {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout & Container */
.container {
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-2);
  padding-right: var(--space-2);
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -var(--space-2);
  margin-right: -var(--space-2);
}

.col {
  padding-left: var(--space-2);
  padding-right: var(--space-2);
  flex: 1;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: var(--space-2);
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-cool) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

p {
  margin-bottom: var(--space-2);
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent-cool) 0%, var(--accent-mid) 100%);
  color: white;
}

.btn-primary i {
  margin-left: 15px;
}

/* Specific rule for the Energy Bot telegram button */
.teleg-mob .btn i.bi-telegram {
  margin-left: 15px;
}

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

.btn-secondary {
  background: transparent;
  border: 1px solid var(--accent-cool);
  color: var(--accent-cool);
}

.btn-secondary:hover {
  background: rgba(66, 93, 207, .1);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--bg-primary);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-light:hover {
  background: var(--bg-secondary);
}

.btn-sm {
  padding: 8px 12px;
  font-size: 14px;
}

.btn-lg {
  padding: 12px 20px;
  font-size: 18px;
}

.btn-outline-light {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
}

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

/* Modern Navbar */
.modern-navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 12px 0;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  width: 100%;
}

.modern-navbar .container-fluid {
  max-width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
}

.modern-navbar:hover {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.modern-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.modern-brand:hover {
  color: var(--accent-cool);
  transform: translateY(-1px);
}

.brand-text {
  font-weight: 800;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-cool) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modern-brand img {
  height: 36px;
  width: auto;
  transition: transform 0.3s ease;
}

.modern-brand:hover img {
  transform: scale(1.05);
}

/* Modern Navigation Menu */
.modern-nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.modern-nav-item {
  position: relative;
}

.modern-nav-link {
  display: flex;
  align-items: center;
  padding: 10px 16px !important;
  font-weight: 500;
  font-size: 14px;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.modern-nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(66, 93, 207, 0.1) 0%, rgba(0, 80, 254, 0.1) 100%);
  opacity: 0;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.modern-nav-link:hover::before {
  opacity: 1;
}

.modern-nav-link:hover {
  color: var(--accent-cool);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(66, 93, 207, 0.15);
}

.modern-nav-link i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.modern-nav-link:hover i {
  transform: scale(1.1);
}

/* Navigation Dividers */
.nav-divider {
  width: 1px;
  height: 20px;
  background: linear-gradient(to bottom, transparent, var(--border-color), transparent);
  margin: 0 4px;
  opacity: 0.6;
}

.nav-separator {
  width: 2px;
  height: 24px;
  background: linear-gradient(135deg, var(--accent-cool) 0%, var(--accent-mid) 100%);
  border-radius: 2px;
  margin: 0 12px;
  opacity: 0.8;
}

/* Modern Toggler for Mobile */
.modern-toggler {
  border: none;
  padding: 8px;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.modern-toggler:hover {
  background: rgba(66, 93, 207, 0.1);
}

.modern-toggler:focus {
  box-shadow: none;
  outline: none;
}

.toggler-line {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 2px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.modern-toggler:hover .toggler-line {
  background: var(--accent-cool);
}

.modern-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.modern-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
  opacity: 0;
}

.modern-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Modern Wallet Button */
.modern-wallet-btn {
  background: linear-gradient(135deg, var(--accent-cool) 0%, var(--accent-mid) 100%);
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 14px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(66, 93, 207, 0.3);
  position: relative;
  overflow: hidden;
}

.modern-wallet-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.modern-wallet-btn:hover::before {
  left: 100%;
}

.modern-wallet-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(66, 93, 207, 0.4);
  color: white;
}

/* Workspace Navigation Styles */
.balance-display {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(66, 93, 207, 0.1) 0%, rgba(0, 80, 254, 0.1) 100%);
  border-radius: 8px;
  border: 1px solid rgba(66, 93, 207, 0.2);
  transition: all 0.3s ease;
}

.balance-display:hover {
  background: linear-gradient(135deg, rgba(66, 93, 207, 0.15) 0%, rgba(0, 80, 254, 0.15) 100%);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(66, 93, 207, 0.2);
}

.balance-display i {
  color: var(--accent-cool);
  font-size: 16px;
}

.balance-amount {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 14px;
}

.modern-profile-link {
  padding: 8px 16px !important;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.modern-profile-link:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.profile-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--accent-cool);
  transition: transform 0.3s ease;
}

.modern-profile-link:hover .profile-avatar {
  transform: scale(1.1);
}

.profile-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-primary);
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.modern-dropdown {
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 8px 0;
  min-width: 200px;
}

.user-greeting {
  font-weight: 600;
  color: var(--accent-cool);
  padding: 12px 20px 8px 20px;
  font-size: 14px;
}

.modern-dropdown-item {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.modern-dropdown-item:hover {
  background: linear-gradient(135deg, rgba(66, 93, 207, 0.1) 0%, rgba(0, 80, 254, 0.1) 100%);
  color: var(--accent-cool);
  transform: translateX(4px);
}

.modern-dropdown-item i {
  color: var(--accent-cool);
  font-size: 16px;
}

/* Minimalist Live Metrics Section */
.stats-highlight {
  background: transparent;
  border: none;
  padding: 0;
  margin: 2rem 0;
  position: relative;
}

.stats-highlight h3 {
  display: none;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 100%;
  margin: 0;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background: transparent;
  border-right: 1px solid #e9ecef;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100px;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item::before {
  display: none;
}

.stat-item::after {
  display: none;
}

.stat-item > div {
  width: 100%;
}

.stat-number {
  font-size: 2rem;
  font-weight: 600;
  display: block;
  line-height: 1.2;
  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;
}

/* Loading spinner */
.stat-number .spinner-border {
  width: 2rem;
  height: 2rem;
  border-width: 0.15em;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
  display: block;
  margin: 0;
  padding: 0 1rem;
}

/* Workspace stat-cards - Clean Banking Style */
body[class*="workspace"] .stat-number,
.workspace .stat-number,
.workspace .stat-card .stat-number,
.sidemenu .stat-number,
.sidemenu .stat-card .stat-number,
[data-page="workspace"] .stat-number,
.workspace-page .stat-number {
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  background-clip: initial !important;
  color: #111827 !important;
}

/* Workspace stat-label - Gray text on white cards */
body[class*="workspace"] .stat-label,
.workspace .stat-label,
.workspace .stat-card .stat-label,
.sidemenu .stat-label,
.sidemenu .stat-card .stat-label,
[data-page="workspace"] .stat-label,
.workspace-page .stat-label {
  color: #6b7280 !important;
}

/* Stats grid - Clean Banking Style */
.stats-grid .stat-card .stat-number {
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  background-clip: initial !important;
  color: #111827 !important;
}

.stats-grid .stat-card .stat-label {
  color: #6b7280 !important;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
  font-weight: 500;
}

/* Category sections */
.category-section {
  margin-bottom: 4rem;
}

.category-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
}

.category-title:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cool) 0%, var(--accent-mid) 100%);
  border-radius: 2px;
}

.category-description {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* 2x2 grid layout for 3-card sections */
.core-energy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 992px) {
  .stats-row {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .stat-item {
    padding: 1.5rem 0.5rem;
  }
  
  .stat-number {
    font-size: 1.75rem !important;
  }
}

@media (max-width: 768px) {
  .core-energy-grid {
    grid-template-columns: 1fr;
  }

  .stats-highlight {
    margin: 1.5rem -1rem;
  }

  .stats-row {
    grid-template-columns: 1fr;
    border: none;
    gap: 0;
  }
  
  .stat-item {
    padding: 1.25rem 1rem;
    border-right: none;
    border-bottom: 1px solid #e9ecef;
    text-align: left;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: auto;
  }
  
  .stat-item:last-child {
    border-bottom: none;
  }
  
  .stat-item > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
  
  .stat-number {
    font-size: 1.5rem !important;
    margin-bottom: 0.25rem;
    order: 2;
  }

  .stat-label {
    font-size: 0.75rem !important;
    padding: 0;
    order: 1;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    opacity: 0.7;
  }
}

@media (max-width: 480px) {
  .stats-highlight {
    margin: 1rem -0.75rem;
  }

  .stat-item {
    padding: 1rem 0.75rem;
  }

  .stat-number {
    font-size: 1.25rem !important;
  }

  .stat-label {
    font-size: 0.7rem !important;
    line-height: 1.2;
  }
}

/* Workspace cards */
.workspace-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.workspace-card h3 {
  margin-bottom: var(--space-2);
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-cool) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.workspace-card h3 i {
  margin-right: 0.5rem;
  font-size: 1.3rem;
}

.workspace-card p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.workspace-card .card-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.workspace-card .card-features li {
  padding: 0.4rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  position: relative;
  padding-left: 1.2rem;
}

.workspace-card .card-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-cool);
  font-weight: bold;
}

/* Enhanced Features Section */
.features-primary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-highlight {
  position: relative;
  background: linear-gradient(135deg, var(--bg-primary) 0%, #f8fafc 100%);
  border: 2px solid var(--border-color);
  transition: all 0.4s ease;
}

.feature-highlight:hover {
  border-color: var(--accent-cool);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(66, 93, 207, 0.15);
}

.feature-number {
  position: absolute;
  top: -15px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-cool) 0%, var(--accent-mid) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(66, 93, 207, 0.3);
}

.feature-stats {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.stat-badge {
  background: linear-gradient(135deg, rgba(66, 93, 207, 0.1) 0%, rgba(0, 80, 254, 0.1) 100%);
  color: var(--accent-cool);
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(66, 93, 207, 0.2);
}

/* Secondary Features Grid */
.features-secondary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-card-compact {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}


.feature-card-compact:hover {
  box-shadow: 0 6px 20px rgba(66, 93, 207, 0.1);
}

.compact-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 24px;
  transition: transform 0.3s ease;
}


.feature-card-compact h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.feature-card-compact p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

/* Legacy navbar compatibility */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  padding: var(--space-2) 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.tronlink-connect-btn {
  display: inline-flex !important;
  align-items: center;
  padding: 6px 12px !important;
  font-weight: 600;
  color: white !important;
  font-size: 14px !important;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-radius: 6px !important;
}

.tronlink-connect-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.tronlink-connect-btn i {
  margin-right: 5px;
}

.navbar-brand img {
  height: 40px;
  width: auto;
}

.navbar-dark {
  background: rgba(255, 255, 255, 0.9);
}

.navbar-dark .navbar-nav .nav-link {
  color: var(--text-primary);
  font-weight: 500;
  padding: 8px 16px;
  position: relative;
  transition: color 0.3s;
}

.navbar-dark .navbar-nav .nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: linear-gradient(90deg, var(--accent-cool) 0%, var(--accent-mid) 100%);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: var(--accent-mid);
}

.navbar-dark .navbar-nav .nav-link:hover:after {
  width: 80%;
}

/* Hero Section */
.hero-section {
  padding: 2.5rem 0;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

/* Background decoration */
.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(0, 80, 254, 0.08) 0%, transparent 60%);
  animation: float 20s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 80, 254, 0.05) 0%, transparent 50%);
  animation: float 25s ease-in-out infinite reverse;
  z-index: 1;
  pointer-events: none;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.hero-section .container {
  position: relative;
  z-index: 10;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-cool) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.hero-features {
  list-style: none;
  padding-left: 0;
  margin-top: 2rem;
}

.hero-features li {
  padding: 0.5rem 0;
  font-size: 1.05rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  opacity: 0;
  animation: fadeInLeft 0.5s ease forwards;
}

.hero-features li:nth-child(1) {
  animation-delay: 0.1s;
}

.hero-features li:nth-child(2) {
  animation-delay: 0.2s;
}

.hero-features li:nth-child(3) {
  animation-delay: 0.3s;
}

.hero-features li:nth-child(4) {
  animation-delay: 0.4s;
}

.hero-feature-item {
  padding: 0.5rem 0 !important;
  font-size: 1.05rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  opacity: 0 !important;
  transform: translateX(-20px);
  animation: fadeInLeft 0.5s ease forwards !important;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-features i {
  font-size: 1.2rem;
  margin-right: 0.75rem;
  color: var(--accent-cool);
}

.hero-features strong {
  color: var(--text-primary);
  font-weight: 600;
}

.hero-section .bi-check-circle-fill {
  color: var(--accent-cool);
}

/* Glass Card */
.glass-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  box-shadow: 0 10px 30px rgba(0, 80, 254, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 20;
}

.glass-card:hover {
  box-shadow: 0 8px 25px rgba(0, 80, 254, 0.12);
}

/* Modern buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: linear-gradient(90deg, var(--accent-cool) 0%, var(--accent-mid) 100%);
  color: white !important;
  border-radius: 6px;
  margin-right: 16px;
  margin-bottom: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(0, 80, 254, 0.3);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 100;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  pointer-events: none;
  z-index: 1;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 80, 254, 0.4);
  color: white !important;
  text-decoration: none;
}

.btn-primary i {
  margin-left: 8px;
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
}

.btn-primary span,
.btn-primary>* {
  position: relative;
  z-index: 2;
}

.hero-buttons {
  margin-top: 2.5rem;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: 0.6s;
  position: relative;
  z-index: 200;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-image-wrapper {
  position: relative;
  z-index: 10;
}

.hero-image-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--accent-cool), var(--accent-mid));
  border-radius: 50%;
  opacity: 0.1;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

/* Removed hover effect for better scroll performance
.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
*/

.glass-card h4 {
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

/* Form Elements */
.form-label {
  display: block;
  margin-bottom: var(--space-1);
  font-weight: 500;
  color: var(--text-secondary);
}

.form-control {
  width: 100%;
  padding: 10px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--bg-primary);
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s;
  min-width: 0;
  /* Allow shrinking on mobile */
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-cool);
  box-shadow: 0 0 0 3px rgba(66, 93, 207, 0.25);
}

/* Improved focus states for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--accent-cool);
  outline-offset: 2px;
}

.btn:focus {
  box-shadow: 0 0 0 3px rgba(66, 93, 207, 0.4);
}

.input-group {
  display: flex;
  align-items: stretch;
}

.input-group .form-control {
  flex: 1;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group-text {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-left: none;
  border-top-right-radius: var(--radius-sm);
  border-bottom-right-radius: var(--radius-sm);
}

.suggestion-btn {
  padding: 10px 12px;
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  color: var(--text-secondary);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.suggestion-btn:hover {
  background: var(--accent-cool);
  color: white;
}

.form-select {
  width: 100%;
  padding: 10px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: var(--bg-primary);
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23878E9B' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  min-width: 0;
  /* Allow shrinking on mobile */
}

/* Section Styling */
.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: var(--space-4);
  text-align: center;
  color: var(--text-primary);
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  background-clip: initial;
}

.section-subtitle {
  text-align: center;
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0;
}

.features-section,
.integrations-section,
.wallet-section,
.faq-section {
  padding: var(--space-5) 0;
  background: var(--bg-secondary);
}

.features-section:nth-child(even),
.integrations-section:nth-child(even),
.wallet-section:nth-child(even) {
  background: var(--bg-primary);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-3);
}

.feature-item {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-item img {
  height: 60px;
  width: auto;
  margin: 0 auto var(--space-2);
}

.feature-item p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Card Blocks */
.card-block {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Removed hover effect for better scroll performance
.card-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
*/

.card-block h4 {
  color: var(--accent-cool);
  margin-bottom: var(--space-2);
}

.card-block p {
  color: var(--text-secondary);
}

/* Wallet Section */
.wallet__title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--text-primary);
}

.wallet__item {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  margin-bottom: var(--space-3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wallet__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.wallet__item-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: var(--space-1);
  color: var(--text-primary);
}

.wallet__item-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
}

.wallet__item-img img {
  border-radius: var(--radius-sm);
  max-width: 100%;
}

/* FAQ Section */
.accordion-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-2);
  overflow: hidden;
}

.accordion-header {
  margin: 0;
}

.accordion-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--space-2);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 18px;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, rgba(66, 93, 207, 0.05) 0%, rgba(0, 80, 254, 0.05) 100%);
  color: var(--accent-mid);
}

.accordion-button::after {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 3.33337V12.6667M3.33301 8.00004H12.6663' stroke='%23425DCF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(45deg);
}

.accordion-body {
  padding: var(--space-2);
  background: var(--bg-primary);
  color: var(--text-secondary);
  font-size: 16px;
  border-top: 1px solid var(--border-color);
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  padding: var(--space-4) 0;
}

.footer__line {
  background-color: transparent !important;
}

.footer__body {
  background-color: transparent !important;
  color: var(--text-primary) !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer__item {
  margin-bottom: var(--space-2);
}

.footer__copyright,
.footer__Follow {
  color: var(--text-secondary);
  margin-right: var(--space-2);
}

.footer__icon {
  margin-right: var(--space-2);
  transition: transform 0.3s;
}

.footer__icon:hover {
  transform: translateY(-2px);
}

.footer__item_menu .nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin: 0;
  padding: 0;
}

.footer__item_menu .nav__item {
  margin: 0 10px;
}

.footer__item_menu .nav__link {
  color: var(--text-secondary);
  transition: color 0.3s;
  white-space: nowrap;
}

.footer__item_menu .nav__link:hover {
  color: var(--accent-mid);
}

.footer__icons {
  display: flex;
  align-items: center;
  flex-direction: row;
}

.footer__icon {
  margin-right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer__icon:last-child {
  margin-right: 0;
}

.footer__icon img {
  width: 20px;
  height: 20px;
  display: inline-block;
}

.footer__copyright,
.footer__Follow {
  margin: 0;
  white-space: nowrap;
}

/* Animation on Scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Media Queries */
@media (max-width: 1200px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 24px;
  }

  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 992px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .section-title {
    font-size: 28px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wallet__col {
    width: 100%;
  }

  /* Updated styles for TronLink button visibility */
  .tronlink-connect-btn {
    display: inline-flex !important;
  }

  /* Mobile navigation styles */
  .modern-nav-menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px 0;
  }

  .modern-nav-item {
    width: 100%;
  }

  .modern-nav-link {
    padding: 16px 20px !important;
    border-radius: 0;
    border-bottom: 1px solid var(--border-color);
    justify-content: flex-start;
  }

  .modern-nav-link:hover {
    transform: none;
    box-shadow: none;
    background: rgba(66, 93, 207, 0.1);
  }

  .nav-divider,
  .nav-separator {
    display: none;
  }

  .modern-wallet-btn {
    margin: 16px 20px;
    justify-content: center;
  }
}

/* Responsive adjustments for hero */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-section {
    min-height: auto;
    padding: 1.5rem 0;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-features li {
    font-size: 0.95rem;
  }

  .btn-primary {
    padding: 12px 20px;
    font-size: 0.9rem;
    margin-right: 8px;
    margin-bottom: 8px;
  }

  h1 {
    font-size: 24px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .row {
    flex-direction: column;
  }

  .col-lg-7,
  .col-lg-5 {
    width: 100%;
  }

  .teleg-mob {
    justify-content: center;
    margin-bottom: var(--space-3);
  }

  /* Updated footer styling for mobile */
  .footer__body>div {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__item {
    margin-bottom: 15px;
    justify-content: center;
  }

  .footer__item_menu {
    width: 100%;
  }

  .footer__item_menu .nav__list {
    justify-content: center;
    gap: 15px;
  }

  .footer__item_menu .nav__item {
    margin: 5px;
  }
}

@media (max-width: 576px) {
  .container {
    padding-left: var(--space-1);
    padding-right: var(--space-1);
  }

  .hero-features {
    padding-left: var(--space-1) !important;
  }

  .section-title {
    font-size: 24px;
  }

  .hero-section {
    padding: var(--space-3) 0;
  }

  .btn-hero {
    width: 100%;
    margin-bottom: var(--space-1);
  }

  .hero-subtitle {
    font-size: 16px;
    /* Smaller font size on mobile */
  }

  .hero-subtitle li {
    margin-bottom: var(--space-2);
    /* More space between bullets */
  }

  /* Override Bootstrap's col-6 behavior for rent form */
  #rentEnergyForm .row .col-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    padding-left: 4px !important;
    padding-right: 4px !important;
  }

  #rentEnergyForm .row.g-2 {
    margin-left: -4px !important;
    margin-right: -4px !important;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .hero-subtitle {
    font-size: 15px;
  }

  .form-select,
  .suggestion-btn {
    font-size: 13px;
    padding: 8px;
  }

  .input-group .form-control,
  .input-group-text {
    padding: 8px;
  }

  /* Stacked buttons for extra small screens */
  .teleg-mob {
    flex-direction: column;
  }

  .teleg-mob .btn {
    width: 100%;
    margin-bottom: 8px;
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-1 {
  margin-bottom: var(--space-1);
}

.mb-2 {
  margin-bottom: var(--space-2);
}

.mb-3 {
  margin-bottom: var(--space-3);
}

.mb-4 {
  margin-bottom: var(--space-4);
}

.mt-1 {
  margin-top: var(--space-1);
}

.mt-2 {
  margin-top: var(--space-2);
}

.mt-3 {
  margin-top: var(--space-3);
}

.mt-4 {
  margin-top: var(--space-4);
}

.py-1 {
  padding-top: var(--space-1);
  padding-bottom: var(--space-1);
}

.py-2 {
  padding-top: var(--space-2);
  padding-bottom: var(--space-2);
}

.py-3 {
  padding-top: var(--space-3);
  padding-bottom: var(--space-3);
}

.py-4 {
  padding-top: var(--space-4);
  padding-bottom: var(--space-4);
}

.d-flex {
  display: flex;
}

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

.justify-content-between {
  justify-content: space-between;
}

.w-100 {
  width: 100%;
}

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

/* Custom Banner Section */
.banner-section {
  width: 100%;
  overflow: hidden;
  margin: var(--space-3) 0;
}

.banner-section img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}

/* Custom Telegram Bot Section */
.telegram-bot-section {
  background: linear-gradient(90deg, var(--accent-cool) 0%, var(--accent-mid) 100%);
  padding: var(--space-3) 0;
  text-align: center;
}

.telegram-bot-section .btn-hero {
  background: white;
  color: var(--accent-cool);
  padding: 12px 20px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.telegram-bot-section .btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Price Display and Labels */
.label-green {
  display: inline-flex;
  padding: 4px 8px;
  background: rgba(10, 173, 0, 0.1);
  color: #0AAD00;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
}

/* Preserve existing wallet UI functionality */
.wallet-info {
  padding: var(--space-2);
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-2);
}

.wallet-address {
  font-family: monospace;
  margin-bottom: var(--space-1);
}

/* Preserve existing JavaScript functionality */
[style="display: none;"] {
  display: none !important;
}

/* Modern Service Card Styles for Index Page */
.service-card-modern {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Removed hover effect for better scroll performance
.service-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}
*/


.card-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  font-size: 36px;
  color: white;
}

.card-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  padding: 4px 12px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 12px;
  font-weight: 600;
  border-radius: 12px;
  text-transform: uppercase;
}

.service-metric {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

.metric-value {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.metric-label {
  color: #718096;
  font-size: 14px;
}

/* Feature Card Modern */
.feature-card-modern {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  text-align: center;
}

/* Removed hover effect for better scroll performance
.feature-card-modern:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
*/

.feature-icon-modern {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 28px;
  color: white;
}

/* Bot Highlight Card */
/* Bot Highlights Grid */
.bot-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.bot-highlight-card {
  background: var(--bg-secondary);
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  text-align: left;
  transition: transform 0.2s, box-shadow 0.2s;
}

.bot-highlight-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.bot-highlight-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.bot-highlight-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-cool);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.bot-highlight-icon i {
  color: white;
  font-size: 1.2rem;
}

.bot-highlight-card h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  background-clip: initial;
}

.bot-highlight-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.bot-highlight-badge {
  background: var(--text-primary);
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-block;
}

.highlight-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 32px;
  height: 32px;
  background: #764ba2;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

/* Energy Bot Feature Card */
.energy-feature-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

.energy-feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 36px;
  color: white;
}

.feature-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.highlight-tag {
  padding: 6px 16px;
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.feature-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #f0f0f0;
}

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

.stat-value {
  font-size: 28px;
  font-weight: 700;
  color: #667eea;
}

.stat-label {
  color: #718096;
  font-size: 14px;
  margin-top: 4px;
}

/* FAQ Card Modern */
.faq-card-modern {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
  margin-bottom: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card-modern:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #FFFFFF;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: #1a202c;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f7fafc;
}

.faq-question[aria-expanded="true"] {
  background: linear-gradient(to right, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
}

.faq-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  font-size: 24px;
  color: white;
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-toggle i {
  font-size: 18px;
  color: #667eea;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-toggle {
  background: #667eea;
}

.faq-question[aria-expanded="true"] .faq-toggle i {
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 28px 28px 28px;
}

.energy-option-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.energy-option-card {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

.energy-amount {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.energy-use-case {
  color: #718096;
  font-size: 14px;
  margin-top: 8px;
}

.savings-comparison {
  background: linear-gradient(to right, #f0f9ff, #e0e7ff);
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}

.comparison-item h5 {
  font-size: 14px;
  color: #718096;
  margin-bottom: 8px;
  font-weight: 500;
}

.comparison-item .amount {
  font-size: 24px;
  font-weight: 700;
  color: #1a202c;
}

.comparison-item.highlight .amount {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Gradient variations */
.gradient-purple {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

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

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

.gradient-pink {
  background: linear-gradient(135deg, #ed64a6 0%, #d53f8c 100%);
}

.gradient-teal {
  background: linear-gradient(135deg, #38b2ac 0%, #319795 100%);
}

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

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

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

/* ===================== FEATURES SHOWCASE SECTION ===================== */
.features-showcase-section {
  background: linear-gradient(135deg, rgba(66, 93, 207, 0.02) 0%, rgba(0, 80, 254, 0.03) 100%);
  position: relative;
}

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

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

.features-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(66, 93, 207, 0.35);
}

.features-showcase {
  max-width: 1400px;
  margin: 0 auto;
}

/* Primary Features Row */
.features-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-showcase-card {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(25, 42, 77, 0.08);
  border: 1px solid rgba(228, 232, 240, 0.8);
  transition: all 0.4s ease;
  overflow: hidden;
}


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

.feature-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(66, 93, 207, 0.1) 0%, rgba(0, 80, 254, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--accent-cool);
  font-size: 14px;
}

.feature-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
}

.feature-icon-large {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  position: relative;
  z-index: 2;
}

.feature-pulse {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: inherit;
  opacity: 0.3;
  animation: featurePulse 2s infinite;
}

@keyframes featurePulse {
  0% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.1; }
  100% { transform: scale(1); opacity: 0.3; }
}

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

.feature-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-metric {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

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

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

/* Secondary Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.feature-card-compact {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(25, 42, 77, 0.06);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card-compact:hover {
  box-shadow: 0 6px 20px rgba(25, 42, 77, 0.1);
}

.feature-card-compact .feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}

.feature-card-compact h5 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.feature-card-compact p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Background Decorative Elements */
.features-bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(66, 93, 207, 0.05) 0%, rgba(0, 80, 254, 0.08) 100%);
  animation: float 6s ease-in-out infinite;
}

.floating-element.element-1 {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.floating-element.element-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.floating-element.element-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 15%;
  animation-delay: 4s;
}

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

/* ===================== ENHANCED BOT FEATURES SECTION ===================== */
.enhanced-bot-features-section {
  position: relative;
}

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

.enhanced-feature-badge {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: linear-gradient(135deg, #9f7aea 0%, #805ad5 100%);
  color: white;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(159, 122, 234, 0.3);
  transition: all 0.3s ease;
}

.enhanced-feature-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(159, 122, 234, 0.4);
}

.enhanced-features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.enhanced-feature-card.full-width-card {
  grid-column: 1 / -1;
}

.enhanced-feature-card {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(25, 42, 77, 0.08);
  border: 1px solid rgba(228, 232, 240, 0.6);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}


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

.enhanced-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.enhanced-icon-container {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  flex-shrink: 0;
}

.enhanced-header-content {
  flex-grow: 1;
}

.enhanced-header-content h3 {
  font-size: 1.375rem;
  font-weight: 700;
  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;
}

.enhanced-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.enhanced-badge.cost-efficient {
  background: rgba(72, 187, 120, 0.1);
  color: #38a169;
}

.enhanced-badge.your-choice {
  background: rgba(66, 153, 225, 0.1);
  color: #3182ce;
}

.enhanced-badge.premium {
  background: rgba(159, 122, 234, 0.1);
  color: #805ad5;
}

.enhanced-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.enhanced-highlight-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(66, 93, 207, 0.05);
  border-radius: 12px;
  border-left: 4px solid var(--accent-cool);
  margin-bottom: 1.5rem;
}

.enhanced-highlight-box i {
  color: var(--accent-cool);
  font-size: 1.125rem;
  margin-top: 2px;
}

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

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


.enhanced-comparison-table {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.comparison-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-secondary);
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.comparison-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-cool) 0%, var(--accent-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.125rem;
}

.comparison-content {
  flex-grow: 1;
}

.comparison-title {
  font-weight: 700;
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.25rem;
}

.comparison-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.full-width-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: flex-start;
}

.enhanced-benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(72, 187, 120, 0.05);
  border-radius: 10px;
  border-left: 3px solid #48bb78;
}

.benefit-item i {
  color: #48bb78;
  font-size: 1.125rem;
}

/* ===================== PREMIUM BOT HIGHLIGHTS SECTION ===================== */
.premium-bot-highlights-section {
  overflow: hidden;
}

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

.premium-bot-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: all 0.3s ease;
}

.premium-bot-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(237, 137, 54, 0.4);
}

.premium-highlights-showcase {
  max-width: 1400px;
  margin: 0 auto;
}

.highlights-top-tier {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

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

.premium-highlight-card {
  position: relative;
  background: white;
  border-radius: 20px;
  transition: all 0.4s ease;
  overflow: hidden;
}

.premium-highlight-card.featured {
  padding: 2rem;
  box-shadow: 0 15px 50px rgba(25, 42, 77, 0.1);
  border: 1px solid rgba(228, 232, 240, 0.8);
}

.premium-highlight-card.compact {
  padding: 1.5rem;
  box-shadow: 0 8px 30px rgba(25, 42, 77, 0.08);
  border: 1px solid var(--border-color);
}

.premium-card-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--accent-cool), var(--accent-mid));
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.premium-highlight-card.featured:hover .premium-card-glow {
  opacity: 0.1;
}

.premium-highlight-card.featured:hover {
  box-shadow: 0 10px 30px rgba(25, 42, 77, 0.12);
}

.premium-highlight-card.compact:hover {
  box-shadow: 0 8px 25px rgba(25, 42, 77, 0.1);
}

.premium-icon-container {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin: 0 auto 1.5rem;
  position: relative;
}

.gradient-telegram {
  background: linear-gradient(135deg, #0088cc 0%, #0066aa 100%);
}

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

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

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

.gradient-wallets {
  background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);
}

.gradient-auto {
  background: linear-gradient(135deg, #38b2ac 0%, #319795 100%);
}

.icon-animation-ring {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px solid currentColor;
  border-radius: 25px;
  opacity: 0.3;
  animation: ringPulse 2s infinite;
}

@keyframes ringPulse {
  0% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.1); opacity: 0.1; }
  100% { transform: scale(1); opacity: 0.3; }
}

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

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

.premium-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.premium-metric {
  display: flex;
  justify-content: center;
}

.metric-highlight {
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.metric-highlight.instant {
  background: rgba(66, 153, 225, 0.1);
  color: #3182ce;
}

.metric-highlight.energy {
  background: rgba(72, 187, 120, 0.1);
  color: #38a169;
}

.compact-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin: 0 auto 1rem;
}

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

.compact-content h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.compact-content p {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.compact-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.compact-badge.savings {
  background: rgba(237, 137, 54, 0.1);
  color: #dd6b20;
}

.compact-badge.deposit {
  background: rgba(159, 122, 234, 0.1);
  color: #805ad5;
}

.compact-badge.wallets {
  background: rgba(245, 101, 101, 0.1);
  color: #e53e3e;
}

.compact-badge.automated {
  background: rgba(56, 178, 172, 0.1);
  color: #319795;
}

.highlights-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(237, 137, 54, 0.05) 0%, rgba(221, 107, 32, 0.08) 100%);
}

.decoration-circle.circle-1 {
  width: 120px;
  height: 120px;
  top: 15%;
  right: 10%;
  animation: float 8s ease-in-out infinite;
}

.decoration-circle.circle-2 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 8%;
  animation: float 6s ease-in-out infinite reverse;
}

.decoration-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(237, 137, 54, 0.1) 50%, transparent 100%);
}

.decoration-line.line-1 {
  width: 200px;
  top: 30%;
  left: 5%;
  transform: rotate(15deg);
}

.decoration-line.line-2 {
  width: 150px;
  bottom: 35%;
  right: 8%;
  transform: rotate(-20deg);
}

/* ===================== ENHANCED FAQ SECTION ===================== */
.enhanced-faq-section {
  position: relative;
}

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

.enhanced-faq-badge {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: linear-gradient(135deg, #4299e1 0%, #3182ce 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, 153, 225, 0.3);
  transition: all 0.3s ease;
}

.enhanced-faq-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(66, 153, 225, 0.4);
}

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

.faq-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.enhanced-faq-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(25, 42, 77, 0.08);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  overflow: hidden;
}

.enhanced-faq-card.featured-faq {
  margin-bottom: 2rem;
  box-shadow: 0 15px 50px rgba(25, 42, 77, 0.12);
}

.enhanced-faq-card.wide-faq {
  grid-column: 1 / -1;
}

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

.enhanced-faq-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.enhanced-faq-header:hover {
  background: rgba(66, 93, 207, 0.02);
}

.enhanced-faq-icon-container {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  position: relative;
  flex-shrink: 0;
}

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

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

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

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

.icon-pulse {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 2px solid currentColor;
  border-radius: 19px;
  opacity: 0.3;
  animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
  0% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.05); opacity: 0.1; }
  100% { transform: scale(1); opacity: 0.3; }
}

.enhanced-faq-title-section {
  flex-grow: 1;
}

.enhanced-faq-title-section h3,
.enhanced-faq-title-section h4 {
  font-weight: 700;
  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;
}

.enhanced-faq-title-section h3 {
  font-size: 1.25rem;
}

.enhanced-faq-title-section h4 {
  font-size: 1.125rem;
}

.faq-priority-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faq-priority-badge.popular {
  background: rgba(72, 187, 120, 0.1);
  color: #38a169;
}

.faq-priority-badge.savings {
  background: rgba(237, 137, 54, 0.1);
  color: #dd6b20;
}

.enhanced-faq-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.enhanced-faq-toggle i {
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.enhanced-faq-header:not(.collapsed) .enhanced-faq-toggle {
  background: var(--accent-cool);
}

.enhanced-faq-header:not(.collapsed) .enhanced-faq-toggle i {
  color: white;
  transform: rotate(180deg);
}

.enhanced-faq-body {
  padding: 0 1.5rem 1.5rem;
}

.faq-answer {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

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

.highlight-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(72, 187, 120, 0.05);
  border-radius: 10px;
  border-left: 3px solid #48bb78;
}

.highlight-feature i {
  color: #48bb78;
  font-size: 1.125rem;
}

.enhanced-privacy-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(66, 153, 225, 0.05);
  border-radius: 12px;
  border-left: 4px solid #4299e1;
}

.enhanced-privacy-badge i {
  color: #4299e1;
  font-size: 1.25rem;
}

.enhanced-energy-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.energy-option-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.energy-option-card.has-usdt {
  border-color: #48bb78;
  background: rgba(72, 187, 120, 0.05);
}

.energy-option-card.no-usdt {
  border-color: #9f7aea;
  background: rgba(159, 122, 234, 0.05);
}

.option-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
}

.option-description {
  flex-grow: 1;
}

.option-title {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

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

.wide-faq-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: flex-start;
}

.enhanced-savings-showcase {
  display: flex;
  justify-content: center;
}

.savings-highlight {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(237, 137, 54, 0.05);
  border-radius: 16px;
  border: 2px solid rgba(237, 137, 54, 0.2);
}

.savings-percentage {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.savings-title {
  display: block;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.savings-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.savings-detail i {
  color: #ed8936;
}

.faq-background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.pattern-element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(66, 153, 225, 0.03) 0%, rgba(49, 130, 206, 0.05) 100%);
}

.pattern-element.element-1 {
  width: 100px;
  height: 100px;
  top: 10%;
  right: 5%;
  animation: float 10s ease-in-out infinite;
}

.pattern-element.element-2 {
  width: 150px;
  height: 150px;
  bottom: 15%;
  left: 3%;
  animation: float 8s ease-in-out infinite reverse;
}

.pattern-element.element-3 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 15%;
  animation: float 12s ease-in-out infinite;
}


/* Enhanced Sections Responsive Styles */
@media (max-width: 1024px) {
  .features-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .enhanced-features-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .highlights-top-tier {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .highlights-secondary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .faq-grid-layout {
    grid-template-columns: 1fr;
  }
  
  .full-width-content,
  .wide-faq-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .features-showcase-section {
    padding: 3rem 0 !important;
  }
  
  .features-badge {
    padding: 10px 20px;
    font-size: 12px;
  }
  
  .feature-showcase-card {
    padding: 1.5rem;
    border-radius: 16px;
  }
  
  .feature-icon-large {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .feature-pulse {
    width: 60px;
    height: 60px;
  }
  
  .feature-content h4 {
    font-size: 1.125rem;
  }
  
  .metric-value {
    font-size: 1.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .feature-card-compact {
    padding: 1.25rem;
  }
  
  .floating-element {
    display: none;
  }
  
  /* Simplified hover effects are mobile-friendly, no need to disable */
  
  
  /* Enhanced Bot Features Mobile */
  .enhanced-feature-badge,
  .premium-bot-badge,
  .enhanced-faq-badge {
    padding: 10px 20px;
    font-size: 12px;
  }
  
  .enhanced-feature-card {
    padding: 1.5rem;
    border-radius: 20px;
  }
  
  .enhanced-stats-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .enhanced-icon-container {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  /* Premium Highlights Mobile */
  .highlights-secondary-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .premium-icon-container {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .compact-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }
  
  .decoration-circle,
  .decoration-line {
    display: none;
  }
  
  /* Enhanced FAQ Mobile */
  .enhanced-faq-icon-container {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .enhanced-energy-options {
    grid-template-columns: 1fr;
  }
  
  .savings-highlight {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .savings-percentage {
    font-size: 2.5rem;
  }
  
  .pattern-element {
    display: none;
  }
}

@media (max-width: 480px) {
  .features-row {
    gap: 1rem;
  }
  
  .feature-showcase-card {
    padding: 1.25rem;
  }
  
  .feature-number {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
  
  .metric-value {
    font-size: 1.25rem;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {

  .service-card-modern,
  .energy-feature-card {
    padding: 24px;
  }

  .feature-stats {
    grid-template-columns: 1fr;
  }

  .energy-option-cards {
    grid-template-columns: 1fr;
  }

  .savings-comparison {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .faq-question {
    padding: 20px;
    font-size: 16px;
  }

  .faq-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
    margin-right: 16px;
  }

  /* Keep Price and Duration fields on one line in mobile */
  #rentEnergyForm .row .col-6 {
    flex: 0 0 40% !important;
    max-width: 40% !important;
    padding-left: 4px !important;
    padding-right: 4px !important;
  }

  #rentEnergyForm .row.g-2 {
    margin-left: -4px !important;
    margin-right: -4px !important;
  }

  #rentEnergyForm .form-label {
    white-space: nowrap;
  }

  #rentEnergyForm #orderPrice,
  #rentEnergyForm #orderDuration {
    min-width: 0 !important;
  }

  #rentEnergyForm .input-group {
    min-width: 0 !important;
  }
}

/* Extra small devices - even more compact */
@media (max-width: 480px) {
  #rentEnergyForm .row .col-6 {
    padding-left: 3px !important;
    padding-right: 3px !important;
  }

  #rentEnergyForm .row.g-2 {
    margin-left: -3px !important;
    margin-right: -3px !important;
  }
}

/* For very small screens */
@media (max-width: 360px) {
  #rentEnergyForm .row .col-6 {
    padding-left: 2px !important;
    padding-right: 2px !important;
  }

  #rentEnergyForm .row.g-2 {
    margin-left: -2px !important;
    margin-right: -2px !important;
  }
}

/* Force compact layout for price and duration fields on all mobile devices */
@media (max-width: 768px) {

  /* Make the input group more compact */
  #rentEnergyForm .input-group {
    flex-wrap: nowrap !important;
  }

  #rentEnergyForm .input-group .form-control {
    flex: 1 1 auto !important;
    width: auto !important;
    min-width: 30% !important;
  }

  #rentEnergyForm .input-group-text {
    flex: 0 0 auto !important;
    width: auto !important;
  }

  /* Ensure the disabled price input doesn't have extra styling */
  #rentEnergyForm #orderPrice:disabled {
    background-color: #f8f9fa !important;
    opacity: 1 !important;
  }

  /* Make select more compact by reducing arrow space */
  #rentEnergyForm #orderDuration {
    background-size: 10px 6px !important;
    background-position: right 8px center !important;
    padding-right: 26px !important;
  }
}

/* Override any Bootstrap column stacking */
@media (max-width: 575.98px) {
  #rentEnergyForm .row .col-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
}

/* Reorder hero section on mobile - form first, text second */
@media (max-width: 991px) {
  .hero-section .row {
    display: flex !important;
    flex-direction: column-reverse !important;
  }

  .hero-section .row>.col-lg-5 {
    order: -1 !important;
    margin-bottom: 2rem;
  }

  .hero-section .row>.col-lg-7 {
    order: 1 !important;
  }

  /* Make form card more prominent on mobile */
  .hero-section .glass-card {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--accent-cool);
  }
}

/* Additional specificity for smaller screens */
@media (max-width: 768px) {
  .hero-section .container>.row {
    display: flex !important;
    flex-direction: column-reverse !important;
  }

  .hero-section .container>.row>div:last-child {
    order: -1 !important;
  }

  .hero-section .container>.row>div:first-child {
    order: 1 !important;
  }
}

/* Force reordering with high specificity */
@media screen and (max-width: 991px) {
  section.hero-section div.container div.row {
    display: flex !important;
    flex-direction: column !important;
  }

  /* Form column - make it first */
  section.hero-section div.container div.row div.col-lg-5 {
    order: 1 !important;
    margin-bottom: 30px !important;
  }

  /* Text column - make it second */
  section.hero-section div.container div.row div.col-lg-7 {
    order: 2 !important;
  }
}