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

:root {
  --primary: #3b82f6;
  --primary-dark: #2563eb;
  --primary-light: #60a5fa;
  --text-primary: #0f172a;
  --text-secondary: #64748b;
  --text-tertiary: #94a3b8;
  --border: #e2e8f0;
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --success: #10b981;
  --error: #ef4444;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --radius: 8px;
  --radius-lg: 12px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-primary);
  line-height: 1.6;
  background: var(--bg-primary);
}

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

/* Navigation */
.navbar {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
}

.logo {
  font-size: 24px;
}

.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a.btn-primary {
  color: white !important;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline, .btn-link {
  display: inline-block;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-size: 14px;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
}

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

.btn-secondary:hover {
  background: var(--bg-tertiary);
  border-color: var(--primary-light);
}

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

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

.btn-link {
  background: transparent;
  color: var(--primary);
  padding: 0;
  text-decoration: underline;
}

.btn-large {
  padding: 14px 28px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
  text-align: center;
}

/* Hero Section */
.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.hero-subtitle {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.hero-note {
  color: var(--text-tertiary);
  font-size: 14px;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.screenshot-preview {
  width: 100%;
  max-width: 500px;
  position: relative;
}

/* Carousel */
.screenshot-carousel {
  position: relative;
  width: 100%;
}

.carousel-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
  display: block;
  opacity: 1;
}

.screenshot-frame {
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 8px 24px rgba(0, 0, 0, 0.1);
  padding: 24px;
  transform: perspective(1200px) rotateY(-8deg) rotateX(3deg);
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.screenshot-content {
  width: 100%;
  min-height: 320px;
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Gradient Background */
.gradient-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,rgb(229, 255, 0) 0%, #3a86ff 100%);
  opacity: 0.9;
  z-index: 0;
  border-radius: 12px;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.1);
}

.gradient-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
  border-radius: 12px;
}

/* Space with Stars Background */
.space-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0a0e27;
  opacity: 0.9;
  z-index: 0;
  border-radius: 12px;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

/* Big Moon */
.space-bg::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 5%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 30% 30%, #f5f5f5 0%, #e0e0e0 40%, #d0d0d0 100%);
  border-radius: 50%;
  box-shadow: 
    0 0 30px rgba(255, 255, 255, 0.3),
    inset -20px -20px 0 rgba(0, 0, 0, 0.1);
  z-index: 1;
  opacity: 0.9;
}

.space-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(3px 3px at 15% 25%, white, transparent),
    radial-gradient(2px 2px at 25% 35%, white, transparent),
    radial-gradient(3px 3px at 35% 15%, white, transparent),
    radial-gradient(2px 2px at 45% 45%, white, transparent),
    radial-gradient(3px 3px at 55% 60%, white, transparent),
    radial-gradient(2px 2px at 65% 30%, white, transparent),
    radial-gradient(3px 3px at 75% 70%, white, transparent),
    radial-gradient(2px 2px at 85% 20%, white, transparent),
    radial-gradient(3px 3px at 20% 65%, white, transparent),
    radial-gradient(2px 2px at 30% 80%, white, transparent),
    radial-gradient(3px 3px at 40% 55%, white, transparent),
    radial-gradient(2px 2px at 50% 75%, white, transparent),
    radial-gradient(3px 3px at 60% 45%, white, transparent),
    radial-gradient(2px 2px at 70% 85%, white, transparent),
    radial-gradient(3px 3px at 80% 40%, white, transparent),
    radial-gradient(2px 2px at 90% 65%, white, transparent),
    radial-gradient(3px 3px at 10% 50%, white, transparent),
    radial-gradient(2px 2px at 5% 30%, white, transparent),
    radial-gradient(3px 3px at 95% 80%, white, transparent),
    radial-gradient(2px 2px at 12% 90%, white, transparent);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  animation: twinkle 4s ease-in-out infinite;
  border-radius: 12px;
  opacity: 0.9;
  z-index: 0;
}

@keyframes twinkle {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}

/* Reset animation on slide change */
.carousel-slide.active .document-preview {
  animation: float 4s ease-in-out infinite;
}

/* Strawberry Solid Background */
.strawberry-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ff6b6b;
  opacity: 0.9;
  z-index: 0;
  border-radius: 12px;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.1);
}

.strawberry-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  border-radius: 12px;
}

/* Water Background - Using Custom Image */
.water-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    url('/images/customimage2.jpg') center center / cover no-repeat;
  opacity: 0.9;
  z-index: 0;
  border-radius: 12px;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot:hover {
  background: rgba(0, 0, 0, 0.4);
  transform: scale(1.2);
}

.dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 5px;
}

/* Carousel Description */
.carousel-description {
  margin-top: 24px;
  min-height: 48px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-text {
  position: absolute;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  font-size: 15px;
  color: var(--text-secondary);
  text-align: center;
  max-width: 400px;
  line-height: 1.5;
  pointer-events: none;
  margin: 0;
}

.carousel-text.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Document Preview */
.document-preview {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 340px;
  padding: 0;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.document-paper {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.2),
    0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  transform: rotate(1deg);
  transition: transform 0.3s ease;
}

.document-paper:hover {
  transform: rotate(0deg) scale(1.02);
}

/* Paper texture effect */
.document-paper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(0, 0, 0, 0.04) 28px, rgba(0, 0, 0, 0.04) 29px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

.document-paper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 0%, transparent 5%, transparent 95%, rgba(0, 0, 0, 0.02) 100%),
    linear-gradient(to right, rgba(255, 255, 255, 0.5) 0%, transparent 3%, transparent 97%, rgba(0, 0, 0, 0.01) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Document Header */
.document-header {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 2px solid #e5e7eb;
  position: relative;
  z-index: 2;
}

.doc-title {
  height: 22px;
  width: 200px;
  background: linear-gradient(to right, #1f2937 0%, #374151 100%);
  border-radius: 5px;
  margin-bottom: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  position: relative;
}

.doc-title::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  border-radius: 5px;
}

.doc-subtitle {
  height: 16px;
  width: 160px;
  background: linear-gradient(to right, #6b7280 0%, #9ca3af 100%);
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Document Body */
.document-body {
  position: relative;
  z-index: 2;
}

.doc-paragraph {
  margin-bottom: 16px;
}

.doc-line {
  height: 13px;
  background: linear-gradient(to right, #4b5563 0%, #6b7280 100%);
  border-radius: 3px;
  margin-bottom: 9px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  position: relative;
  opacity: 0.85;
}

.doc-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
  border-radius: 3px;
}

.doc-line.full {
  width: 100%;
}

.doc-line.medium {
  width: 78%;
}

.doc-line.short {
  width: 48%;
}

/* Document List */
.doc-list {
  margin-top: 20px;
}

.doc-list-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}

.doc-bullet {
  width: 7px;
  height: 7px;
  background: linear-gradient(135deg, #4b5563 0%, #6b7280 100%);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.doc-line.list {
  width: 82%;
  height: 11px;
  background: linear-gradient(to right, #6b7280 0%, #9ca3af 100%);
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.doc-line.list-short {
  width: 58%;
  height: 11px;
  background: linear-gradient(to right, #6b7280 0%, #9ca3af 100%);
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.mock-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  z-index: 1;
}

.mock-header::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 16px;
  width: 100px;
  height: 8px;
  background: var(--text-tertiary);
  border-radius: 4px;
}

.mock-content {
  position: absolute;
  top: 70px;
  left: 20px;
  right: 20px;
  z-index: 1;
}

.mock-line {
  height: 10px;
  background: var(--text-secondary);
  border-radius: 4px;
  margin-bottom: 12px;
  opacity: 0.6;
}

.mock-line:first-child {
  width: 80%;
}

.mock-line.short {
  width: 60%;
}

.mock-box {
  width: 100%;
  height: 120px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(96, 165, 250, 0.08) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-top: 8px;
}


/* Features Section */
.features {
  padding: 80px 0;
  background: var(--bg-primary);
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  color: var(--text-primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.feature-card {
  padding: 32px;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

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

.feature-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

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

/* Pricing Section */
.pricing-preview,
.pricing-main {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.pricing-header {
  padding: 60px 0 40px;
  text-align: center;
  background: var(--bg-primary);
}

.pricing-header h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
}

.pricing-header p {
  font-size: 18px;
  color: var(--text-secondary);
}

/* Subscription Status Banner */
.subscription-status {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid #93c5fd;
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin: 32px auto 0;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
  max-width: 800px;
  width: 100%;
}

.subscription-status-content {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.subscription-status-icon {
  color: var(--primary);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.subscription-status-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #1e40af;
  font-size: 14px;
  line-height: 1.5;
  flex: 1;
  min-width: 0;
}

.subscription-status-text strong:first-child {
  font-size: 15px;
  font-weight: 600;
  color: #1e3a8a;
}

.subscription-status-text span {
  color: #3b82f6;
  font-size: 13px;
}

.subscription-manage-btn {
  white-space: nowrap;
  flex-shrink: 0;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .subscription-status {
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px;
  }
  
  .subscription-status-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .subscription-manage-btn {
    width: 100%;
  }
}

.pricing-cards,
.pricing-cards-detailed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.pricing-card,
.pricing-card-detailed {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 2px solid var(--border);
  position: relative;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover,
.pricing-card-detailed:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-card.featured,
.pricing-card-detailed.featured {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.pricing-card-detailed .pricing-card-header {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.pricing-card .pricing-header {
  margin-bottom: 24px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
}

.pricing-header h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.pricing-card-header h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.pricing-features li {
  padding: 8px 0;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.pricing-card .btn-primary,
.pricing-card .btn-outline,
.pricing-card-detailed .btn-primary,
.pricing-card-detailed .btn-outline {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

.pricing-card-detailed .upgrade-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 12px;
  margin-bottom: 0;
  min-height: 18px;
}

.pricing-card-detailed a.btn-outline,
.pricing-card-detailed a.btn-primary,
.pricing-card-detailed button.btn-primary,
.pricing-card-detailed button.btn-outline {
  margin-top: auto;
}

.price,
.price-large {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.price-large {
  font-size: 48px;
}

.price span,
.price-large span {
  font-size: 18px;
  color: var(--text-secondary);
  font-weight: 400;
}

.price-description {
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-size: 14px;
  min-height: 20px;
  display: flex;
  align-items: center;
}

/* Ensure consistent spacing when billing toggle is present */
.pricing-card-detailed .pricing-card-header:has(.billing-toggle) {
  min-height: 200px;
}

.pricing-card-detailed .pricing-card-header:not(:has(.billing-toggle)) {
  min-height: 140px;
}

/* Global Billing Toggle (above all cards) */
.global-billing-toggle {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.billing-toggle {
  display: inline-flex;
  gap: 0;
  background: var(--bg-secondary);
  padding: 4px;
  border-radius: var(--radius);
  min-height: 40px;
  align-items: center;
  border: 1px solid var(--border);
}

.billing-btn {
  padding: 10px 20px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 14px;
  border-radius: calc(var(--radius) - 2px);
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  white-space: nowrap;
}

.billing-btn:hover {
  color: var(--text-primary);
}

.billing-btn.active {
  background: white;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  font-weight: 600;
}

.discount-badge {
  position: absolute;
  top: -8px;
  right: 4px;
  font-size: 9px;
  font-weight: 600;
  padding: 2px 6px;
  background: var(--primary);
  color: white;
  border-radius: 8px;
  line-height: 1.2;
  white-space: nowrap;
}


.feature-list {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
}

.feature-item.disabled {
  opacity: 0.5;
}

.feature-item .check,
.feature-item .cross {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item .check svg,
.feature-item .cross svg {
  width: 100%;
  height: 100%;
}

.upgrade-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 12px;
}

.pricing-cta {
  text-align: center;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.faq-section h2 {
  font-size: 36px;
  margin-bottom: 16px;
  text-align: center;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-secondary);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.faq-item:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-sm);
}

.faq-item h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text-primary);
  font-weight: 600;
}

.faq-item p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 15px;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  text-align: center;
}

.cta-section h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

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

.cta-section .btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

/* Footer */
.footer {
  background: var(--bg-tertiary);
  padding: 60px 0 20px;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-brand .logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-bottom: 4px;
}

.footer-brand p {
  color: var(--text-secondary);
  margin-top: 4px;
}

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

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.footer-column a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 14px;
  transition: color 0.2s;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--text-tertiary);
  font-size: 14px;
}

/* Use Cases Section */
.use-cases {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.use-cases .section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 18px;
  margin-bottom: 48px;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.use-case-card {
  background: var(--bg-primary);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.use-case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.use-case-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.use-case-icon svg {
  width: 100%;
  height: 100%;
}

.use-case-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.use-case-card > p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.use-case-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.use-case-features li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--text-secondary);
  font-size: 14px;
}

.use-case-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* FAQ Section (Enhanced) */
.faq-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.faq-section .section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 18px;
  margin-bottom: 48px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 36px;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a:not(.btn-primary) {
    display: none;
  }

  .pricing-cards,
  .pricing-cards-detailed {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .use-cases-grid {
    grid-template-columns: 1fr;
  }

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

  .nav-links a:not(.btn-primary) {
    font-size: 14px;
  }
}
