
.dark .pricing {
  background: var(--bg-primary);
}

.dark body {
  background-color: var(--bg-primary);
    color: white;
}

.dark .footer {
  background-color: var(--bg-secondary);
  color: var(--text-secondary);
}

/* Profile Dropdown Styles */
.profile-dropdown-container {
    position: relative;
    z-index: 1000;
}

.profile-dropdown {
    position: relative;
    display: inline-block;
}

.profile-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.profile-btn:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.profile-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e5e7eb;
}

.dropdown-arrow {
    transition: transform 0.2s ease;
    color: #6b7280;
}

.dropdown-arrow.rotated {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    padding: 8px 0;
    display: none;
    z-index: 1001;
    animation: dropdownFadeIn 0.2s ease;
}

.dropdown-menu.show {
    display: block;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    margin-bottom: 4px;
}

.dropdown-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e5e7eb;
}

.dropdown-user-info {
    flex: 1;
}

.dropdown-name {
    font-weight: 600;
    color: #111827;
    font-size: 16px;
    margin-bottom: 2px;
}

.dropdown-email {
    color: #6b7280;
    font-size: 14px;
}

.dropdown-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 8px 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.dropdown-item:hover {
    background: #f3f4f6;
    color: #111827;
}

.dropdown-item svg {
    width: 16px;
    height: 16px;
    color: #6b7280;
}

.logout-item:hover {
    background: #fee2e2;
    color: #dc2626;
}

.logout-item:hover svg {
    color: #dc2626;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dropdown-menu {
        right: -10px;
        left: -10px;
        width: auto;
        min-width: unset;
    }
    
    .profile-btn span {
        display: none;
    }
}

