rubody {
  padding: 0;
  margin: 0;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.myndora-header {
  background: #fff;
  padding: 28px 80px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #1f2937;
  font-weight: 600;
  font-size: 24px;
}

.logo-icon {
  font-size: 28px;
  margin-right: 8px;
}

.header-nav {
  display: flex;
  gap: 32px;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown,
.currency-selector,
.user-menu,
.btn-login,
.btn-register {
  min-width: 120px;
}

.nav-button {
  background: none;
  border: none;
  color: #2f2d34;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.nav-button:hover {
  color: #1f2937;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-login {
  background-color: transparent;
  color: #8ea0fe;
  text-decoration: none;
  padding: 7px 20px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.2s;
  border: 2px solid #8ea0fe;
  min-width: 120px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.btn-login:hover {
  background: #4f46e5;
  color: white;
}

/* Header Register Button */
.btn-register {
  background-color: #7b8cff;
  color: white;
  text-decoration: none;
  padding: 7px 20px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.2s;
  border: 2px solid #7b8cff;
  min-width: 120px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.btn-register:hover {
  background: #6366f1;
  color: white;
  text-decoration: none;
  border-color: #6366f1;
}

/* Header Layout Stability - Ensure logo stays centered */
.myndora-header .d-flex.align-items-center.justify-content-between {
  position: relative;
}

.myndora-header .order-0.order-md-1 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.myndora-header .order-1.order-md-0,
.myndora-header .order-2 {
  z-index: 2;
  position: relative;
}

/* Ensure buttons container has consistent width */
.myndora-header .order-2.flex-nowrap {
  min-width: 250px;
  justify-content: flex-end;
}

/* Button container spacing */
.myndora-header .order-2 .btn-login,
.myndora-header .order-2 .btn-register {
  margin-left: 8px;
}

.myndora-header .order-2 .btn-register {
  margin-left: 12px;
}

/* Desktop register button visibility (>1200px) */
@media (min-width: 1200px) {
  .d-xl-inline-block {
    display: inline-flex !important;
  }

  .btn-register.d-none.d-xl-inline-block {
    display: inline-flex !important;
  }
}

/* Ensure buttons don't break on smaller screens */
@media (max-width: 1199px) {
  .btn-register.d-none.d-xl-inline-block {
    display: none !important;
  }

  .myndora-header .order-2.flex-nowrap {
    min-width: 180px;
  }
}

/* Dropdown Menu Styles */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu,
.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 12px 16px;
  color: #374151;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s;
}

.dropdown-item:hover {
  background-color: #f9fafb;
  color: #1f2937;
  text-decoration: none;
}

/* User Menu Styles */
.user-menu {
  position: relative;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #374151;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background-color 0.2s;
  cursor: pointer;
}

.user-profile:hover {
  background-color: #f9fafb;
  text-decoration: none;
}

.user-avatar {
  width: 32px;
  height: 32px;
  background: #6366f1;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}

.user-name {
  font-weight: 500;
  color: #374151;
}

.user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  min-width: 160px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 1000;
}

.user-menu:hover .user-dropdown,
.user-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Currency Selector Improvements */
.currency-selector {
  position: relative;
}

.currency-select {
  background: #f8fafc;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 8px 12px;
  color: #2f2d34;
  font-weight: 500;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 16px;
  padding-right: 32px;
}

.currency-select:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}

.hero-content {
  max-width: 600px;
  margin: 0 auto;
}

.hero-subtitle {
  font-size: 16px;
  margin-bottom: 8px;
  opacity: 0.9;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-description {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.9;
  line-height: 1.6;
}

.btn-hero {
  background: white;
  color: #6366f1;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  transition: transform 0.2s;
}

.btn-hero:hover {
  transform: translateY(-2px);
  color: #6366f1;
}

/* AI Tools Section */
.ai-tools-section {
  padding: 80px 0;
  background: #f9fafb;
}

.section-title {
  text-align: center;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 48px;
  color: #1f2937;
}

.text-blue {
  color: #6366f1;
}

.text-black {
  color: #1f2937;
}

.ai-tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.ai-tool-card {
  flex: 0 1 calc((100% - 64px) / 3);
  box-sizing: border-box;
  background: white;
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

@media (max-width: 900px) {
  .ai-tool-card {
    flex: 0 1 calc((100% - 32px) / 2);
  }
}
@media (max-width: 600px) {
  .ai-tool-card {
    flex: 0 1 100%;
  }
}

.ai-tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.tool-icon {
  width: 64px;
  height: 64px;
  background: #6366f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: white;
  font-size: 24px;
}

.ai-tool-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1f2937;
}

.ai-tool-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* What AI Can Do Section */
.what-ai-section {
  padding: 80px 0;
  background: white;
}

.what-ai-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.what-ai-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1f2937;
}

.what-ai-text p {
  color: #6b7280;
  margin-bottom: 16px;
  line-height: 1.7;
}

.btn-primary {
  background: #6366f1;
  color: white;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  margin-top: 24px;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: #4f46e5;
  color: white;
}

.what-ai-image {
  text-align: center;
}

.robot-image {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

/* 3 Reasons Section */
.reasons-section {
  padding: 80px 0;
  background: #f9fafb;
}

.reasons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
}

.reason-card {
  position: relative;
  flex: 0 1 calc((100% - 48px) / 3);
  box-sizing: border-box;
  background: #fafbff;
  border-radius: 20px;
  padding: 32px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  background-color: #fff;
}

.reason-number {
  position: absolute;
  top: -16px;
  left: -16px;
  background: #8ea0fe;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.5rem;
}

@media (max-width: 900px) {
  .reason-card {
    flex: 0 1 100%;
  }
  .reasons-grid {
    flex-direction: column;
    gap: 24px;
  }

  .reason-number {
    top: -20px;
    left: -10px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

.reason-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1f2937;
  margin-top: 16px;
}

.reason-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* How It Works Section */
.how-it-works-section {
  padding: 80px 0;
  background: white;
}

.how-it-works-grid {
  display: grid;
  gap: 64px;
  margin-top: 48px;
}

.how-it-works-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.how-it-works-step:nth-child(odd) {
  direction: rtl;
}

.how-it-works-step:nth-child(odd) .step-content {
  direction: ltr;
}

.step-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.step-content h3 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #6d83f6;
}

.step-content p {
  color: #6b7280;
  line-height: 1.7;
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
  background: #f9fafb;
}

/* Payment Methods Section */
.payment-methods-section {
  margin-bottom: 40px;
}

.payment-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #6b7280;
  font-size: 16px;
}

.payment-logos {
  display: flex;
  align-items: center;
  gap: 8px;
}

.payment-logo {
  height: 24px;
  width: auto;
}

/* Featured Pricing Card */
.pricing-card.featured {
  position: relative;
  border: 2px solid #6366f1;
  transform: scale(1.05);
  z-index: 2;
}

.featured-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #6366f1;
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Pricing Features */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  text-align: left;
}

