/* CSS Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #0a0a0a;
  overflow-x: hidden;
}

/* Industrial Modern Design - Dark Base with Metallic Accents */
:root {
  --primary: #2C5F8D;
  --secondary: #E8943F;
  --accent: #F4F4F4;
  --dark-bg: #0a0a0a;
  --darker-bg: #1a1a1a;
  --metal-light: #b8c5d0;
  --metal-dark: #4a5660;
  --concrete: #3a3a3a;
  --steel: #5a6a7a;
  --warning: #ff6b35;
}

/* Typography - Industrial Fonts */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  line-height: 1.2;
}

h1 { font-size: 48px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

p {
  margin-bottom: 16px;
  color: var(--metal-light);
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, var(--steel), var(--metal-dark));
  border: 2px solid var(--secondary);
  color: var(--accent);
  font-size: 24px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(232, 148, 63, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, var(--secondary), var(--warning));
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(232, 148, 63, 0.5);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
  z-index: 1002;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.8);
  border-left: 3px solid var(--secondary);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--accent);
  font-size: 28px;
  width: 45px;
  height: 45px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: var(--secondary);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav a {
  color: var(--metal-light);
  font-size: 18px;
  font-weight: 600;
  padding: 15px 20px;
  background: rgba(58, 58, 58, 0.5);
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--accent);
  background: rgba(232, 148, 63, 0.2);
  border-left-color: var(--secondary);
  transform: translateX(10px);
}

/* Header */
.main-header {
  background: linear-gradient(135deg, var(--darker-bg) 0%, var(--concrete) 100%);
  border-bottom: 3px solid var(--secondary);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(232, 148, 63, 0.3));
}

.main-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--metal-light);
  font-weight: 600;
  padding: 12px 20px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(58, 58, 58, 0.3);
  border: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(232, 148, 63, 0.3), transparent);
  transition: left 0.5s ease;
}

.main-nav a:hover::before {
  left: 100%;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
  background: rgba(232, 148, 63, 0.2);
  border-color: var(--secondary);
  box-shadow: 0 0 15px rgba(232, 148, 63, 0.3);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 50%, var(--concrete) 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(232, 148, 63, 0.03) 10px,
    rgba(232, 148, 63, 0.03) 20px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.breaking-news {
  display: flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, rgba(232, 148, 63, 0.2), rgba(255, 107, 53, 0.2));
  padding: 15px 20px;
  margin-bottom: 32px;
  border-left: 4px solid var(--secondary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.breaking-label {
  background: var(--secondary);
  color: var(--dark-bg);
  padding: 6px 12px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(232, 148, 63, 0.4);
}

.breaking-news p {
  color: var(--accent);
  font-weight: 600;
  margin: 0;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--accent);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 18px;
  color: var(--metal-light);
  margin-bottom: 32px;
  max-width: 800px;
}

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

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary), var(--warning));
  color: var(--dark-bg);
  box-shadow: 0 4px 15px rgba(232, 148, 63, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--warning), var(--secondary));
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(232, 148, 63, 0.6);
  color: var(--dark-bg);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--steel);
}

.btn-secondary:hover {
  background: rgba(90, 106, 122, 0.2);
  border-color: var(--secondary);
  color: var(--accent);
  box-shadow: 0 0 20px rgba(232, 148, 63, 0.3);
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--darker-bg), var(--concrete));
  padding: 60px 20px 40px;
  border-bottom: 3px solid var(--secondary);
}

.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 24px;
  font-size: 14px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--metal-light);
}

.breadcrumb span {
  color: var(--secondary);
  font-weight: 600;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.page-header h1 {
  margin-bottom: 16px;
}

.page-header p {
  font-size: 18px;
  color: var(--metal-light);
  max-width: 800px;
}

/* Featured Stories */
.featured-stories {
  padding: 60px 20px;
  background: var(--dark-bg);
}

.featured-stories h2 {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 16px;
}

.featured-stories h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.stories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.story-card {
  flex: 1 1 300px;
  background: linear-gradient(135deg, var(--darker-bg), var(--concrete));
  padding: 24px;
  border: 1px solid rgba(90, 106, 122, 0.3);
  border-left: 4px solid var(--secondary);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.story-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent, rgba(232, 148, 63, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

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

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  border-left-width: 8px;
}

.category-tag,
.category-label,
.topic-tag {
  display: inline-block;
  background: var(--secondary);
  color: var(--dark-bg);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

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

.story-card p {
  color: var(--metal-light);
  margin-bottom: 16px;
}

.story-card time {
  color: var(--steel);
  font-size: 14px;
  font-style: italic;
}

/* Services Overview */
.services-overview {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--concrete), var(--darker-bg));
}

.services-overview h2 {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 16px;
}

.services-overview h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.service-card {
  flex: 1 1 300px;
  background: linear-gradient(135deg, var(--darker-bg), var(--dark-bg));
  padding: 32px;
  border: 2px solid rgba(90, 106, 122, 0.3);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(232, 148, 63, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--secondary);
  box-shadow: 0 10px 40px rgba(232, 148, 63, 0.3);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--accent);
  position: relative;
  z-index: 1;
}