/* CSS Variables */
:root {
  --primary-50: #f0f7ff;
  --primary-100: #e0efff;
  --primary-200: #bae0ff;
  --primary-300: #7cc8ff;
  --primary-400: #36acff;
  --primary-500: #4a90e2;
  --primary-600: #2563eb;
  --primary-700: #1d4ed8;
  --primary-800: #1e40af;
  --primary-900: #1e3a8a;

  --secondary-50: #f8fafc;
  --secondary-100: #f1f5f9;
  --secondary-200: #e2e8f0;
  --secondary-300: #cbd5e1;
  --secondary-400: #94a3b8;
  --secondary-500: #64748b;
  --secondary-600: #475569;
  --secondary-700: #334155;
  --secondary-800: #2c3e50;
  --secondary-900: #0f172a;

  --accent-50: #fef7ed;
  --accent-100: #fdf2f8;
  --accent-200: #fce7f3;
  --accent-300: #f9a8d4;
  --accent-400: #f472b6;
  --accent-500: #ec4899;
  --accent-600: #db2777;
  --accent-700: #be185d;
  --accent-800: #9d174d;
  --accent-900: #831843;

  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fa;
  --text-primary: #2c3e50;
  --text-secondary: #64748b;
  --border-color: #e2e8f0;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.dark {
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --text-primary: #f1f5f9;
  --text-secondary: #cbd5e1;
  --border-color: #334155;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3),
    0 4px 6px -2px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.3),
    0 10px 10px -5px rgba(0, 0, 0, 0.2);
    
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-secondary);
  color: var(--text-primary);
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Utility Classes */
.gradient-text {
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-padding {
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .section-padding {
    padding: 6rem 0;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes bounceGentle {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

.animate-slide-up {
  animation: slideUp 0.6s ease-out;
}

.animate-slide-down {
  animation: slideDown 0.6s ease-out;
}

.animate-bounce-gentle {
  animation: bounceGentle 2s infinite;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.dark .header {
  background: rgba(15, 23, 42, 0.8);
   color: white;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo-icon {
  padding: 0.5rem;
  background: var(--primary-500);
  border-radius: 0.5rem;
  color: white;
  transition: background-color 0.3s ease;
}

.logo:hover .logo-icon {
  background: var(--primary-600);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-400), var(--accent-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.1); /* subtle glow for better visibility */
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-500);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary-500);
  border-radius: 1px;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.theme-toggle,
.mobile-menu-toggle {
  padding: 0.5rem;
  border: none;
  border-radius: 0.5rem;
  background: var(--bg-secondary);
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.theme-toggle:hover,
.mobile-menu-toggle:hover {
  background: var(--secondary-200);
  transform: scale(1.05);
}

.dark .theme-toggle:hover,
.nav-desktop .dark .mobile-menu-toggle:hover {
  background: var(--secondary-700);
}

.theme-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: opacity 0.3s ease;
}

.dark .light-icon {
  opacity: 0;
}

.light-icon {
  opacity: 1;
}

.dark .dark-icon {
  opacity: 1;
}

.dark-icon {
  opacity: 0;
}

.mobile-menu-toggle {
  display: block;
}

@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.menu-icon,
.close-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: opacity 0.3s ease;
}

.menu-icon {
  opacity: 1;
}

.close-icon {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mobile-menu-open .menu-icon {
  opacity: 0;
}

.mobile-menu-open .close-icon {
  opacity: 1;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border-color);
  animation: slideDown 0.3s ease-out;
}

.nav-mobile.show {
  display: flex;
}

.nav-link-mobile {
  padding: 0.75rem;
  border-radius: 0.5rem;
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.nav-link-mobile:hover,
.nav-link-mobile.active {
  background: var(--primary-500);
  color: white;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
}

.btn-primary {
  background: var(--primary-500);
  color: white;
}

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

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

.btn-secondary:hover {
  background: var(--secondary-200);
  border-color: var(--primary-500);
}

.dark .btn-secondary {
  background: var(--secondary-700);
  color: var(--text-primary);
  border: 2px solid var(--border-color);
}

.dark .btn-secondary:hover {
  background: var(--secondary-600);
  border-color: var(--primary-500);
}

#authButton.logout {
  background-color: #ef4444;
  color: white;
  border-color: #ef4444;
}

#authButton.logout:hover {
  background-color: #dc2626;
  border-color: #dc2626;
}

.btn-outline {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 2px solid var(--border-color);
}

.btn-outline:hover {
  background: var(--secondary-200);
  border-color: var(--primary-500);
}

.dark .btn-outline:hover {
  background: var(--secondary-700);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-secondary);
  opacity: 0.1;
}

.hero-elements {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
}

.hero-element-1 {
  top: 5rem;
  left: 2.5rem;
  width: 5rem;
  height: 5rem;
  background: var(--primary-500);
  animation: bounceGentle 2s infinite;
}

.hero-element-2 {
  bottom: 5rem;
  right: 2.5rem;
  width: 4rem;
  height: 4rem;
  background: var(--accent-500);
  animation: bounceGentle 2s infinite 1s;
}

.hero-element-3 {
  top: 50%;
  left: 25%;
  width: 3rem;
  height: 3rem;
  background: var(--primary-300);
  animation: bounceGentle 2s infinite 2s;
}

.hero .container {
  position: relative;
  z-index: 10;
  text-align: center;
}

.hero-content {
  animation: slideUp 0.6s ease-out;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.dark .hero-title {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

@media (min-width: 640px) {
  .hero-description {
    font-size: 1.5rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

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

@media (min-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  text-align: center;
  animation: fadeIn 0.5s ease-in-out;
}

.stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary-500);
}

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

.hero-preview {
  position: relative;
  animation: slideUp 0.6s ease-out 0.3s both;
}

.app-preview {
  background: var(--bg-primary);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-xl);
  padding: 2rem;
  max-width: 28rem;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.app-preview:hover {
  transform: scale(1.05);
}

.app-preview-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: var(--primary-500);
  border-radius: 1rem;
  margin: 0 auto 1.5rem;
  color: white;
}

.app-preview h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.app-preview p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.app-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.app-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--primary-500);
  border-radius: 50%;
}

.app-feature span {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Features Section */
.features {
  background: var(--bg-secondary);
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .features {
    padding: 6rem 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: slideUp 0.6s ease-out;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--bg-primary);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  animation: slideUp 0.6s ease-out;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.feature-icon {
  display: inline-flex;
  padding: 0.75rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  color: white;
}

.bg-blue {
  background: #3b82f6;
}
.bg-green {
  background: #10b981;
}
.bg-purple {
  background: #8b5cf6;
}
.bg-red {
  background: #ef4444;
}
.bg-yellow {
  background: #f59e0b;
}
.bg-indigo {
  background: #6366f1;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.features-cta {
  text-align: center;
  animation: slideUp 0.6s ease-out;
}

.cta-card {
  background: var(--bg-primary);
  border-radius: 1rem;
  box-shadow: var(--shadow-xl);
  padding: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

.cta-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* About Section */
.about {
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .about {
    padding: 6rem 0;
  }
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .about-content {
    grid-template-columns: 2fr 1fr;
  }
}

.about-story {
  animation: slideUp 0.6s ease-out;
}

.about-story h3 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.about-story p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  background: var(--bg-primary);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow);
  animation: slideUp 0.6s ease-out;
}

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

.about-stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--primary-500);
  margin-bottom: 0.5rem;
}

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