.pricing-features li {
  padding: 4px 0;
  color: #6b7280;
  font-size: 14px;
}

.pricing-features li:before {
  content: "✓";
  color: #10b981;
  font-weight: bold;
  margin-right: 8px;
}

/* Custom Price Display */
.custom-price-display {
  margin-top: 12px;
  padding: 8px;
  background: #f3f4f6;
  border-radius: 6px;
}

.custom-credits {
  color: #6b7280;
  font-size: 14px;
  font-weight: 500;
}

.pricing-subtitle {
  text-align: center;
  color: #2f2d34;
  margin-bottom: 48px;
  font-size: 24px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 30px;
}

.pricing-card {
  background: white;
  padding: 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  min-height: 360px;
}

.pricing-card-inner {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.pricing-card h3 {
  font-size: 46px;
  font-weight: 600;
  margin: 0;
  color: #1f2937;
}

.pricing-description {
  color: #2f2d34;
  font-size: 18px;
}

.pricing-price .price {
  font-size: 32px;
  font-weight: 700;
  color: #6366f1;
}

.credits {
  display: block;
  font-size: 14px;
  color: #2f2d34;
}

.custom-input {
  margin-top: 16px;
}

.custom-amount {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  text-align: center;
}

.btn-pricing {
  margin-top: 24px;
  background-color: #6366f1;
  color: white;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s;
}

.btn-pricing:hover {
  background-color: #4f46e5;
}

.credits {
  color: #6b7280;
  font-size: 14px;
}

.btn-pricing {
  background: #6366f1;
  color: white;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  transition: background 0.2s;
}

.btn-pricing:hover {
  background: #4f46e5;
  color: white;
}

.custom-input {
  margin-bottom: 24px;
}

.custom-amount {
  width: 100%;
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  text-align: center;
}

#pricingCarousel .carousel-control-prev,
#pricingCarousel .carousel-control-next {
  width: 34px;
  height: 34px;
  background-color: #8ea0fe;
  border-radius: 100px;
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

#pricingCarousel .carousel-control-prev-icon,
#pricingCarousel .carousel-control-next-icon {
  background-size: 16px 16px;
  background-position: center;
  opacity: 1;
}

