/* Top 10 AI Consultancies UAE Specific Styles */

/* Hero Section */
.ai-hero {
  padding: 5rem 0 3rem;
  background: linear-gradient(135deg, #1a237e 0%, #283593 50%, #3949ab 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.ai-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.ai-hero .breadcrumb {
  color: rgba(255, 255, 255, 0.8);
}

.ai-hero .breadcrumb a {
  color: #82b1ff;
}

.ai-hero .hero-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.ai-hero .hero-text {
  flex: 1;
}

.ai-hero .hero-image {
  flex: 1;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
}

.ai-hero .hero-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.ai-hero .hero-image:hover img {
  transform: scale(1.05);
}

.ai-hero .image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.8rem;
  font-size: 0.85rem;
  text-align: center;
}

.ai-hero .article-category {
  background: #00bcd4;
  color: white;
}

.ai-hero .hero-subtitle {
  font-size: 1.3rem;
  color: #bbdefb;
  margin: 0.5rem 0 1.5rem;
  font-weight: 400;
}

.ai-hero .update-badge {
  background: #4caf50;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.ai-hero-summary {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
  border-left: 4px solid #00bcd4;
}

.ai-hero-summary p {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e3f2fd;
}

.ai-hero-summary p:last-child {
  margin-bottom: 0;
}

/* AI Trends & Insights */
.ai-trends-insights {
  background: #f8f9fa;
  padding: 4rem 0;
}

.trends-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.trends-content h2,
.key-stats h2 {
  color: #1a237e;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.trends-content h2 i {
  color: #00bcd4;
}

.key-stats h2 i {
  color: #4caf50;
}

.shift-comparison {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 2rem 0;
}

.shift-old,
.shift-new {
  flex: 1;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
}

.shift-old {
  background: #ffebee;
  border: 2px solid #ef5350;
}

.shift-new {
  background: #e8f5e9;
  border: 2px solid #4caf50;
}

.shift-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.shift-old .shift-header i {
  color: #ef5350;
}

.shift-new .shift-header i {
  color: #4caf50;
}

.shift-header h4 {
  margin: 0;
  color: #1a237e;
  font-size: 1.2rem;
}

.shift-old ul,
.shift-new ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.shift-old li,
.shift-new li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.shift-old li i {
  color: #ef5350;
}

.shift-new li i {
  color: #4caf50;
}

.shift-arrow {
  font-size: 2rem;
  color: #1a237e;
}

