/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-yellow: #FFD700;
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-dark: #0d1117;
  --color-dark-2: #161b22;
  --color-gray: #8b949e;
  --color-gray-2: #c9d1d9;
  --color-border: #30363d;
  --color-pink: #FF69B4;
  --color-pink-light: #FFB6C1;
  
  /* Editor colors */
  --editor-bg: #1e1e1e;
  --editor-text: #d4d4d4;
  --editor-keyword: #569cd6;
  --editor-string: #ce9178;
  --editor-comment: #6a9955;
  --editor-function: #dcdcaa;
  --editor-number: #b5cea8;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--color-black);
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  z-index: 1000;
  padding: 12px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-brand {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-brand a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

.logo-brand a:hover {
  opacity: 0.8;
}

.logo-text {
  background: linear-gradient(135deg, var(--color-yellow) 0%, var(--color-white) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.logo-icon-footer {
  width: 28px;
  height: 28px;
  display: inline-block;
  vertical-align: middle;
}

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

.nav-links a {
  color: var(--color-gray-2);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a:hover {
  color: var(--color-white);
}

.nav-links a.active {
  color: var(--color-yellow);
  font-weight: 600;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-yellow);
  border-radius: 2px;
}

/* Navigation Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  cursor: pointer;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 8px;
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 8px 0;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--color-gray-2);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
  border-bottom: none;
}

.nav-dropdown-menu a:hover {
  background: rgba(255, 215, 0, 0.1);
  color: var(--color-yellow);
  padding-left: 24px;
}

.nav-dropdown-menu a:last-child {
  border-bottom: none;
}

.nav-auth {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-auth {
  padding: 10px 24px;
  border: none;
  background: var(--color-yellow);
  color: var(--color-black);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.btn-auth:hover {
  background: #FFA500;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

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

.user-profile-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

.user-profile-link:hover {
  opacity: 0.8;
}

.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-yellow);
  color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.user-name {
  color: var(--color-yellow);
  font-weight: 600;
  font-size: 14px;
}

.btn-profile {
  padding: 8px 20px;
  font-size: 13px;
  background: transparent;
  color: var(--color-yellow);
  border: 1px solid var(--color-yellow);
}

.btn-profile:hover {
  background: rgba(255, 215, 0, 0.1);
}

.btn-logout {
  padding: 8px 20px;
  font-size: 13px;
  background: transparent;
  border: 2px solid var(--color-border);
  color: var(--color-white);
}

.btn-logout:hover {
  border-color: var(--color-yellow);
  color: var(--color-yellow);
  background: rgba(255, 215, 0, 0.1);
}

/* ===== STATISTICS SECTION ===== */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #000 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 16px;
  padding: 32px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  min-width: 0; /* Permite que os cards encolham */
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-yellow), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 215, 0, 0.3);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-icon {
  font-size: 42px;
  line-height: 1;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.stat-content {
  flex: 1;
  min-width: 0; /* Permite que o conteúdo encolha */
}

.stat-number {
  font-size: 40px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 6px;
  font-family: 'Inter', sans-serif;
  letter-spacing: -1px;
  text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.stat-label {
  font-size: 13px;
  color: var(--color-gray);
  font-weight: 500;
  line-height: 1.4;
  opacity: 0.8;
}

/* Tablet - ainda mantém 4 colunas mas com tamanhos menores */
@media (max-width: 1024px) {
  .stats-grid {
    gap: 16px;
  }
  
  .stat-card {
    padding: 28px 16px;
    gap: 16px;
  }
  
  .stat-icon {
    font-size: 36px;
  }
  
  .stat-number {
    font-size: 32px;
  }
  
  .stat-label {
    font-size: 12px;
  }
}

/* Responsive Stats - Mobile */
@media (max-width: 768px) {
  .stats-section {
    padding: 60px 0;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .stat-card {
    padding: 32px 24px;
  }
  
  .stat-icon {
    font-size: 40px;
  }
  
  .stat-number {
    font-size: 40px;
  }
  
  .stat-label {
    font-size: 13px;
  }
}

/* ===== HERO SECTION - NEW DESIGN ===== */
.hero-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-content {
  max-width: 100%;
  text-align: left;
}

.hero-cta-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--color-yellow);
  color: var(--color-black);
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3), 0 0 20px rgba(255, 105, 180, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 105, 180, 0.3), transparent);
  transition: left 0.5s;
}