@media (max-width: 767.98px) {
  #pricingCarousel .pricing-card {
    max-height: 512px;
  }

  .featured-badge {
    display: none;
  }
}

.credits-table {
  margin-top: 32px;
}

.credits-toggle {
  background: none;
  border: none;
  color: #1f2937;
  font-size: 24px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 24px;
}

.credits-toggle .icon-up {
  display: inline-block;
}
.credits-toggle .icon-down {
  display: none;
}

.credits-toggle.collapsed .icon-up {
  display: none;
}
.credits-toggle.collapsed .icon-down {
  display: inline-block;
}

.credits-table-content {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
}

.credits-table-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  color: #1f2937;
}

.credits-table-content thead th {
  padding: 16px 24px;
  background: #ffffff;
  color: #6366f1; /* синий */
  font-weight: 600;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.credits-table-content tbody td {
  padding: 12px 24px;
  border-bottom: 1px solid #f1f1f1;
  color: #2f2d34;
}

.credits-table-content tbody tr:last-child td {
  border-bottom: none;
}
/* Why We Built This Section */
.why-built-section {
  padding: 80px 0;
  background: white;
}

.why-built-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-built-text {
  order: 2;
}

.why-built-images {
  order: 1;
}

@media (max-width: 768px) {
  .why-built-text {
    order: 1;
  }

  .why-built-images {
    order: 2;
  }
}

.why-built-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1f2937;
}

.why-built-text p {
  color: #6b7280;
  margin-bottom: 16px;
  line-height: 1.7;
}

.workspace-image {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}

.btn-register {
  width: 100%;
  border-radius: 100px;
  background-color: #6d83f6;
}

@media (min-width: 768px) {
  .btn-register {
    max-width: 200px;
  }
}
/* Used By Millions Section */
.used-by-section {
  padding: 80px 0;
  background: #f9fafb;
  text-align: center;
}

.used-by-subtitle {
  color: #6b7280;
  font-size: 18px;
  margin-bottom: 48px;
}

.stats-grid {
  display: flex;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
  border-radius: 24px;
}

.stat-card {
  flex: 1 1 33.333%;
  background: white;
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  border-radius: 0;
}

@media (max-width: 768px) {
  .stats-grid {
    flex-direction: column;
  }

  .stat-card {
    flex: 1 1 100%;
    border-left: none;
    border-top: 1px solid #e5e7eb;
  }

  .stat-card:first-child {
    border-top: none;
  }
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #6366f1;
  margin-bottom: 8px;
}

.stat-label {
  color: #6b7280;
  font-weight: 500;
}