.service-card p {
  color: var(--metal-light);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.price {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

/* Testimonials */
.testimonials {
  padding: 60px 20px;
  background: var(--dark-bg);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 16px;
}

.testimonials h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.testimonial-card {
  flex: 1 1 450px;
  background: linear-gradient(135deg, rgba(244, 244, 244, 0.95), rgba(184, 197, 208, 0.95));
  padding: 32px;
  border-left: 5px solid var(--secondary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 80px;
  color: rgba(232, 148, 63, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: var(--darker-bg);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  color: var(--dark-bg);
  font-size: 16px;
  font-weight: 700;
}

.testimonial-author span {
  color: var(--steel);
  font-size: 14px;
}

/* Breaking News Section */
.breaking-news {
  padding: 20px;
  background: linear-gradient(135deg, rgba(232, 148, 63, 0.2), rgba(255, 107, 53, 0.2));
  border-left: 4px solid var(--secondary);
  margin-bottom: 32px;
}

.breaking-banner {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.live-indicator {
  background: var(--warning);
  color: var(--dark-bg);
  padding: 6px 12px;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  animation: pulse 2s infinite;
}

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

.breaking-banner p {
  color: var(--accent);
  font-weight: 600;
  margin: 0;
}

/* News Content */
.news-content,
.business-content,
.economy-content,
.social-content {
  padding: 60px 20px;
  background: var(--dark-bg);
}

.content-layout {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.news-feed {
  flex: 1 1 700px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-card,
.article-card,
.topic-card {
  background: linear-gradient(135deg, var(--darker-bg), var(--concrete));
  padding: 24px;
  border: 1px solid rgba(90, 106, 122, 0.3);
  border-left: 4px solid var(--secondary);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.news-card:hover,
.article-card:hover,
.topic-card:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
  border-left-width: 8px;
}

.news-card h2 {
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--accent);
}

.article-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 16px;
  flex-wrap: wrap;
}

.article-meta .author {
  color: var(--secondary);
  font-weight: 600;
}

.article-meta time {
  color: var(--steel);
  font-size: 14px;
}

/* Sidebar */
.sidebar {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-section {
  background: linear-gradient(135deg, var(--darker-bg), var(--concrete));
  padding: 24px;
  border: 1px solid rgba(90, 106, 122, 0.3);
  border-top: 3px solid var(--secondary);
}

.sidebar-section h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--accent);
}

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

.popular-list li {
  padding-left: 20px;
  position: relative;
}

.popular-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

.popular-list a {
  color: var(--metal-light);
  font-size: 14px;
  transition: all 0.3s ease;
}

.popular-list a:hover {
  color: var(--accent);
  padding-left: 5px;
}

/* Market Data */
.market-data {
  background: linear-gradient(135deg, var(--concrete), var(--darker-bg));
  padding: 40px 20px;
  border-top: 3px solid var(--secondary);
  border-bottom: 3px solid var(--secondary);
}

.market-ticker {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.ticker-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background: rgba(26, 26, 26, 0.5);
  border: 1px solid rgba(90, 106, 122, 0.3);
  min-width: 120px;
}

.ticker-label {
  color: var(--metal-light);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ticker-value {
  color: var(--accent);
  font-size: 20px;
  font-weight: 700;
}

.ticker-value.positive {
  color: #4ade80;
}

.ticker-value.negative {
  color: var(--warning);
}

.ticker-value small {
  font-size: 14px;
  margin-left: 5px;
}

/* Featured Article */
.featured-article {
  background: linear-gradient(135deg, var(--darker-bg), var(--concrete));
  padding: 40px;
  border-left: 5px solid var(--secondary);
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.featured-article h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--accent);
}

.featured-article p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--metal-light);
}

/* Business Categories */
.business-categories,
.economy-topics,
.social-topics {
  margin-bottom: 60px;
}

.category-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.tab-btn {
  background: rgba(58, 58, 58, 0.5);
  color: var(--metal-light);
  border: 1px solid rgba(90, 106, 122, 0.3);
  padding: 12px 24px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--secondary);
  color: var(--dark-bg);
  border-color: var(--secondary);
  box-shadow: 0 0 15px rgba(232, 148, 63, 0.4);
}

.articles-grid,
.topics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

/* Expert Analysis */
.expert-analysis,
.expert-commentary {
  margin-bottom: 60px;
}

.analysis-grid,
.commentary-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.analysis-card,
.commentary-card {
  flex: 1 1 450px;
  background: linear-gradient(135deg, var(--darker-bg), var(--concrete));
  padding: 32px;
  border: 2px solid rgba(90, 106, 122, 0.3);
  border-top: 4px solid var(--secondary);
  position: relative;
  margin-bottom: 20px;
}

.premium-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--secondary);
  color: var(--dark-bg);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.expert-name,
