.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--violet-primary), var(--violet-dark));
  color: white;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--violet-dark), #6d28d9);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(139, 92, 246, 0.35), 0 2px 8px rgba(139, 92, 246, 0.2);
}

.btn-secondary {
  background: transparent;
  color: var(--violet-primary);
  border-color: rgba(139, 92, 246, 0.6);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--violet-primary), var(--violet-dark));
  color: white;
  border-color: var(--violet-primary);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

.card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  height: 100%;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--violet-light), var(--violet-primary));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
  flex-shrink: 0;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--grey-900);
  margin-bottom: var(--spacing-sm);
}

.card-description {
  color: var(--grey-600);
  margin-bottom: var(--spacing-md);
  font-size: 0.9375rem;
}

.tag {
  display: inline-block;
  padding: 0.25rem 0.625rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.tag-cyan {
  background: rgba(6, 182, 212, 0.10);
  color: var(--accent-cyan);
  border: 1px solid rgba(6, 182, 212, 0.25);
}

.tag-violet {
  background: rgba(139, 92, 246, 0.1);
  color: var(--violet-dark);
}

.tag-gold {
  background: rgba(245, 158, 11, 0.1);
  color: var(--gold-dark);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  gap: 0.375rem;
}

.badge-gold {
  background: var(--accent-gold);
  color: #111827;
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--grey-700);
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--grey-300);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: var(--transition);
  background: white;
  color: var(--grey-800);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--violet-primary);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.pricing-card {
  background: white;
  border: 2px solid var(--grey-200);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border: 1.5px solid transparent;
  background:
    linear-gradient(white, white) padding-box,
    linear-gradient(135deg, var(--accent-gold), #FBBF24) border-box;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.12), 0 2px 8px rgba(245, 158, 11, 0.08);
  position: relative;
  transform: scale(1.04);
  margin: -0.75rem 0;
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.02), transparent 60%);
  border-radius: var(--radius-xl);
  z-index: -1;
  pointer-events: none;
}

.pricing-card.featured .pricing-amount {
  color: var(--accent-gold);
  font-weight: 800;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.pricing-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 0.5rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.pricing-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--grey-700);
}

.pricing-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--grey-900);
}

.pricing-period {
  font-size: 1rem;
  color: var(--grey-600);
}

.pricing-description {
  color: var(--grey-600);
  font-size: 0.9375rem;
  text-align: center;
}

.pricing-features {
  margin: var(--spacing-lg) 0;
  flex-grow: 1;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.625rem;
  font-size: 0.9375rem;
  color: var(--grey-700);
  line-height: 1.5;
}

.pricing-feature-icon {
  color: var(--violet-primary);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-cta {
  width: 100%;
}

/* ========================================
   HERO SECTION - Enterprise Level
   ======================================== */

.hero-section {
  background:
    radial-gradient(ellipse at 65% 30%, rgba(139, 92, 246, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 10%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 90%, rgba(168, 85, 247, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 50% 120%, rgba(88, 28, 135, 0.45) 0%, transparent 60%),
    linear-gradient(180deg, #0a0e1a 0%, #1a0f2e 40%, #2d1b4e 100%);
  color: white;
  padding: 2rem 0 2rem;
  position: relative;
  overflow: hidden;
  min-height: auto;
  display: flex;
  align-items: center;
}

.hero-section .container {
  position: relative;
  z-index: 10;
}

.hero-section .container::after {
  content: '';
  position: absolute;
  bottom: -8rem;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, rgba(45, 27, 78, 0) 0%, rgba(45, 27, 78, 0.6) 100%);
  pointer-events: none;
  z-index: -1;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, white, transparent),
    radial-gradient(2px 2px at 60% 70%, white, transparent),
    radial-gradient(1px 1px at 50% 50%, white, transparent),
    radial-gradient(1px 1px at 80% 10%, white, transparent),
    radial-gradient(2px 2px at 90% 60%, white, transparent),
    radial-gradient(1px 1px at 33% 90%, white, transparent),
    radial-gradient(1px 1px at 15% 80%, white, transparent);
  background-size: 200% 200%, 200% 200%, 300% 300%, 250% 250%, 200% 200%, 300% 300%, 250% 250%;
  background-position: 0% 0%, 40% 60%, 50% 50%, 80% 10%, 90% 60%, 33% 90%, 15% 80%;
  opacity: 0.5;
  pointer-events: none;
  animation: starField 60s linear infinite;
}

@keyframes starField {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.7;
  }
}

.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 1;
}

.hero-background-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(60px);
}

.hero-circle-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation: float 20s ease-in-out infinite;
}

.hero-circle-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, transparent 70%);
  bottom: -100px;
  left: -50px;
  animation: float 15s ease-in-out infinite reverse;
}

.hero-circle-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.35) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -30px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.15;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.25;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-text {
  max-width: 100%;
  padding-right: 0;
  position: relative;
  z-index: 20;
  animation: fadeInLeft 0.8s ease-out 0.2s both;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-trust-line {
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem !important;
  font-weight: 700 !important;
  margin: 0 0 2rem 0 !important;
  padding: 1rem 1.5rem !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative !important;
  z-index: 9999 !important;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(251, 191, 36, 0.15)) !important;
  border: 2px solid #F59E0B !important;
  border-radius: 50px !important;
  width: fit-content !important;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3), 0 0 40px rgba(245, 158, 11, 0.2) !important;
}

.hero-trust-dot {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background: #F59E0B !important;
  flex-shrink: 0 !important;
  box-shadow: 0 0 15px #F59E0B, 0 0 30px rgba(245, 158, 11, 0.7) !important;
  animation: pulse 1.5s ease-in-out infinite !important;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 15px #F59E0B, 0 0 30px rgba(245, 158, 11, 0.7);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
    box-shadow: 0 0 20px #F59E0B, 0 0 40px rgba(245, 158, 11, 0.9);
  }
}