/* Articles Section */
.articles-section {
  padding: 80px 0;
  background: #f9fafb;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.article-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.article-card {
  flex-shrink: 0;
  border-radius: 16px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.article-card:hover {
  transform: translateY(-4px);
}

.article-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
}

.article-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #1f2937;
}

.article-meta {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #6b7280;
  border-top: 1px solid #d1d5db;
  padding: 8px 4px;
}

/* Global article-meta styles for all instances */
.article-meta,
.featured-article-meta,
.bottom-article-meta,
.featured-meta,
.more-article-meta,
.sidebar-article-meta {
  display: flex;
  align-items: center;
}

.article-meta .article-date::before,
.article-meta .article-date::after,
.featured-article-meta .article-date::before,
.featured-article-meta .article-date::after,
.bottom-article-meta .article-date::before,
.bottom-article-meta .article-date::after,
.featured-meta .article-date::before,
.featured-meta .article-date::after,
.more-article-meta .article-date::before,
.more-article-meta .article-date::after,
.sidebar-article-meta .article-date::before,
.sidebar-article-meta .article-date::after {
  content: "|";
  display: inline-block;
  color: #d1d5db;
  margin: 0 9px;
  font-weight: 300;
  opacity: 0.7;
}

/* Mobile responsive adjustments for article-meta */
@media (max-width: 768px) {
  .article-meta,
  .featured-article-meta,
  .bottom-article-meta,
  .featured-meta,
  .more-article-meta,
  .sidebar-article-meta {
    flex-wrap: wrap;
  }

  .article-meta .article-date::before,
  .article-meta .article-date::after,
  .featured-article-meta .article-date::before,
  .featured-article-meta .article-date::after,
  .bottom-article-meta .article-date::before,
  .bottom-article-meta .article-date::after,
  .featured-meta .article-date::before,
  .featured-meta .article-date::after,
  .more-article-meta .article-date::before,
  .more-article-meta .article-date::after,
  .sidebar-article-meta .article-date::before,
  .sidebar-article-meta .article-date::after {
    margin: 0 6px;
  }
}

.swiper-wrapper {
  height: auto;
}

.swiper-button-prev,
.swiper-button-next {
  width: 34px;
  height: 34px;
  background-color: #8ea0fe;
  border-radius: 100px;
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 16px;
  font-weight: bold;
  color: white;
}

.swiper-button-prev::after {
  content: "\f104";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.swiper-button-next::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

/* Swiper Slide Styles */
.swiper-slide {
  /* Swiper handles spacing with spaceBetween property */
  transition: transform 0.3s ease;
}

.swiper-slide:hover {
  transform: translateY(-2px);
}

/* Desktop specific gap for swiper slides */
@media (min-width: 768px) {
  .swiper-slide {
    /* Ensure proper spacing for desktop */
  }

  /* Improve swiper container for better spacing */
  .swiper.mySwiper {
    padding: 0 10px;
    margin: 0 -10px;
  }

  /* Ensure proper spacing between slides */
  .swiper-wrapper {
    padding: 0 10px;
  }
}

/* Mobile specific styles */
@media (max-width: 767px) {
  .swiper.mySwiper {
    padding: 0 5px;
  }
}

/* Final CTA Section */
.final-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
}

.final-cta-subtitle {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.9;
}

