/* era-guide-styles.css - Comprehensive ERA Guide Styles */

/* Hero Section Enhancements */
.era-comprehensive-hero {
  background: linear-gradient(135deg, #0c2c52 0%, #1a4b8c 100%);
  color: white;
}

.era-comprehensive-hero .hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin: 1rem 0;
}

.era-ai-visual {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-brain-animation {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.ai-node {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #00aaff;
  animation: pulse 2s infinite;
}

.ai-node:nth-child(2) { background: #ff6b6b; animation-delay: 0.3s; }
.ai-node:nth-child(3) { background: #4ecdc4; animation-delay: 0.6s; }
.ai-node:nth-child(4) { background: #ffd166; animation-delay: 0.9s; }
.ai-node:nth-child(5) { background: #06d6a0; animation-delay: 1.2s; }

.connecting-line {
  position: absolute;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  transform-origin: left center;
}

.era-visual-text {
  position: absolute;
  text-align: center;
  z-index: 2;
}

.era-text {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin: 0.5rem 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.era-text.highlight {
  color: #00aaff;
  font-size: 2.2rem;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}

/* Executive Summary Enhancements */
.era-comprehensive-summary .summary-card {
  background: linear-gradient(135deg, #f8fafc 0%, #e6f7ff 100%);
  border-left: 5px solid #00aaff;
}

/* Quick Navigation */
.comprehensive-nav .quick-nav-grid {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
  .comprehensive-nav .quick-nav-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .comprehensive-nav .quick-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .comprehensive-nav .quick-nav-grid {
    grid-template-columns: 1fr;
  }
}

/* ERA Definition Box */
.era-definition-box {
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  border-radius: 12px;
  padding: 2.5rem;
  margin: 2rem 0;
  box-shadow: 0 10px 30px rgba(0, 170, 255, 0.1);
  border: 1px solid #e1f5fe;
}

.definition-explanation {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px dashed #e0e0e0;
}

.era-answer {
  font-size: 1.3rem;
  color: #00aaff;
  font-weight: 600;
  margin: 1rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.era-answer::before {
  content: "»";
  position: absolute;
  left: 0;
  color: #00aaff;
}

/* Core Principles */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.principle-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 3px solid #00aaff;
}

.principle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 170, 255, 0.15);
}

.principle-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00aaff 0%, #0088cc 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: white;
  font-size: 1.5rem;
}

.principle-card h4 {
  margin: 0 0 0.8rem 0;
  color: #2c3e50;
}

.principle-card p {
  color: #546e7a;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Transformation Timeline */
.era-transformation-timeline {
  margin: 3rem 0;
}

.timeline-container {
  position: relative;
  padding-left: 100px;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #00aaff, #0088cc, #006699);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-marker {
  position: absolute;
  left: -60px;
  top: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.era-past .timeline-marker {
  background: #95a5a6;
}

.era-present .timeline-marker {
  background: #00aaff;
  animation: pulse 2s infinite;
}

.era-future .timeline-marker {
  background: #2ecc71;
}

.timeline-content {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid;
}

.era-past .timeline-content {
  border-left-color: #95a5a6;
}

.era-present .timeline-content {
  border-left-color: #00aaff;
}

.era-future .timeline-content {
  border-left-color: #2ecc71;
}

.timeline-details ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.timeline-details li {
  padding: 0.5rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.timeline-details i {
  color: #00aaff;
  margin-top: 0.2rem;
}

/* Naming Importance */
.naming-reasons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.reason-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid #e0e0e0;
  transition: transform 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-3px);
  border-color: #00aaff;
}

.reason-number {
  display: inline-block;
  background: #00aaff;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 1rem;
}

/* AI Intelligence Layers */
.ai-layers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.ai-layer {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.layer-header {
  background: linear-gradient(135deg, #00aaff 0%, #0088cc 100%);
  color: white;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.layer-number {
  width: 40px;
  height: 40px;
  background: white;
  color: #00aaff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.layer-content {
  padding: 1.5rem;
}

.layer-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.layer-content li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.layer-content li:last-child {
  border-bottom: none;
}

.layer-content i {
  color: #00aaff;
  margin-top: 0.2rem;
}

/* Intelligent Workspace Demo */
.workspace-demo {
  background: #1a1a2e;
  border-radius: 12px;
  overflow: hidden;
  margin: 2rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.demo-header {
  background: #2d2d44;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #3d3d5c;
}

.demo-user, .demo-time {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #00aaff;
  font-weight: 500;
}

.demo-content {
  padding: 1.5rem;
}

.workspace-section {
  margin-bottom: 1.5rem;
}

.workspace-section h5 {
  color: #00aaff;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.action-item {
  background: #2d2d44;
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  border-left: 4px solid #ff6b6b;
}

.high-priority {
  color: #ff6b6b;
}

.action-details {
  flex: 1;
}

.action-details strong {
  color: white;
  display: block;
  margin-bottom: 0.3rem;
}

.action-details p {
  color: #b0b0cc;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.action-meta {
  display: flex;
  gap: 1rem;
  color: #8888aa;
  font-size: 0.85rem;
}

.action-button {
  background: #00aaff;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.action-button:hover {
  background: #0088cc;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.insight-item {
  background: #2d2d44;
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.insight-icon {
  color: #00aaff;
  font-size: 1.2rem;
}

.insight-content strong {
  color: white;
  display: block;
  margin-bottom: 0.2rem;
}

.insight-content p {
  color: #b0b0cc;
  font-size: 0.85rem;
}

/* Real Examples */
.example-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.flow-step {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  border: 2px solid #e0e0e0;
  position: relative;
}

.flow-step::after {
  content: '→';
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  color: #00aaff;
  font-weight: bold;
  font-size: 1.2rem;
}

.flow-step:last-child::after {
  display: none;
}

.step-number {
  width: 40px;
  height: 40px;
  background: #00aaff;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  font-weight: bold;
}

.flow-result {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #e6f7ff 0%, #f0f9ff 100%);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.result-icon {
  color: #00aaff;
  font-size: 1.5rem;
}

/* Scenario Cards */
.scenario-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin: 1.5rem 0;
}

.scenario-header {
  background: linear-gradient(135deg, #00aaff 0%, #0088cc 100%);
  color: white;
  padding: 1rem 1.5rem;
}

.scenario-content {
  padding: 1.5rem;
}

.scenario-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.scenario-step:last-child {
  border-bottom: none;
}

.step-icon {
  color: #00aaff;
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

/* Asset Management Example */
.asset-scenario {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.scenario-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  color: #00aaff;
}

.scenario-timeline {
  position: relative;
  padding-left: 20px;
}

.scenario-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #00aaff;
}

.timeline-event {
  position: relative;
  padding: 0.8rem 0 0.8rem 1.5rem;
}

.timeline-event::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
  border: 2px solid #00aaff;
}

.era-action::before {
  background: #00aaff;
}

.event-time {
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 0.3rem;
}

.scenario-benefit {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #e6f7ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #006699;
}

/* Attendance Flow */
.attendance-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
  flex-wrap: wrap;
  gap: 1rem;
}

.flow-item {
  background: white;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  min-width: 150px;
  border: 2px solid #e0e0e0;
}

.flow-icon {
  font-size: 1.5rem;
  color: #00aaff;
  margin-bottom: 0.5rem;
}

.flow-arrow {
  color: #00aaff;
  font-size: 1.2rem;
}

.attendance-benefits {
  background: #f0f9ff;
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.benefit {
  text-align: center;
  padding: 1rem;
}

.benefit i {
  color: #00aaff;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.benefit span {
  display: block;
  font-size: 0.9rem;
  color: #546e7a;
}

/* Integration Map */
.integration-map {
  position: relative;
  height: 400px;
  margin: 2rem 0;
  background: #f8fafc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-center {
  position: absolute;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #00aaff 0%, #0088cc 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 2;
  box-shadow: 0 5px 20px rgba(0, 170, 255, 0.3);
}

.center-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.map-item {
  position: absolute;
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.map-item:hover {
  transform: scale(1.1);
  z-index: 3;
}

.map-item i {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #00aaff;
}

.map-item span {
  font-size: 0.7rem;
  text-align: center;
  font-weight: 500;
}

/* Position map items */
.banking { top: 20%; left: 10%; }
.government { top: 20%; right: 10%; }
.sales { top: 40%; left: 5%; }
.social { top: 40%; right: 5%; }
.logistics { bottom: 40%; left: 5%; }
.iot { bottom: 40%; right: 5%; }
.communication { bottom: 20%; left: 10%; }
.websites { bottom: 20%; right: 10%; }

/* Integration Grid */
.integration-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.integration-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
}

.integration-header {
  background: #f8fafc;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

.integration-header i {
  color: #00aaff;
  font-size: 1.2rem;
}

.integration-content {
  padding: 1.5rem;
}

.integration-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.integration-content li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0f0f0;
}

.integration-content li:last-child {
  border-bottom: none;
}

/* Implementation Phases */
.implementation-phases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.phase {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
}

.phase-header {
  background: linear-gradient(135deg, #00aaff 0%, #0088cc 100%);
  color: white;
  padding: 1.5rem;
}

.phase-number {
  font-size: 2rem;
  font-weight: bold;
  opacity: 0.8;
}

.phase-duration {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  display: inline-block;
}

.phase-content {
  padding: 1.5rem;
}

.phase-content h4 {
  color: #2c3e50;
  margin: 1rem 0 0.5rem 0;
}

.phase-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.phase-content li {
  padding: 0.3rem 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.phase-content li i {
  color: #00aaff;
  margin-top: 0.2rem;
}

/* Provider Benefits */
.provider-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.benefit-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid #e0e0e0;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: #00aaff;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00aaff 0%, #0088cc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  color: white;
  font-size: 1.5rem;
}

/* Transition Steps */
.transition-steps {
  margin: 2rem 0;
}

.transition-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px dashed #e0e0e0;
}

.transition-step:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.step-marker {
  background: #00aaff;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
}

/* Future Capabilities */
.future-capabilities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.capability-card {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid #e0e0e0;
  transition: transform 0.3s ease;
}

.capability-card:hover {
  transform: translateY(-5px);
  border-color: #00aaff;
}

.capability-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: white;
  font-size: 1.5rem;
}

/* Maturity Model */
.maturity-levels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.level {
  background: white;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  border: 1px solid #e0e0e0;
  transition: transform 0.3s ease;
}

.level:hover {
  transform: translateY(-3px);
}

.level-header {
  margin-bottom: 0.8rem;
}

.level-number {
  font-size: 1.8rem;
  font-weight: bold;
  color: #00aaff;
  margin-bottom: 0.5rem;
}

/* CTA Section */
.era-cta-comprehensive {
  background: linear-gradient(135deg, #0c2c52 0%, #1a4b8c 100%);
  color: white;
  border-radius: 12px;
  margin: 3rem 0;
  padding: 2.5rem;
}

.cta-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.cta-content h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.cta-resources {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.resource-card {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 1rem;
  text-align: center;
  color: white;
  text-decoration: none;
  transition: background 0.3s ease;
}

.resource-card:hover {
  background: rgba(255, 255, 255, 0.25);
}

.resource-card i {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Sidebar Widgets */
.era-assessment {
  background: #f8fafc;
  border-radius: 8px;
  padding: 1.5rem;
}

.assessment-item {
  margin-bottom: 1.5rem;
}

.progress-bar {
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  margin: 0.5rem 0;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00aaff, #0088cc);
  border-radius: 4px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #546e7a;
}

.btn-block {
  width: 100%;
  text-align: center;
}

.era-roi-calculator {
  background: #f8fafc;
  border-radius: 8px;
  padding: 1.5rem;
}

.roi-input {
  margin-bottom: 1rem;
}

.roi-input label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
  color: #2c3e50;
}

.roi-input input,
.roi-input select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 0.9rem;
}

.roi-result {
  margin-top: 1rem;
  padding: 1rem;
  background: white;
  border-radius: 6px;
  border-left: 4px solid #00aaff;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .principles-grid,
  .ai-layers,
  .integration-grid,
  .implementation-phases,
  .provider-benefits,
  .future-capabilities,
  .maturity-levels {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .example-flow {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .flow-step::after {
    display: none;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .insight-grid {
    grid-template-columns: 1fr;
  }
  
  .timeline-container {
    padding-left: 0;
  }
  
  .timeline-container::before {
    display: none;
  }
  
  .timeline-marker {
    position: static;
    margin-bottom: 1rem;
  }
  
  .timeline-item {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .principles-grid,
  .ai-layers,
  .integration-grid,
  .implementation-phases,
  .provider-benefits,
  .future-capabilities,
  .maturity-levels,
  .naming-reasons {
    grid-template-columns: 1fr;
  }
  
  .example-flow {
    grid-template-columns: 1fr;
  }
  
  .attendance-flow {
    flex-direction: column;
  }
  
  .flow-arrow {
    transform: rotate(90deg);
  }
  
  .integration-map {
    height: 300px;
  }
  
  .map-item {
    width: 60px;
    height: 60px;
    font-size: 0.7rem;
  }
  
  .map-item i {
    font-size: 1.2rem;
  }
  
  .map-center {
    width: 80px;
    height: 80px;
  }
  
  .center-icon {
    font-size: 1.5rem;
  }
  
  .transition-step {
    flex-direction: column;
    text-align: center;
  }
  
  .step-marker {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .era-definition-box {
    padding: 1.5rem;
  }
  
  .cta-actions {
    flex-direction: column;
  }
  
  .cta-actions .btn-primary,
  .cta-actions .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .resources-grid {
    grid-template-columns: 1fr;
  }
}