.hero-trust-text {
  color: #FCD34D !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  text-shadow: 0 0 30px rgba(245, 158, 11, 0.6), 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--spacing-lg);
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.badge-icon {
  font-size: 1rem;
}

.badge-text {
  color: rgba(255, 255, 255, 0.9);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.6s ease-out 0.2s both;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.hero-gradient-text {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #f59e0b 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 100%;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-md);
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease-out 0.5s both;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.hero-feature-icon {
  width: 20px;
  height: 20px;
  color: #10b981;
  flex-shrink: 0;
}

.hero-cta {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
  margin-bottom: 0;
  animation: fadeInUp 0.6s ease-out 0.5s both;
}

.btn-icon {
  width: 20px;
  height: 20px;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon {
  transform: translateX(4px);
}


.trust-stat {
  text-align: left;
}

.trust-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* Hero Visual - Code Window */
.hero-visual {
  position: relative;
  animation: fadeInUp 0.6s ease-out 0.4s both;
  padding-left: 0;
  z-index: 15;
}

.hero-visual::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -15%;
  width: 140%;
  height: 120%;
  background: radial-gradient(circle at center, rgba(139, 92, 246, 0.04) 0%, transparent 65%);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
  filter: blur(40px);
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-code-window {
  background: rgba(17, 24, 39, 0.8);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139, 92, 246, 0.2);
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(139, 92, 246, 0.2);
  backdrop-filter: blur(20px);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 100%;
}

.hero-code-window:hover {
  transform: translateY(-4px);
  box-shadow:
    0 35px 60px -12px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(139, 92, 246, 0.3);
}

.code-window-header {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  background: rgba(17, 24, 39, 0.95);
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.code-window-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-right: auto;
}

.code-window-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.code-window-dots span:nth-child(1) {
  background: #ff5f56;
}

.code-window-dots span:nth-child(2) {
  background: #ffbd2e;
}

.code-window-dots span:nth-child(3) {
  background: #27c93f;
}

.code-window-title {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Monaco', 'Courier New', monospace;
}

.code-window-body {
  padding: 1rem;
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 0.6875rem;
  line-height: 1.5;
  color: #e5e7eb;
  overflow-x: auto;
}

.code-window-body pre {
  margin: 0;
}

.code-window-body code {
  display: block;
  white-space: pre;
}

.code-comment {
  color: #6b7280;
  font-style: italic;
}

.code-keyword {
  color: #c084fc;
  font-weight: 600;
}

.code-function {
  color: #60a5fa;
}

.code-string {
  color: #34d399;
}

.code-property {
  color: #fbbf24;
}

.code-number {
  color: #f87171;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.375rem;
  margin-top: 0.75rem;
  padding: 0.625rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
  border-radius: 8px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  backdrop-filter: blur(10px);
}

.hero-stat-item {
  text-align: center;
  padding: 0.375rem;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.hero-stat-item:hover {
  background: rgba(139, 92, 246, 0.1);
  transform: translateY(-1px);
}

.hero-stat-number {
  font-size: 0.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, rgba(245, 158, 11, 1) 0%, rgba(251, 191, 36, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.125rem;
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 0.5625rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  line-height: 1.3;
}

/* Hero Responsive Styles */
@media (max-width: 1200px) {
  .hero-content {
    grid-template-columns: 1fr 0.9fr;
    gap: 3rem;
  }

  .hero-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-3xl);
  }

  .hero-text {
    padding-right: 0;
    animation: fadeInUp 0.8s ease-out 0.2s both;
  }

  .hero-visual {
    padding-left: 0;
    animation: fadeInUp 0.8s ease-out 0.4s both;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-description {
    font-size: 1.125rem;
  }

  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 5rem 0 3rem;
    min-height: auto;
  }

  .hero-content {
    gap: var(--spacing-2xl);
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.25;
    word-break: break-word;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.6;
  }

  .hero-features {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
  }

  .hero-cta {
    flex-direction: column;
    gap: var(--spacing-sm);
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .hero-code-window {
    font-size: 0.75rem;
  }

  .code-window-body {
    font-size: 0.75rem;
    padding: 1rem;
    max-height: 350px;
    overflow-y: auto;
  }

  .hero-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.375rem;
    padding: 0.625rem;
    margin-top: 0.75rem;
  }

  .hero-stat-number {
    font-size: 0.6875rem;
  }

  .hero-stat-label {
    font-size: 0.5625rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 4.5rem 0 2.5rem;
  }

  .hero-content {
    gap: var(--spacing-xl);
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }

  .hero-title {
    font-size: 1.625rem;
    line-height: 1.3;
    word-break: break-word;
    hyphens: auto;
  }

  .hero-description {
    font-size: 0.9375rem;
    line-height: 1.65;
  }

  .hero-features {
    gap: 0.625rem;
  }

  .hero-feature {
    font-size: 0.875rem;
  }

  .hero-cta {
    gap: 0.75rem;
  }

  .hero-cta .btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.9375rem;
    min-height: 48px;
  }

  .code-window-header {
    padding: 0.75rem 1rem;
  }

  .code-window-dots span {
    width: 8px;
    height: 8px;
  }

  .code-window-body {
    padding: 0.875rem;
    max-height: 280px;
  }

  .hero-circle-1,
  .hero-circle-2,
  .hero-circle-3 {
    display: none;
  }

  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.375rem;
    padding: 0.5rem;
    margin-top: 0.625rem;
  }

  .hero-stat-number {
    font-size: 0.6875rem;
  }

  .hero-stat-label {
    font-size: 0.5625rem;
  }
}

/* Extra small devices (320px and below) */
@media (max-width: 360px) {
  .hero-section {
    padding: 4rem 0 2rem;
  }

  .hero-title {
    font-size: 1.625rem;
    line-height: 1.25;
  }

  .hero-description {
    font-size: 0.875rem;
  }

  .hero-badge {
    font-size: 0.6875rem;
    padding: 0.325rem 0.625rem;
  }

  .hero-feature {
    font-size: 0.8125rem;
  }

  .hero-cta .btn {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }

  .hero-stats-grid {
    gap: 0.375rem;
    padding: 0.5rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stat-number {
    font-size: 0.625rem;
  }

  .hero-stat-label {
    font-size: 0.5625rem;
  }
}

/* PWA and Touch Optimizations */
@media (hover: none) and (pointer: coarse) {
  .hero-cta .btn {
    min-height: 48px;
    padding: 1rem 1.5rem;
  }

  .hero-code-window:hover {
    transform: none;
  }

  .hero-stat-item:hover {
    transform: none;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-section {
    padding: 3.5rem 0 2.5rem;
    min-height: auto;
  }

  .hero-content {
    gap: var(--spacing-xl);
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 0.9375rem;
  }
}

.page-hero {
  background: linear-gradient(135deg, #1a0f2e 0%, #2d1b4e 50%, #1a0f2e 100%);
  color: white;
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(168, 85, 247, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero-compact {
  padding: 4rem 0 2rem;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #e9d5ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.trust-strip {
  background: var(--grey-50);
  padding: var(--spacing-xl) 0;
  text-align: center;
}

.trust-content p {
  color: var(--grey-600);
  margin-bottom: var(--spacing-md);
  font-weight: 600;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xl);
  flex-wrap: wrap;
}

.trust-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.trust-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--violet-primary);
}

.trust-label {
  color: var(--grey-600);
  font-size: 0.875rem;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-2xl);
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--grey-600);
}

.grid {
  display: grid;
  gap: var(--spacing-lg);
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.tool-category {
  margin-bottom: var(--spacing-3xl);
}

.category-header {
  margin-bottom: var(--spacing-xl);
}

.tool-section-visual {
  width: 100%;
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
}

.tool-section-visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  opacity: 0.96;
}

.category-visual {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--grey-100), var(--grey-200));
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-400);
  font-size: 0.875rem;
}