.btn-hero-primary:hover::before {
  left: 100%;
}

.btn-hero-primary:hover {
  background: #FFA500;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4), 0 0 30px rgba(255, 105, 180, 0.3);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-yellow);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-hero-secondary:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: #FFA500;
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.okto-mascot-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.okto-glow-effect {
  position: absolute;
  width: 150%;
  height: 150%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, rgba(255, 105, 180, 0.2) 30%, rgba(255, 215, 0, 0.1) 50%, transparent 80%);
  border-radius: 50%;
  z-index: 1;
  animation: pulseGlow 3s ease-in-out infinite;
  box-shadow: 0 0 100px rgba(255, 215, 0, 0.3), 0 0 200px rgba(255, 105, 180, 0.2), 0 0 300px rgba(255, 215, 0, 0.1);
}

@keyframes pulseGlow {
  0%, 100% { 
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 100px rgba(255, 215, 0, 0.3), 0 0 200px rgba(255, 105, 180, 0.2), 0 0 300px rgba(255, 215, 0, 0.1);
  }
  50% { 
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 0 150px rgba(255, 215, 0, 0.5), 0 0 300px rgba(255, 105, 180, 0.3), 0 0 400px rgba(255, 215, 0, 0.2);
  }
}

.okto-mascot {
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 2;
  position: relative;
  animation: float 3s ease-in-out infinite;
}

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

@media (max-width: 1024px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-cta-buttons {
    justify-content: center;
  }
  
  .okto-mascot-container {
    max-width: 300px;
    height: 300px;
  }
}

/* ===== ECOSYSTEM SECTION ===== */
.ecosystem-section {
  padding: 100px 0;
  background: var(--color-black);
}

.ecosystem-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 60px;
}

.ecosystem-banner-large {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  border-radius: 16px;
  border: 2px solid var(--color-yellow);
  border-left: 6px solid var(--color-pink);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.ecosystem-banner-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 105, 180, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.ecosystem-banner-large-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s;
}

.ecosystem-banner-large:hover .ecosystem-banner-large-image {
  transform: scale(1.02);
}

.ecosystem-products-summary {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-pink);
  border-radius: 16px;
  padding: 32px;
  height: fit-content;
}

.ecosystem-summary-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--color-white);
  border-bottom: 2px solid var(--color-yellow);
  padding-bottom: 12px;
}

.ecosystem-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding: 12px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--color-yellow);
  transition: all 0.3s;
}

.ecosystem-item:hover {
  background: rgba(255, 105, 180, 0.1);
  border-left-color: var(--color-pink);
  transform: translateX(4px);
}

.ecosystem-item-icon {
  font-size: 32px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  flex-shrink: 0;
}

.ecosystem-item-info {
  flex: 1;
}

.ecosystem-item-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 4px;
}

.ecosystem-item-desc {
  font-size: 14px;
  color: var(--color-gray-2);
}

.ecosystem-summary-text {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  color: var(--color-gray-2);
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 24px;
}

.ecosystem-summary-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ecosystem-cta-link {
  display: inline-block;
  padding: 12px 20px;
  background: rgba(255, 215, 0, 0.1);
  color: var(--color-yellow);
  border: 1px solid var(--color-yellow);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s;
  font-size: 14px;
}

.ecosystem-cta-link:hover {
  background: var(--color-yellow);
  color: var(--color-black);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.ecosystem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.ecosystem-card {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}

.ecosystem-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-yellow);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.ecosystem-card.featured {
  border-color: var(--color-yellow);
  background: linear-gradient(135deg, var(--color-dark-2) 0%, rgba(255, 215, 0, 0.05) 100%);
  border-left: 4px solid var(--color-pink);
}