.expert-info {
  color: var(--secondary);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
  display: block;
}

/* Economic Indicators */
.economic-indicators {
  background: linear-gradient(135deg, var(--darker-bg), var(--concrete));
  padding: 60px 20px;
}

.indicators-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.indicator-card {
  flex: 1 1 250px;
  background: rgba(10, 10, 10, 0.6);
  padding: 32px;
  border: 2px solid rgba(90, 106, 122, 0.3);
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.indicator-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--secondary);
}

.indicator-card h3 {
  font-size: 16px;
  color: var(--metal-light);
  margin-bottom: 16px;
}

.indicator-value {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}

.indicator-label {
  color: var(--steel);
  font-size: 14px;
  display: block;
  margin-bottom: 16px;
}

.trend {
  font-size: 24px;
  font-weight: 700;
}

.trend.positive {
  color: #4ade80;
}

.trend.negative {
  color: var(--warning);
}

.trend.neutral {
  color: var(--steel);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--secondary), var(--warning));
  padding: 80px 20px;
  text-align: center;
}

.cta-content h2 {
  color: var(--dark-bg);
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-content p {
  color: var(--dark-bg);
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-section .btn-primary {
  background: var(--dark-bg);
  color: var(--accent);
}

.cta-section .btn-primary:hover {
  background: var(--darker-bg);
  transform: scale(1.05);
}

/* Community Stories */
.community-stories {
  margin-bottom: 60px;
}

.stories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

/* Pricing Section */
.pricing-section {
  padding: 60px 20px;
  background: var(--dark-bg);
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.pricing-card {
  flex: 1 1 320px;
  max-width: 380px;
  background: linear-gradient(135deg, var(--darker-bg), var(--concrete));
  padding: 40px;
  border: 2px solid rgba(90, 106, 122, 0.3);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.pricing-card.featured {
  border-color: var(--secondary);
  border-width: 3px;
  transform: scale(1.05);
}

.pricing-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 50px rgba(232, 148, 63, 0.3);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--dark-bg);
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--accent);
}

.pricing-card .price {
  font-size: 48px;
  color: var(--secondary);
  margin-bottom: 32px;
}

.pricing-card .price span {
  font-size: 18px;
  color: var(--metal-light);
}

.features-list {
  text-align: left;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.features-list li {
  color: var(--metal-light);
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
  font-size: 18px;
}

/* Services Detailed */
.services-detailed {
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--concrete), var(--darker-bg));
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, var(--darker-bg), var(--dark-bg));
  padding: 32px;
  border: 1px solid rgba(90, 106, 122, 0.3);
  border-left: 4px solid var(--secondary);
  transition: all 0.3s ease;
  flex-wrap: wrap;
}

.service-item:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.service-item h3 {
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 8px;
}

.service-item p {
  color: var(--metal-light);
  flex: 1 1 400px;
}

.service-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--secondary);
  white-space: nowrap;
}