.values {
  text-align: center;
}

.values h3 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-primary);
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  animation: slideUp 0.6s ease-out;
}

.value-card:hover {
  box-shadow: var(--shadow-lg);
}

.value-icon {
  display: inline-flex;
  padding: 0.75rem;
  background: var(--primary-100);
  border-radius: 50%;
  margin-bottom: 1rem;
  color: var(--primary-500);
}

.dark .value-icon {
  background: var(--primary-900);
}

.value-card h4 {
  font-weight: 600;
  margin-bottom: 0.75rem;
}

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

/* Pricing Section */
.pricing {
  background: var(--bg-secondary);
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .pricing {
    padding: 6rem 0;
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-card {
  background: var(--bg-primary);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  transition: all 0.3s ease;
  animation: slideUp 0.6s ease-out;
  display: flex;
  flex-direction: column;
  
}

.pricing-card.popular {
  border: 2px solid var(--primary-500);
  box-shadow: var(--shadow-xl);
}

.dark .pricing-card {
  background: var(--bg-primary);
  border-color: var(--border-color);

}

.dark .pricing-card,
.dark .pricing-card h3,
.dark .pricing-card p,
.dark .pricing-card span,
.dark .pricing-card li 
.dark .section-description{
  color: white;
}

.dark .price-amount {
  color: var(--primary-400);
}

.dark .price-period {
  color: var(--text-secondary);
}

.popular-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-500);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 1rem;
}

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

.price-period {
  color: var(--text-secondary);
  margin-left: 0.25rem;
}

.pricing-description {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.pricing-features i {
  color: #10b981;
  flex-shrink: 0;
}

/* Testimonials Section */
.testimonials {
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .testimonials {
    padding: 6rem 0;
  }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--bg-primary);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  animation: slideUp 0.6s ease-out;
}

.testimonial-quote {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.testimonial-quote i {
  width: 2rem;
  height: 2rem;
  color: var(--primary-500);
  opacity: 0.5;
}

.testimonial-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star-filled {
  color: #fbbf24;
  width: 1.25rem;
  height: 1.25rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

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

.trust-indicators {
  text-align: center;
  animation: slideUp 0.6s ease-out;
}

.trust-indicators p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0.6;
}

.trust-logos span {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* Contact Section */
.contact {
  background: var(--bg-secondary);
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .contact {
    padding: 6rem 0;
  }
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .contact-info {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-primary);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  animation: slideUp 0.6s ease-out;
}

.contact-icon {
  display: inline-flex;
  padding: 0.75rem;
  background: var(--primary-100);
  border-radius: 50%;
  margin-bottom: 1rem;
  color: var(--primary-500);
  align-items: center; /* Centers vertically */
  justify-content: center; /* Centers horizontally */
}
.dark .contact-icon {
  background: var(--primary-900);
}

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-value {
  color: var(--primary-500);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

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

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form-wrapper {
  animation: slideUp 0.6s ease-out;
  background: var(--bg-secondary, #ffffff);
  padding: 2rem 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  margin: 0 auto;
}

.contact-form-wrapper h3 {
  font-size: 2rem; /* slightly larger */
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* fallback */
  color: transparent;
  text-align: center;
  letter-spacing: 0.03em;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 0.875rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary-500);
  color: white;
  font-weight: 600;
  border: none;
  padding: 0.9rem 1.8rem;
  border-radius: 0.75rem;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.contact-form button.btn-primary i[data-lucide] {
  stroke-width: 2.2;
  transform: translateY(1px);
}

.contact-form button.btn-primary:hover {
  background-color: var(--primary-600);
  box-shadow: 0 6px 16px rgba(0, 123, 255, 0.45);
}

.support-options {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.support-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-primary);
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.support-icon {
  padding: 0.75rem;
  background: var(--primary-100);
  border-radius: 0.5rem;
  color: var(--primary-500);
}

.dark .support-icon {
  background: var(--primary-900);
}

.support-content {
  flex: 1;
}

.support-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

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

.support-action {
  background: none;
  border: none;
  color: var(--primary-500);
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
}

.support-action:hover {
  color: var(--primary-600);
}

.faq-cta {
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
  border-radius: 1rem;
  color: white;
}

.faq-cta h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.faq-cta p {
  margin-bottom: 1rem;
  opacity: 0.9;
  color: white;
}

.faq-cta .btn {
  background: white;
  color: var(--primary-800);
}

.faq-cta .btn:hover {
  background: var(--secondary-100);
}

/* Privacy Policy Hero */
.privacy-hero {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    rgba(58, 97, 237, 0.1) 0%,
    rgba(138, 76, 238, 0.1) 100%
  );
  text-align: center;
  margin-bottom: 3rem;
}

.privacy-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.privacy-hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

/* Privacy Content */
.privacy-content {
  padding: 2rem 0 5rem;
}

.privacy-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
}

.privacy-section {
  margin-bottom: 4rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.privacy-section-title {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-primary);
}

.privacy-icon {
  color: var(--primary-color);
}

.privacy-points {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.privacy-point {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: var(--card-bg);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
}

.point-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--primary-light);
  color: var(--primary-color);
  border-radius: 50%;
  flex-shrink: 0;
}

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

.privacy-point h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.privacy-point p {
  color: var(--text-secondary);
  line-height: 1.6;
}

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

.privacy-card {
  background-color: var(--card-bg);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease;
}

.privacy-card:hover {
  transform: translateY(-5px);
}

.privacy-card .card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--primary-light);
  color: var(--primary-color);
  border-radius: 12px;
  margin-bottom: 1rem;
}

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