.ecosystem-icon {
  font-size: 64px;
  margin-bottom: 24px;
  display: inline-block;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.ecosystem-card-editor {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.ecosystem-card-image-wrapper {
  width: 100%;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
  position: relative;
}

.ecosystem-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.ecosystem-card-editor:hover .ecosystem-card-image {
  transform: scale(1.05);
}

.ecosystem-card-content {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ecosystem-card-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-white);
}

.ecosystem-card-description {
  color: var(--color-gray-2);
  margin-bottom: 24px;
  line-height: 1.6;
  font-size: 15px;
}

.ecosystem-card-link {
  color: var(--color-yellow);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
}

.ecosystem-card-link:hover {
  color: #FFA500;
  transform: translateX(4px);
}

.ecosystem-card-coming {
  color: var(--color-gray);
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 1024px) {
  .ecosystem-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .ecosystem-banner-large {
    min-height: 400px;
  }
  
  .ecosystem-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .ecosystem-card-editor {
    grid-template-columns: 1fr;
  }
  
  .ecosystem-card-image-wrapper {
    min-height: 300px;
  }
  
  .products-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .product-banner-large {
    min-height: 400px;
  }
  
  .product-card-x1 {
    grid-template-columns: 1fr;
  }
  
  .product-banner-wrapper {
    min-height: 200px;
  }
}

/* ===== PRODUCT HIGHLIGHT SECTIONS ===== */
.product-highlight {
  padding: 120px 0;
  background: var(--color-black);
}

.product-highlight.agent-highlight {
  background: linear-gradient(180deg, var(--color-black) 0%, var(--color-dark) 100%);
}

.product-highlight.code-highlight {
  background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-black) 100%);
}

.highlight-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.highlight-wrapper.reverse {
  direction: rtl;
}

.highlight-wrapper.reverse > * {
  direction: ltr;
}

.highlight-content {
  max-width: 100%;
}

.highlight-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
  color: var(--color-white);
}

.highlight-subtitle {
  font-size: 20px;
  color: var(--color-yellow);
  margin-bottom: 24px;
  font-weight: 600;
}

.highlight-description {
  font-size: 18px;
  color: var(--color-gray-2);
  line-height: 1.7;
  margin-bottom: 32px;
}

.highlight-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-highlight-primary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: var(--color-yellow);
  color: var(--color-black);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.btn-highlight-primary:hover {
  background: #FFA500;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-highlight-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-yellow);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-highlight-secondary:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: #FFA500;
  transform: translateY(-2px);
}

.highlight-demo {
  position: relative;
}

.demo-label {
  position: absolute;
  top: -30px;
  left: 0;
  font-size: 12px;
  color: var(--color-gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 1024px) {
  .highlight-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .highlight-title {
    font-size: 36px;
  }
  
  .highlight-cta {
    justify-content: center;
  }
}

/* ===== COMMUNITY SECTION ===== */
.community-section {
  padding: 100px 0;
  background: var(--color-black);
}

.community-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.community-summary {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.community-summary-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
}

.community-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.community-item:hover {
  border-color: var(--color-yellow);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.1);
}

.community-item-icon {
  font-size: 32px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.community-item-info {
  flex: 1;
}

.community-item-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 4px;
}

.community-item-desc {
  font-size: 13px;
  color: var(--color-gray-2);
  line-height: 1.4;
}

.community-summary-text {
  font-size: 14px;
  color: var(--color-gray-2);
  line-height: 1.6;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.community-banner-large {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  border-radius: 16px;
  border: 2px solid var(--color-yellow);
  border-left: 6px solid var(--color-pink);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.community-banner-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 105, 180, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.community-banner-large:hover {
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
  transform: translateY(-4px);
}

.community-banner-large-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.community-banner-large:hover .community-banner-large-image {
  transform: scale(1.05);
}

.community-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.community-card {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s;
}

.community-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-yellow);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.community-icon {
  font-size: 64px;
  margin-bottom: 24px;
}

.community-card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-white);
}

.community-card-description {
  color: var(--color-gray-2);
  line-height: 1.6;
  font-size: 15px;
}

@media (max-width: 1024px) {
  .community-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .community-banner-large {
    order: -1;
  }
}

/* ===== PLANS SECTION ===== */
.plans-section {
  padding: 100px 0;
  background: var(--color-dark);
}

.plans-table-wrapper {
  margin-top: 60px;
  overflow-x: auto;
}

.plans-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-dark-2);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.plans-table thead {
  background: var(--color-dark);
}