.category-title {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.category-description {
  color: var(--grey-600);
  font-size: 1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-xl);
}

.feature-item {
  display: flex;
  gap: var(--spacing-md);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--violet-light), var(--violet-primary));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.feature-content p {
  color: var(--grey-600);
  font-size: 0.9375rem;
  margin: 0;
}

.cta-section {
  background: linear-gradient(
    180deg,
    rgba(11, 18, 32, 1) 0%,
    rgba(30, 27, 75, 1) 60%,
    rgba(49, 46, 129, 1) 100%
  );
  color: white;
  padding: var(--spacing-3xl) 0;
  text-align: center;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  margin-bottom: var(--spacing-lg);
}

.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.15);
  transform: translateY(-4px);
}

.blog-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.blog-image-fallback {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(168, 85, 247, 0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-image-fallback::after {
  content: '📰';
  font-size: 3rem;
  opacity: 0.3;
}

.blog-content {
  padding: var(--spacing-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--spacing-sm);
  flex-wrap: wrap;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  line-height: 1.4;
}

.blog-title a {
  color: var(--grey-900);
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: var(--violet-primary);
}

.blog-excerpt {
  color: var(--grey-600);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
  flex-grow: 1;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: var(--spacing-sm);
  border-top: 1px solid var(--grey-200);
}

.blog-date {
  color: var(--grey-500);
  font-size: 0.875rem;
  font-weight: 500;
}

.blog-link {
  color: var(--violet-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.blog-link:hover {
  gap: 0.75rem;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--spacing-xl);
}

.pagination-btn {
  padding: 0.5rem 1rem;
  border: 2px solid var(--grey-300);
  border-radius: var(--radius-md);
  color: var(--grey-700);
  font-weight: 600;
  transition: var(--transition);
}

.pagination-btn:hover {
  border-color: var(--violet-primary);
  color: var(--violet-primary);
}

.pagination-btn.active {
  background: var(--violet-primary);
  border-color: var(--violet-primary);
  color: white;
}

.blog-empty-state {
  text-align: center;
  padding: var(--spacing-3xl) var(--spacing-lg);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  max-width: 500px;
  margin: 0 auto;
}

.blog-empty-icon {
  font-size: 4rem;
  margin-bottom: var(--spacing-lg);
  opacity: 0.5;
}

.blog-empty-state h3 {
  font-size: 1.5rem;
  color: var(--grey-900);
  margin-bottom: var(--spacing-sm);
}

.blog-empty-state p {
  color: var(--grey-600);
  font-size: 1rem;
}

.blog-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--grey-600);
}

.blog-breadcrumb a {
  color: var(--violet-primary);
  transition: color 0.3s ease;
}

.blog-breadcrumb a:hover {
  color: var(--violet-dark);
}

.breadcrumb-separator {
  color: var(--grey-400);
}

.blog-single-image {
  width: 100%;
  aspect-ratio: 21 / 9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.blog-single-image-fallback {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(168, 85, 247, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-single-image-fallback::after {
  content: '📰';
  font-size: 5rem;
  opacity: 0.2;
}

.blog-single-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--grey-900);
}

.blog-single-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  color: var(--grey-600);
  font-size: 0.9375rem;
}

.blog-single-date {
  font-weight: 500;
  color: var(--grey-700);
}

.blog-meta-separator {
  color: var(--grey-400);
}

.blog-single-content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--grey-700);
}

.blog-single-content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--grey-900);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-single-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--grey-900);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-single-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--grey-900);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.blog-single-content p {
  margin-bottom: 1.25rem;
}