.privacy-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.privacy-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.privacy-list {
  margin-top: 2rem;
}

.privacy-list-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: var(--card-bg);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  margin-bottom: 1rem;
}

.list-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--primary-light);
  color: var(--primary-color);
  border-radius: 50%;
  font-weight: 700;
  flex-shrink: 0;
}

.privacy-list-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.privacy-list-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

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

.right-card {
  background-color: var(--card-bg);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  text-align: center;
  transition: transform 0.3s ease;
}

.right-card:hover {
  transform: translateY(-5px);
}

.right-card i {
  width: 36px;
  height: 36px;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.right-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.right-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-methods {
  margin-top: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

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

/* Responsive Styles */
@media (max-width: 768px) {
  .privacy-hero-title {
    font-size: 2.25rem;
  }

  .privacy-hero-description {
    font-size: 1.1rem;
  }

  .privacy-point {
    flex-direction: column;
    gap: 1rem;
  }

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

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

@media (max-width: 480px) {
  .privacy-hero {
    padding: 3rem 0;
  }

  .privacy-hero-title {
    font-size: 1.75rem;
  }

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

  .privacy-section-title {
    font-size: 1.5rem;
  }
}

/* Careers page*/
/* Careers Hero */
.careers-hero {
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    rgba(58, 97, 237, 0.1) 0%,
    rgba(138, 76, 238, 0.1) 100%
  );
}

.careers-hero .container {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.careers-hero .hero-content {
  flex: 1;
}

.careers-hero .hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.careers-hero .hero-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
}

.careers-hero .hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.careers-hero .hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.team-illustration {
  position: relative;
  width: 300px;
  height: 300px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-icon {
  width: 120px;
  height: 120px;
  color: var(--primary-color);
}

.illustration-dot {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 50%;
  opacity: 0.2;
}

.dot-1 {
  top: 30px;
  left: 50px;
}

.dot-2 {
  top: 30px;
  right: 50px;
}

.dot-3 {
  bottom: 30px;
  left: 50px;
}

.dot-4 {
  bottom: 30px;
  right: 50px;
}

.dot-5 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  opacity: 0.1;
}

/* Values Section */
.values-section {
  padding: 5rem 0;
  background-color: var(--bg-secondary);
}

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

.value-card {
  background-color: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  color: var(--primary-color);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.value-icon i {
  width: 28px;
  height: 28px;
}

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.value-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
  padding: 5rem 0;
}

.benefits-section .container {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.benefits-content {
  flex: 1;
}

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

.benefit-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--card-bg);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
}

.benefit-item i {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 3px;
}

.benefit-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.benefit-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

.benefits-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.illustration-wrapper {
  position: relative;
  width: 300px;
  height: 300px;
}

.illustration-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--primary-light);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.3;
}