/* FAQ Section */
.faq-section {
  padding: 60px 20px;
  background: var(--dark-bg);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.faq-item {
  background: linear-gradient(135deg, var(--darker-bg), var(--concrete));
  padding: 24px;
  border: 1px solid rgba(90, 106, 122, 0.3);
  border-left: 4px solid var(--secondary);
}

.faq-item h3 {
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 12px;
}

.faq-item p {
  color: var(--metal-light);
}

/* Contact Content */
.contact-content {
  padding: 60px 20px;
  background: var(--dark-bg);
}

.contact-layout {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.contact-info,
.contact-form-section {
  flex: 1 1 400px;
}

.info-block {
  background: linear-gradient(135deg, var(--darker-bg), var(--concrete));
  padding: 24px;
  border-left: 4px solid var(--secondary);
  margin-bottom: 24px;
}

.info-block h3 {
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 12px;
}

.info-block p,
.info-block a {
  color: var(--metal-light);
}

.form-placeholder {
  background: linear-gradient(135deg, var(--darker-bg), var(--concrete));
  padding: 32px;
  border: 2px solid rgba(90, 106, 122, 0.3);
  border-top: 4px solid var(--secondary);
}

.form-placeholder p {
  color: var(--metal-light);
  margin-bottom: 16px;
}

.form-placeholder ul {
  list-style: none;
  padding-left: 0;
}

.form-placeholder li {
  color: var(--metal-light);
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.form-placeholder li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--secondary);
}

/* Departments */
.departments {
  margin-top: 60px;
}

.departments h2 {
  text-align: center;
  margin-bottom: 40px;
}

.departments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.department-card {
  flex: 1 1 300px;
  background: linear-gradient(135deg, var(--darker-bg), var(--concrete));
  padding: 32px;
  border: 1px solid rgba(90, 106, 122, 0.3);
  border-top: 4px solid var(--secondary);
  text-align: center;
  margin-bottom: 20px;
}

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

.department-card p {
  color: var(--metal-light);
  margin-bottom: 16px;
}

/* Legal Content */
.legal-content {
  padding: 60px 20px;
  background: var(--dark-bg);
}

.text-section {
  background: linear-gradient(135deg, var(--darker-bg), var(--concrete));
  padding: 32px;
  border-left: 4px solid var(--secondary);
  margin-bottom: 32px;
}

.text-section h2 {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 16px;
}

.text-section h3 {
  font-size: 18px;
  color: var(--metal-light);
  margin-bottom: 12px;
  margin-top: 20px;
}

.text-section p {
  color: var(--metal-light);
  margin-bottom: 16px;
}

.text-section ul {
  list-style: none;
  padding-left: 0;
}

.text-section li {
  color: var(--metal-light);
  padding-left: 25px;
  position: relative;
  margin-bottom: 8px;
}

.text-section li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

/* Thank You Section */
.thank-you-section {
  padding: 80px 20px;
  background: var(--dark-bg);
}

.thank-you-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: var(--secondary);
  color: var(--dark-bg);
  font-size: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(232, 148, 63, 0.5);
}

.thank-you-message {
  font-size: 18px;
  color: var(--metal-light);
  margin-bottom: 40px;
}

.next-steps {
  background: linear-gradient(135deg, var(--darker-bg), var(--concrete));
  padding: 32px;
  border-left: 4px solid var(--secondary);
  margin-bottom: 40px;
  text-align: left;
}

.next-steps h2 {
  text-align: center;
  margin-bottom: 24px;
}

.next-steps ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.next-steps li {
  color: var(--metal-light);
  padding-left: 30px;
  position: relative;
}

.next-steps li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
  font-size: 20px;
}

.suggested-actions h3 {
  margin-bottom: 24px;
}

.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.action-card {
  flex: 1 1 250px;
  background: linear-gradient(135deg, var(--darker-bg), var(--concrete));
  padding: 24px;
  border: 2px solid rgba(90, 106, 122, 0.3);
  text-align: center;
  transition: all 0.3s ease;
  max-width: 300px;
}

.action-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary);
  box-shadow: 0 8px 30px rgba(232, 148, 63, 0.3);
}

.action-card h4 {
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 12px;
}

.action-card p {
  color: var(--metal-light);
  font-size: 14px;
}

.contact-info {
  background: linear-gradient(135deg, var(--darker-bg), var(--concrete));
  padding: 24px;
  border-top: 4px solid var(--secondary);
}

.contact-info h3 {
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--metal-light);
}

/* Footer */
.main-footer {
  background: linear-gradient(135deg, var(--darker-bg), var(--dark-bg));
  border-top: 3px solid var(--secondary);
  padding: 60px 20px 20px;
  color: var(--metal-light);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 250px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 8px rgba(232, 148, 63, 0.3));
}