.blog-single-content ul,
.blog-single-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.blog-single-content li {
  margin-bottom: 0.5rem;
}

.blog-single-content strong {
  font-weight: 600;
  color: var(--grey-900);
}

.blog-single-content a {
  color: var(--violet-primary);
  text-decoration: underline;
}

.blog-single-content a:hover {
  color: var(--violet-dark);
}

.blog-single-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

.blog-single-content blockquote {
  border-left: 4px solid var(--violet-primary);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--grey-600);
}

.blog-author-section {
  border-top: 2px solid var(--grey-200);
}

.blog-author-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--grey-900);
}

.blog-author-section p {
  color: var(--grey-600);
  line-height: 1.7;
}

.blog-related-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--grey-900);
}

.blog-back-link {
  text-align: center;
}

@media (max-width: 768px) {
  .blog-single-title {
    font-size: 1.875rem;
  }

  .blog-single-content {
    font-size: 1rem;
  }

  .blog-single-content h2 {
    font-size: 1.5rem;
  }

  .blog-single-content h3 {
    font-size: 1.25rem;
  }

  .blog-single-image {
    aspect-ratio: 16 / 9;
  }
}

.faq-item {
  border: 2px solid var(--grey-200);
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: var(--spacing-md) var(--spacing-lg);
  background: white;
  color: var(--grey-900);
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--grey-50);
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--violet-primary);
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 var(--spacing-lg);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: var(--spacing-md) var(--spacing-lg);
  max-height: 500px;
}

.faq-answer p {
  color: var(--grey-600);
  font-size: 0.9375rem;
  margin: 0;
}

.code-block {
  background: var(--grey-900);
  color: var(--grey-100);
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  overflow-x: auto;
  margin: var(--spacing-md) 0;
}

.code-block pre {
  margin: 0;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  line-height: 1.6;
}

.cosmic-tools-section {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
    linear-gradient(180deg, #0a0e1a 0%, #1a0f2e 50%, #0a0e1a 100%);
  padding: var(--spacing-4xl) 0;
  position: relative;
  overflow: hidden;
}

.cosmic-tools-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
  box-shadow: inset 0 1px 0 rgba(139, 92, 246, 0.1), inset 0 -1px 0 rgba(139, 92, 246, 0.1);
}

.cosmic-tools-section .container {
  position: relative;
  z-index: 10;
}

.cosmic-tools-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(2px 2px at 10% 20%, white, transparent),
    radial-gradient(1px 1px at 30% 40%, white, transparent),
    radial-gradient(2px 2px at 50% 10%, white, transparent),
    radial-gradient(1px 1px at 70% 60%, white, transparent),
    radial-gradient(1px 1px at 85% 30%, white, transparent),
    radial-gradient(2px 2px at 15% 80%, white, transparent),
    radial-gradient(1px 1px at 40% 90%, white, transparent);
  background-size: 300% 300%, 250% 250%, 200% 200%, 300% 300%, 250% 250%, 200% 200%, 300% 300%;
  background-position: 0% 0%, 30% 40%, 50% 10%, 70% 60%, 85% 30%, 15% 80%, 40% 90%;
  opacity: 0.3;
  pointer-events: none;
}

.cosmic-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 4rem;
  letter-spacing: 0.02em;
}

.cosmic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
}

.cosmic-card {
  background: linear-gradient(135deg, rgba(15, 15, 30, 0.9) 0%, rgba(26, 15, 46, 0.9) 100%);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.cosmic-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.6),
    0 0 30px rgba(139, 92, 246, 0.3);
}

.cosmic-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.cosmic-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 14, 26, 0.8) 100%);
}

.cosmic-img-1 {
  background:
    radial-gradient(circle at 50% 40%, rgba(139, 92, 246, 0.6) 0%, transparent 60%),
    radial-gradient(circle at 30% 70%, rgba(59, 130, 246, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.3) 0%, transparent 40%),
    linear-gradient(135deg, #0a0e1a 0%, #1a0f2e 100%);
}

.cosmic-img-2 {
  background:
    radial-gradient(circle at 50% 50%, rgba(251, 191, 36, 0.5) 0%, transparent 50%),
    radial-gradient(circle at 30% 30%, rgba(234, 179, 8, 0.4) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(251, 191, 36, 0.3) 0%, transparent 50%),
    linear-gradient(135deg, #1a0f0e 0%, #2d1b0e 100%);
}

.cosmic-img-3 {
  background:
    radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.6) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.3) 0%, transparent 40%),
    linear-gradient(135deg, #0a0e1a 0%, #0e1a2d 100%);
}

.cosmic-img-4 {
  background:
    radial-gradient(circle at 50% 30%, rgba(217, 119, 6, 0.6) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(251, 146, 60, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 30% 80%, rgba(217, 119, 6, 0.3) 0%, transparent 40%),
    linear-gradient(135deg, #1a100e 0%, #2d1b0e 100%);
}

.cosmic-img-5 {
  background:
    radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.4) 0%, transparent 60%),
    radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.5) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(34, 197, 94, 0.3) 0%, transparent 50%),
    linear-gradient(135deg, #0a140e 0%, #0e1a2d 100%);
}

