* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #ffffff;
  color: #1a202c;
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Navigation */
.navbar {
  padding: 20px 40px;
  border-bottom: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  font-size: 1.5rem;
}

.brand-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d3748;
}

/* Main Content */
.main-content {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 500px;
  min-height: calc(100vh - 140px);
}

/* Left Column */
.left-column {
  padding: 80px 60px 60px;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e6fffa;
  color: #234e52;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid #b2f5ea;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #38b2ac;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-description {
  font-size: 1.2rem;
  color: #4a5568;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Benefits List */
.benefits-list {
  margin-bottom: 50px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 4px;
}

.benefit-content p {
  color: #718096;
  font-size: 0.95rem;
}

/* Stats Row */
.stats-row {
  display: flex;
  gap: 40px;
}

.stat-item {
  text-align: left;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #38b2ac;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* Right Column */
.right-column {
  background: #ffffff;
  padding: 60px 40px;
  display: flex;
  align-items: center;
  border-left: 1px solid #e2e8f0;
}

.form-container {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-header h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 12px;
}

.form-header p {
  color: #718096;
  font-size: 1rem;
}

/* Form Styles */
.trading-form {
  width: 100%;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.input-field {
  margin-bottom: 24px;
}

.input-field label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #4a5568;
  margin-bottom: 8px;
}

.input-field input,
.input-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f7fafc;
}

.input-field input:focus,
.input-field textarea:focus {
  outline: none;
  border-color: #38b2ac;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(56, 178, 172, 0.1);
}

.input-field textarea {
  min-height: 100px;
  resize: vertical;
  font-family: inherit;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #38b2ac, #319795);
  color: white;
  border: none;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(56, 178, 172, 0.3);
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.submit-btn:hover .btn-arrow {
  transform: translateX(4px);
}

.form-footer {
  text-align: center;
}

.form-footer p {
  font-size: 0.85rem;
  color: #a0aec0;
}

/* Footer */
.footer {
  padding: 30px 40px;
  text-align: center;
  background: #f7fafc;
  border-top: 1px solid #e2e8f0;
  color: #718096;
  font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .main-content {
    grid-template-columns: 1fr;
  }
  
  .left-column {
    padding: 60px 40px 40px;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .right-column {
    border-left: none;
    border-top: 1px solid #e2e8f0;
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 16px 20px;
  }
  
  .left-column {
    padding: 40px 20px 30px;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .stats-row {
    flex-direction: column;
    gap: 20px;
  }
  
  .right-column {
    padding: 30px 20px;
  }
  
  .input-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .benefit-item {
    padding: 16px;
  }
  
  .footer {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .form-header h2 {
    font-size: 1.6rem;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
} 