/* Enterprise Resource Automation (ERA) Specific Styles */

/* Hero Section */
.era-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.era-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin: 1rem 0;
  color: #cbd5e1;
}

.era-highlight {
  color: #60a5fa;
  font-weight: 700;
  background: rgba(96, 165, 250, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.era-animation-container {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.era-logo-animation {
  text-align: center;
  position: relative;
}

.logo-text {
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(90deg, #60a5fa, #3b82f6, #1d4ed8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
  font-family: 'Montserrat', sans-serif;
}

.animation-line {
  width: 300px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #60a5fa, transparent);
  margin: 2rem auto;
  position: relative;
  overflow: hidden;
}

.moving-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #3b82f6;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  animation: moveDot 3s ease-in-out infinite;
  box-shadow: 0 0 20px #3b82f6;
}

@keyframes moveDot {
  0%, 100% { left: 0; }
  50% { left: calc(100% - 20px); }
}

.automation-badge {
  display: inline-block;
  background: linear-gradient(90deg, #10b981, #059669);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-top: 1rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Executive Summary */
.era-summary .summary-card {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-left: 6px solid #3b82f6;
}

.declaration-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #1e293b;
}

/* Quick Navigation */
.era-quick-nav {
  background: #f8fafc;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
}

.era-quick-nav h3 {
  color: #1e293b;
  margin-bottom: 1rem;
}

.era-quick-nav .nav-card {
  background: white;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.era-quick-nav .nav-card:hover {
  background: #3b82f6;
  color: white;
  border-color: #3b82f6;
  transform: translateY(-5px);
}

.era-quick-nav .nav-card:hover i {
  color: white;
}

/* Intro Section */
.era-intro .lead {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #334155;
}

.era-insight-card {
  background: #f0f9ff;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border-left: 4px solid #3b82f6;
}

.insight-icon {
  background: #3b82f6;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.insight-content h4 {
  margin-top: 0;
  color: #1e293b;
}

.era-quote {
  background: #f8fafc;
  border-left: 4px solid #10b981;
  padding: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
}

.era-quote p {
  font-size: 1.1rem;
  color: #334155;
  margin-bottom: 0.5rem;
}

.era-quote footer {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
}

/* Evolution Timeline */
.era-timeline {
  margin: 3rem 0;
}

.timeline-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
}

.timeline-item {
  flex: 1;
  min-width: 220px;
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  position: relative;
  border-top: 4px solid #cbd5e1;
  transition: transform 0.3s ease;
}

.timeline-item:hover {
  transform: translateY(-5px);
}

.timeline-item.era-current {
  border-top-color: #3b82f6;
  box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.1);
}

.timeline-year {
  position: absolute;
  top: -20px;
  left: 1.5rem;
  background: #1e293b;
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.timeline-content h3 {
  font-size: 1.5rem;
  color: #1e293b;
  margin: 0.5rem 0 0.2rem;
}

.timeline-subtitle {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.timeline-desc {
  font-size: 0.9rem;
  color: #475569;
}

.timeline-desc p {
  margin: 0.5rem 0;
}

.timeline-desc strong {
  color: #1e293b;
}

.era-badge {
  display: inline-block;
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 1rem;
}

.evolution-insight {
  background: #f0f9ff;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.evolution-insight h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #1e293b;
  margin-bottom: 1rem;
}

/* Planning Limits */
.planning-limits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.limit-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.limit-icon {
  width: 50px;
  height: 50px;
  background: #fef2f2;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #dc2626;
}

.limit-card h3 {
  font-size: 1.1rem;
  color: #1e293b;
  margin-bottom: 1rem;
}

.limit-card p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}

.reality-check {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.reality-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.reality-header i {
  color: #3b82f6;
  font-size: 1.5rem;
}

.reality-header h4 {
  color: #1e293b;
  margin: 0;
}

.speed-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.speed-item h5 {
  color: #475569;
  margin-bottom: 1rem;
}

.speed-timeline {
  background: #f1f5f9;
  padding: 1rem;
  border-radius: 8px;
  position: relative;
  margin-bottom: 0.5rem;
}

.speed-timeline.fast {
  background: #dbeafe;
}

.time-label {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #475569;
}

.speed-conclusion {
  font-size: 1.1rem;
  color: #1e293b;
  font-weight: 500;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

/* ERA Pillars */
.era-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.pillar-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-5px);
}

.pillar-header {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.pillar-number {
  background: #1e293b;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.pillar-icon {
  width: 40px;
  height: 40px;
  background: #3b82f6;
  color: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-header h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #1e293b;
}

.pillar-content {
  padding: 1.5rem;
}

.pillar-content > p {
  color: #475569;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.pillar-examples {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pillar-examples li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #475569;
}

.pillar-examples li:last-child {
  border-bottom: none;
}

.pillar-examples i {
  color: #10b981;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.role-transformation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.role-before, .role-after {
  padding: 1rem;
  border-radius: 8px;
}

.role-before {
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.role-after {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.role-before h5, .role-after h5 {
  font-size: 0.9rem;
  color: #475569;
  margin-bottom: 0.8rem;
}

.role-before ul, .role-after ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.role-before li, .role-after li {
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.role-before i {
  color: #dc2626;
}

.role-after i {
  color: #059669;
}

.era-definition-footer {
  background: #f0f9ff;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.era-definition-footer h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #1e293b;
  margin-bottom: 1rem;
}

.definition-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #334155;
}

/* Comparison Table */
.era-comparison-table {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  margin: 2rem 0;
}

.comparison-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: white;
  padding: 1.5rem;
}

.comparison-col h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.3rem;
}

.era-era-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #e2e8f0;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-col {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.comparison-col.era-highlighted {
  background: #f0f9ff;
  border-left: 1px solid #dbeafe;
}

.comparison-col h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 1rem;
  color: #1e293b;
}

.comparison-col p {
  margin: 0;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}

.comparison-conclusion {
  background: #f8fafc;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}

.comparison-conclusion h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #1e293b;
  margin-bottom: 1rem;
}

/* Benefits */
.benefits-intro {
  font-size: 1.1rem;
  color: #334155;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.benefit-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

.benefit-card h3 {
  font-size: 1.2rem;
  color: #1e293b;
  margin-bottom: 1rem;
}

.benefit-card p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.benefit-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.metric-value {
  font-size: 2rem;
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
}

.metric-label {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
}

.competitive-advantage {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.competitive-advantage h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.advantage-example {
  margin-top: 2rem;
}

.advantage-example h5 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #475569;
  margin-bottom: 1rem;
}

.example-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.example-era, .example-erp {
  padding: 1.5rem;
  border-radius: 8px;
}

.example-era {
  background: #f0f9ff;
  border: 1px solid #dbeafe;
}

.example-erp {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.example-era h6, .example-erp h6 {
  font-size: 1rem;
  color: #1e293b;
  margin-bottom: 1rem;
}

.example-flow {
  position: relative;
  padding: 1rem;
  background: white;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

.example-era .example-flow {
  border-color: #dbeafe;
}

.time-badge {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: #3b82f6;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.example-erp .time-badge {
  background: #64748b;
}

/* Adoption Status */
.era-adoption-status {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.adoption-card, .opportunity-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.adoption-header, .opportunity-header {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.adoption-header h3, .opportunity-header h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  color: #1e293b;
}

.adoption-content, .opportunity-content {
  padding: 1.5rem;
}

.adoption-facts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.adoption-facts li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: #475569;
}

.adoption-facts li:last-child {
  border-bottom: none;
}

.adoption-facts i {
  color: #3b82f6;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.opportunity-content > p {
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.opportunity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.opportunity-item {
  text-align: center;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.opportunity-item i {
  font-size: 1.5rem;
  color: #3b82f6;
  margin-bottom: 0.5rem;
}

.opportunity-item h4 {
  font-size: 0.9rem;
  color: #1e293b;
  margin: 0.5rem 0;
}

.opportunity-item p {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
}

.era-callout {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 2rem;
  border: 1px solid #dbeafe;
}

.callout-icon {
  width: 60px;
  height: 60px;
  background: #3b82f6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.callout-content h4 {
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.callout-content p {
  color: #475569;
  margin: 0;
  line-height: 1.6;
}

/* Professionals Lobby Introduction */
.pl-introduction {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.pl-intro-content > p {
  font-size: 1.1rem;
  color: #334155;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.pl-insight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fef2f2;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 2rem 0;
  border-left: 4px solid #dc2626;
}

.pl-insight i {
  color: #dc2626;
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

.pl-insight p {
  margin: 0;
  font-size: 1.1rem;
  color: #1e293b;
  font-weight: 500;
}

.pl-goals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.goal-card {
  background: #f8fafc;
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
  position: relative;
  padding-top: 3rem;
}

.goal-number {
  position: absolute;
  top: -20px;
  left: 1.5rem;
  background: #3b82f6;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.goal-card h4 {
  color: #1e293b;
  margin-bottom: 0.8rem;
}

.goal-card p {
  color: #475569;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Getting Started */
.era-journey {
  margin: 3rem 0;
}

.journey-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step {
  display: flex;
  gap: 1.5rem;
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateX(10px);
}

.step-number {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  color: #1e293b;
  margin-bottom: 0.8rem;
}

.step-content p {
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.step-action {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f0f9ff;
  padding: 0.8rem;
  border-radius: 8px;
  border: 1px solid #dbeafe;
  color: #1e40af;
  font-size: 0.9rem;
}

.step-action i {
  color: #3b82f6;
}

.era-cta {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  margin-top: 3rem;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  color: #cbd5e1;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Future Vision */
.future-vision {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.vision-lead {
  font-size: 1.2rem;
  color: #334155;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.future-capabilities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.capability-card {
  text-align: center;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease;
}

.capability-card:hover {
  transform: translateY(-5px);
  background: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.capability-card i {
  font-size: 2rem;
  color: #3b82f6;
  margin-bottom: 1rem;
}

.capability-card h4 {
  color: #1e293b;
  margin-bottom: 0.8rem;
}

.capability-card p {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.future-quote {
  background: #f0f9ff;
  border-left: 4px solid #3b82f6;
  padding: 1.5rem;
  margin: 2rem 0 0;
  font-style: italic;
}

.future-quote p {
  font-size: 1.1rem;
  color: #334155;
  margin-bottom: 0.5rem;
}

.future-quote footer {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
}

/* Final Thought */
.era-final {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 12px;
  padding: 3rem;
  margin: 3rem 0;
}

.final-content h2 {
  text-align: center;
  color: #1e293b;
  margin-bottom: 2rem;
}

.final-message p {
  font-size: 1.1rem;
  color: #334155;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.final-callout {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: white;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.callout-badge {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 800;
  flex-shrink: 0;
}

.callout-text h4 {
  color: #1e293b;
  margin-bottom: 1rem;
}

.callout-text > p {
  color: #475569;
  margin-bottom: 1.5rem;
}

.invitation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.invitation-grid span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f8fafc;
  padding: 0.8rem;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #475569;
}

.invitation-grid i {
  color: #3b82f6;
}

.invitation-text {
  font-style: italic;
  color: #64748b;
  margin-top: 1rem;
}

.era-conclusion {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.era-conclusion h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #1e293b;
  margin-bottom: 1rem;
}

.conclusion-text {
  font-size: 1.3rem;
  color: #1e293b;
  font-weight: 500;
  margin-bottom: 1rem;
}

.conclusion-badge {
  font-size: 3rem;
}

/* AI Prompts */
.ai-prompts {
  background: #f8fafc;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.prompts-intro {
  font-size: 1.1rem;
  color: #334155;
  margin-bottom: 1.5rem;
}

.prompts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.prompt-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease;
}

.prompt-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.prompt-icon {
  width: 40px;
  height: 40px;
  background: #f0f9ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #3b82f6;
}

.prompt-content h4 {
  color: #1e293b;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.prompt-content p {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  font-family: monospace;
  background: #f8fafc;
  padding: 0.8rem;
  border-radius: 4px;
  border-left: 3px solid #3b82f6;
}

/* Footer */
.era-footer {
  border-top: 2px solid #e2e8f0;
  padding-top: 2rem;
  margin-top: 3rem;
}

.era-license {
  background: #f0f9ff;
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: #475569;
}

.era-license i {
  color: #3b82f6;
  margin-right: 0.5rem;
}

/* Sidebar Styles */
.era-author {
  text-align: center;
}

.author-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 2rem;
}

.author-info h4 {
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.author-info p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.author-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.author-expertise span {
  background: #f1f5f9;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.author-expertise i {
  color: #3b82f6;
  font-size: 0.8rem;
}

.era-quiz .quiz-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem;
  background: #f8fafc;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.era-quiz .quiz-option:hover {
  background: #e2e8f0;
}

.era-quiz-submit {
  width: 100%;
  margin-top: 1rem;
}

.era-quiz-result {
  margin-top: 1rem;
  padding: 1rem;
  background: #f0f9ff;
  border-radius: 8px;
  display: none;
}

.era-newsletter {
  background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
  border: 1px solid #dbeafe;
}

.era-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.era-newsletter-form input {
  padding: 0.8rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 0.9rem;
}

.era-newsletter-form button {
  width: 100%;
}

.era-whitepaper {
  text-align: center;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.whitepaper-icon {
  width: 60px;
  height: 60px;
  background: #dc2626;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

.whitepaper-info h4 {
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.whitepaper-info p {
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* More Articles */
.era-more-articles {
  background: #f8fafc;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .timeline-container {
    gap: 1rem;
  }
  
  .timeline-item {
    min-width: 200px;
  }
}

@media (max-width: 992px) {
  .hero-content {
    flex-direction: column;
  }
  
  .hero-text, .hero-image {
    width: 100%;
  }
  
  .era-animation-container {
    height: 250px;
  }
  
  .logo-text {
    font-size: 3rem;
  }
  
  .speed-comparison,
  .example-comparison,
  .era-adoption-status {
    grid-template-columns: 1fr;
  }
  
  .role-transformation {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .comparison-header,
  .comparison-row {
    grid-template-columns: 1fr;
  }
  
  .final-callout {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  
  .era-hero {
    padding: 4rem 0 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .article-category {
    font-size: 0.7rem;
  }
  
  .era-timeline .timeline-container {
    flex-direction: column;
  }
  
  .timeline-item {
    min-width: 100%;
  }
  
  .era-pillars,
  .benefits-grid,
  .pl-goals,
  .future-capabilities {
    grid-template-columns: 1fr;
  }
  
  .step {
    flex-direction: column;
    text-align: center;
  }
  
  .step-number {
    margin: 0 auto;
  }
  
  .cta-actions {
    flex-direction: column;
  }
  
  .cta-actions .btn {
    width: 100%;
  }
  
  .prompts-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .era-animation-container {
    height: 200px;
  }
  
  .logo-text {
    font-size: 2.5rem;
  }
  
  .animation-line {
    width: 200px;
  }
  
  .automation-badge {
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
  }
  
  .pillar-header {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .pillar-number, .pillar-icon {
    margin: 0 auto;
  }
  
  .invitation-grid {
    grid-template-columns: 1fr 1fr;
  }
}