.plans-table th {
  padding: 24px;
  text-align: left;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  border-bottom: 2px solid var(--color-border);
}

.plans-table td {
  padding: 24px;
  color: var(--color-gray-2);
  border-bottom: 1px solid var(--color-border);
  font-size: 15px;
}

.plans-table tbody tr:last-child td {
  border-bottom: none;
}

.plans-table tbody tr:hover {
  background: rgba(255, 215, 0, 0.05);
}

.plan-name {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-white) !important;
  font-weight: 600;
}

.plan-icon {
  width: 32px;
  height: 32px;
  background: var(--color-yellow);
  color: var(--color-black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.plan-price {
  color: var(--color-yellow) !important;
  font-size: 24px;
  font-weight: 700;
}

.plan-period {
  font-size: 14px;
  color: var(--color-gray);
  font-weight: 400;
}

@media (max-width: 768px) {
  .plans-table {
    font-size: 14px;
  }
  
  .plans-table th,
  .plans-table td {
    padding: 16px;
  }
}

/* ===== INTEGRATIONS SECTION ===== */
.integrations-section {
  padding: 100px 0;
  background: var(--color-black);
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.integration-item {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.integration-item:hover {
  transform: translateY(-4px);
  border-color: var(--color-yellow);
  box-shadow: 0 12px 32px rgba(255, 215, 0, 0.1);
}

.integration-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  transition: all 0.3s;
}

.integration-item:hover .integration-logo {
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
  transform: scale(1.1);
}

.integration-logo svg {
  width: 48px;
  height: 48px;
  color: var(--color-white);
  opacity: 0.9;
  transition: all 0.3s;
}

.integration-item:hover .integration-logo svg {
  opacity: 1;
  color: var(--color-yellow);
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
  transform: scale(1.1);
}

.integration-name {
  font-size: 14px;
  color: var(--color-gray-2);
  font-weight: 500;
}

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

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

/* ===== HERO SECTION ===== */
.hero {
  padding: 160px 0 100px;
  background: var(--color-black);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-pink) 20%, var(--color-yellow) 50%, var(--color-pink) 80%, transparent);
  z-index: 1;
}

.highlight-yellow {
  color: var(--color-yellow);
  font-weight: 700;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

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

.hero-title {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1;
  margin: 24px 0;
  letter-spacing: -2px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--color-yellow), #FFA500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 20px;
  color: var(--color-gray-2);
  margin: 24px auto 24px;
  padding: 0 20px;
  line-height: 1.6;
  text-align: justify;
  max-width: 600px;
}

.hero-platform-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-platform {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  padding: 16px 32px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s;
  min-width: 150px;
  justify-content: center;
}

.btn-platform:hover {
  background: var(--color-yellow);
  color: var(--color-black);
  border-color: var(--color-yellow);
  transform: translateY(-2px);
}

.btn-platform.active {
  background: var(--color-yellow);
  color: var(--color-black);
  border-color: var(--color-yellow);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
}

.btn-platform svg {
  width: 28px;
  height: 28px;
}

.btn {
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: var(--color-yellow);
  color: var(--color-black);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
}

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

.btn-secondary:hover {
  background: var(--color-dark-2);
  border-color: var(--color-yellow);
}

/* ===== EDITOR DEMO ===== */
.editor-demo {
  padding: 50px 0;
  background: var(--color-dark);
}

.demo-section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
  color: var(--color-white);
  letter-spacing: -0.5px;
}

.demo-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 1024px) {
  .demo-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .demo-section-title {
    font-size: 28px;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--color-gray);
}

.editor-wrapper {
  width: 100%;
}

.editor-container {
  background: var(--editor-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--color-border);
}

.editor-tabs {
  background: var(--color-dark-2);
  padding: 0;
  display: flex;
}

