/* MODERN PROFESSIONAL SHARE PRICE TARGET WEBSITE - ENHANCED FOR LIVE DATA */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Header - Professional Corporate Design */
header {
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #1e293b 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #3b82f6;
  padding: 0;
  position: relative;
  min-height: 70px;
  width: 100%;
  max-width: 100%;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  min-height: 70px;
  position: relative;
  width: 100%;
  max-width: 100%;
}

.site-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  white-space: nowrap;
}

.site-title:hover {
  background: rgba(59, 130, 246, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.site-title::before {
  content: '📊';
  font-size: 1.5rem;
}

.site-title::after {
  content: '.com';
  font-size: 0.8rem;
  opacity: 0.8;
  font-weight: 400;
}

/* Navigation */
nav {
  display: flex;
  align-items: center;
  position: relative;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.nav-menu li a:hover {
  background: rgba(59, 130, 246, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.nav-menu li a.active {
  background: rgba(59, 130, 246, 0.3);
  font-weight: 600;
  border: 1px solid rgba(59, 130, 246, 0.5);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.75rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  min-width: 44px;
  min-height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1001;
}

/* Hide menu toggle on desktop */
@media (min-width: 769px) {
  .menu-toggle {
    display: none !important;
  }
}

/* Ensure desktop navigation is hidden on mobile */
@media (max-width: 768px) {
  .nav-menu {
    display: none !important;
  }
}

.menu-toggle:hover {
  background: rgba(59, 130, 246, 0.2);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background: #ffffff;
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Main Content */
main {
  flex: 1;
  padding: 2rem 0;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 4rem 0;
  text-align: center;
  border-radius: 0 0 20px 20px;
  margin-bottom: 3rem;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-section p {
  font-size: 1.25rem;
  color: #e2e8f0;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* Calculator Section */
.calculator-section {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 3rem;
  margin-bottom: 3rem;
  border: 1px solid #e2e8f0;
}

.calculator-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2rem;
  text-align: center;
}

/* Form Styling */
.target-calculator {
  max-width: 600px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #ffffff;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.calculate-btn {
  width: 100%;
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  color: #ffffff;
  border: 2px solid transparent;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  min-height: 44px;
  text-align: center;
  line-height: 1.2;
}

.calculate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%);
  border-color: #60a5fa;
}

/* Results Section */
.results-section {
  background: #f8fafc;
  border-radius: 16px;
  padding: 2rem;
  margin-top: 2rem;
  border: 1px solid #e2e8f0;
  display: none;
}

.results-section.show {
  display: block;
  animation: fadeInUp 0.5s ease;
}

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

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.result-item:last-child {
  border-bottom: none;
}

.result-label {
  font-weight: 600;
  color: #374151;
}

.result-value {
  font-weight: 700;
  font-size: 1.1rem;
}

.result-value.positive {
  color: #059669;
}

.result-value.negative {
  color: #dc2626;
}

/* Stock Analysis Section */
.stock-analysis {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 3rem;
  margin-bottom: 3rem;
  border: 1px solid #e2e8f0;
}

.stock-analysis h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2rem;
  text-align: center;
}

.stock-analysis h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #1e293b;
  margin: 2.5rem 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #e2e8f0;
}

.stock-analysis p {
  color: #374151;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 1.05rem;
}

.stock-analysis ul,
.stock-analysis ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.stock-analysis li {
  color: #374151;
  margin-bottom: 0.75rem;
  line-height: 1.6;
  font-size: 1rem;
}

.stock-analysis strong {
  color: #1e293b;
  font-weight: 600;
}

/* Info Boxes */
.info-box {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border: 1px solid #3b82f6;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  color: #1e40af;
}

.warning-box {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 1px solid #f59e0b;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  color: #92400e;
}

.disclaimer-box {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  border: 1px solid #ef4444;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  color: #991b1b;
}

/* Secondary Pages Styling */
.stock-article {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 3rem; 
  border: 1px solid #e2e8f0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.stock-article h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  text-align: center;
  border-bottom: 3px solid #3b82f6;
  padding-bottom: 1rem;
}

.stock-article h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1e293b;
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e2e8f0;
}

.stock-article h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1e293b;
  margin: 1.5rem 0 0.75rem;
}

.stock-article p {
  color: #374151;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 1.05rem;
}

.stock-article ul,
.stock-article ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.stock-article li {
  color: #374151;
  margin-bottom: 0.75rem;
  line-height: 1.6;
  font-size: 1rem;
}

.stock-article strong {
  color: #1e293b;
  font-weight: 600;
}

.stock-article a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.stock-article a:hover {
  color: #1e40af;
  text-decoration: underline;
}

/* Contact Form Styling */
.contact-form {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.contact-form label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #ffffff;
  margin-bottom: 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-form button {
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%);
}

/* Footer - Removed */

/* Responsive Design */
@media (max-width: 768px) {
  html, body {
    width: 100vw;
    max-width: 100vw;
    overflow-x: hidden;
  }
  
  .container {
    padding: 0 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .header-flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
  
  .site-title {
    font-size: 1.5rem;
    padding: 0.5rem 0.75rem;
  }
  
  .menu-toggle {
    display: flex !important;
    min-width: 48px;
    min-height: 48px;
    padding: 0.75rem;
    background: rgba(59, 130, 246, 0.15);
    border: 2px solid rgba(59, 130, 246, 0.4);
    border-radius: 8px;
  }
  
  .nav-menu {
    display: none !important;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #1e293b 100%);
    flex-direction: column;
    width: 100vw;
    gap: 0;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border-top: 2px solid #3b82f6;
    z-index: 9999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  
  .nav-menu.active {
    display: flex !important;
  }
  
  /* Add backdrop overlay when menu is active */
  .nav-menu.active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
  }
  
  .nav-menu li {
    width: 100%;
  }
  
  .nav-menu li a {
    display: flex;
    text-align: center;
    padding: 1.5rem 2rem;
    min-height: 56px;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .nav-menu li a:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: translateX(5px);
  }
  
  .nav-menu li:last-child a {
    border-bottom: none;
  }
  
  /* Mobile Ticker */
  .ticker-content {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 10px;
  }
  
  .ticker-item {
    width: 100%;
    justify-content: space-between;
  }
  
  /* Mobile Hero */
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .hero-section p {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  /* Mobile Market Overview */
  .market-overview {
    padding: 2rem 1.5rem;
  }
  
  .market-overview h2 {
    font-size: 2rem;
  }
  
  .market-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .market-card {
    padding: 1.5rem;
  }
  
  .current-price {
    font-size: 2rem;
  }
  
  /* Mobile Targets Analysis */
  .targets-analysis {
    padding: 2rem 1.5rem;
  }
  
  .targets-analysis h2 {
    font-size: 2rem;
  }
  
  .targets-analysis h3 {
    font-size: 1.5rem;
  }
  
  .factors-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .targets-table-container {
    margin: 1rem 0;
  }
  
  .targets-table {
    font-size: 0.8rem;
  }
  
  .targets-table th,
  .targets-table td {
    padding: 0.5rem;
  }
  
  .sector-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .strategy-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  /* Mobile Calculator Promo */
  .calculator-promo {
    padding: 2rem 1.5rem;
  }
  
  .promo-content {
    flex-direction: column;
    gap: 2rem;
  }
  
  .promo-text h2 {
    font-size: 1.5rem;
  }
  
  /* Mobile Stock Table */
  #stock-table {
    font-size: 0.8rem;
  }
  
  #stock-table th,
  #stock-table td {
    padding: 0.5rem;
  }
  
  .calculator-section,
  .stock-analysis {
    padding: 2rem 1.5rem;
  }
  
  .calculator-section h2,
  .stock-analysis h2 {
    font-size: 2rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero-section h1 {
    font-size: 3rem;
  }
  
  .calculator-section,
  .stock-analysis {
    padding: 2.5rem;
  }
}

/* Additional Professional Elements */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.stat-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #3b82f6;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #64748b;
  font-weight: 500;
}

/* Enhanced Live Market Ticker */
.ticker-bar {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  border-bottom: 2px solid #3b82f6;
  padding: 0.75rem 0;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
  width: 100%;
  max-width: 100%;
}

.ticker-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #ffffff;
  font-weight: 500;
  transition: all 0.3s ease;
}

