/* Top 10 ERP Consultancies UAE Specific Styles */

/* Hero Section */
.erp-hero {
  padding: 5rem 0 3rem;
  background: linear-gradient(135deg, #0c2461 0%, #1e3799 50%, #4a69bd 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.erp-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%);
}

.erp-hero .breadcrumb {
  color: rgba(255, 255, 255, 0.8);
}

.erp-hero .breadcrumb a {
  color: #74b9ff;
}

.erp-hero .hero-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.erp-hero .hero-text {
  flex: 1;
}

.erp-hero .hero-image {
  flex: 1;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
}

.erp-hero .hero-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.erp-hero .hero-image:hover img {
  transform: scale(1.05);
}

.erp-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;
}

.erp-hero .article-category {
  background: #e17055;
  color: white;
}

.erp-hero .hero-subtitle {
  font-size: 1.3rem;
  color: #dfe6e9;
  margin: 0.5rem 0 1.5rem;
  font-weight: 400;
}

.erp-hero .update-badge {
  background: #00b894;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.erp-hero .hero-summary {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
  border-left: 4px solid #74b9ff;
}

.erp-hero .hero-summary p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Methodology Section */
.methodology-section {
  background: #f8f9fa;
  padding: 4rem 0;
}

.methodology-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.methodology-content h2,
.key-insights h2 {
  color: #2d3436;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.methodology-content h2 i {
  color: #0984e3;
}

.key-insights h2 i {
  color: #00b894;
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.criterion {
  background: white;
  padding: 1rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 3px solid #0984e3;
}

.criterion i {
  color: #0984e3;
  font-size: 1.2rem;
}

.criterion span {
  font-size: 0.9rem;
  font-weight: 500;
}

.methodology-note {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-left: 4px solid #fdcb6e;
  padding: 1.5rem;
  border-radius: 0 0.5rem 0.5rem 0;
  margin-top: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.methodology-note i {
  color: #e17055;
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

.methodology-note p {
  margin: 0;
  font-size: 1rem;
}

/* Key Insights */
.key-insights {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: var(--shadow);
}

.insights-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.insight {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.insight:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.insight-icon {
  width: 50px;
  height: 50px;
  background: #e8f6f3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00b894;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.insight-content h4 {
  margin: 0 0 0.5rem;
  color: #2d3436;
  font-size: 1.1rem;
}

.insight-content p {
  margin: 0;
  color: #636e72;
  font-size: 0.9rem;
}

/* Article Intro */
.article-intro {
  padding: 2rem 0;
}

.article-intro h2 {
  color: #2d3436;
  margin-bottom: 1.5rem;
}

.article-intro p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #2d3436;
  margin-bottom: 2rem;
}

.evolution-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin: 2rem 0;
}

.evolution-timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 2px;
  background: #ddd;
  z-index: 1;
}

.timeline-phase {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 1rem;
}

.timeline-phase::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: #b2bec3;
  border-radius: 50%;
  z-index: 2;
}

.timeline-phase.current::before {
  background: #0984e3;
  box-shadow: 0 0 0 4px rgba(9, 132, 227, 0.2);
}

.phase-year {
  font-weight: 700;
  color: #2d3436;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.phase-content {
  background: white;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-top: 1rem;
  border-top: 3px solid #b2bec3;
}

.timeline-phase.current .phase-content {
  border-top-color: #0984e3;
}

.phase-content h4 {
  margin: 0 0 0.5rem;
  color: #2d3436;
  font-size: 1rem;
}

.phase-content p {
  margin: 0;
  color: #636e72;
  font-size: 0.9rem;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #eee;
}

.section-header h2 {
  color: #2d3436;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.section-header h2 i {
  color: #e17055;
}

.section-subtitle {
  color: #636e72;
  font-size: 1.1rem;
  font-style: italic;
}

/* Consultancy Cards */
.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 #0984e3;
  box-shadow: 0 5px 20px rgba(9, 132, 227, 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: #2d3436;
  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, #fdcb6e 0%, #e17055 100%); }
.rank-2 .rank-number { background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%); }
.rank-3 .rank-number { background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%); }
.rank-4 .rank-number { background: linear-gradient(135deg, #55efc4 0%, #00b894 100%); }
.rank-5 .rank-number { background: linear-gradient(135deg, #fab1a0 0%, #e17055 100%); }
.rank-6 .rank-number { background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%); }
.rank-7 .rank-number { background: linear-gradient(135deg, #dfe6e9 0%, #b2bec3 100%); }
.rank-8 .rank-number { background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%); }
.rank-9 .rank-number { background: linear-gradient(135deg, #81ecec 0%, #00cec9 100%); }
.rank-10 .rank-number { background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%); }

.rank-label {
  background: white;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: #2d3436;
  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: #0984e3;
  font-size: 2rem;
  flex-shrink: 0;
}

.consultancy-title h3 {
  margin: 0 0 0.5rem;
  color: #2d3436;
  font-size: 1.8rem;
}

.consultancy-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.specialization,
.market-position {
  font-size: 0.9rem;
  color: #636e72;
}

.specialization {
  background: #e8f6f3;
  color: #00b894;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  font-weight: 500;
}

.market-position {
  font-style: italic;
}

.consultancy-description {
  margin-bottom: 1.5rem;
}

.consultancy-description p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #2d3436;
}

/* Unique Approach for Professionals Lobby */
.unique-approach {
  background: #e3f2fd;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
  border-left: 4px solid #0984e3;
}

.unique-approach h4 {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 0.8rem;
  color: #0984e3;
}

.unique-approach p {
  margin: 0;
  font-size: 1.1rem;
  color: #1565c0;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.approach-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 #74b9ff;
}

.step-number {
  width: 40px;
  height: 40px;
  background: #0984e3;
  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: #2d3436;
  font-size: 1rem;
}

.step-content p {
  margin: 0;
  color: #636e72;
  font-size: 0.9rem;
}

.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: #2d3436;
}

/* 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: #2d3436;
}

/* 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: #2d3436;
}

/* Boutique Examples */
.boutique-examples {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}

.boutique-examples h5 {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1rem;
  color: #2d3436;
}

.boutique-examples h5 i {
  color: #6c5ce7;
}

.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: #636e72;
  border: 1px solid #eee;
}

/* Comparison Table */
.comparison-table-container {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.comparison-table thead {
  background: #0c2461;
  color: white;
}

.comparison-table th {
  padding: 1.2rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comparison-table tbody tr {
  border-bottom: 1px solid #eee;
  transition: background 0.3s ease;
}

.comparison-table tbody tr:hover {
  background: #f8f9fa;
}

.comparison-table tbody tr.highlighted-row {
  background: #e3f2fd;
  border-left: 4px solid #0984e3;
}

.comparison-table td {
  padding: 1rem;
  font-size: 0.9rem;
  color: #2d3436;
}

.comparison-table td:first-child {
  font-weight: 600;
  color: #0c2461;
}

.comparison-table td:nth-child(2) {
  color: #636e72;
}

.comparison-table td:nth-child(4),
.comparison-table td:nth-child(5) {
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.comparison-table td:nth-child(4) {
  color: #0984e3;
}

.comparison-table td:nth-child(5) {
  color: #00b894;
}

.table-note {
  background: #fff3cd;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: #636e72;
}

.table-note i {
  color: #fdcb6e;
  margin-top: 0.2rem;
}

/* 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: #0984e3;
  font-size: 1.2rem;
}

.faq-question h4 {
  margin: 0;
  flex: 1;
  color: #2d3436;
  font-size: 1.1rem;
}

.faq-toggle {
  color: #636e72;
  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: #636e72;
  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, #0c2461 0%, #1e3799 100%);
  color: white;
  border-radius: 0.5rem;
  overflow: hidden;
  margin: 3rem 0;
}

.perspective-content {
  padding: 3rem;
}

.perspective-content h2 {
  color: #74b9ff;
  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: #dfe6e9;
}

.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 #74b9ff;
}

.key-takeaway i {
  color: #74b9ff;
  font-size: 1.5rem;
  margin-top: 0.2rem;
}

.key-takeaway h4 {
  margin: 0 0 0.5rem;
  color: #74b9ff;
  font-size: 1.1rem;
}

.key-takeaway p {
  margin: 0;
  color: #dfe6e9;
  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: #74b9ff;
  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: #dfe6e9;
  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: #e8f6f3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00b894;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.resource-content h4 {
  margin: 0 0 0.5rem;
  color: #2d3436;
  font-size: 1.1rem;
}

.resource-content p {
  margin: 0;
  color: #636e72;
  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: #0984e3;
  margin-top: 0.2rem;
}

.analysis-info .info-item strong {
  display: block;
  font-size: 0.9rem;
  color: #2d3436;
}

.analysis-info .info-item span {
  font-size: 0.85rem;
  color: #636e72;
}

.analysis-info .disclaimer {
  font-size: 0.8rem;
  color: #b2bec3;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

/* Selection Helper */
.selection-helper {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.selection-question {
  margin-bottom: 1.5rem;
}

.selection-question p {
  margin: 0 0 0.8rem;
  font-size: 0.9rem;
  color: #2d3436;
}

.selection-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.selection-options .option {
  background: white;
  padding: 0.8rem;
  border-radius: 0.5rem;
  font-size: 0.85rem;
  color: #636e72;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid #eee;
  text-align: center;
}

.selection-options .option:hover {
  background: #e8f6f3;
  color: #00b894;
}

.selection-options .option.selected {
  background: #0984e3;
  color: white;
  border-color: #0984e3;
}

.selection-result {
  background: white;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
  border-top: 3px solid #0984e3;
}

.selection-result h4 {
  margin: 0 0 1rem;
  color: #2d3436;
  font-size: 1.1rem;
}

.match-list {
  min-height: 60px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.match-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background: #f8f9fa;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  color: #2d3436;
}

.match-item .rank {
  width: 30px;
  height: 30px;
  background: #0984e3;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Download Widget */
.download-widget {
  background: #e8f6f3;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.download-widget i {
  font-size: 2rem;
  color: #00b894;
}

.download-content h4 {
  margin: 0 0 0.3rem;
  color: #2d3436;
  font-size: 1.1rem;
}

.download-content p {
  margin: 0;
  color: #636e72;
  font-size: 0.9rem;
}

.email-subscribe {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 0.5rem;
}

.email-subscribe p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: #636e72;
}

.subscribe-form {
  display: flex;
  gap: 0.5rem;
}

.subscribe-form input {
  flex: 1;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  font-size: 0.9rem;
}

.subscribe-form button {
  background: #0984e3;
  color: white;
  border: none;
  width: 45px;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.subscribe-form button:hover {
  background: #0870c1;
}

/* Trends List */
.trends-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trend {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.trend:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.trend-icon {
  width: 40px;
  height: 40px;
  background: #e8f6f3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00b894;
  font-size: 1rem;
  flex-shrink: 0;
}

.trend-content h4 {
  margin: 0 0 0.3rem;
  color: #2d3436;
  font-size: 0.95rem;
}

.trend-content p {
  margin: 0;
  color: #636e72;
  font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .methodology-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .evolution-timeline {
    flex-direction: column;
    gap: 2rem;
  }
  
  .evolution-timeline::before {
    display: none;
  }
  
  .timeline-phase {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .timeline-phase::before {
    position: static;
    transform: none;
    flex-shrink: 0;
  }
  
  .phase-year {
    width: 80px;
    flex-shrink: 0;
    margin-bottom: 0;
  }
  
  .phase-content {
    margin-top: 0;
    flex: 1;
  }
  
  .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;
  }
}

@media (max-width: 768px) {
  .erp-hero .hero-content {
    flex-direction: column;
  }
  
  .erp-hero .hero-image {
    width: 100%;
  }
  
  .criteria-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;
  }
  
  .approach-grid {
    grid-template-columns: 1fr;
  }
  
  .capability-grid {
    grid-template-columns: 1fr;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 0.8rem;
    font-size: 0.8rem;
  }
  
  .resources-grid {
    grid-template-columns: 1fr;
  }
}

@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;
  }
  
  .selection-options {
    flex-direction: column;
  }
}