.editor-tab {
  padding: 12px 24px;
  background: transparent;
  color: var(--color-gray);
  font-size: 14px;
  font-family: 'Courier New', monospace;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.editor-tab.active {
  background: var(--editor-bg);
  color: var(--color-white);
  border-bottom-color: var(--color-yellow);
}

.editor-content {
  display: flex;
  min-height: 400px;
  background: var(--editor-bg);
  font-family: 'Courier New', monospace;
  font-size: 14px;
}

.line-numbers {
  background: #252526;
  color: var(--color-gray);
  padding: 16px 8px;
  text-align: right;
  user-select: none;
  font-size: 13px;
  line-height: 1.8;
  min-width: 50px;
}

.code-display {
  flex: 1;
  padding: 16px;
  padding-left: 24px;
  position: relative;
}

.code-typing {
  color: var(--editor-text);
  margin: 0;
  white-space: pre-wrap;
  word-wrap: break-word;
  font-size: 14px;
  line-height: 1.8;
  font-family: 'Courier New', monospace;
}

.cursor-blink {
  display: inline-block;
  width: 2px;
  height: 20px;
  background: var(--color-yellow);
  animation: blink 1s infinite;
  margin-left: 2px;
  vertical-align: middle;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

.editor-header-status {
  background: var(--color-dark-2);
  padding: 12px 20px;
  border-bottom: 1px solid var(--color-border);
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: var(--color-gray);
}

#statusMessage {
  color: var(--color-yellow);
  font-weight: 600;
  animation: pulse 2s infinite;
}

#statusMessage::before {
  content: '';
  font-size: 16px;
  display: inline-block;
  filter: sepia(1) saturate(5) hue-rotate(0deg);
}