.ticker-item:hover {
  background: rgba(59, 130, 246, 0.2);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.ticker-symbol {
  font-weight: 600;
  font-size: 0.9rem;
  color: #ffffff;
}

.ticker-price {
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
}

.ticker-change {
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.ticker-change.positive {
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
}

.ticker-change.negative {
  color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
}

/* Hero Section Enhancements */
.hero-section {
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #1e293b 100%);
  color: #ffffff;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid #3b82f6;
  width: 100%;
  max-width: 100%;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.hero-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

/* Market Overview */
.market-overview {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 3rem;
  margin: 3rem 0;
  border: 1px solid #e2e8f0;
}

.market-overview h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2rem;
  text-align: center;
}

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

.market-card {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
}

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

.market-card h3 {
  color: #374151;
  font-weight: 600;
  margin-bottom: 1rem;
}

.price-display {
  margin: 1.5rem 0;
}

.current-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  display: block;
  margin-bottom: 0.5rem;
}

.change-indicator {
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  display: inline-block;
}

.change-indicator.positive {
  color: #059669;
  background: rgba(5, 150, 105, 0.1);
}

.change-indicator.negative {
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
}

.market-time {
  color: #64748b;
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* Targets Analysis */
.targets-analysis {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 3rem;
  margin: 3rem 0;
  border: 1px solid #e2e8f0;
}

.targets-analysis h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2rem;
  text-align: center;
}

.targets-analysis h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1e293b;
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e2e8f0;
}

.factors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.factor-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem;
}

.factor-card h4 {
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 1rem;
}

.targets-table-container {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.targets-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
}

.targets-table th {
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  color: #ffffff;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.targets-table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
  color: #374151;
}

.targets-table tr:hover {
  background: #f8fafc;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.sector-card {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.sector-card:hover {
  transform: translateY(-3px);
}

.sector-card h4 {
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.strategy-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.strategy-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.strategy-card h4 {
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.faq-section {
  margin: 2rem 0;
}

.faq-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 1rem;
}

.faq-item h4 {
  color: #1e293b;
  font-weight: 600;
  margin-bottom: 1rem;
}

.calculator-promo {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 16px;
  padding: 3rem;
  margin: 3rem 0;
  border: 1px solid #e2e8f0;
}

.promo-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.promo-text {
  flex: 2;
}

.promo-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.promo-text p {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.promo-btn {
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  color: #ffffff;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  min-height: 44px;
  min-width: 120px;
  text-align: center;
  line-height: 1.2;
  border: 2px solid transparent;
}

.promo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, #2563eb 0%, #1e3a8a 100%);
  border-color: #60a5fa;
}

.promo-image {
  flex: 1;
}

.promo-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Consistent Button and Interactive Element Styles */
button, 
.btn,
[role="button"] {
  min-height: 44px;
  min-width: 44px;
  cursor: pointer;
  transition: all 0.3s ease;
}

a[href] {
  transition: all 0.3s ease;
}

/* Touch-friendly interactive elements */
.ticker-item,
.market-card,
.sector-card,
.strategy-card,
.faq-item {
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
} 