.illustration-icon {
  position: absolute;
  width: 120px;
  height: 120px;
  color: var(--primary-color);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Positions Section */
.positions-section {
  padding: 5rem 0;
  background-color: var(--bg-secondary);
}

.positions-tabs {
  display: flex;
  gap: 0.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.tab-btn.active {
  background-color: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
}

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

.position-card {
  background-color: var(--card-bg);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease;
}

.position-card:hover {
  transform: translateY(-5px);
}

.position-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.position-header h3 {
  font-size: 1.25rem;
  color: var(--text-primary);
}

.position-type {
  background-color: var(--primary-light);
  color: var(--primary-color);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
}

.position-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.position-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.position-meta i {
  width: 16px;
  height: 16px;
}

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

.position-footer {
  display: flex;
  justify-content: flex-end;
}

.positions-cta {
  text-align: center;
  margin-top: 3rem;
}

.positions-cta p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* Culture Section */
.culture-section {
  padding: 5rem 0;
}

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

.culture-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease;
}

.culture-card:hover {
  transform: translateY(-5px);
}

.culture-image {
  height: 200px;
  overflow: hidden;
}

.culture-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.culture-card:hover .culture-image img {
  transform: scale(1.05);
}

.culture-card h3 {
  font-size: 1.25rem;
  padding: 1.5rem 1.5rem 0;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.culture-card p {
  color: var(--text-secondary);
  padding: 0 1.5rem 1.5rem;
  line-height: 1.6;
}

/* Process Section */
.process-section {
  padding: 5rem 0;
  background-color: var(--bg-secondary);
}

.process-steps {
  max-width: 800px;
  margin: 3rem auto 0;
}

.process-step {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 70px;
  bottom: -10px;
  width: 2px;
  background-color: var(--border-color);
}

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

.step-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .careers-hero .container,
  .benefits-section .container {
    flex-direction: column;
  }

  .hero-image {
    order: -1;
  }

  .benefits-image {
    display: none;
  }
}

@media (max-width: 768px) {
  .careers-hero {
    padding: 4rem 0;
  }

  .careers-hero .hero-title {
    font-size: 2.25rem;
  }

  .values-grid,
  .benefits-grid,
  .positions-grid,
  .culture-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    flex-direction: column;
    gap: 1rem;
  }

  .process-step:not(:last-child)::after {
    left: 30px;
    top: 60px;
    bottom: -10px;
    height: auto;
  }
}

/* terms-of-service */

/* Terms Hero */
.terms-hero {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    rgba(79, 70, 229, 0.1) 0%,
    rgba(124, 58, 237, 0.1) 100%
  );
}

.terms-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.terms-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(90deg, #4f46e5 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background: linear-gradient(135deg, var(--primary-400), var(--accent-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.1); /* subtle glow for better visibility */

}

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

.terms-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  gap: 0.5rem;
}

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

.btn-secondary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-light);
}

/* Terms Content */
.terms-content {
  padding: 3rem 0 5rem;
}

.terms-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
}

.terms-section {
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.terms-section-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-primary);
}

.terms-icon {
  color: var(--primary-color);
}

.terms-list {
  margin: 1rem 0 1rem 1.5rem;
}

.terms-list li {
  margin-bottom: 0.5rem;
  position: relative;
}