.cosmic-img-6 {
  background:
    radial-gradient(circle at 50% 40%, rgba(59, 130, 246, 0.5) 0%, transparent 60%),
    radial-gradient(circle at 80% 70%, rgba(147, 197, 253, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.3) 0%, transparent 40%),
    linear-gradient(135deg, #0a0e1a 0%, #0e1a2d 100%);
}

.cosmic-img-7 {
  background:
    radial-gradient(circle at 50% 50%, rgba(251, 146, 60, 0.6) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(234, 88, 12, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(251, 146, 60, 0.3) 0%, transparent 40%),
    linear-gradient(135deg, #1a0e0a 0%, #2d1b0e 100%);
}

.cosmic-img-8 {
  background:
    radial-gradient(circle at 50% 50%, rgba(234, 179, 8, 0.5) 0%, transparent 60%),
    radial-gradient(circle at 30% 70%, rgba(168, 85, 247, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(234, 179, 8, 0.3) 0%, transparent 40%),
    linear-gradient(135deg, #1a140e 0%, #1a0f2e 100%);
}

.cosmic-card-content {
  padding: var(--spacing-lg);
}

.cosmic-card-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.cosmic-card-content p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.cosmic-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(139, 92, 246, 1);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cosmic-btn:hover {
  color: rgba(168, 85, 247, 1);
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .cosmic-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-content::before {
    width: 60%;
    height: 40%;
    top: -5%;
  }

  .hero-visual {
    transform: none;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 4rem 0 3rem;
  }

  .page-hero-compact {
    padding: 3rem 0 1.5rem;
  }

  .page-hero-title {
    font-size: 2rem;
  }

  .page-hero-subtitle {
    font-size: 1rem;
  }

  .hero-section {
    padding: 6rem 0 4rem;
  }

  .hero-content::before {
    display: none;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text p {
    max-width: 100%;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .phone-mockup {
    width: 240px;
    height: 480px;
  }

  .cosmic-grid {
    grid-template-columns: 1fr;
  }

  .cosmic-title {
    font-size: 1.75rem;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .trust-indicators {
    gap: var(--spacing-md);
  }
}

.tools-glance-section {
  padding: var(--spacing-3xl) 0;
  background: var(--grey-50);
  position: relative;
}

.tools-glance-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.02) 0%, transparent 100%);
  pointer-events: none;
}

.tools-glance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.tool-category-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid var(--grey-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.tool-category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(168, 85, 247, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.tool-category-card:hover::before {
  opacity: 1;
}

.tool-category-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.tool-category-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 1;
}

.tool-category-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.tool-category-count {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--violet-primary);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.tool-category-desc {
  font-size: 0.875rem;
  color: var(--grey-600);
  line-height: 1.5;
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 1;
}

.tool-category-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--violet-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.tool-category-card:hover .tool-category-link {
  gap: 0.75rem;
  color: var(--violet-dark);
}

@media (max-width: 992px) {
  .tools-glance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .tools-glance-grid {
    grid-template-columns: 1fr;
  }
}

.tools-hero-section {
  background:
    radial-gradient(ellipse at 20% 10%, rgba(139, 92, 246, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 90%, rgba(168, 85, 247, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 50% 120%, rgba(88, 28, 135, 0.4) 0%, transparent 60%),
    linear-gradient(180deg, #0a0e1a 0%, #1a0f2e 40%, #2d1b4e 100%);
  color: white;
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.tools-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(2px 2px at 20% 30%, white, transparent),
    radial-gradient(2px 2px at 60% 70%, white, transparent),
    radial-gradient(1px 1px at 50% 50%, white, transparent),
    radial-gradient(1px 1px at 80% 10%, white, transparent),
    radial-gradient(2px 2px at 90% 60%, white, transparent),
    radial-gradient(1px 1px at 33% 90%, white, transparent),
    radial-gradient(1px 1px at 15% 80%, white, transparent);
  background-size: 200% 200%, 200% 200%, 300% 300%, 250% 250%, 200% 200%, 300% 300%, 250% 250%;
  background-position: 0% 0%, 40% 60%, 50% 50%, 80% 10%, 90% 60%, 33% 90%, 15% 80%;
  opacity: 0.4;
  pointer-events: none;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--spacing-lg);
  font-size: 0.875rem;
  position: relative;
  z-index: 1;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: white;
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb span:last-child {
  color: white;
}

.tools-hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.tools-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff 0%, #e0d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tools-hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(251, 191, 36, 1);
  margin-bottom: 1rem;
}

.tools-hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.tools-category-section {
  padding: var(--spacing-3xl) 0;
}

.tools-category-section.alt-bg {
  background: var(--grey-50);
}

.tools-category-header {
  margin-bottom: var(--spacing-2xl);
}

.tools-category-visual {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-xl);
  margin-bottom: var(--spacing-lg);
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.category-visual-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: relative;
  z-index: 1;
}

.tools-category-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tools-category-visual:has(img) ::before {
  opacity: 1;
}

.vedic-visual {
  background:
    radial-gradient(circle at 30% 40%, rgba(251, 191, 36, 0.6) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(245, 158, 11, 0.5) 0%, transparent 50%),
    radial-gradient(circle at 50% 20%, rgba(251, 191, 36, 0.4) 0%, transparent 60%),
    linear-gradient(135deg, #1a0f0e 0%, #2d1b0e 50%, #1a0f0e 100%);
  background-size: 200% 200%;
}

.vedic-visual::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.3) 0%, rgba(245, 158, 11, 0.2) 50%, rgba(251, 191, 36, 0.25) 100%);
  pointer-events: none;
  z-index: 3;
}

.numerology-visual {
  background:
    radial-gradient(circle at 40% 50%, rgba(59, 130, 246, 0.6) 0%, transparent 50%),
    radial-gradient(circle at 60% 30%, rgba(96, 165, 250, 0.5) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.4) 0%, transparent 60%),
    linear-gradient(135deg, #0a0e1a 0%, #0e1a2d 50%, #0a0e1a 100%);
  background-size: 200% 200%;
}

.numerology-visual::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(96, 165, 250, 0.2) 50%, rgba(59, 130, 246, 0.25) 100%);
  pointer-events: none;
  z-index: 3;
}

.remedies-visual {
  background:
    radial-gradient(circle at 50% 40%, rgba(16, 185, 129, 0.6) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(52, 211, 153, 0.5) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(16, 185, 129, 0.4) 0%, transparent 60%),
    linear-gradient(135deg, #0a140e 0%, #0e2d1a 50%, #0a140e 100%);
  background-size: 200% 200%;
}

.remedies-visual::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.3) 0%, rgba(52, 211, 153, 0.2) 50%, rgba(16, 185, 129, 0.25) 100%);
  pointer-events: none;
  z-index: 3;
}

.vastu-visual {
  background:
    radial-gradient(circle at 50% 50%, rgba(220, 38, 38, 0.6) 0%, transparent 50%),
    radial-gradient(circle at 30% 30%, rgba(251, 191, 36, 0.5) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(220, 38, 38, 0.4) 0%, transparent 60%),
    linear-gradient(135deg, #1a0a0e 0%, #2d1b0e 50%, #1a0a0e 100%);
  background-size: 200% 200%;
}

.vastu-visual::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.3) 0%, rgba(251, 191, 36, 0.2) 50%, rgba(220, 38, 38, 0.25) 100%);
  pointer-events: none;
  z-index: 3;
}