/* Key Stats */
.key-stats {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat {
  text-align: center;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 0.5rem;
  border-top: 4px solid #3949ab;
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #1a237e;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.5rem;
}

/* Methodology Section */
.methodology-section {
  background: white;
  padding: 4rem 0;
}

.methodology-content h2 {
  color: #1a237e;
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.methodology-content h2 i {
  color: #00bcd4;
}

.methodology-content > p {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* AI Criteria Grid */
.ai-criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.criterion-card {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-left: 4px solid #3949ab;
  transition: transform 0.3s ease;
}

.criterion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.criterion-icon {
  width: 60px;
  height: 60px;
  background: #e3f2fd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3949ab;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.criterion-content h4 {
  margin: 0 0 0.5rem;
  color: #1a237e;
  font-size: 1.1rem;
}

.criterion-content p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

.methodology-note {
  background: #e3f2fd;
  border: 1px solid #bbdefb;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-top: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-left: 4px solid #2196f3;
}

.methodology-note i {
  color: #2196f3;
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

.methodology-note h4 {
  margin: 0 0 0.5rem;
  color: #1a237e;
}

.methodology-note p {
  margin: 0;
  color: #666;
}

/* AI Layers Visual */
.ai-layers-visual {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 0.5rem;
  margin: 2rem 0;
}

.ai-layers-visual h3 {
  color: #1a237e;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.ai-layers-visual h3 i {
  color: #00bcd4;
}

.layers-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.layer {
  padding: 1.5rem;
  border-radius: 0.5rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.layer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, transparent 100%);
}

.agent-layer {
  background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
}

.application-layer {
  background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
}

.integration-layer {
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

.communication-layer {
  background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
}

.layer-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.layer-header i {
  font-size: 1.5rem;
}

.layer-header h4 {
  margin: 0;
  font-size: 1.2rem;
}

.layer-content {
  position: relative;
  z-index: 1;
}

.layer-content p {
  margin: 0;
  opacity: 0.9;
}

.layers-note {
  background: white;
  padding: 1rem;
  border-radius: 0.5rem;
  border-left: 4px solid #ff9800;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.layers-note i {
  color: #ff9800;
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.layers-note p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

/* Consultancy Cards (Enhanced for AI) */
.consultancy-card {
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  position: relative;
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.consultancy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.consultancy-card.highlighted {
  border: 2px solid #00bcd4;
  box-shadow: 0 5px 20px rgba(0, 188, 212, 0.15);
}

.rank-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.rank-number {
  width: 50px;
  height: 50px;
  background: #1a237e;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.rank-1 .rank-number { background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%); }
.rank-2 .rank-number { background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%); }
.rank-3 .rank-number { background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%); }
.rank-4 .rank-number { background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%); }
.rank-5 .rank-number { background: linear-gradient(135deg, #607d8b 0%, #455a64 100%); }
.rank-6 .rank-number { background: linear-gradient(135deg, #ff5722 0%, #d84315 100%); }
.rank-7 .rank-number { background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%); }
.rank-8 .rank-number { background: linear-gradient(135deg, #795548 0%, #5d4037 100%); }
.rank-9 .rank-number { background: linear-gradient(135deg, #cddc39 0%, #afb42b 100%); }
.rank-10 .rank-number { background: linear-gradient(135deg, #ffeb3b 0%, #fbc02d 100%); }

.rank-label {
  background: white;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: #1a237e;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.consultancy-content {
  padding: 2rem;
  padding-left: 5rem;
}

.consultancy-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.consultancy-logo {
  width: 70px;
  height: 70px;
  background: #f8f9fa;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00bcd4;
  font-size: 2rem;
  flex-shrink: 0;
}

.consultancy-title h3 {
  margin: 0 0 0.5rem;
  color: #1a237e;
  font-size: 1.8rem;
}

.consultancy-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.specialization,
.market-position {
  font-size: 0.9rem;
  color: #666;
}

.specialization {
  background: #e8f6f3;
  color: #00b894;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  font-weight: 500;
}

.market-position {
  font-style: italic;
}

/* Professionals Lobby Specific Styles */
.unique-approach {
  background: #e3f2fd;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
  border-left: 4px solid #2196f3;
}

.unique-approach h4 {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 0.8rem;
  color: #2196f3;
}

.unique-approach p {
  margin: 0;
  font-size: 1.1rem;
  color: #1565c0;
}

/* AI Methodology */
.ai-methodology {
  margin: 2rem 0;
}

.ai-methodology h4 {
  color: #1a237e;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.ai-methodology h4 i {
  color: #00bcd4;
}

.methodology-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.step {
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-top: 3px solid #82b1ff;
}

.step-number {
  width: 40px;
  height: 40px;
  background: #3949ab;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h5 {
  margin: 0 0 0.5rem;
  color: #1a237e;
  font-size: 1rem;
}

.step-content p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

/* Automation Architecture */
.automation-architecture {
  margin: 2rem 0;
}

.automation-architecture h4 {
  color: #1a237e;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.automation-architecture h4 i {
  color: #4caf50;
}

.automation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.automation-area {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 0.5rem;
  border-top: 4px solid;
}

.automation-area:nth-child(1) { border-top-color: #00bcd4; }
.automation-area:nth-child(2) { border-top-color: #4caf50; }
.automation-area:nth-child(3) { border-top-color: #ff9800; }
.automation-area:nth-child(4) { border-top-color: #9c27b0; }

.area-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.area-header i {
  font-size: 1.5rem;
}

.automation-area:nth-child(1) .area-header i { color: #00bcd4; }
.automation-area:nth-child(2) .area-header i { color: #4caf50; }
.automation-area:nth-child(3) .area-header i { color: #ff9800; }
.automation-area:nth-child(4) .area-header i { color: #9c27b0; }

.area-header h5 {
  margin: 0;
  color: #1a237e;
  font-size: 1.1rem;
}

.automation-area p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

/* Governance Focus */
.governance-focus {
  margin: 2rem 0;
}

.governance-focus h4 {
  color: #1a237e;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.governance-focus h4 i {
  color: #ff9800;
}

.governance-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.point {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.8rem;
  background: white;
  border-radius: 0.5rem;
  border-left: 3px solid #ff9800;
}

.point i {
  color: #4caf50;
  margin-top: 0.2rem;
}

/* Differentiator Box */
.differentiator-box {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}

.differentiator-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.differentiator-header i {
  color: #fdcb6e;
  font-size: 1.2rem;
}

.differentiator-header h4 {
  margin: 0;
  color: #e17055;
}

.differentiator-box p {
  margin: 0;
  font-size: 1.1rem;
  color: #1a237e;
}

/* Partner Examples */
.partner-examples,
.boutique-examples {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}

.partner-examples h5,
.boutique-examples h5 {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1rem;
  color: #1a237e;
}

.partner-examples h5 i,
.boutique-examples h5 i {
  color: #2196f3;
}

.example-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.example-tag {
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  color: #666;
  border: 1px solid #eee;
}

/* Capability Grid */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 0.5rem;
}

.capability {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.capability i {
  color: #00b894;
}

.capability span {
  font-size: 0.9rem;
  color: #1a237e;
}

/* Suitability Box */
.suitability-box {
  background: #e8f6f3;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-top: 1.5rem;
  border-left: 4px solid #00b894;
}

.suitability-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.suitability-header i {
  color: #00b894;
  font-size: 1.2rem;
}

.suitability-header h4 {
  margin: 0;
  color: #00b894;
}

.suitability-box p {
  margin: 0;
  font-size: 1.1rem;
  color: #1a237e;
}

/* Capability Matrix */
.capability-matrix {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.matrix-table thead {
  background: #1a237e;
  color: white;
}

.matrix-table th {
  padding: 1.2rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.matrix-table tbody tr {
  border-bottom: 1px solid #eee;
  transition: background 0.3s ease;
}

.matrix-table tbody tr:hover {
  background: #f8f9fa;
}

.matrix-table tbody tr.highlighted-row {
  background: #e3f2fd;
  border-left: 4px solid #2196f3;
}

.matrix-table td {
  padding: 1rem;
  font-size: 0.9rem;
  color: #1a237e;
}

.matrix-table td:first-child {
  font-weight: 600;
}

.matrix-table td i {
  color: #ffc107;
}

.matrix-legend {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
}

.matrix-legend h4 {
  margin: 0 0 1rem;
  color: #1a237e;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.matrix-legend h4 i {
  color: #ffc107;
}

.legend-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #666;
}

/* FAQ Section */
.faq-container {
  margin: 2rem 0;
}

.faq-item {
  background: white;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question i.fa-question {
  color: #2196f3;
  font-size: 1.2rem;
}

.faq-question h4 {
  margin: 0;
  flex: 1;
  color: #1a237e;
  font-size: 1.1rem;
}

.faq-toggle {
  color: #666;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  display: none;
  border-top: 1px solid #eee;
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease;
}

.faq-answer p,
.faq-answer ul {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

.faq-answer ul {
  padding-left: 1.5rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Final Perspective */
.final-perspective {
  background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
  color: white;
  border-radius: 0.5rem;
  overflow: hidden;
  margin: 3rem 0;
}

.perspective-content {
  padding: 3rem;
}

.perspective-content h2 {
  color: #82b1ff;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.perspective-main p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: #e3f2fd;
}

.key-takeaway {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin: 2rem 0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border-left: 4px solid #82b1ff;
}

.key-takeaway i {
  color: #82b1ff;
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

.key-takeaway h4 {
  margin: 0 0 0.5rem;
  color: #82b1ff;
  font-size: 1.1rem;
}

.key-takeaway p {
  margin: 0;
  color: #e3f2fd;
  font-size: 1.1rem;
}

.disclaimer-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-top: 2rem;
}

.disclaimer-box h4 {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 0.8rem;
  color: #fdcb6e;
}

.disclaimer-box p {
  margin: 0;
  color: #b2bec3;
  font-size: 0.9rem;
  line-height: 1.5;
}

.search-prompts {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-top: 2rem;
}

.search-prompts h4 {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1rem;
  color: #82b1ff;
  font-size: 1.1rem;
}

.prompt-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.prompt-tag {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  color: #e3f2fd;
  transition: background 0.3s ease;
}

.prompt-tag:hover {
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

/* Resources Grid */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.resource-card {
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  padding: 1.5rem;
  gap: 1.5rem;
}

.resource-card:hover {
  transform: translateY(-5px);
}

.resource-icon {
  width: 60px;
  height: 60px;
  background: #e3f2fd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2196f3;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.resource-content h4 {
  margin: 0 0 0.5rem;
  color: #1a237e;
  font-size: 1.1rem;
}

.resource-content p {
  margin: 0;
  color: #666;
  font-size: 0.9rem;
}

/* Sidebar Widgets */
.analysis-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.analysis-info .info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.analysis-info .info-item i {
  color: #2196f3;
  margin-top: 0.2rem;
}

.analysis-info .info-item strong {
  display: block;
  font-size: 0.9rem;
  color: #1a237e;
}

.analysis-info .info-item span {
  font-size: 0.85rem;
  color: #666;
}

.analysis-info .disclaimer {
  font-size: 0.8rem;
  color: #b2bec3;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

/* AI Readiness Check */
.readiness-check {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.readiness-question {
  margin-bottom: 1.5rem;
}

.readiness-question p {
  margin: 0 0 0.8rem;
  font-size: 0.9rem;
  color: #1a237e;
}

.readiness-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.readiness-options .option {
  background: white;
  padding: 0.8rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #eee;
  text-align: center;
}

.readiness-options .option:hover {
  background: #e3f2fd;
  color: #2196f3;
}

.readiness-options .option.selected {
  background: #2196f3;
  color: white;
  border-color: #2196f3;
}

.readiness-result {
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
  border-top: 3px solid #00bcd4;
}

.readiness-result h4 {
  margin: 0 0 1rem;
  color: #1a237e;
  font-size: 1.1rem;
}

.score-display {
  text-align: center;
}

.score-bar {
  width: 100%;
  height: 20px;
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.score-fill {
  height: 100%;
  background: linear-gradient(90deg, #00bcd4 0%, #4caf50 100%);
  width: 0%;
  transition: width 0.5s ease;
}

.score-text {
  font-size: 0.9rem;
  color: #666;
}

/* AI Use Cases */
.usecase-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.usecase {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.usecase:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.usecase-icon {
  width: 40px;
  height: 40px;
  background: #e3f2fd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2196f3;
  font-size: 1rem;
  flex-shrink: 0;
}

.usecase-content h4 {
  margin: 0 0 0.3rem;
  color: #1a237e;
  font-size: 0.95rem;
}

.usecase-content p {
  margin: 0;
  color: #666;
  font-size: 0.85rem;
}

/* Newsletter */
.newsletter-widget {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.newsletter-widget h3 {
  color: #1a237e;
  margin-bottom: 0.5rem;
}

.newsletter-widget p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  font-size: 0.9rem;
}

.newsletter-form button {
  background: #2196f3;
  color: white;
  border: none;
  padding: 0 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #1976d2;
}

.privacy-note {
  font-size: 0.8rem;
  color: #999;
  margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .trends-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .ai-criteria-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .consultancy-content {
    padding-left: 2rem;
    padding-top: 4rem;
  }
  
  .rank-badge {
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
    gap: 0.5rem;
  }
  
  .rank-label {
    padding: 0.5rem 1rem;
  }
  
  .shift-comparison {
    flex-direction: column;
  }
  
  .shift-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {
  .ai-hero .hero-content {
    flex-direction: column;
  }
  
  .ai-hero .hero-image {
    width: 100%;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .consultancy-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .consultancy-logo {
    width: 80px;
    height: 80px;
  }
  
  .consultancy-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .methodology-steps,
  .automation-grid,
  .governance-points {
    grid-template-columns: 1fr;
  }
  
  .capability-grid {
    grid-template-columns: 1fr;
  }
  
  .resources-grid {
    grid-template-columns: 1fr;
  }
  
  .layers-stack {
    gap: 0.5rem;
  }
  
  .layer {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .consultancy-content {
    padding: 1.5rem;
    padding-top: 5rem;
  }
  
  .rank-badge {
    flex-direction: column;
    gap: 0.2rem;
  }
  
  .consultancy-title h3 {
    font-size: 1.5rem;
  }
  
  .example-tags {
    flex-direction: column;
  }
  
  .example-tag {
    width: 100%;
    text-align: center;
  }
  
  .prompt-tags {
    flex-direction: column;
  }
  
  .prompt-tag {
    text-align: center;
  }
  
  .legend-items {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .matrix-table th,
  .matrix-table td {
    padding: 0.8rem;
    font-size: 0.8rem;
  }
  
  .matrix-table td i {
    font-size: 0.8rem;
  }
}