.footer-col h4 {
  color: var(--accent);
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p {
  color: var(--metal-light);
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-nav a {
  color: var(--metal-light);
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
  position: relative;
}

.footer-nav a::before {
  content: '';
  position: absolute;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  bottom: -2px;
  transition: width 0.3s ease;
}

.footer-nav a:hover {
  color: var(--accent);
  padding-left: 10px;
}

.footer-nav a:hover::before {
  width: 20px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(90, 106, 122, 0.3);
}

.footer-bottom p {
  color: var(--steel);
  font-size: 14px;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--darker-bg), var(--concrete));
  border-top: 3px solid var(--secondary);
  padding: 24px;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 400px;
}

.cookie-text p {
  color: var(--metal-light);
  margin-bottom: 0;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 12px 24px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  font-size: 14px;
}

.cookie-accept {
  background: var(--secondary);
  color: var(--dark-bg);
}

.cookie-accept:hover {
  background: var(--warning);
  box-shadow: 0 4px 15px rgba(232, 148, 63, 0.4);
}

.cookie-reject {
  background: transparent;
  color: var(--metal-light);
  border-color: var(--steel);
}

.cookie-reject:hover {
  background: rgba(90, 106, 122, 0.2);
  color: var(--accent);
}

.cookie-settings {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}

.cookie-settings:hover {
  background: rgba(232, 148, 63, 0.1);
  box-shadow: 0 0 15px rgba(232, 148, 63, 0.3);
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.95);
  z-index: 1003;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: linear-gradient(135deg, var(--darker-bg), var(--concrete));
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border: 3px solid var(--secondary);
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid var(--secondary);
  color: var(--accent);
  font-size: 24px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: var(--secondary);
  color: var(--dark-bg);
  transform: rotate(90deg);
}

.cookie-modal h2 {
  margin-bottom: 24px;
  color: var(--accent);
}

.cookie-category {
  background: rgba(26, 26, 26, 0.5);
  padding: 20px;
  margin-bottom: 16px;
  border-left: 4px solid var(--secondary);
}

.cookie-category h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--accent);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-category p {
  color: var(--metal-light);
  font-size: 14px;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--steel);
  transition: 0.3s;
  border-radius: 24px;
}

.cookie-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background: var(--secondary);
}

input:checked + .cookie-slider:before {
  transform: translateX(26px);
}

input:disabled + .cookie-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }

  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }

  /* Typography adjustments */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 18px; }

  /* Header adjustments */
  .header-content {
    justify-content: center;
  }

  /* Hero section */
  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  /* Cards and grids */
  .stories-grid,
  .services-grid,
  .testimonials-grid,
  .articles-grid,
  .topics-grid,
  .pricing-grid,
  .indicators-grid,
  .departments-grid,
  .actions-grid {
    flex-direction: column;
  }

  .story-card,
  .service-card,
  .testimonial-card,
  .article-card,
  .topic-card,
  .pricing-card,
  .indicator-card,
  .department-card {
    flex: 1 1 100%;
  }

  /* Content layout */
  .content-layout {
    flex-direction: column;
  }

  .news-feed,
  .sidebar {
    flex: 1 1 100%;
  }

  /* Contact layout */
  .contact-layout {
    flex-direction: column;
  }

  /* Market ticker */
  .market-ticker {
    flex-direction: column;
  }

  .ticker-item {
    width: 100%;
  }

  /* Category tabs */
  .category-tabs {
    flex-direction: column;
  }

  .tab-btn {
    width: 100%;
  }

  /* Service items */
  .service-item {
    flex-direction: column;
    text-align: center;
  }

  /* Cookie consent */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
  }

  .footer-col {
    flex: 1 1 100%;
  }

  /* Featured article */
  .featured-article {
    padding: 24px;
  }

  /* Mobile menu width adjustment */
  .mobile-menu {
    width: 85%;
    max-width: 350px;
  }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .stories-grid .story-card,
  .services-grid .service-card {
    flex: 1 1 calc(50% - 12px);
  }

  .pricing-card {
    flex: 1 1 calc(50% - 16px);
  }
}

/* Large screens */
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }

  h1 { font-size: 56px; }
  h2 { font-size: 40px; }
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .main-header,
  .hero,
  .cookie-consent,
  .cookie-modal,
  .footer {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  a {
    color: black;
    text-decoration: underline;
  }
}

/* Smooth animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.story-card,
.service-card,
.testimonial-card,
.news-card,
.article-card {
  animation: fadeIn 0.5s ease forwards;
}

/* Accessibility improvements */
:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  body {
    background: #000;
  }

  .story-card,
  .service-card,
  .news-card {
    border-width: 2px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}