.compatibility-visual {
  background:
    radial-gradient(circle at 40% 40%, rgba(233, 30, 99, 0.6) 0%, transparent 50%),
    radial-gradient(circle at 60% 60%, rgba(251, 191, 36, 0.5) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(233, 30, 99, 0.4) 0%, transparent 60%),
    linear-gradient(135deg, #2d0e1a 0%, #4e1b2d 50%, #2d0e1a 100%);
  background-size: 200% 200%;
}

.compatibility-visual::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.3) 0%, rgba(251, 191, 36, 0.2) 50%, rgba(233, 30, 99, 0.25) 100%);
  pointer-events: none;
  z-index: 3;
}

.divination-visual {
  background:
    radial-gradient(circle at 50% 30%, rgba(109, 40, 217, 0.6) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(147, 51, 234, 0.5) 0%, transparent 50%),
    radial-gradient(circle at 30% 80%, rgba(109, 40, 217, 0.4) 0%, transparent 60%),
    linear-gradient(135deg, #1a0e2d 0%, #2d1b4e 50%, #1a0e2d 100%);
  background-size: 200% 200%;
}

.divination-visual::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(109, 40, 217, 0.3) 0%, rgba(147, 51, 234, 0.2) 50%, rgba(109, 40, 217, 0.25) 100%);
  pointer-events: none;
  z-index: 3;
}

.tools-category-header-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.tools-category-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--grey-900);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.alt-bg .tools-category-title {
  color: var(--grey-900);
}

.tools-category-icon {
  font-size: 3rem;
}

.tools-category-description {
  font-size: 1.125rem;
  color: var(--grey-600);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-lg);
}

.tool-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid var(--grey-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.tool-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(168, 85, 247, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.tool-card:hover::before {
  opacity: 1;
}

.tool-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.tool-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
  position: relative;
  z-index: 1;
}

.tool-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.tool-description {
  font-size: 0.875rem;
  color: var(--grey-600);
  line-height: 1.5;
  margin-bottom: var(--spacing-md);
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.tool-card .btn {
  position: relative;
  z-index: 1;
}

@media (max-width: 1200px) {
  .tools-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tools-hero-content h1 {
    font-size: 2.5rem;
  }

  .tools-hero-subtitle {
    font-size: 1.25rem;
  }

  .tools-category-title {
    font-size: 2rem;
  }

  .tools-category-visual {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .tools-hero-section {
    padding: 6rem 0 4rem;
  }

  .tools-hero-content h1 {
    font-size: 2rem;
  }

  .tools-hero-subtitle {
    font-size: 1.125rem;
  }

  .tools-hero-description {
    font-size: 1rem;
  }

  .tools-category-title {
    font-size: 1.75rem;
    flex-direction: column;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }

  .tools-category-visual {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .btn {
    width: 100%;
  }

  .pricing-amount {
    font-size: 2.5rem;
  }

  .tools-hero-content h1 {
    font-size: 1.75rem;
  }

  .tools-category-title {
    font-size: 1.5rem;
  }

  .tools-category-icon {
    font-size: 2.5rem;
  }
}

.section-transition-top {
  position: relative;
}

.section-transition-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, rgba(45, 27, 78, 0.6) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.section-transition-bottom {
  position: relative;
}

.section-transition-bottom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(0deg, rgba(45, 27, 78, 0.6) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.trust-badges-section {
  padding: var(--spacing-3xl) 0;
  background: var(--grey-50);
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-xl);
  margin-top: var(--spacing-2xl);
}

.trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--spacing-sm);
  padding: 1.35rem 1.8rem;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-200);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.trust-badge-item:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.2);
  box-shadow: var(--shadow-hover);
}

.trust-badge-item img {
  width: 100%;
  max-width: 120px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.trust-badge-item:hover img {
  transform: scale(1.05);
}

.trust-badge-text {
  font-size: 0.9375rem;
  color: var(--grey-700);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 992px) {
  .trust-badges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .trust-badges-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .trust-badge-item img {
    max-width: 100px;
  }

  .trust-badge-text {
    font-size: 0.875rem;
  }
}

/* API First Section */
.api-first-section {
  padding: var(--spacing-4xl) 0;
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.03) 0%, rgba(14, 165, 233, 0.03) 100%);
  position: relative;
  overflow: hidden;
}

.api-first-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(14, 165, 233, 0.1));
  color: var(--violet-primary);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--spacing-lg);
  border: 1px solid rgba(139, 92, 246, 0.2);
  text-align: center;
}

.api-first-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: var(--spacing-md);
  text-align: center;
  line-height: 1.2;
}

.api-first-subtitle {
  font-size: 1.125rem;
  color: var(--grey-600);
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-3xl);
  line-height: 1.7;
}

.api-first-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
  margin-top: var(--spacing-3xl);
}

