﻿/* ===== ACEAUM WEBSITE - SHARED STYLES ===== */

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --purple-primary: #7c3aed;
  --purple-dark: #5b21b6;
  --black: #000000;
  --gray-dark: #1f2937;
  --gray-medium: #6b7280;
  --gray-light: #f3f4f6;
  --gold: #d4af37;
  --gold-dark: #b8860b;
  --white: #ffffff;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  color: var(--gray-dark);
  overflow-x: hidden;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 66px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 100%;
}

.nav-logo img {
  height: 90%;
  width: auto;
  max-height: 59px;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--gray-dark);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--purple-primary);
}

.nav-cta {
  background: var(--purple-primary);
  color: white;
  padding: 0.42rem 0.84rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.72rem;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-dark);
}

/* ===== FOOTER LOGO ===== */
.footer-logo img {
  height: 80px !important;
  max-width: 200px;
  width: auto !important;
  object-fit: contain;
  margin-bottom: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 14px;
  border-radius: 8px;
}

/* ===== PAGE HERO ===== */
.page-hero {
  margin-top: 80px;
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--black) 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(212, 175, 55, 0.1),
    transparent 70%
  );
  pointer-events: none;
}

.page-hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.page-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ===== SECTIONS ===== */
.section {
  padding: 6rem 2rem;
}

.section.bg-white {
  background: var(--white);
}

.section.bg-gray {
  background: var(--gray-light);
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-medium);
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  display: inline-block;
}

.btn-primary {
  background: var(--purple-primary);
  color: white;
}

.btn-primary:hover {
  background: var(--purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--purple-primary);
  border: 2px solid var(--purple-primary);
}

.btn-secondary:hover {
  background: var(--purple-primary);
  color: white;
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

/* ===== CARDS ===== */
.card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.card:hover {
  border-color: var(--purple-primary);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.15);
  transform: translateY(-8px);
}

.card-icon {
  font-size: 3rem;
  color: var(--purple-primary);
  margin-bottom: 1.5rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
}

.card-description {
  color: var(--gray-medium);
  line-height: 1.7;
}

/* ===== GRID LAYOUTS ===== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* ===== CONTENT BLOCKS ===== */
.content-block {
  margin-bottom: 4rem;
}

.content-block:last-child {
  margin-bottom: 0;
}

.content-block h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
}

.content-block h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
}

.content-block p {
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.content-block ul {
  list-style: none;
  margin-bottom: 1rem;
}

.content-block ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--gray-dark);
}

.content-block ul li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--purple-primary);
  font-weight: bold;
}

/* ===== TABLES ===== */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table th,
.comparison-table td {
  padding: 1.5rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.comparison-table th {
  background: var(--purple-primary);
  color: white;
  font-weight: 700;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover {
  background: var(--gray-light);
}

/* ===== STATS/METRICS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.stat-card {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: var(--purple-primary);
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.15);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--purple-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--gray-medium);
  font-weight: 500;
}

/* ===== CTA SECTIONS ===== */
.cta-section {
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--black) 100%);
  padding: 6rem 2rem;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.15),
    transparent 70%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: #d1d5db;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: white;
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 8px 12px;
  border-radius: 8px;
}

.footer-tagline {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.footer-column h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--purple-primary);
}

.footer-contact {
  color: #9ca3af;
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-contact a {
  color: var(--purple-primary);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-certifications {
  margin-top: 1rem;
  color: #9ca3af;
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #9ca3af;
  font-size: 0.9rem;
}

.footer-legal a {
  color: #9ca3af;
  text-decoration: none;
  margin-left: 2rem;
}

.footer-legal a:hover {
  color: white;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
  }

  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    padding: 2rem;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .page-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-buttons {
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-legal a {
    margin-left: 0;
    margin-right: 1rem;
  }
}

/* ===== BLOG STYLES ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin: 3rem 0;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.15);
}

.blog-card-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(
    135deg,
    var(--purple-primary),
    var(--purple-dark)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 4rem;
}

.blog-card-content {
  padding: 2rem;
}

.blog-meta {
  font-size: 0.85rem;
  color: var(--gray-medium);
  margin-bottom: 1rem;
}

.blog-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-excerpt {
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.blog-read-more {
  color: var(--purple-primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.blog-read-more:hover {
  gap: 1rem;
}

/* ===== BLOG POST PAGE ===== */
.blog-post-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.blog-post-header {
  margin-bottom: 3rem;
}

.blog-post-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.blog-post-meta {
  color: var(--gray-medium);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.blog-post-content {
  color: var(--gray-dark);
  line-height: 1.9;
  font-size: 1.1rem;
}

.blog-post-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
  margin: 3rem 0 1.5rem 0;
}

.blog-post-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  margin: 2rem 0 1rem 0;
}

.blog-post-content p {
  margin-bottom: 1.5rem;
}

.blog-post-content ul,
.blog-post-content ol {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.blog-post-content li {
  margin-bottom: 0.75rem;
}

.blog-post-content strong {
  color: var(--black);
  font-weight: 700;
}

.blog-post-content em {
  color: var(--purple-primary);
}

/* ===== CONTACT FORM ===== */
.contact-form {
  background: white;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--gray-dark);
}

.form-group label .required {
  color: var(--purple-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple-primary);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-submit {
  text-align: center;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

.text-purple {
  color: var(--purple-primary);
}

.text-gold {
  color: var(--gold);
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mt-4 {
  margin-top: 4rem;
}

/* Case Studies Page Styles */
.hero-simple {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
}

.hero-simple .tagline {
  font-size: 12px;
  letter-spacing: 2px;
  color: #d4af37;
  margin-bottom: 15px;
  font-weight: 600;
}

.hero-simple .hero-title {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-simple .hero-subtitle {
  font-size: 20px;
  opacity: 0.9;
  max-width: 700px;
}

.filter-tabs {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 10px 24px;
  border: 2px solid #7c3aed;
  background: white;
  color: #7c3aed;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.filter-tab:hover,
.filter-tab.active {
  background: #7c3aed;
  color: white;
}

.case-study-featured {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  color: white;
  padding: 50px;
  border-radius: 12px;
  position: relative;
}

.featured-badge {
  display: inline-block;
  background: #d4af37;
  color: #1a1a1a;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.case-category {
  font-size: 12px;
  letter-spacing: 2px;
  color: #d4af37;
  margin-bottom: 15px;
  font-weight: 600;
}

.featured-solution h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.solution-list {
  list-style: none;
  padding-left: 0;
}

.solution-list li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
}

.solution-list li:before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: bold;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 35px;
}

.metric-box {
  text-align: center;
}

.metric-number {
  font-size: 42px;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 8px;
}

.metric-label {
  font-size: 14px;
  opacity: 0.9;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.case-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  border-left: 4px solid #7c3aed;
}

.case-card:hover {
  box-shadow: 0 5px 20px rgba(124, 58, 237, 0.15);
  transform: translateY(-3px);
}

.case-title {
  font-size: 20px;
  margin: 15px 0;
  color: #1a1a1a;
}

.case-desc {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.case-challenge,
.case-solution {
  margin: 20px 0;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 8px;
}

.case-challenge strong,
.case-solution strong {
  color: #7c3aed;
}

.case-solution ul {
  margin-top: 10px;
  padding-left: 20px;
}

.case-metrics {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.metric-inline {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.metric-value {
  font-size: 24px;
  font-weight: 700;
  color: #7c3aed;
}

.metric-text {
  font-size: 12px;
  color: #666;
  text-align: center;
}

.case-footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #888;
}

/* Insights Page Styles */
.featured-article {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.featured-label {
  display: inline-block;
  background: #7c3aed;
  color: white;
  padding: 6px 16px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.featured-article-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}

.article-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.article-meta span {
  font-size: 12px;
  color: #888;
}

.article-category {
  color: #7c3aed !important;
  font-weight: 600;
}

.featured-article-title {
  font-size: 32px;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.featured-article-excerpt {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.article-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
}

.article-card:hover {
  box-shadow: 0 5px 20px rgba(124, 58, 237, 0.15);
  transform: translateY(-3px);
}

.article-card-header,
.article-card-body,
.article-card-footer {
  padding: 25px;
}

.article-card-body {
  padding-top: 0;
}

.article-card-title {
  font-size: 20px;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.article-card-excerpt {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.article-highlights {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
}

.highlight-item {
  margin-bottom: 12px;
  font-size: 14px;
  color: #666;
}

.highlight-item:last-child {
  margin-bottom: 0;
}

.highlight-item strong {
  color: #7c3aed;
}

.article-stats {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: #888;
  margin-top: 15px;
}

.article-card-footer {
  padding-top: 0;
}

.article-link {
  color: #7c3aed;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.article-link:hover {
  color: #5b21b6;
}

.newsletter-box {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  color: white;
  padding: 50px;
  border-radius: 12px;
  text-align: center;
}

.newsletter-title {
  font-size: 32px;
  margin-bottom: 15px;
}

.newsletter-subtitle {
  font-size: 16px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
}

/* Contact Page Styles */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
}

.contact-info-card,
.contact-form-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.contact-info-title,
.form-title {
  font-size: 28px;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.contact-info-desc,
.form-subtitle {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-methods {
  margin-bottom: 40px;
}

.contact-method {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 15px;
}

.contact-icon {
  color: #7c3aed;
  flex-shrink: 0;
}

.contact-details {
  flex: 1;
}

.contact-label {
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.contact-value {
  font-size: 16px;
  color: #1a1a1a;
  font-weight: 600;
  text-decoration: none;
}

.contact-value:hover {
  color: #7c3aed;
}

.global-presence {
  margin-bottom: 40px;
}

.presence-title {
  font-size: 18px;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.presence-location {
  padding: 15px;
  background: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 15px;
}

.presence-region {
  font-weight: 600;
  margin-bottom: 5px;
  color: #1a1a1a;
}

.presence-desc {
  font-size: 14px;
  color: #666;
}

.contact-cta-box {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  color: white;
  padding: 25px;
  border-radius: 8px;
}

.cta-box-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.cta-box-desc {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.form-input,
.form-textarea {
  padding: 12px 16px;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #7c3aed;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: start;
  gap: 10px;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
}

.checkbox-label {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.form-note {
  font-size: 12px;
  color: #888;
  text-align: center;
  margin-top: 10px;
}

.btn-full {
  width: 100%;
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.quick-link-card {
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s;
}

.quick-link-card:hover {
  box-shadow: 0 5px 20px rgba(124, 58, 237, 0.15);
  transform: translateY(-3px);
}

.quick-link-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.quick-link-title {
  font-size: 20px;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.quick-link-desc {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.quick-link-btn {
  color: #7c3aed;
  font-weight: 600;
  text-decoration: none;
}

.quick-link-btn:hover {
  color: #5b21b6;
}

/* Blog Article Styles */
.blog-article {
  background: white;
}

.article-header {
  padding: 120px 0 50px;
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--black) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.article-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(212, 175, 55, 0.1),
    transparent 70%
  );
  pointer-events: none;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.back-link {
  color: var(--gold);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 20px;
  display: inline-block;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #fff;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  flex-wrap: wrap;
}

.article-category {
  background: var(--gold);
  color: var(--black);
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1px;
}

.article-date,
.article-read-time {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.article-title {
  font-size: 42px;
  margin: 20px 0;
  line-height: 1.2;
  font-weight: 800;
}

.article-subtitle {
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.6;
}

.article-content {
  padding: 60px 0;
}

.content-section {
  margin-bottom: 50px;
}

.content-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--gray-dark);
}

.content-section h3 {
  font-size: 24px;
  margin: 30px 0 15px;
  color: var(--gray-dark);
}

.content-section p {
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

.content-section ul,
.content-section ol {
  margin: 15px 0;
  padding-left: 30px;
  color: #444;
}

.content-section li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.mistakes-list {
  display: grid;
  gap: 20px;
  margin: 30px 0;
}

.mistake-item {
  background: white;
  border: 1px solid #e5e5e5;
  border-left: 4px solid #e74c3c;
  border-radius: 8px;
  padding: 25px;
}

.mistake-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--gray-dark);
}

.mistake-item p {
  margin: 0 0 8px;
  line-height: 1.6;
  color: #666;
}

.quote-box {
  background: #f9f9f9;
  border-left: 4px solid #7c3aed;
  padding: 25px;
  margin: 30px 0;
  font-style: italic;
  font-size: 18px;
}

.quote-box cite {
  display: block;
  margin-top: 15px;
  font-style: normal;
  font-size: 14px;
  color: #888;
}

.content-list {
  margin: 20px 0;
  padding-left: 30px;
  color: #444;
}

.content-list li {
  margin-bottom: 15px;
  line-height: 1.7;
}

.framework-box {
  background: white;
  border: 2px solid #7c3aed;
  border-radius: 12px;
  padding: 30px;
  margin: 30px 0;
}

.framework-title {
  font-size: 22px;
  margin-bottom: 15px;
  color: #7c3aed;
}

.framework-content ul,
.framework-content ol {
  margin: 15px 0;
  padding-left: 30px;
  color: #444;
}

.framework-content li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.framework-insight {
  background: #fff5e6;
  border-left: 4px solid #d4af37;
  padding: 20px;
  margin-top: 20px;
  border-radius: 0 8px 8px 0;
}

.case-study-box {
  background: #f9f9f9;
  padding: 35px;
  border-radius: 12px;
  margin: 30px 0;
}

.case-study-box h3 {
  font-size: 20px;
  margin: 25px 0 15px;
  color: #7c3aed;
}

.case-study-box h3:first-child {
  margin-top: 0;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  margin: 25px 0;
}

.result-item {
  text-align: center;
  background: white;
  padding: 25px;
  border-radius: 8px;
}

.result-number {
  font-size: 36px;
  font-weight: 700;
  color: #7c3aed;
  margin-bottom: 8px;
}

.result-label {
  font-size: 14px;
  color: #666;
}

.safety-grid,
.principles-list {
  display: grid;
  gap: 20px;
  margin: 30px 0;
}

.safety-item,
.principle-item {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 25px;
}

.safety-item h4,
.principle-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #7c3aed;
}

.safety-item p,
.principle-item p {
  margin: 0;
  line-height: 1.6;
  color: #666;
}

.action-list {
  counter-reset: action-counter;
  list-style: none;
  padding-left: 0;
}

.action-list li {
  counter-increment: action-counter;
  position: relative;
  padding-left: 50px;
  margin-bottom: 20px;
  line-height: 1.7;
}

.action-list li:before {
  content: counter(action-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  height: 35px;
  background: #7c3aed;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.cta-box-article {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  color: white;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  margin: 50px 0;
}

.cta-box-article h2 {
  color: white;
  margin-bottom: 15px;
}

.cta-box-article p {
  color: white;
  opacity: 0.9;
  margin-bottom: 25px;
}

.article-footer-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  gap: 20px;
}

.comparison-table {
  overflow-x: auto;
  margin: 30px 0;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

.comparison-table th,
.comparison-table td {
  padding: 15px;
  text-align: left;
  border: 1px solid #e5e5e5;
}

.comparison-table th {
  background: #7c3aed;
  color: white;
  font-weight: 600;
}

.comparison-table td:first-child {
  font-weight: 600;
  background: #f9f9f9;
}

.stats-grid-article {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin: 30px 0;
}

.stat-card-article {
  background: white;
  border: 2px solid #7c3aed;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
}

.stat-number-article {
  font-size: 48px;
  font-weight: 700;
  color: #7c3aed;
  margin-bottom: 10px;
}

.stat-label-article {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.stat-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.city-profiles {
  display: grid;
  gap: 20px;
  margin: 20px 0;
}

.city-profile {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 20px;
}

.city-profile h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.city-profile ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.city-profile li {
  padding: 5px 0;
  font-size: 14px;
  color: #666;
}

.timeline-box {
  margin: 30px 0;
}

.timeline-item {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  position: relative;
}

.timeline-item:before {
  content: "";
  position: absolute;
  left: 80px;
  top: 40px;
  bottom: -30px;
  width: 2px;
  background: #e5e5e5;
}

.timeline-item:last-child:before {
  display: none;
}

.timeline-marker {
  flex-shrink: 0;
  width: 120px;
  background: #7c3aed;
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
}

.timeline-content {
  flex: 1;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
}

.timeline-content h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.timeline-content ul {
  margin: 0;
  padding-left: 20px;
}

.timeline-content li {
  margin-bottom: 8px;
  color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-simple .hero-title {
    font-size: 32px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .featured-article-content {
    grid-template-columns: 1fr;
  }

  .case-studies-grid,
  .articles-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .article-header {
    padding: 100px 0 40px;
  }

  .article-title {
    font-size: 28px;
  }

  .article-meta {
    gap: 12px;
  }

  .article-footer-nav {
    flex-direction: column;
  }

  .comparison-table {
    font-size: 14px;
  }

  .stats-grid-article {
    grid-template-columns: 1fr 1fr;
  }

  .results-grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* ===== ORCHESTRATION ENGINE SECTION ===== */
.orchestration-engine {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.orchestration-engine .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.orchestration-engine .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gray-dark);
  margin-bottom: 1rem;
}

.orchestration-engine .section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-medium);
  max-width: 600px;
  margin: 0 auto;
}

/* Orchestration Cards */
.orchestration-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto 4rem;
}

.orchestration-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.orchestration-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.orchestration-card.featured-card {
  background: linear-gradient(135deg, var(--purple-primary) 0%, var(--purple-dark) 100%);
  color: white;
  border: none;
}

.orchestration-card.featured-card .orchestration-title,
.orchestration-card.featured-card .orchestration-description {
  color: white;
}

.orchestration-card.featured-card .orchestration-bullets li {
  color: rgba(255, 255, 255, 0.9);
}

.orchestration-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.orchestration-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gray-dark);
  margin-bottom: 0.5rem;
}

.orchestration-description {
  font-size: 0.95rem;
  color: var(--gray-medium);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.orchestration-bullets {
  list-style: none;
  padding: 0;
}

.orchestration-bullets li {
  font-size: 0.95rem;
  color: var(--gray-dark);
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.orchestration-bullets li:before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--purple-primary);
  font-weight: bold;
}

.orchestration-card.featured-card .orchestration-bullets li:before {
  color: var(--gold);
}

/* Orchestration Diagram */
.orchestration-diagram {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 3rem 2rem;
  background: white;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.diagram-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.diagram-layer {
  width: 100%;
  max-width: 600px;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.diagram-layer.top-layer {
  background: linear-gradient(135deg, #e0e7ff 0%, #f0e7ff 100%);
  border: 2px solid var(--purple-primary);
}

.diagram-layer.center-layer {
  background: linear-gradient(135deg, var(--purple-primary) 0%, var(--purple-dark) 100%);
  color: white;
  border: none;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.diagram-layer.bottom-layer {
  background: linear-gradient(135deg, #f0fdf4 0%, #e0f2fe 100%);
  border: 2px solid #10b981;
}

.layer-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

.diagram-layer.center-layer .layer-label {
  opacity: 0.9;
}

.layer-content {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.layer-details {
  font-size: 0.9rem;
  opacity: 0.8;
}

.diagram-arrow {
  font-size: 1.5rem;
  color: var(--purple-primary);
  font-weight: bold;
}

/* Technology Grid in Diagram */
.layer-tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.tech-item {
  background: white;
  border: 1px solid #10b981;
  border-radius: 8px;
  padding: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #10b981;
  text-align: center;
  transition: all 0.3s ease;
}

.tech-item:hover {
  background: #10b981;
  color: white;
}

/* Orchestration Benefits */
.orchestration-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 4rem auto 0;
}

.benefit-item {
  background: white;
  border-left: 4px solid var(--purple-primary);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.benefit-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-dark);
  margin-bottom: 0.5rem;
}

.benefit-item p {
  font-size: 0.95rem;
  color: var(--gray-medium);
}

/* Responsive Design for Orchestration */
@media (max-width: 768px) {
  .orchestration-engine {
    padding: 4rem 1rem;
  }

  .orchestration-engine .section-title {
    font-size: 1.8rem;
  }

  .orchestration-cards {
    gap: 1.5rem;
  }

  .orchestration-card {
    padding: 1.5rem;
  }

  .diagram-layer {
    padding: 1.5rem;
  }

  .layer-tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .orchestration-benefits {
    gap: 1.5rem;
  }
}



/* ===== FINAL HEADER FIX: fixed header, maximum logo fill, Accelerators label ===== */
.navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 9999 !important;
}

.nav-container {
  height: 66px !important;
  min-height: 66px !important;
  padding: 0 0.9rem !important;
  align-items: center !important;
}

.nav-logo {
  height: 66px !important;
  min-height: 66px !important;
  display: flex !important;
  align-items: center !important;
}

.nav-logo a {
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
}

.nav-logo img {
  height: 100% !important;
  max-height: none !important;
  width: auto !important;
  object-fit: contain !important;
  object-position: left center !important;
  display: block !important;
}

body {
  padding-top: 66px !important;
}

@media (max-width: 980px) {
  .nav-container,
  .nav-logo {
    height: 62px !important;
    min-height: 62px !important;
  }

  .nav-logo img {
    height: 100% !important;
  }

  body {
    padding-top: 62px !important;
  }
}



/* ===== FINAL HERO OFFSET FIX: prevent fixed header overlap ===== */
:root {
  --aceaum-fixed-header-height: 66px;
}

/* Keep header fixed */
.navbar,
nav.navbar,
#navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 99999 !important;
}

/* Reserve exact space for the fixed header */
body {
  padding-top: var(--aceaum-fixed-header-height) !important;
}

/* Every first hero/page banner must start after the fixed header */
.hero,
.page-hero,
.wwd-hero,
.about-v2-hero,
.solutions-hero,
.case-hero,
.insights-hero,
.insights-hero-redesigned,
.contact-hero,
section[class*="hero"] {
  margin-top: 0 !important;
  padding-top: calc(0.6rem + var(--aceaum-fixed-header-height)) !important;
  scroll-margin-top: calc(var(--aceaum-fixed-header-height) + 12px) !important;
}

/* Remove accidental negative offsets on common inner wrappers */
.hero-content,
.hero-inner,
.section-container,
.wwd-hero-inner,
.insights-hero-grid,
.about-v2-hero-grid,
.page-hero .section-container {
  position: relative !important;
  top: auto !important;
}

/* Responsive header offset */
@media (max-width: 980px) {
  :root {
    --aceaum-fixed-header-height: 62px;
  }

  body {
    padding-top: var(--aceaum-fixed-header-height) !important;
  }

  .hero,
  .page-hero,
  .wwd-hero,
  .about-v2-hero,
  .solutions-hero,
  .case-hero,
  .insights-hero,
  .insights-hero-redesigned,
  .contact-hero,
  section[class*="hero"] {
    padding-top: calc(0.5rem + var(--aceaum-fixed-header-height)) !important;
  }
}
/* ===== HEADER BALANCE FIX: 90% logo height and 5% larger nav links ===== */
.nav-logo {
  align-items: center !important;
}

.nav-logo a {
  height: 90% !important;
  display: flex !important;
  align-items: center !important;
}

.nav-logo img,
.nav-logo a img {
  height: 100% !important;
  max-height: none !important;
  width: auto !important;
  object-fit: contain !important;
}

.nav-menu a:not(.nav-cta) {
  font-size: 0.945rem !important;
}

@media (max-width: 980px) {
  .nav-logo a {
    height: 90% !important;
  }
}