.editor-status {
  background: var(--color-dark-2);
  padding: 12px 20px;
  border-top: 1px solid var(--color-border);
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: var(--color-gray);
  font-family: 'Courier New', monospace;
  align-items: center;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.status-divider {
  color: var(--color-border);
}

/* Code Syntax Colors */
.code-keyword { color: #569cd6; font-weight: normal; }
.code-string { color: #ce9178; font-weight: normal; }
.code-comment { color: #6a9955; font-weight: normal; font-style: italic; }
.code-function { color: #dcdcaa; font-weight: normal; }
.code-number { color: #b5cea8; font-weight: normal; }
.code-class { color: #4ec9b0; font-weight: normal; }
.code-operator { color: #d4d4d4; }
.code-tag { color: #569cd6; font-weight: normal; }
.code-yellow { color: #FFD700; }
.code-black { color: #333; }

/* ===== AGENT CHAT DEMO SECTION ===== */
.agent-chat-wrapper {
  width: 100%;
}

.agent-chat-container {
  background: #161b22;
  border: 2px solid #FFD700;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 600px;
  min-height: 500px;
}

.agent-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #0d1117;
  border-bottom: 1px solid #30363d;
}

.agent-chat-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.agent-chat-avatar {
  font-size: 32px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #161b22;
  border-radius: 8px;
  flex-shrink: 0;
  overflow: hidden;
}

.agent-chat-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.agent-chat-info h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: #ffffff;
}

.agent-chat-info p {
  font-size: 12px;
  color: #8b949e;
  margin: 0;
}

.oktoseek-branding-small {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 6px;
  margin-left: 8px;
}

.agent-chat-messages {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #0d1117;
  min-height: 350px;
}

.agent-chat-message {
  display: flex;
  gap: 12px;
  animation: messageSlideIn 0.3s ease-out;
}

.agent-chat-message.user {
  justify-content: flex-end;
}

.agent-chat-message.user .agent-message-content {
  background: #FFD700;
  color: #000000;
}

.agent-chat-message.bot .agent-message-content {
  background: #161b22;
  color: #ffffff;
}

.agent-message-content {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.agent-chat-message.typing .agent-message-content {
  display: flex;
  align-items: center;
  gap: 4px;
}

.typing-dot {
  width: 8px;
  height: 8px;
  background: #8b949e;
  border-radius: 50%;
  animation: typingDot 1.4s infinite;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingDot {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  30% {
    transform: translateY(-10px);
    opacity: 1;
  }
}

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

.agent-chat-input-wrapper {
  display: flex;
  gap: 8px;
  padding: 16px;
  background: #161b22;
  border-top: 1px solid #30363d;
}

.agent-chat-input-wrapper input {
  flex: 1;
  background: #0d1117;
  border: 2px solid #30363d;
  border-radius: 8px;
  padding: 12px 16px;
  color: #ffffff;
  font-size: 14px;
}

.agent-chat-send {
  background: #FFD700;
  color: #000000;
  border: none;
  border-radius: 8px;
  padding: 12px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.agent-chat-send:hover {
  background: #FFA500;
}

/* Product Card in Chat */
.agent-product-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  margin: 12px 0;
  max-width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.agent-product-image {
  width: 100%;
  height: 200px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.agent-product-content {
  padding: 16px;
}

.agent-product-title {
  font-size: 16px;
  font-weight: 600;
  color: #212121;
  margin: 0 0 8px 0;
}

.agent-product-price {
  font-size: 28px;
  font-weight: 700;
  color: #212121;
  margin: 12px 0;
}

.agent-product-actions {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.agent-product-btn {
  flex: 1;
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.agent-product-btn-view {
  background: #ffffff;
  color: #3483fa;
  border: 1px solid #3483fa;
}

.agent-product-btn-buy {
  background: #3483fa;
  color: #ffffff;
}

/* Calendar in Chat */
.agent-calendar {
  background: #161b22;
  border: 1px solid #30363d;
  border-radius: 12px;
  padding: 16px;
  margin: 12px 0;
}

.agent-calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.agent-calendar-month {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

.agent-calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.agent-calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.agent-calendar-day-name {
  color: #8b949e;
  font-weight: 600;
  font-size: 12px;
  cursor: default;
}

.agent-calendar-day.available {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
  border: 1px solid #4caf50;
}

.agent-calendar-day.available:hover {
  background: rgba(76, 175, 80, 0.3);
}

.agent-calendar-day.unavailable {
  color: #484f58;
  cursor: not-allowed;
}

.agent-calendar-day.selected {
  background: #4caf50;
  color: #ffffff;
  font-weight: 700;
}

.agent-chat-messages::-webkit-scrollbar {
  width: 6px;
}

.agent-chat-messages::-webkit-scrollbar-track {
  background: #0d1117;
}

.agent-chat-messages::-webkit-scrollbar-thumb {
  background: #30363d;
  border-radius: 3px;
}

.agent-chat-messages::-webkit-scrollbar-thumb:hover {
  background: #484f58;
}

/* Catalog in Chat */
.agent-catalog {
  background: #161b22;
  border: 1px solid #30363d;
  border-radius: 12px;
  padding: 16px;
  margin: 12px 0;
}

.agent-catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.agent-catalog-item {
  background: #0d1117;
  border: 1px solid #30363d;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s;
}

.agent-catalog-item:hover {
  border-color: #FFD700;
  transform: translateY(-2px);
}

.agent-catalog-image {
  width: 100%;
  height: 140px;
  background: #161b22;
  overflow: hidden;
}

.agent-catalog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.agent-catalog-info {
  padding: 12px;
}

.agent-catalog-name {
  font-size: 12px;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.agent-catalog-price {
  font-size: 18px;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 4px;
}

.agent-catalog-price sup {
  font-size: 12px;
}

/* Price Comparison in Chat */
.agent-price-comparison {
  background: #161b22;
  border: 1px solid #30363d;
  border-radius: 12px;
  padding: 16px;
  margin: 12px 0;
}

.agent-price-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.agent-price-item {
  background: #0d1117;
  border: 1px solid #30363d;
  border-radius: 8px;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s;
}

.agent-price-item:hover {
  border-color: #4caf50;
}

.agent-price-item.best-price {
  border-color: #4caf50;
  background: rgba(76, 175, 80, 0.1);
}

.agent-price-store {
  flex: 1;
}

.agent-price-store-name {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.agent-price-distance {
  font-size: 12px;
  color: #8b949e;
}

.agent-price-value {
  font-size: 20px;
  font-weight: 700;
  color: #4caf50;
  text-align: right;
}

.agent-price-value sup {
  font-size: 14px;
}

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

/* Food Menu in Chat */
.agent-food-menu {
  background: #161b22;
  border: 1px solid #30363d;
  border-radius: 12px;
  padding: 16px;
  margin: 12px 0;
}

.agent-food-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.agent-food-item {
  background: #0d1117;
  border: 1px solid #30363d;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  transition: all 0.2s;
}

.agent-food-item:hover {
  border-color: #FF6B35;
  transform: translateY(-2px);
}

.agent-food-image {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  background: #161b22;
  overflow: hidden;
}

.agent-food-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.agent-food-info {
  flex: 1;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.agent-food-name {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.agent-food-description {
  font-size: 12px;
  color: #8b949e;
  margin-bottom: 8px;
  line-height: 1.4;
}

.agent-food-price {
  font-size: 18px;
  font-weight: 700;
  color: #FF6B35;
}

.agent-food-price sup {
  font-size: 12px;
}

/* Tech Solutions in Chat */
.agent-tech-solutions {
  background: #161b22;
  border: 1px solid #30363d;
  border-radius: 12px;
  padding: 16px;
  margin: 12px 0;
}

.agent-tech-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.agent-tech-item {
  background: #0d1117;
  border: 1px solid #30363d;
  border-radius: 8px;
  padding: 12px;
  display: flex;
  gap: 12px;
  transition: all 0.2s;
}

.agent-tech-item:hover {
  border-color: #2196F3;
  transform: translateY(-2px);
}

.agent-tech-icon {
  font-size: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(33, 150, 243, 0.1);
  border-radius: 8px;
  flex-shrink: 0;
}

.agent-tech-content {
  flex: 1;
}

.agent-tech-name {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.agent-tech-description {
  font-size: 12px;
  color: #8b949e;
  line-height: 1.4;
}

/* ===== AGENTS SHOWCASE SECTION ===== */
.agents-showcase {
  padding: 100px 0;
  background: var(--color-black);
}

.agents-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.agent-type-card {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s;
  text-align: center;
}

.agent-type-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-yellow);
  box-shadow: 0 12px 32px rgba(255, 215, 0, 0.1);
}

.agent-type-icon {
  font-size: 64px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.agent-type-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-white);
}

.agent-type-description {
  color: var(--color-gray-2);
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 15px;
}

.agent-type-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.agent-feature-tag {
  background: rgba(255, 215, 0, 0.1);
  color: var(--color-yellow);
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.agents-cta {
  background: var(--color-dark-2);
  border: 2px solid var(--color-yellow);
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
  margin-top: 60px;
}

.agents-cta-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-white);
}

.agents-cta-description {
  font-size: 18px;
  color: var(--color-gray-2);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-agents-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--color-yellow);
  color: var(--color-black);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.btn-agents-cta:hover {
  background: #FFA500;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-agents-cta svg {
  transition: transform 0.3s;
}

.btn-agents-cta:hover svg {
  transform: translateX(4px);
}

/* ===== PRODUCTS SECTION ===== */
.products {
  padding: 100px 0;
  background: var(--color-black);
}

.products-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 60px;
}

.product-banner-large {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  border-radius: 16px;
  border: 2px solid var(--color-yellow);
  border-left: 6px solid var(--color-pink);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-banner-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 105, 180, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.product-banner-large-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  transition: transform 0.3s;
}

.product-banner-large:hover .product-banner-large-image {
  transform: scale(1.05);
}

.product-models-summary {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-pink);
  border-radius: 16px;
  padding: 32px;
  height: fit-content;
}

.models-summary-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--color-white);
  border-bottom: 2px solid var(--color-yellow);
  padding-bottom: 12px;
}

.model-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding: 12px;
  background: rgba(255, 215, 0, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--color-yellow);
  transition: all 0.3s;
}

.model-item:hover {
  background: rgba(255, 105, 180, 0.1);
  border-left-color: var(--color-pink);
  transform: translateX(4px);
}

.model-icon {
  font-size: 32px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  flex-shrink: 0;
}

.model-info {
  flex: 1;
}

.model-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 4px;
}

.model-desc {
  font-size: 14px;
  color: var(--color-gray-2);
}

.models-summary-text {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  color: var(--color-gray-2);
  line-height: 1.6;
  font-size: 14px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-yellow);
  box-shadow: 0 12px 32px rgba(255, 215, 0, 0.1);
}

.product-wide {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .product-wide {
    grid-column: span 1;
  }
}

.product-icon {
  font-size: 48px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.product-card-x1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.product-banner-wrapper {
  width: 100%;
  height: 100%;
  min-height: 300px;
  overflow: hidden;
  position: relative;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-banner-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.3s;
}

.product-card-x1:hover .product-banner-image {
  transform: scale(1.05);
}

.product-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-white);
}

.product-subtitle {
  font-size: 14px;
  color: var(--color-yellow);
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-description {
  color: var(--color-gray-2);
  margin-bottom: 20px;
  line-height: 1.6;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-tag {
  background: rgba(255, 215, 0, 0.1);
  color: var(--color-yellow);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

/* ===== FEATURES SECTION ===== */
.features {
  padding: 100px 0;
  background: var(--color-dark);
}

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

.feature-card {
  background: var(--color-dark-2);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s;
}

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

.feature-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.feature-icon-white {
  font-size: 48px;
  margin-bottom: 16px;
  filter: grayscale(100%) brightness(0) invert(1);
}

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

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

/* ===== DOWNLOAD SECTION ===== */
.download {
  padding: 100px 0;
  background: var(--color-black);
  text-align: center;
}

.download-content {
  max-width: 700px;
  margin: 0 auto;
}

.download-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.download-description {
  font-size: 18px;
  color: var(--color-gray);
  margin-bottom: 40px;
}

.download-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.btn-download-platform {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  transition: all 0.3s;
  min-height: 120px;
}

.btn-download-platform:hover {
  border-color: var(--color-yellow);
  transform: translateY(-4px);
}

.btn-download-platform.active {
  background: var(--color-yellow);
  color: var(--color-black);
  border-color: var(--color-yellow);
}

.btn-download-platform svg {
  width: 48px;
  height: 48px;
}

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.btn-title {
  font-size: 13px;
  font-weight: 400;
  opacity: 0.8;
}

.btn-subtitle {
  font-size: 18px;
  font-weight: 700;
}

.download-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: var(--color-gray);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-dark-2);
  border-top: 1px solid var(--color-border);
  padding: 60px 0 24px;
}

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

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

.footer-brand .logo-text {
  font-size: 24px;
  display: inline-block;
  vertical-align: middle;
}

.footer-tagline {
  color: var(--color-gray);
  font-size: 14px;
}

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

.footer-column h4 {
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 600;
}

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

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  font-size: 14px;
  color: var(--color-gray);
}

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

.footer-social a {
  color: var(--color-gray);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--color-white);
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(10px);
}

.modal-content {
  background: var(--color-dark-2);
  border: 2px solid var(--color-border);
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
}

.modal-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.modal-content h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--color-white);
}

.modal-content p {
  font-size: 16px;
  color: var(--color-gray-2);
  margin-bottom: 32px;
  line-height: 1.6;
}

#earlyAccessForm {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#emailInput {
  background: var(--color-dark);
  border: 2px solid var(--color-border);
  border-radius: 12px;
  padding: 16px;
  color: var(--color-white);
  font-size: 16px;
  width: 100%;
  transition: all 0.3s;
}

#emailInput:focus {
  outline: none;
  border-color: var(--color-yellow);
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
}

.btn-modal {
  background: var(--color-yellow);
  color: var(--color-black);
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.btn-modal:hover:not(:disabled) {
  background: #FFA500;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.3);
}

.btn-modal:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* Form Loading Overlay */
.form-loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  z-index: 10;
  backdrop-filter: blur(4px);
}

.form-loading-message {
  color: var(--color-yellow);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-loading-message::before {
  content: '';
  width: 24px;
  height: 24px;
  border: 3px solid var(--color-yellow);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.auth-modal form {
  position: relative;
}

.auth-modal input:disabled,
.auth-modal button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.loading-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--color-black);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

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

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--color-gray);
  font-size: 32px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.2s;
}

.modal-close:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

/* Auth Modal Styles */
.auth-modal .form-group {
  margin-bottom: 20px;
  text-align: left;
}

.auth-modal .form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--color-white);
  font-weight: 600;
  font-size: 14px;
}

.auth-modal .form-group input {
  width: 100%;
  background: var(--color-dark);
  border: 2px solid var(--color-border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--color-white);
  font-size: 15px;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
}

.auth-modal .form-group input:focus {
  outline: none;
  border-color: var(--color-yellow);
  box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
}

.auth-modal .form-group input::placeholder {
  color: var(--color-gray);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 48px;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .nav-links {
    display: none;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }
  
  .hero-description {
    font-size: 16px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}