.api-first-card {
  background: white;
  padding: var(--spacing-2xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-200);
  transition: all 0.3s ease;
  text-align: center;
}

.api-first-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.3);
}

.api-first-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--spacing-lg);
}

.api-first-icon svg {
  width: 100%;
  height: 100%;
}

.api-first-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: var(--spacing-md);
}

.api-first-card p {
  font-size: 1rem;
  color: var(--grey-600);
  line-height: 1.7;
  margin: 0;
}

/* Intelligence Modules Section */
.intelligence-modules-section {
  padding: var(--spacing-4xl) 0;
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.03) 0%, rgba(234, 179, 8, 0.02) 100%);
  position: relative;
}

.intelligence-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(14, 165, 233, 0.05));
  color: var(--cyan-primary);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--spacing-lg);
  border: 1px solid rgba(14, 165, 233, 0.2);
}

.intelligence-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: var(--spacing-lg);
  line-height: 1.2;
}

.intelligence-description {
  font-size: 1.125rem;
  color: var(--grey-600);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto var(--spacing-3xl);
}

.intelligence-tabs-container {
  max-width: 1200px;
  margin: 0 auto;
}

.intelligence-tabs {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-3xl);
  overflow-x: auto;
  padding-bottom: 2px;
  flex-wrap: wrap;
  justify-content: center;
  border-bottom: 2px solid var(--grey-200);
}

.intelligence-tab {
  padding: 1rem 1.5rem;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--grey-600);
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  margin-bottom: -2px;
  z-index: 1;
}

.intelligence-tab:hover {
  color: var(--cyan-primary);
  background: rgba(14, 165, 233, 0.03);
}

.intelligence-tab.active {
  color: var(--cyan-primary);
  border-bottom-color: var(--cyan-primary);
  font-weight: 700;
}

.intelligence-tab-content {
  position: relative;
  min-height: 400px;
}

.intelligence-tab-panel {
  display: none;
  animation: fadeInUp 0.4s ease-out;
}

.intelligence-tab-panel.active {
  display: block;
}

.intelligence-panel-content {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: var(--spacing-4xl);
  align-items: center;
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-4xl);
  border: 1px solid var(--grey-200);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.intelligence-panel-icon {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), rgba(234, 179, 8, 0.05));
  border-radius: var(--radius-lg);
  padding: var(--spacing-2xl);
}

.intelligence-panel-icon svg {
  width: 100%;
  height: 100%;
}

.intelligence-panel-text h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.intelligence-panel-text p {
  font-size: 1.0625rem;
  color: var(--grey-600);
  line-height: 1.7;
  margin-bottom: var(--spacing-xl);
}

.intelligence-panel-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-sm);
}

.intelligence-panel-features li {
  font-size: 0.9375rem;
  color: var(--grey-700);
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.6;
}

.intelligence-panel-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan-primary);
  font-weight: bold;
  font-size: 1rem;
}

/* Vedic Astrology Section - Tabs */
.vedic-astrology-section {
  padding: var(--spacing-4xl) 0;
  background: linear-gradient(180deg, rgba(234, 179, 8, 0.03) 0%, rgba(234, 179, 8, 0.01) 100%);
  position: relative;
}

.vedic-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.1), rgba(234, 179, 8, 0.05));
  color: var(--gold-primary);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--spacing-lg);
  border: 1px solid rgba(234, 179, 8, 0.2);
}

.vedic-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: var(--spacing-lg);
  line-height: 1.2;
}

.vedic-description {
  font-size: 1.125rem;
  color: var(--grey-600);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto var(--spacing-3xl);
}

.vedic-tabs-container {
  max-width: 1200px;
  margin: 0 auto;
}

.vedic-tabs {
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-3xl);
  overflow-x: auto;
  padding-bottom: 2px;
  flex-wrap: wrap;
  justify-content: center;
  border-bottom: 2px solid var(--grey-200);
}

.vedic-tab {
  padding: 1rem 1.5rem;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--grey-600);
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  margin-bottom: -2px;
  z-index: 1;
}

.vedic-tab:hover {
  color: var(--gold-primary);
  background: rgba(234, 179, 8, 0.03);
}

.vedic-tab.active {
  color: var(--gold-primary);
  border-bottom-color: var(--gold-primary);
  font-weight: 700;
}

.vedic-tab-content {
  position: relative;
  min-height: 400px;
}

.vedic-tab-panel {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.vedic-tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vedic-panel-content {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: var(--spacing-4xl);
  align-items: center;
  background: white;
  border-radius: var(--radius-lg);
  padding: var(--spacing-4xl);
  border: 1px solid var(--grey-200);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.vedic-panel-icon {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.05), rgba(14, 165, 233, 0.05));
  border-radius: var(--radius-lg);
  padding: var(--spacing-2xl);
}

.vedic-panel-icon svg {
  width: 100%;
  height: 100%;
}

.vedic-panel-text h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}

.vedic-panel-text p {
  font-size: 1.0625rem;
  color: var(--grey-600);
  line-height: 1.7;
  margin-bottom: var(--spacing-xl);
}

.vedic-panel-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-sm);
}

.vedic-panel-features li {
  font-size: 0.9375rem;
  color: var(--grey-700);
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.6;
}

.vedic-panel-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-primary);
  font-weight: bold;
  font-size: 1rem;
}

/* Content APIs Section */
.content-apis-section {
  padding: var(--spacing-4xl) 0;
  background: white;
  position: relative;
}

.content-apis-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(14, 165, 233, 0.05));
  color: var(--cyan-primary);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--spacing-lg);
  border: 1px solid rgba(14, 165, 233, 0.2);
  text-align: center;
}

.content-apis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
  margin-top: var(--spacing-3xl);
}

.content-api-card {
  background: white;
  padding: var(--spacing-2xl);
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-200);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.content-api-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(14, 165, 233, 0.15);
  border-color: rgba(14, 165, 233, 0.3);
}

