@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #4f7cff;
  --primary-dark: #3a5fc8;
  --primary-light: #6b92ff;
  --accent: #00d4aa;
  --accent-dark: #00b894;
  --bg-dark: #0d0d1a;
  --bg-card: #151528;
  --bg-card-2: #1a1a35;
  --bg-card-3: #1e1e3a;
  --text: #e0e0f0;
  --text-light: #9494b8;
  --text-muted: #6b6b8d;
  --border: #2a2a4a;
  --success: #00d4aa;
  --danger: #ff6b6b;
  --warning: #ffd93d;
  --gradient-1: linear-gradient(135deg, #4f7cff 0%, #00d4aa 100%);
  --gradient-2: linear-gradient(135deg, #6b92ff 0%, #4f7cff 100%);
  --shadow-card: 0 10px 40px rgba(79, 124, 255, 0.08);
  --shadow-glow: 0 0 40px rgba(79, 124, 255, 0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

::selection {
  background: var(--primary);
  color: #fff;
}

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

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

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

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

.section-label {
  display: inline-block;
  background: rgba(79, 124, 255, 0.1);
  color: var(--primary-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(79, 124, 255, 0.2);
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
}

.section-desc {
  color: var(--text-light);
  font-size: 17px;
  max-width: 600px;
  line-height: 1.8;
}

.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.preloader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border);
  border-top: 3px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.header-area {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.header-area.scrolled {
  background: rgba(13, 13, 26, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
}

.brand-text {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}

.nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  padding: 8px 16px !important;
  transition: var(--transition);
  border-radius: var(--radius-sm);
}

.nav-link:hover,
.nav-link.active {
  color: #fff !important;
  background: rgba(79, 124, 255, 0.1);
}

.header-btns {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 10px 28px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border: none;
  font-size: 15px;
}

.btn-primary {
  background: var(--gradient-1);
  color: #fff;
  box-shadow: 0 4px 20px rgba(79, 124, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(79, 124, 255, 0.4);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: #fff;
  background: rgba(79, 124, 255, 0.1);
}

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

.btn-lg {
  padding: 14px 36px;
  font-size: 16px;
}

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

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: var(--primary);
  top: -150px;
  right: -150px;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  bottom: -100px;
  left: -100px;
}

.badge-hero {
  background: rgba(79, 124, 255, 0.15);
  color: var(--primary-light);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(79, 124, 255, 0.25);
}

.hero-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

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

.hero-desc {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-plus {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-light);
}

.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  min-height: 450px;
}

.hero-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
}

.main-card {
  top: 20px;
  right: 20px;
  width: 320px;
  z-index: 2;
  position: relative;
  overflow: hidden;
}

.card-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(79, 124, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-card-content {
  position: relative;
  z-index: 1;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.dot.live {
  background: var(--success);
  box-shadow: 0 0 10px rgba(0, 212, 170, 0.5);
  animation: pulse-dot 2s infinite;
}

.dot.success {
  background: var(--success);
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.card-row span:first-child {
  color: var(--text-muted);
}

.card-chart {
  margin-top: 12px;
  height: 50px;
}

.chart-line {
  width: 100%;
  height: 100%;
}

.card-2 {
  bottom: 60px;
  right: 10px;
  width: 200px;
  z-index: 1;
}

.card-3 {
  top: 40%;
  left: -30px;
  width: 150px;
  z-index: 1;
}

.profit-amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--success);
}

.profit-label {
  font-size: 13px;
  color: var(--text-muted);
}

.big-number {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
}

.support-label {
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 991px) {
  .hero-visual {
    min-height: 350px;
  }
  .main-card {
    width: 280px;
    right: 0;
  }
  .card-2 {
    bottom: 30px;
    right: 0;
  }
}

.partners {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.partners-label {
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.partner-logos span {
  font-size: 18px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  transition: var(--transition);
}

.partner-logos span:hover {
  opacity: 1;
}

.partner-logos i {
  font-size: 24px;
}

.about {
  padding: 100px 0;
}

.about-visual {
  position: relative;
}

.about-img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gradient-1);
  padding: 20px 28px;
  border-radius: var(--radius-sm);
  text-align: center;
  color: #fff;
  font-weight: 600;
}

.experience-badge .years {
  display: block;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  gap: 16px;
}

.af-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(79, 124, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary-light);
}

.about-feature h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

.how-it-works {
  padding: 100px 0;
  background: var(--bg-card);
}

.step-card {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.step-number {
  font-size: 60px;
  font-weight: 900;
  color: rgba(79, 124, 255, 0.08);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
}

.step-icon {
  width: 70px;
  height: 70px;
  background: rgba(79, 124, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary-light);
  margin: 0 auto 20px;
}

.step-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0;
}

.plans {
  padding: 100px 0;
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.plan-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.plan-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 40px rgba(79, 124, 255, 0.1);
}

.plan-badge {
  display: inline-block;
  background: rgba(79, 124, 255, 0.15);
  color: var(--primary-light);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plan-name {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
}

.plan-price {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.price-percent {
  font-size: 40px;
  font-weight: 900;
  display: block;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-desc {
  font-size: 14px;
  color: var(--text-muted);
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.plan-features li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(42, 42, 74, 0.5);
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li i {
  color: var(--success);
  font-size: 12px;
}

.features {
  padding: 100px 0;
  background: var(--bg-card);
}

.feature-card {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
}

.fc-icon {
  width: 56px;
  height: 56px;
  background: rgba(79, 124, 255, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary-light);
  margin-bottom: 18px;
}

.feature-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

.calculator {
  padding: 100px 0;
}

.calc-form {
  margin-top: 32px;
}

.form-label {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}

.form-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  outline: none;
}

.form-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  background: var(--gradient-1);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(79, 124, 255, 0.4);
}

.form-select {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 15px;
}

.form-select:focus {
  border-color: var(--primary);
  box-shadow: none;
}

.calc-result {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 24px;
}

.result-label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.result-value {
  font-size: 28px;
  font-weight: 800;
}

.testimonials {
  padding: 100px 0;
  background: var(--bg-card);
}

.testimonial-card {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
}

.stars {
  color: var(--warning);
  margin-bottom: 16px;
  font-size: 14px;
}

.testimonial-text {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tu-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.testimonial-user strong {
  display: block;
  font-size: 15px;
}

.testimonial-user span {
  font-size: 13px;
  color: var(--text-muted);
}

.cta-section {
  padding: 100px 0;
}

.cta-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 60px 50px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(79, 124, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-desc {
  color: var(--text-light);
  font-size: 16px;
  margin: 0;
}

.faq {
  padding: 100px 0;
  background: var(--bg-card);
}

.accordion-item {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.accordion-button {
  background: var(--bg-card-2);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 18px 24px;
  border: none;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: var(--bg-card-3);
  color: #fff;
  box-shadow: none;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239494b8' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-body {
  padding: 0 24px 18px;
  color: var(--text-light);
  font-size: 15px;
}

.contact {
  padding: 100px 0;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.cc-icon {
  width: 56px;
  height: 56px;
  background: rgba(79, 124, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary-light);
  margin: 0 auto 16px;
}

.contact-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--text-muted);
  margin: 0;
  font-size: 15px;
}

.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-3px);
}

.footer h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

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

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  font-size: 15px;
}

.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form .form-control {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  color: #fff;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
}

.newsletter-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: none;
}

.newsletter-form .btn {
  padding: 12px 16px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  margin-top: 40px;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--gradient-1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 4px 20px rgba(79, 124, 255, 0.4);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
  color: #fff;
}

@media (max-width: 991px) {
  .header-btns {
    margin-top: 12px;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .stat-number {
    font-size: 28px;
  }

  .cta-box {
    padding: 40px 24px;
    text-align: center;
  }

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

  .experience-badge {
    right: 10px;
    bottom: -20px;
    padding: 14px 20px;
  }
}

/* Modal Styles */
.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.modal-header {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
}
.modal-header .modal-title {
  color: var(--text);
  font-weight: 700;
}
.modal-header .btn-close {
  filter: invert(0.8);
}
.modal-body {
  padding: 1.5rem;
}
.modal-body .form-label {
  color: var(--text-light);
  font-size: 0.875rem;
  font-weight: 500;
}
.modal-body .form-control {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-sm);
  padding: 0.625rem 1rem;
}
.modal-body .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(79, 124, 255, 0.15);
  background: var(--bg-card-2);
  color: var(--text);
}
.modal-backdrop {
  background: rgba(0, 0, 0, 0.6);
}
.modal-dialog .alert {
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
}
.modal-dialog .btn-primary {
  background: var(--gradient-1);
  border: none;
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  font-weight: 600;
}
.modal-dialog .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}
.modal-dialog .btn-primary:disabled {
  opacity: 0.7;
  transform: none;
}
.modal-body p {
  color: var(--text-light);
  font-size: 0.875rem;
}
.modal-body p a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}
.modal-body p a:hover {
  color: var(--primary-light);
}