.terms-list li::before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.contact-methods {
  margin-top: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

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

.terms-acceptance {
  margin-top: 4rem;
}

.acceptance-box {
  background-color: var(--primary-light);
  border-left: 4px solid var(--primary-color);
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  max-width: 800px;
  margin: 0 auto;
}

.acceptance-box i {
  width: 24px;
  height: 24px;
  color: var(--primary-color);
  flex-shrink: 0;
}

.acceptance-box p {
  margin: 0;
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .terms-hero-actions {
    display: none !important;
  }

  .terms-hero {
    padding: 1rem 0;
  }

  .terms-content {
    padding: 0;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
    color: #000;
    background: #fff;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .terms-hero-title {
    font-size: 2.25rem;
  }

  .terms-hero-description {
    font-size: 1.1rem;
  }

  .terms-hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .terms-section-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .terms-hero {
    padding: 3rem 0;
  }

  .terms-hero-title {
    font-size: 1.75rem;
  }

  .terms-section-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* Help Center Specific Styles */
.help-hero {
  padding: 5rem 0;
  background: var(--background-color);
  position: relative;
  overflow: hidden;
}

.help-hero-content {
  max-width: 600px;
  z-index: 2;
  position: relative;
}

.help-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

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

.help-search {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.help-search input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  background: var(--background-color);
  color: var(--text-primary);
}

.help-hero-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.1;
  z-index: 1;
}

.help-hero-image .hero-icon {
  width: 400px;
  height: 400px;
  stroke-width: 1;
}

/* Categories Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.category-card {
  background: var(--card-background);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--border-color);
  text-decoration: none;
  color: var(--text-primary);
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.category-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.category-icon i {
  width: 24px;
  height: 24px;
  stroke: var(--primary-color);
}

.category-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

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

/* Articles Grid */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.article-card {
  background: var(--card-background);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  border: 1px solid var(--border-color);
  transition: transform 0.2s, box-shadow 0.2s;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-color: var(--primary-color);
}

.article-icon {
  flex-shrink: 0;
}

.article-icon i {
  width: 24px;
  height: 24px;
  stroke: var(--primary-color);
}

.article-content h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.article-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.article-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
}

.article-link i {
  width: 16px;
  height: 16px;
}

/* FAQ Section */
.faq-accordion {
  max-width: 800px;
  margin: 2rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
}

.faq-question span {
  flex: 1;
}

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.2s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding-bottom: 1.5rem;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Contact Support */
.contact-support {
  padding: 5rem 0;
  background: var(--background-alt);
}

.contact-card {
  background: var(--card-background);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border-color);
}

.contact-content {
  padding: 3rem;
}

.contact-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.contact-content p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.contact-methods {
  display: grid;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  gap: 1rem;
}

.method-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.method-icon i {
  width: 24px;
  height: 24px;
  stroke: var(--primary-color);
}

.contact-method h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-method a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  display: block;
  margin-bottom: 0.25rem;
}

.contact-method p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--text-tertiary);
}

.contact-form {
  padding: 3rem;
  background: var(--background-alt);
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  background: var(--background-color);
  color: var(--text-primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-card {
    grid-template-columns: 1fr;
  }

  .help-hero-image {
    display: none;
  }
}

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

  .categories-grid,
  .articles-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 2fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: 2fr 3fr;
  }
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  margin-bottom: 1rem;
}

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

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

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--secondary-200);
  border-radius: 0.5rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-500);
  color: white;
  transform: scale(1.1);
}

.dark .social-link {
  background: var(--secondary-700);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--primary-500);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

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

.footer-legal a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--primary-500);
}

/* Responsive Design */
@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1.125rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-description {
    font-size: 1rem;
  }
}

/* Smooth scrolling for anchor links */
html {
  scroll-padding-top: 4rem;
}

/* Loading states and transitions */
* {
  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease;
}

/* Print styles */
@media print {
  .header,
  .footer {
    display: none;
  }

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

  .section-padding {
    padding: 2rem 0;
  }
}

/* For Mobile App Preview */
/* --- Root Variables and Basic Setup --- */
:root {
  /* Colors from your tailwind.config.js */
  --primary-100: #e0f2fe;
  --primary-500: #0ea5e9;
  --primary-600: #0284c7;
  --gray-100: #f3f4f6;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-800: #1f2937;
  --white: #ffffff;
  --black: #000000;

  /* Fonts */
  --font-sans: "Inter", system-ui, sans-serif;
}

.app-mockup {
  position: relative;
  width: 280px;
  height: 560px;
  border-radius: 40px;
  background: linear-gradient(145deg, #f0f0f0, #ffffff);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  /* This is the line to change */
  border: 12px solid #000000;
  transition: all 0.3s ease;
}
/* --- Main App Preview Component --- */
.app-preview-container {
  display: flex;
  justify-content: center;
  padding: 2rem;
}

.app-preview-wrapper {
  position: relative;
}

/* --- Phone Mockup Frame (from your original code) --- */
.app-mockup {
  position: relative;
  width: 280px;
  height: 560px;
  border-radius: 40px;
  background: linear-gradient(145deg, #f0f0f0, #ffffff);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 12px solid var(--black); /* Updated to pure black */
  transition: all 0.3s ease;
}

.app-notch {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 30px;
  background: var(--black); /* Updated to pure black */
  border-radius: 20px;
  z-index: 10;
}

/* --- Phone Screen and Layout --- */
.app-screen {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--white);
}

/* --- App Header --- */
.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  margin-top: 2.5rem; /* Equivalent to mt-10 */
  border-bottom: 1px solid var(--gray-100);
}