.content-api-icon {
  width: 80px;
  height: 80px;
  margin-bottom: var(--spacing-lg);
}

.content-api-icon svg {
  width: 100%;
  height: 100%;
}

.content-api-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: var(--spacing-md);
}

.content-api-card p {
  font-size: 0.9375rem;
  color: var(--grey-600);
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
  flex-grow: 1;
}

.content-api-link {
  display: inline-flex;
  align-items: center;
  color: var(--cyan-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.content-api-link:hover {
  color: var(--violet-primary);
  transform: translateX(4px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .api-first-grid,
  .content-apis-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .api-first-title,
  .intelligence-title,
  .vedic-title {
    font-size: 2rem;
  }

  .intelligence-panel-content {
    grid-template-columns: 1fr 250px;
    gap: var(--spacing-2xl);
    padding: var(--spacing-3xl);
  }

  .intelligence-panel-icon {
    height: 220px;
  }

  .intelligence-panel-text h3 {
    font-size: 1.875rem;
  }

  .intelligence-panel-features {
    grid-template-columns: 1fr;
  }

  .vedic-panel-content {
    grid-template-columns: 1fr 250px;
    gap: var(--spacing-2xl);
    padding: var(--spacing-3xl);
  }

  .vedic-panel-icon {
    height: 220px;
  }

  .vedic-panel-text h3 {
    font-size: 1.875rem;
  }

  .vedic-panel-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .api-first-section,
  .intelligence-modules-section,
  .vedic-astrology-section,
  .content-apis-section {
    padding: var(--spacing-2xl) 0;
  }

  .api-first-grid,
  .content-apis-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .api-first-title,
  .intelligence-title,
  .vedic-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
  }

  .api-first-subtitle,
  .intelligence-description,
  .vedic-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
  }

  .intelligence-badge,
  .vedic-badge {
    font-size: 0.625rem;
    padding: 0.4rem 1rem;
    margin-bottom: var(--spacing-sm);
  }

  /* Intelligence Tabs - Mobile Optimized */
  .intelligence-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    margin-bottom: var(--spacing-xl);
    gap: var(--spacing-xs);
    padding: 0 var(--spacing-sm);
  }

  .intelligence-tabs::-webkit-scrollbar {
    height: 3px;
  }

  .intelligence-tabs::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 2px;
  }

  .intelligence-tabs::-webkit-scrollbar-thumb {
    background: var(--cyan-primary);
    border-radius: 2px;
  }

  .intelligence-tab {
    flex-shrink: 0;
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
    border-bottom-width: 2px;
  }

  .intelligence-tab-content {
    min-height: auto;
  }

  .intelligence-panel-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  }

  .intelligence-panel-features {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .intelligence-panel-features li {
    font-size: 0.875rem;
    padding: 0.375rem 0;
    padding-left: 1.5rem;
  }

  .intelligence-panel-features li::before {
    font-size: 0.875rem;
  }

  .intelligence-panel-icon {
    height: 160px;
    order: 2;
    padding: var(--spacing-lg);
  }

  .intelligence-panel-text {
    order: 1;
  }

  .intelligence-panel-text h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
  }

  .intelligence-panel-text p {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
  }

  /* Vedic Tabs - Mobile Optimized */
  .vedic-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    margin-bottom: var(--spacing-xl);
    gap: var(--spacing-xs);
    padding: 0 var(--spacing-sm);
  }

  .vedic-tabs::-webkit-scrollbar {
    height: 3px;
  }

  .vedic-tabs::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 2px;
  }

  .vedic-tabs::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 2px;
  }

  .vedic-tab {
    flex-shrink: 0;
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
    border-bottom-width: 2px;
  }

  .vedic-tab-content {
    min-height: auto;
  }

  .vedic-panel-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  }

  .vedic-panel-features {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .vedic-panel-features li {
    font-size: 0.875rem;
    padding: 0.375rem 0;
    padding-left: 1.5rem;
  }

  .vedic-panel-features li::before {
    font-size: 0.875rem;
  }

  .vedic-panel-icon {
    height: 160px;
    order: 2;
    padding: var(--spacing-lg);
  }

  .vedic-panel-text {
    order: 1;
  }

  .vedic-panel-text h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
  }

  .vedic-panel-text p {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
  }
}

/* Extra Small Mobile - Ultra Compact */
@media (max-width: 480px) {
  .intelligence-modules-section,
  .vedic-astrology-section {
    padding: var(--spacing-xl) 0;
  }

  .intelligence-title,
  .vedic-title {
    font-size: 1.375rem;
    margin-bottom: var(--spacing-sm);
  }

  .intelligence-description,
  .vedic-description {
    font-size: 0.875rem;
    margin-bottom: var(--spacing-lg);
  }

  .intelligence-badge,
  .vedic-badge {
    font-size: 0.5625rem;
    padding: 0.35rem 0.875rem;
  }

  .intelligence-tab,
  .vedic-tab {
    padding: 0.5rem 0.875rem;
    font-size: 0.75rem;
  }

  .intelligence-panel-content,
  .vedic-panel-content {
    padding: var(--spacing-md);
    gap: var(--spacing-md);
  }

  .intelligence-panel-text h3,
  .vedic-panel-text h3 {
    font-size: 1.125rem;
  }

  .intelligence-panel-text p,
  .vedic-panel-text p {
    font-size: 0.875rem;
    margin-bottom: var(--spacing-sm);
  }

  .intelligence-panel-features li,
  .vedic-panel-features li {
    font-size: 0.8125rem;
    padding: 0.3rem 0;
    padding-left: 1.25rem;
  }

  .intelligence-panel-icon,
  .vedic-panel-icon {
    height: 140px;
    padding: var(--spacing-md);
  }
}