/* ========== ENHANCED FEATURES SECTION ========== */
.features-enhanced {
  padding: 100px 0;
  background: var(--bg-card);
}

.features-enhanced .nav-tabs {
  border: none;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.features-enhanced .nav-tabs .nav-link {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 22px;
  color: var(--text-light);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  cursor: pointer;
}

.features-enhanced .nav-tabs .nav-link:hover,
.features-enhanced .nav-tabs .nav-link.active {
  background: var(--gradient-1);
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(79, 124, 255, 0.3);
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 991px) {
  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .feat-grid {
    grid-template-columns: 1fr;
  }
}

.feat-card {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gradient-1);
  transition: height 0.4s ease;
  border-radius: 0 3px 3px 0;
}

.feat-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.feat-card:hover::before {
  height: 100%;
}

.feat-card .fc-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(79, 124, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary-light);
  margin-bottom: 14px;
}

.feat-card h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.feat-card p {
  color: var(--text-muted);
  font-size: 13px;
  margin: 0;
  line-height: 1.6;
}

.feat-category-title {
  grid-column: 1 / -1;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  padding: 12px 0 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feat-category-title i {
  color: var(--primary-light);
  font-size: 20px;
}

/* Feature badge */
.feat-badge {
  display: inline-block;
  background: rgba(0, 212, 170, 0.12);
  color: var(--accent);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 8px;
}

/* Feature highlight row */
.feat-highlight {
  background: var(--bg-card-3);
  border: 1px solid rgba(79, 124, 255, 0.15);
  border-radius: var(--radius);
  padding: 40px;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 30px;
}

.feat-highlight-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background: var(--gradient-1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
}

.feat-highlight-content h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.feat-highlight-content p {
  color: var(--text-muted);
  margin: 0;
  font-size: 14px;
}

@media (max-width: 768px) {
  .feat-highlight {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
}

/* Feature compare section */
.compare-section {
  padding: 80px 0;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

.compare-card {
  background: var(--bg-card-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: var(--transition);
}

.compare-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.compare-card.featured-card {
  border-color: var(--primary);
  background: var(--bg-card-3);
  position: relative;
  overflow: hidden;
}

.compare-card.featured-card::after {
  content: 'PREMIUM';
  position: absolute;
  top: 12px;
  right: -30px;
  background: var(--gradient-1);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 35px;
  transform: rotate(45deg);
  letter-spacing: 1px;
}

.compare-card-header {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.compare-card-header .cc-icon {
  width: 56px;
  height: 56px;
  background: rgba(79, 124, 255, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary-light);
  margin-bottom: 14px;
}

.compare-card-header h4 {
  font-size: 20px;
  font-weight: 800;
}

.compare-card-header p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

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

.compare-list li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(42, 42, 74, 0.3);
}

.compare-list li:last-child {
  border-bottom: none;
}

.compare-list li i.fa-check-circle {
  color: var(--success);
  font-size: 16px;
}

.compare-list li i.fa-times-circle {
  color: var(--danger);
  font-size: 16px;
}

.compare-list li i.fa-star {
  color: var(--warning);
  font-size: 14px;
}

/* Feature detail cards */
.feat-detail {
  padding: 60px 0;
  background: var(--bg-dark);
}

.feat-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

.feat-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  gap: 20px;
  transition: var(--transition);
}

.feat-detail-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.feat-detail-card .fdc-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: rgba(79, 124, 255, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary-light);
}

.feat-detail-card .fdc-content h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.feat-detail-card .fdc-content p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
  line-height: 1.7;
}

/* Stats highlight bar */
.stats-bar {
  padding: 60px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

@media (max-width: 991px) {
  .stats-bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats-bar-grid {
    grid-template-columns: 1fr;
  }
}

.stats-bar-item .stat-num {
  font-size: 40px;
  font-weight: 900;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.stats-bar-item .stat-label {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 4px;
}

/* Features tech spec list */
.tech-specs {
  padding: 80px 0;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 991px) {
  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .tech-grid {
    grid-template-columns: 1fr;
  }
}

.tech-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  transition: var(--transition);
}

.tech-item:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.tech-item i {
  font-size: 28px;
  color: var(--primary-light);
  margin-bottom: 10px;
}

.tech-item h6 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}

.tech-item span {
  font-size: 11px;
  color: var(--text-muted);
}