/* FAQ Section */
.faq-section {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.faq-title {
  text-align: left;
}

.faq-grid {
  padding: 24px 40px;
  background-color: #fff;
  border-radius: 50px;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 24px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer !important;
  transition: all 0.3s ease;
  padding: 8px;
  margin: -8px;
  border-radius: 8px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #1f2937;
}

.faq-answer {
  padding-top: 16px;
  display: none;
  overflow: hidden;
}

.faq-answer p {
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-question:hover {
  background-color: rgba(123, 140, 255, 0.05);
}

/* Footer */
.myndora-footer {
  background-color: #f9f9f9;
  color: white;
  padding: 48px 0 24px;
}

.footer-content {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-links-row {
  display: flex;
  flex: 1 1 50%;
  justify-content: space-between;
}

.footer-logo-row {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-logo .logo-icon {
  margin-right: 8px;
}

.footer-tagline {
  color: #9ca3af;
  margin: 0;
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #403d4c;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #403d4c;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-section ul li a:hover {
  color: #6d83f6;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 365px;
}

.footer-bottom p {
  color: #9ca3af;
  margin: 0;
}

.payment-methods {
  display: flex;
  gap: 16px;
}

.payment-methods img {
  height: 24px;
}

@media (max-width: 768px) {
  .footer-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 48px;
    text-align: center;
  }

  .footer-logo-row {
    align-items: center;
    width: 100%;
  }

  .footer-btn {
    margin: 0;
  }

  .footer-logo {
    margin: 0;
  }

  .footer-logo-row .footer-section {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .footer-logo img {
    height: 40px;
  }

  .footer-logo-row .btn {
    width: 160px;
    height: 44px;
    font-size: 14px;
    padding: 10px 0;
  }

  .footer-links-row {
    flex-direction: row;
    justify-content: space-evenly;
    gap: 40px;
  }

  .footer-links-row .footer-section {
    align-items: center;
  }

  .footer-bottom {
    align-items: center;
    text-align: center;
    max-width: 100%;
  }

  .payment-methods {
    justify-content: center;
  }
}

.mobile-slide-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: #fff;
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
  padding: 2rem 1.5rem;
  background-color: #f9f9f9;
}

.mobile-slide-menu.active {
  transform: translateX(0);
}

.btn-close-menu {
  position: relative;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #7b8cff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .header-left {
    flex-direction: column;
    gap: 16px;
  }

  .header-nav {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }

  .nav-dropdown {
    width: 100%;
    min-width: 80px !important;
  }

  .nav-button {
    width: 100%;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    text-align: left;
    color: #2f2d34;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    margin-top: 8px;
    border-radius: 8px;
    background: #f8f9fa;
  }

  .dropdown-menu:not(.show) {
    display: none;
  }

  .dropdown-menu.show {
    display: block;
  }

  .header-right {
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
  }

  .currency-select {
    min-width: 80px;
    font-size: 14px;
    padding: 6px 10px;
  }

  .currency-selector,
  .user-menu,
  .btn-login {
    min-width: 80px !important;
  }

  .btn-login {
    padding: 8px 16px;
    font-size: 14px;
  }

  .btn-register {
    padding: 8px 16px;
    font-size: 14px;
    min-width: 80px;
  }

  /* Ensure consistent button spacing on mobile */
  .btn-login,
  .btn-register {
    margin-left: 4px;
    margin-right: 4px;
  }

  .user-profile {
    padding: 8px 12px;
  }

  .user-avatar {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .user-name {
    display: none;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 18px;
  }

  .ai-tools-grid {
    grid-template-columns: 1fr;
  }

  .what-ai-content,
  .why-built-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .how-it-works-step {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .how-it-works-step:nth-child(even) {
    direction: ltr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 991.98px) {
  .myndora-header {
    padding: 0 !important;
    background: #fff !important;
  }
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f2937;
  color: white;
  padding: 16px;
  z-index: 1000;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content p {
  margin: 0;
  margin-right: 16px;
}

.cookie-content a {
  color: #6366f1;
}

.btn-accept-cookies {
  background: #6366f1;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
}

.user-profile-mini {
  background: #e4e7ff;
  color: #7b8cff;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
  text-decoration: none;
}

.credits-upgrade-btn {
  display: flex;
  align-items: center;
  background-color: #7b8cff;
  color: white;
  font-weight: 600;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  text-decoration: none;
}
.credits-upgrade-btn span {
  margin: 0 6px;
}
.credits-upgrade-btn .credit-badge {
  background: white;
  color: #7b8cff;
  font-size: 11px;
  border-radius: 999px;
  padding: 2px 8px;
}