.app-header-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* Equivalent to space-x-2 */
}

.icon-brand {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-600);
}

.app-header-title {
  font-weight: 700;
  color: var(--gray-800);
}

.app-header-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background-color: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-user {
  width: 1rem;
  height: 1rem;
  color: var(--gray-500);
}
/* --- Scan Section --- */
.scan-section {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.scan-box {
  width: 12rem; /* 192px */
  height: 12rem; /* 192px */
  border: 4px solid var(--primary-500);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.icon-scan {
  width: 4rem;
  height: 4rem;
  color: var(--primary-500);
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.scan-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-800);
  margin: 0 0 0.25rem 0;
}
.scan-description {
  font-size: 0.875rem;
  color: var(--gray-500);
  text-align: center;
  margin: 0 0 1.5rem 0;
  max-width: 90%;
}
.scan-button {
  padding: 0.5rem 1.5rem;
  background-color: var(--primary-500);
  color: var(--white);
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}
.scan-button:hover {
  background-color: var(--primary-600);
}
/* --- App Navigation --- */
.app-nav {
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-top: 1px solid var(--gray-100);
  padding-top: 0.75rem;
  padding-bottom: 0.5rem;
}
.app-nav-button {
  background: none;
  border: none;
  padding: 0.5rem;
  border-radius: 9999px;
  cursor: pointer;
  color: var(--gray-4Booster QR
Home
Features
About
Pricing
Contact
￼ 
00);
}
.app-nav-button.active {
  color: var(--primary-500);
}
.icon-nav {
  width: 1.25rem;
  height: 1.25rem;
}
.quick-answers-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-primary);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.dark .quick-answers-container h4 {
  font-size: 1.5rem;
  color: white;
  margin: 0;
  font-weight: 600;
}

.dark .quick-answers-container p {
   font-size: 1rem;
  color: #ffffff;
  line-height: 1.5;
  margin: 0;
}

.quick-answers-container h4 {
  font-size: 1.5rem;
  color: #222;
  margin: 0;
  font-weight: 600;
}

.quick-answers-container p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

.quick-answers-container .btn {
  padding: 10px 22px;
  font-size: 1rem;
  border: 2px solid #007BFF;
  background-color: transparent;
  color: #007BFF;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.quick-answers-container .btn:hover {
  background-color: #007BFF;
  color: white;
}


/* FAQ Section */
.faq-section {
  padding-top: 8rem;
}

.faq-content {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary-color);
}

.faq-item[open] {
  border-color: var(--primary-color);
}

.faq-item summary {
  padding: 1.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-item summary:hover {
  color: var(--primary-color);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: var(--transition);
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-item p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
} 

    /* Products Grid */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .product-card {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .products-Mt{
          margin-top: 6vh;
        }

.dark .product-card {
            background: rgba(15, 23, 42, 0.8);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .product-image {
            position: relative;
            height: 34vh;
           
            overflow: hidden;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.05);
        }
        
        .product-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .product-card:hover .product-overlay {
            opacity: 1;
        }
        
        .add-to-cart-btn {
            background: #fff;
            color: var(--primary-color);
            border: none;
            padding: 12px 24px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .add-to-cart-btn:hover {
            background: var(--primary-color);
            color: #fff;
        }
        
        .product-info {
            padding: 24px;
        }
        
        .product-title {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--dark-text);
        }
        
        .product-description {
            color: var(--light-text);
            margin-bottom: 16px;
            font-size: 0.95rem;
        }
        
        .product-rating {
            display: flex;
            align-items: center;
            gap: 4px;
            margin-bottom: 16px;
        }
        
        .star-filled {
            color: #ffc107;
        }
        
        .star-half {
            color: #ffc107;
        }
        
        .product-rating span {
            margin-left: 8px;
            color: var(--light-text);
            font-size: 0.9rem;
        }
        
        .product-cta {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .learn-more-btn {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.95rem;
            transition: gap 0.3s ease;
        }
        
        .learn-more-btn:hover {
            gap: 10px;
        }
        
        /* CTA Button */
        .products-cta {
            text-align: center;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-secondary {
            background: var(--gradient);
            color: white;
        }
        
        .btn-secondary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 20px;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }