/* ========================================
   DIGITAL EDIFY ACOE - BRAND ALIGNED
   ======================================== */

.acoe-page {
  --acoe-blue: #0b57d0;
  --acoe-dark: rgba(15, 23, 42, 1);
  --acoe-gray: #f8fafc;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.acoe-page main {
  background: #ffffff;
}

/* Use existing site gradient classes */
.acoe-page .ltext.bluetextlinea,
.acoe-page .ltext.voilettextlinear {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ========================================
   HERO SECTION
   ======================================== */

.acoe-page .herosection.homepage {
  position: relative;
  padding: 120px 0 120px;
  background: 
    radial-gradient(ellipse 80% 50% at 50% 20%, rgba(11, 87, 208, 0.08), transparent),
    linear-gradient(180deg, rgba(248, 250, 252, 0.5) 0%, rgba(255, 255, 255, 1) 100%);
  overflow: hidden;
}

.acoe-page .herosection.homepage::before,
.acoe-page .herosection.homepage::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

.acoe-page .herosection.homepage::before {
  top: -300px;
  left: -200px;
  background: radial-gradient(circle, rgba(11, 87, 208, 0.4), transparent 70%);
}

.acoe-page .herosection.homepage::after {
  bottom: -300px;
  right: -200px;
  background: radial-gradient(circle, rgba(11, 87, 208, 0.2), transparent 70%);
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 50px) scale(1.1); }
}

.acoe-page .herosection .container {
  position: relative;
  z-index: 1;
}

/* Top badge */
.acoe-page .acoe-hero-top-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(11, 87, 208, 0.1);
  border: 1px solid rgba(11, 87, 208, 0.2);
  border-radius: 999px;
  color: var(--acoe-blue);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 2rem;
  animation: fadeInDown 0.6s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.acoe-page .acoe-hero-top-badge i {
  color: var(--acoe-blue);
  font-size: 1.125rem;
}

/* H1 inherits from site CSS */
.acoe-page .herosection h1 {
  animation: fadeInUp 0.6s ease 0.2s both;
  line-height: 1.15;
}

.acoe-page .herosection h1 span {
  display: inline-block;
  line-height: 1.15;
}

.acoe-page .herosection h1 br {
  display: block;
  content: "";
  margin: 0;
  line-height: 0.5;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero lead text */
.acoe-page .acoe-hero-lead {
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 950px;
  margin: 1.5rem auto;
  color: rgba(15, 23, 42, 0.75);
  animation: fadeInUp 0.6s ease 0.3s both;
}

/* Button row animation */
.acoe-page .herosection .btnrow {
  animation: fadeInUp 0.6s ease 0.4s both;
}

/* Hero stats */
.acoe-page .acoe-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 4rem auto 3rem;
  animation: fadeInUp 0.6s ease 0.5s both;
}

.acoe-page .acoe-hero-stat {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.acoe-page .acoe-hero-stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-color: rgba(11, 87, 208, 0.2);
}

.acoe-page .acoe-hero-stat-value {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--acoe-blue) 0%, #1e40af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.acoe-page .acoe-hero-stat-label {
  font-size: 0.875rem;
  color: rgba(15, 23, 42, 0.65);
  line-height: 1.4;
}

/* Hero pillars */
.acoe-page .acoe-hero-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
  animation: fadeInUp 0.6s ease 0.6s both;
}

.acoe-page .acoe-hero-pillar {
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.acoe-page .acoe-hero-pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(11, 87, 208, 0.2);
}

.acoe-page .acoe-hero-pillar-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  border-radius: 16px;
  background: rgba(11, 87, 208, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.acoe-page .acoe-hero-pillar:hover .acoe-hero-pillar-icon {
  background: var(--acoe-blue);
  transform: scale(1.1);
}

.acoe-page .acoe-hero-pillar-icon i {
  font-size: 1.75rem;
  color: var(--acoe-blue);
  transition: all 0.3s ease;
}

.acoe-page .acoe-hero-pillar:hover .acoe-hero-pillar-icon i {
  color: white;
}

.acoe-page .acoe-hero-pillar strong {
  display: block;
  font-weight: 800;
  font-size: 1.125rem;
  color: rgba(15, 23, 42, 0.95);
  margin-bottom: 0.5rem;
}

.acoe-page .acoe-hero-pillar span {
  display: block;
  font-size: 0.875rem;
  color: rgba(15, 23, 42, 0.65);
  line-height: 1.4;
}

/* Hero trust line */
.acoe-page .acoe-hero-trust {
  padding-top: 2rem;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  animation: fadeIn 0.6s ease 0.7s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.acoe-page .acoe-hero-trust p {
  font-size: 0.95rem;
  color: rgba(15, 23, 42, 0.6);
  margin: 0;
}

.acoe-page .acoe-hero-trust strong {
  color: var(--acoe-blue);
  font-weight: 700;
}

/* ========================================
   BUTTONS - Use site's existing classes
   ======================================== */

.acoe-page .btnrow {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Enhance existing button styles for ACoE */
.acoe-page .btn {
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.acoe-page .btn:hover {
  transform: translateY(-2px);
}

/* ========================================
   SECTIONS
   ======================================== */

.acoe-page .section {
  padding: 100px 0;
}

.acoe-page .section-gray {
  background: rgba(255, 255, 255, 0.60);
}

.acoe-page .section-dark {
  background: linear-gradient(45deg, #2275d5, #da187b5e);
  color: white;
}

.acoe-page .section-cta {
  background: linear-gradient(45deg, #c76a97, #9ea7da);
  color: white;
  position: relative;
  overflow: hidden;
}

.acoe-page .section-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 70%);
  border-radius: 50%;
}

.acoe-page .anchor-offset {
  scroll-margin-top: 100px;
}

.acoe-page .acoe-section-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Eyebrow/badge text - use existing strong or h5 styling */
.acoe-page .acoe-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(11, 87, 208, 0.1);
  border: 1px solid rgba(11, 87, 208, 0.2);
  border-radius: 999px;
  color: var(--acoe-blue);
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}

/* Section lead text uses site's p styling */
.acoe-page .acoe-section-lead {
  margin-top: 1rem;
}

.acoe-page .text-white-70 {
  color: rgba(255, 255, 255, 0.85);
}

/* bigtitle and titletwo inherit from main site CSS */

/* Utility classes - inherit from main site where possible */
.acoe-page .text-center {
  text-align: center;
}

.acoe-page .mt-3 {
  margin-top: 1.5rem;
}

.acoe-page .mt-4 {
  margin-top: 2rem;
}

.acoe-page .mt-5 {
  margin-top: 3rem;
}

.acoe-page .mb-0 {
  margin-bottom: 0;
}

.acoe-page .mb-2 {
  margin-bottom: 0.75rem;
}

.acoe-page .mb-4 {
  margin-bottom: 2rem;
}

.acoe-page .p-4 {
  padding: 2rem;
}

/* ========================================
   STICKY NAV
   ======================================== */

.acoe-page .acoe-subnav {
  position: sticky;
  top: 70px;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.acoe-page .acoe-subnav__list {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 16px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.acoe-page .acoe-subnav__list::-webkit-scrollbar {
  height: 0;
}

.acoe-page .acoe-subnav__list a {
  display: inline-flex;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(11, 87, 208, 0.05);
  color: var(--acoe-blue);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.acoe-page .acoe-subnav__list a:hover {
  background: var(--acoe-blue);
  color: white;
  transform: translateY(-1px);
}

/* ========================================
   OPPORTUNITY SECTION
   ======================================== */

.acoe-page .acoe-split-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.acoe-page .acoe-split-left,
.acoe-page .acoe-split-right {
  display: flex;
}

.acoe-page .acoe-challenge-card,
.acoe-page .acoe-solution-card {
  display: flex;
  flex-direction: column;
  padding: 2.5rem;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
  width: 100%;
  min-height: 280px;
}

.acoe-page .acoe-challenge-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.acoe-page .acoe-solution-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.acoe-page .acoe-challenge-icon,
.acoe-page .acoe-solution-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.acoe-page .acoe-challenge-icon {
  background: rgba(11, 87, 208, 0.1);
  color: var(--acoe-blue);
  border: 2px solid rgba(11, 87, 208, 0.2);
}

.acoe-page .acoe-solution-icon {
  background: rgba(11, 87, 208, 0.1);
  color: var(--acoe-blue);
  border: 2px solid rgba(11, 87, 208, 0.2);
}

.acoe-page .acoe-challenge-card h3,
.acoe-page .acoe-solution-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.acoe-page .acoe-challenge-card p,
.acoe-page .acoe-solution-card p {
  flex: 1;
  margin-bottom: 0;
}

.acoe-page .acoe-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.acoe-page .acoe-stat-card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.acoe-page .acoe-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--acoe-blue);
  opacity: 0;
  transition: all 0.3s ease;
}

.acoe-page .acoe-stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.acoe-page .acoe-stat-card:hover::before {
  opacity: 1;
}

.acoe-page .acoe-stat-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  border-radius: 20px;
  background: rgba(11, 87, 208, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--acoe-blue);
}

/* stat-value uses site's existing h3 styling with .ltext classes */

/* ========================================
   FOUR PILLARS
   ======================================== */

.acoe-page .acoe-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.acoe-page .acoe-pillar-card {
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
}

.acoe-page .acoe-pillar-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
}

.acoe-page .acoe-pillar-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-weight: 900;
  color: rgb(255 255 255);
  line-height: 1;
  font-size: 2.5rem;
}

.acoe-page .acoe-pillar-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: var(--acoe-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  margin-bottom: 1.5rem;
}

/* Pillar titles use h3 from site - just override color for dark section */
.acoe-page .section-dark .acoe-pillar-title {
  color: white;
}

.acoe-page .acoe-pillar-subtitle {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
  font-size: 0.7rem;
}

/* Pillar descriptions - just override color for dark section */
.acoe-page .section-dark .acoe-pillar-desc {
  color: rgba(255, 255, 255, 0.8);
}

.acoe-page .acoe-pillar-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.acoe-page .acoe-pillar-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 24px;
}

.acoe-page .section-dark .acoe-pillar-features li {
  color: rgba(255, 255, 255, 0.8);
}

.acoe-page .acoe-pillar-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 900;
}

.acoe-page .acoe-pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.acoe-page .acoe-pillar-link:hover {
  gap: 12px;
  color: white;
  text-decoration: none;
}

/* ========================================
   PROGRAMS SHOWCASE
   ======================================== */

.acoe-page .acoe-programs-showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.acoe-page .acoe-program-card {
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.acoe-page .acoe-program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  border-color: rgba(11, 87, 208, 0.3);
}

.acoe-page .acoe-program-featured {
  border-color: var(--acoe-blue);
  box-shadow: 0 12px 40px rgba(11, 87, 208, 0.2);
}

.acoe-page .acoe-program-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 6px 12px;
  background: var(--acoe-blue);
  color: white;
  font-weight: 700;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.7rem;
}

.acoe-page .acoe-program-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(11, 87, 208, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--acoe-blue);
  margin-bottom: 1.5rem;
}

/* Program cards use h5 from site (similar to course cards) - no custom styling needed */

/* Paragraph styling inherits from site */

.acoe-page .acoe-program-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.acoe-page .acoe-program-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: normal;
  font-size: 11px;
}

.acoe-page .acoe-value-props {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.acoe-page .acoe-value-prop {
  text-align: center;
  padding: 2rem;
  background: rgba(11, 87, 208, 0.03);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.acoe-page .acoe-value-prop:hover {
  background: rgba(11, 87, 208, 0.08);
  transform: translateY(-4px);
}

.acoe-page .acoe-value-prop i {
  font-size: 2.5rem;
  color: var(--acoe-blue);
  margin-bottom: 1rem;
}

/* Value prop titles use site's h4 */
.acoe-page .acoe-value-prop h4 {
  margin-bottom: 0.5rem;
}

.acoe-page .acoe-value-prop p {
  font-size: 0.875rem;
  margin: 0;
}

/* ========================================
   TEMPLATES GRID
   ======================================== */

.acoe-page .acoe-template-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.acoe-page .acoe-template-section {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
}

.acoe-page .acoe-template-highlight {
  background: rgba(11, 87, 208, 0.03);
  border-color: rgba(11, 87, 208, 0.2);
}

/* Template headings use site's h4 */
.acoe-page .acoe-template-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  font-weight: 700;
  font-size: 20px;
}

.acoe-page .acoe-templates {
  display: grid;
  gap: 0.5rem;
}

.acoe-page .acoe-template-item {
  padding: 1rem;
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.acoe-page .acoe-template-item:hover {
  background: rgba(11, 87, 208, 0.02);
  border-color: rgba(11, 87, 208, 0.2);
  transform: translateX(4px);
}

.acoe-page .acoe-template-item strong {
  display: block;
  margin-bottom: 0.25rem;
}

.acoe-page .acoe-template-item p {
  font-size: 0.875rem;
  margin: 0;
}

/* ========================================
   SERVICES LAYOUT
   ======================================== */

.acoe-page .acoe-services-layout {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 3rem;
}

/* Services heading uses site's h3 */
.acoe-page .acoe-services-heading {
  margin-bottom: 2rem;
  font-weight: 600;
}

.acoe-page .acoe-delivery-steps {
  display: grid;
  gap: 1.5rem;
}

.acoe-page .acoe-delivery-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;
  transition: all 0.3s ease;
}

.acoe-page .acoe-delivery-step:hover {
  transform: translateX(8px);
  border-color: rgba(11, 87, 208, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.acoe-page .acoe-delivery-num {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--acoe-blue);
  color: white;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

/* Delivery step titles use site's h4 */
.acoe-page .acoe-delivery-content h4 {
  margin-bottom: 0.5rem;
}

.acoe-page .acoe-delivery-content p {
  font-size: 0.9rem;
  margin: 0;
}

.acoe-page .acoe-package-card,
.acoe-page .acoe-poc-card-wrap {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
  margin-bottom: 2rem;
}

/* Package and POC headings use site's h4 */
.acoe-page .acoe-package-card h4,
.acoe-page .acoe-poc-card-wrap h4 {
  margin-bottom: 1.5rem;
}

.acoe-page .acoe-package {
  padding: 1.25rem;
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 12px;
  margin-bottom: 1rem;
  position: relative;
  transition: all 0.3s ease;
}

.acoe-page .acoe-package:hover {
  border-color: rgba(11, 87, 208, 0.2);
  transform: translateY(-2px);
}

.acoe-page .acoe-package-featured {
  border-color: var(--acoe-blue);
  background: rgba(11, 87, 208, 0.03);
}

.acoe-page .acoe-package-badge {
  position: absolute;
  top: -10px;
  right: 1rem;
  padding: 4px 12px;
  background: var(--acoe-blue);
  color: white;
  font-weight: 700;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 0.65rem;
}

/* Package names use site's strong tag styling */
.acoe-page .acoe-package-name {
  font-weight: 800;
  margin-bottom: 0.5rem;
  display: block;
}

.acoe-page .acoe-package-desc {
  font-size: 0.875rem;
  margin: 0;
}

.acoe-page .acoe-poc-item {
  padding: 1.25rem;
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.acoe-page .acoe-poc-item:hover {
  border-color: rgba(11, 87, 208, 0.2);
  transform: translateY(-2px);
}

.acoe-page .acoe-poc-duration {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(11, 87, 208, 0.1);
  color: var(--acoe-blue);
  font-weight: 700;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.7rem;
}

/* POC names use site's strong tag styling */
.acoe-page .acoe-poc-name {
  font-weight: 800;
  margin-bottom: 0.5rem;
  display: block;
}

.acoe-page .acoe-poc-item p {
  font-size: 0.875rem;
  margin: 0;
}

/* ========================================
   ECOSYSTEM
   ======================================== */

.acoe-page .acoe-ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.acoe-page .acoe-ecosystem-card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
  transition: all 0.3s ease;
}

.acoe-page .acoe-ecosystem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(11, 87, 208, 0.2);
}

.acoe-page .acoe-ecosystem-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: rgba(11, 87, 208, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--acoe-blue);
  margin-bottom: 1.5rem;
}

/* Ecosystem card titles use site's h3 */
.acoe-page .acoe-ecosystem-card h3 {
  margin-bottom: 1.5rem;
}

.acoe-page .acoe-ecosystem-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.acoe-page .acoe-ecosystem-card li {
  padding: 0.75rem 0;
  padding-left: 24px;
  position: relative;
}

.acoe-page .acoe-ecosystem-card li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--acoe-blue);
  font-weight: 900;
}

/* ========================================
   PLATFORMS
   ======================================== */

.acoe-page .acoe-platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.acoe-page .acoe-platform-card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
  transition: all 0.3s ease;
}

.acoe-page .acoe-platform-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  border-color: rgba(11, 87, 208, 0.3);
}

.acoe-page .acoe-platform-logo {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--acoe-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1.5rem;
}

/* Platform card titles use site's h3 */
.acoe-page .acoe-platform-card h3 {
  margin-bottom: 1.5rem;
}

.acoe-page .acoe-platform-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.acoe-page .acoe-platform-list li {
  padding: 0.75rem 0;
  padding-left: 28px;
  position: relative;
}

.acoe-page .acoe-platform-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--acoe-blue);
  font-weight: 900;
}

/* ========================================
   WHY DIGITAL EDIFY
   ======================================== */

.acoe-page .acoe-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.acoe-page .acoe-why-card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  text-align: center;
  transition: all 0.3s ease;
}

.acoe-page .acoe-why-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
}

.acoe-page .acoe-why-card i {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  background: rgb(11 87 208);
  width: 80px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  font-size: 2.5rem;
}

/* Why cards use site's h3 - just override color */
.acoe-page .section-dark .acoe-why-card h3 {
  color: white;
}

.acoe-page .section-dark .acoe-why-card p {
  color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   LEADERSHIP
   ======================================== */

.acoe-page .acoe-founder-card {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 3rem;
  background: rgba(11, 87, 208, 0.03);
  border: 1px solid rgba(11, 87, 208, 0.2);
  border-radius: 28px;
  margin-bottom: 4rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.acoe-page .acoe-founder-avatar {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 24px;
  background: var(--acoe-blue);
  color: white;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(11, 87, 208, 0.3);
  font-size: 2rem;
}

/* Founder name uses site's h3 */
.acoe-page .acoe-founder-info h3 {
  margin-bottom: 0.5rem;
}

.acoe-page .acoe-founder-title {
  font-weight: 700;
  color: var(--acoe-blue);
  margin-bottom: 1rem;
}

/* Bio uses site's p styling */
.acoe-page .acoe-founder-bio {
  margin: 0;
}

.acoe-page .acoe-leadership-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.acoe-page .acoe-leader-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
}

.acoe-page .acoe-leader-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(11, 87, 208, 0.3);
}

.acoe-page .acoe-leader-avatar {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  border-radius: 16px;
  background: rgba(11, 87, 208, 0.1);
  color: var(--acoe-blue);
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(11, 87, 208, 0.2);
  font-size: 1rem;
}

/* Leader names use site's h4 or h5 */
.acoe-page .acoe-leader-card h4 {
  margin-bottom: 0.25rem;
}

.acoe-page .acoe-leader-card p {
  font-size: 0.8rem;
  margin: 0;
}

/* ========================================
   PARTNERSHIP
   ======================================== */

.acoe-page .acoe-partnership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.acoe-page .acoe-partnership-card {
  padding: 3rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
  transition: all 0.3s ease;
}

.acoe-page .acoe-partnership-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.12);
  border-color: rgba(11, 87, 208, 0.2);
}

.acoe-page .acoe-partnership-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: var(--acoe-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  margin-bottom: 2rem;
}

/* Partnership titles use site's h3 */
.acoe-page .acoe-partnership-card h3 {
  margin-bottom: 1.5rem;
}

/* Partnership descriptions use site's p */
.acoe-page .acoe-partnership-card > p {
  margin-bottom: 2rem;
}

.acoe-page .acoe-partnership-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

/* Partnership list items */
.acoe-page .acoe-partnership-card li {
  padding: 1rem 0;
  padding-left: 32px;
  position: relative;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.acoe-page .acoe-partnership-card li:last-child {
  border-bottom: none;
}

.acoe-page .acoe-partnership-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--acoe-blue);
  font-weight: 900;
}

/* ========================================
   CTA SECTION
   ======================================== */

.acoe-page .acoe-cta-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 4rem;
  margin-bottom: 5rem;
}

.acoe-page .acoe-cta-card {
  padding: 3rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  text-align: center;
  transition: all 0.3s ease;
}

.acoe-page .acoe-cta-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-8px);
}

.acoe-page .acoe-cta-card i {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

/* CTA card titles use site's h3 */
.acoe-page .acoe-cta-card h3 {
  color: white;
  margin-bottom: 1rem;
}

/* CTA descriptions */
.acoe-page .acoe-cta-card p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.acoe-page .acoe-cta-footer {
  color: rgba(255, 255, 255, 0.9);
}

.acoe-page .acoe-cta-footer a {
  color: white;
  text-decoration: underline;
}

/* Tagline uses site's styling */
.acoe-page .acoe-tagline {
  font-weight: 700;
  margin-top: 2rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
  .acoe-page .acoe-pillars-grid,
  .acoe-page .acoe-programs-showcase,
  .acoe-page .acoe-value-props {
    grid-template-columns: repeat(2, 1fr);
  }

  .acoe-page .acoe-leadership-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .acoe-page .herosection h1 {
    font-size: 2.75rem;
  }

  .acoe-page .bigtitle {
    font-size: 2.25rem;
  }

  .acoe-page .acoe-hero-stats,
  .acoe-page .acoe-hero-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .acoe-page .acoe-split-content,
  .acoe-page .acoe-stats-grid,
  .acoe-page .acoe-template-grid,
  .acoe-page .acoe-services-layout,
  .acoe-page .acoe-ecosystem-grid,
  .acoe-page .acoe-platforms-grid,
  .acoe-page .acoe-partnership-grid,
  .acoe-page .acoe-cta-cards {
    grid-template-columns: 1fr;
  }

  .acoe-page .section {
    padding: 70px 0;
  }

  .acoe-page .acoe-founder-card {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .acoe-page .herosection h1 {
    font-size: 2rem;
  }

  .acoe-page .bigtitle {
    font-size: 1.875rem;
  }

  .acoe-page .acoe-hero-lead {
    font-size: 1rem;
  }

  .acoe-page .acoe-hero-stats,
  .acoe-page .acoe-hero-pillars {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .acoe-page .acoe-hero-stat-value {
    font-size: 2rem;
  }

  .acoe-page .section {
    padding: 50px 0;
  }

  .acoe-page .acoe-pillars-grid,
  .acoe-page .acoe-programs-showcase,
  .acoe-page .acoe-value-props,
  .acoe-page .acoe-leadership-grid {
    grid-template-columns: 1fr;
  }

  .acoe-page .acoe-subnav__list {
    justify-content: flex-start;
    padding-left: 1rem;
  }

  .acoe-page .btnrow {
    flex-direction: column;
    width: 100%;
  }

  .acoe-page .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .acoe-page .herosection h1 {
    font-size: 1.75rem;
  }

  .acoe-page .acoe-hero-lead {
    font-size: 0.95rem;
  }

  .acoe-page .acoe-hero-top-badge {
    font-size: 0.75rem;
    padding: 8px 16px;
  }
}

/* ========================================
   ADDITIONAL ENHANCEMENTS
   ======================================== */

/* Let site's default p styling handle line-height */

/* Card content improvements */
.acoe-page .acoe-program-card,
.acoe-page .acoe-stat-card,
.acoe-page .acoe-platform-card,
.acoe-page .acoe-ecosystem-card,
.acoe-page .acoe-partnership-card {
  position: relative;
}

.acoe-page .acoe-program-card::after,
.acoe-page .acoe-stat-card::after,
.acoe-page .acoe-platform-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--acoe-blue);
  opacity: 0;
  transition: all 0.3s ease;
}

.acoe-page .acoe-program-card:hover::after,
.acoe-page .acoe-stat-card:hover::after,
.acoe-page .acoe-platform-card:hover::after {
  opacity: 1;
}

/* Section spacing improvements */
.acoe-page .acoe-section-header + * {
  margin-top: 0;
}

/* List improvements */
.acoe-page ul {
  margin: 0;
  padding-left: 1.5rem;
}

.acoe-page li {
  margin: 0.5rem 0;
}

/* ========================================
   PERFORMANCE & ACCESSIBILITY
   ======================================== */

/* Optimize animations for better performance */
.acoe-page .herosection * {
  will-change: transform, opacity;
}

.acoe-page .herosection.homepage::before,
.acoe-page .herosection.homepage::after {
  will-change: transform;
}

/* Disable animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .acoe-page *,
  .acoe-page *::before,
  .acoe-page *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .acoe-page .herosection * {
    will-change: auto !important;
  }
}

.acoe-page a:focus-visible,
.acoe-page button:focus-visible {
  outline: 3px solid var(--acoe-blue);
  outline-offset: 2px;
  border-radius: 8px;
}
.anchor-offset .btn span{ display: flex; gap: 10px;}
.anchor-offset .btn span i{ margin: 0; color: #0b57d0;font-size: 25px;}
.anchor-offset .btn:hover span i{ color: #fff;}