/* Web UI kit — adicionales sobre colors_and_type.css */

.acmp-page { background: var(--bg-page); min-height: 100vh; }

/* ---- Buttons ---- */
.acmp-btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--dur-base) var(--ease-standard);
  text-decoration: none;
  line-height: 1;
}
.acmp-btn:active { transform: scale(0.985); }
.acmp-nav .acmp-btn-primary {
  font-size: 13.5px; padding: 12.6px 19.8px; border-radius: 12.6px;
}
.acmp-btn-primary {
  background: var(--acmp-orange);
  color: #fff;
  box-shadow: var(--shadow-orange);
}
.acmp-btn-primary:hover {
  background: var(--acmp-orange-700);
  box-shadow: 0 14px 36px rgba(247, 70, 4, 0.40);
}
.acmp-btn-ghost {
  background: transparent;
  color: var(--acmp-navy);
  border: 1.5px solid var(--acmp-navy);
}
.acmp-btn-ghost:hover { background: var(--acmp-navy); color: #fff; }
.acmp-btn-on-dark {
  background: #fff;
  color: var(--acmp-navy);
}
.acmp-btn-on-dark:hover { background: var(--acmp-orange); color: #fff; }
.acmp-btn-pill { border-radius: 999px; }

/* ---- Nav ---- */
.acmp-nav {
  position: sticky; top: 0; z-index: 50;
  background: #f2f2f2;
  border-bottom: 1px solid var(--border-subtle);
}
.acmp-nav-inner {
  max-width: 1200px; margin: 0 auto;
  height: 72px; padding: 0 28px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.acmp-nav-left  { display: flex; align-items: center; justify-self: start; }
.acmp-nav-right { display: flex; align-items: center; justify-self: end; }
.acmp-nav-links { display: flex; gap: 26px; align-items: center; justify-self: center; }
.acmp-nav-link {
  font-family: 'TT Commons Pro','DM Sans',var(--font-body); font-weight: 500; font-size: 14px;
  color: #000; text-decoration: none; letter-spacing: -0.04em; white-space: nowrap;
  padding: 6px 0; cursor: pointer;
  transition: color var(--dur-fast) var(--ease-standard);
}
.acmp-nav-link:hover { color: var(--acmp-orange); }
.acmp-nav-link.is-active { color: var(--acmp-orange); }

/* ---- Hero ---- */
.acmp-hero {
  max-width: 1200px; margin: 0 auto;
  padding: 0 28px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px;
  align-items: center;
}
.acmp-hero h1 {
  font-family: var(--font-course-title); font-weight: 700;
  font-size: clamp(3.5rem, 9vw, 150px);
  line-height: 0.82; letter-spacing: 0;
  text-transform: uppercase;
  margin: 0 0 20px; text-wrap: balance;
}
.acmp-hero h1 .navy { color: var(--acmp-navy); }
.acmp-hero h1 .kw { color: var(--acmp-orange); }
.acmp-hero p.lead {
  font-size: 19px; color: var(--fg-2); max-width: 46ch; margin: 0 0 28px;
}
.acmp-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.acmp-hero-art {
  position: relative; aspect-ratio: 5 / 4;
  display: flex; align-items: center; justify-content: center;
  overflow: visible;
}
.acmp-hero-art img.hero-photo {
  width: 180%; height: 180%;
  object-fit: contain;
  display: block;
  transform-origin: center;
}
.acmp-hero-art .pattern { display: none; }
.acmp-hero-art .photo-placeholder { display: none; }

/* ---- Logo marquee ---- */
.acmp-logos {
  background: #f2f2f2;
  padding: 44px 0;
  display: flex; flex-direction: column; gap: 22px;
}
.acmp-logos .label {
  font-family: var(--font-section); font-weight: 700;
  font-size: 18px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--fg-2);
  text-align: center;
}
.acmp-logos .label .hl { color: var(--acmp-orange); }

.acmp-module-bullets {
  margin: 0; padding: 0 0 0 18px;
  display: flex; flex-direction: column; gap: 6px;
  color: var(--fg-2); font-size: 15px; line-height: 1.5;
}
.acmp-module-bullets li { margin: 0; }
.acmp-logos-marquee {
  overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.acmp-logos-track {
  display: flex; align-items: center; gap: 72px;
  width: max-content;
  animation: acmp-logos-scroll 40s linear infinite;
}
.acmp-logos-marquee:hover .acmp-logos-track { animation-play-state: paused; }
.acmp-logos .brand-logo {
  height: 168px; width: auto; max-width: 540px;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(100%);
  opacity: 0.72;
  transition: filter 0.3s, opacity 0.3s;
}
.acmp-logos .brand-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}
@keyframes acmp-logos-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- Stats ---- */
.acmp-stats {
  max-width: 1200px; margin: 0 auto;
  padding: 64px 28px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.acmp-stat .num {
  font-family: var(--font-display); font-weight: 700;
  font-size: 64px; line-height: 1; letter-spacing: -0.025em;
  color: var(--acmp-orange); text-align: center;
}
.acmp-stat .lbl {
  font-family: var(--font-body); font-size: 14px; color: var(--fg-2);
  margin-top: 8px; text-align: center;
}
.acmp-stat { display: flex; flex-direction: column; align-items: center; }

/* ---- Section header ---- */
.acmp-section-head {
  max-width: 1200px; margin: 0 auto;
  padding: 32px 28px 16px;
  text-align: center;
}
.acmp-section-head .eyebrow {
  font-family: var(--font-section); font-weight: 700;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--acmp-orange); margin-bottom: 10px;
}
.acmp-section-head h2 {
  font-family: var(--font-section); font-weight: 700;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  line-height: 1.1; letter-spacing: -0.04em;
  color: #000; margin: 0 0 8px; text-wrap: balance;
}
.acmp-section-head h2 .kw { color: #000; letter-spacing: -0.04em; }
.acmp-section-head .desc { color: var(--fg-2); max-width: 60ch; margin: 0 auto; }

/* ---- Course grid ---- */
.acmp-courses {
  max-width: 1200px; margin: 0 auto;
  padding: 24px 28px 80px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.acmp-course {
  background: #fff; border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex; flex-direction: column; gap: 14px;
  text-align: left;
  box-shadow: var(--shadow-md);
  transition: all var(--dur-base) var(--ease-standard);
  cursor: pointer;
}
.acmp-course:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.acmp-course-thumb {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #f2f2f2;
}
.acmp-course-thumb img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.acmp-course-title {
  font-family: 'TT Commons Pro','DM Sans',var(--font-body); font-weight: 700; font-size: 20px;
  line-height: 1.18; color: var(--acmp-navy); letter-spacing: -0.04em;
  margin: 4px 0 2px;
}
.acmp-course-meta {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 4px;
  font-family: var(--font-body); font-size: 14px; color: var(--fg-2);
  letter-spacing: -0.01em;
}
.acmp-course-meta li { margin: 0; }

/* ---- Method ---- */
.acmp-method {
  background: #f2f2f2;
  position: relative; overflow: hidden;
  margin-top: 32px;
}
.acmp-method::before { display: none; }
.acmp-method-inner {
  position: relative;
  max-width: 1200px; margin: 0 auto;
  padding: 96px 28px;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start;
}
.acmp-method h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.5rem, 4.6vw, 3.75rem);
  line-height: 1.04; letter-spacing: -0.02em;
  color: var(--acmp-navy); margin: 0; text-wrap: balance;
}
.acmp-method h2 .kw { color: var(--acmp-orange); }
.acmp-method .lead { font-size: 17px; color: var(--fg-2); margin: 16px 0 0; max-width: 30ch; }
.acmp-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.acmp-pillar {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.acmp-pillar .num {
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  color: var(--acmp-orange); margin-bottom: 12px;
}
.acmp-pillar h3 {
  font-family: var(--font-section); font-weight: 700; font-size: 18px;
  color: var(--acmp-navy); margin: 0 0 6px;
}
.acmp-pillar p { font-size: 14px; color: var(--fg-2); margin: 0; line-height: 1.5; }

/* ---- Testimonial ---- */
.acmp-testimonial-wrap {
  max-width: 1200px; margin: 0 auto;
  padding: 80px 28px;
}
.acmp-test-head { text-align: center; margin-bottom: 40px; }
.acmp-test-head .eyebrow { margin-bottom: 10px; }
.acmp-test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.acmp-test-card {
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.acmp-test-stars { display: flex; gap: 2px; color: var(--acmp-orange); }
.acmp-test-text {
  font-family: var(--font-body);
  font-size: 14px; line-height: 1.55; color: #1a1a1a;
  margin: 0;
  letter-spacing: -0.01em;
}
.acmp-test-who { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 6px; }
.acmp-test-avatar {
  width: 38px; height: 38px; border-radius: 999px;
  background: var(--acmp-orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  letter-spacing: -0.02em;
}
.acmp-test-name {
  font-family: var(--font-body); font-weight: 600;
  font-size: 14px; color: #000; letter-spacing: -0.02em;
}
.acmp-testimonial {
  background: var(--acmp-navy);
  border-radius: var(--radius-xl);
  padding: 56px 56px 48px;
  position: relative; overflow: hidden;
  color: #fff;
}
.acmp-testimonial::before {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 360px; height: 360px;
  background-image: url('assets/isotype-waves.svg');
  background-size: contain; background-repeat: no-repeat;
  color: #fff; opacity: 0.10;
}
.acmp-testimonial .qmark {
  font-family: var(--font-display); font-weight: 700;
  color: var(--acmp-orange); font-size: 96px; line-height: 0.6; height: 56px;
}
.acmp-testimonial .qtext {
  font-family: var(--font-section); font-weight: 500;
  font-size: 28px; line-height: 1.25; letter-spacing: -0.04em;
  max-width: 28ch; margin: 8px 0 28px;
}
.acmp-testimonial .who { display: flex; align-items: center; gap: 14px; }
.acmp-testimonial .avatar { width: 48px; height: 48px; border-radius: 999px; background: var(--acmp-orange); }
.acmp-testimonial .name { font-family: var(--font-body); font-weight: 700; font-size: 15px; }
.acmp-testimonial .role { font-family: var(--font-body); font-size: 13px; opacity: 0.72; }

/* ---- Instructor Bio ---- */
.acmp-bio-wrap {
  max-width: 1200px; margin: 0 auto;
  padding: 80px 28px;
}
.acmp-bio {
  display: flex; flex-direction: column; align-items: center;
  gap: 20px; text-align: center;
  max-width: 760px; margin: 0 auto;
}
.acmp-bio-photo {
  width: 308px; aspect-ratio: 1 / 1;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(160deg, #f6f4ef 0%, #e9e4d8 100%);
  box-shadow: 0 24px 60px rgba(34, 43, 73, 0.14);
  position: relative;
}
.acmp-bio-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
  font-family: var(--font-section); color: #000; text-align: center;
  border: 2px dashed rgba(0,0,0,0.18);
  border-radius: var(--radius-xl);
  margin: 14px;
}
.acmp-bio-placeholder span {
  font-weight: 700; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
}
.acmp-bio-placeholder small {
  font-family: var(--font-body); font-size: 12px; color: var(--fg-2); letter-spacing: 0;
  text-transform: none;
}
.acmp-bio-text .eyebrow {
  font-family: var(--font-section); font-weight: 700;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--acmp-orange); margin-bottom: 10px;
}
.acmp-bio-text h2 { color: #000; margin: 0 0 6px; text-wrap: balance; }
.acmp-bio-text h2 .kw { color: var(--acmp-orange); }
.acmp-bio-role {
  font-family: var(--font-section); font-weight: 500; font-size: 17px;
  color: var(--fg-2); margin: 0 0 18px; letter-spacing: -0.02em;
}
.acmp-bio-lead {
  font-family: var(--font-body); font-size: 14px; line-height: 1.55;
  color: #000; letter-spacing: -0.02em; margin: 0 auto 22px;
  max-width: 56ch;
}
.acmp-bio-bullets {
  list-style: none; padding: 0; margin: 0 auto 26px;
  display: inline-flex; flex-direction: column; gap: 8px;
  text-align: left;
}
.acmp-bio-bullets li {
  position: relative; padding-left: 22px;
  font-size: 15px; color: var(--fg-2); letter-spacing: -0.02em; line-height: 1.45;
}
.acmp-bio-bullets li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--acmp-orange);
}
.acmp-bio-bullets li strong { color: #000; font-weight: 700; }
.acmp-bio-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.acmp-bio-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: #f2f2f2; color: #000;
  font-family: var(--font-body); font-weight: 500; font-size: 13px;
  letter-spacing: -0.02em; cursor: pointer;
  transition: all var(--dur-base) var(--ease-standard);
  text-decoration: none;
}
.acmp-bio-chip:hover { background: var(--acmp-orange); color: #fff; }
.acmp-bio-socials { justify-content: center; }

@media (max-width: 860px) {
  .acmp-bio-photo { width: 220px; }
}

/* ---- Modules ---- */
.acmp-modules-wrap {
  max-width: 1100px; margin: 0 auto;
  padding: 80px 28px;
}
.acmp-modules-head {
  max-width: 720px; margin: 0 auto 40px; text-align: center;
}
.acmp-modules-head .eyebrow {
  font-family: var(--font-section); font-weight: 700;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--acmp-orange); margin-bottom: 10px;
}
.acmp-modules-head h2 { color: #000; margin: 0 0 8px; text-wrap: balance; }
.acmp-modules-head h2 .kw { color: var(--acmp-orange); }
.acmp-modules-head .desc { color: var(--fg-2); margin: 0 auto; }

.acmp-modules-list {
  display: flex; flex-direction: column; gap: 10px;
}
.acmp-module {
  width: 100%; text-align: left;
  background: #fff;
  border: 1px solid #e6e6e6; border-radius: 14px;
  padding: 0; cursor: pointer;
  transition: all var(--dur-base) var(--ease-standard);
  font-family: var(--font-body);
}
.acmp-module:hover { border-color: var(--acmp-orange); }
.acmp-module.is-open { border-color: var(--acmp-orange); box-shadow: 0 12px 32px rgba(247,70,4,0.12); }
.acmp-module-row {
  display: grid; grid-template-columns: 64px 1fr auto auto;
  align-items: center; gap: 18px;
  padding: 18px 22px;
}
.acmp-module-n {
  font-family: var(--font-display); font-weight: 700; font-size: 28px;
  color: var(--acmp-orange); letter-spacing: -0.04em; line-height: 1;
}
.acmp-module-title {
  font-family: var(--font-section); font-weight: 700; font-size: 19px;
  color: #000; letter-spacing: -0.04em; line-height: 1.25;
}
.acmp-module-meta {
  display: flex; gap: 8px; align-items: center;
  font-size: 13px; color: var(--fg-2); letter-spacing: -0.02em;
}
.acmp-module-meta .dot { opacity: 0.5; }
.acmp-module-chev {
  width: 36px; height: 36px; border-radius: 999px;
  background: #f5f5f5; color: #000;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur-base) var(--ease-standard);
}
.acmp-module.is-open .acmp-module-chev {
  background: var(--acmp-orange); color: #fff; transform: rotate(180deg);
}
.acmp-module-body {
  padding: 0 22px 22px 104px;
}
.acmp-module-body p {
  margin: 0; color: var(--fg-2); font-size: 15px; line-height: 1.55;
  letter-spacing: -0.02em; max-width: 60ch;
}

@media (max-width: 720px) {
  .acmp-module-row { grid-template-columns: 48px 1fr auto; gap: 12px; padding: 14px 16px; }
  .acmp-module-meta { display: none; }
  .acmp-module-body { padding: 0 16px 18px 76px; }
}

/* ---- Academia en acción ---- */
.acmp-accion {
  background: #f2f2f2;
  padding: 72px 0;
  overflow: hidden;
}
.acmp-accion-head {
  max-width: 1200px; margin: 0 auto 40px;
  padding: 0 28px; text-align: center;
}
.acmp-accion-title {
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: 34px; line-height: 1.05; letter-spacing: -0.03em;
  color: var(--acmp-navy); margin: 0;
}
.acmp-accion-marquee {
  overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.acmp-accion-track {
  display: flex; gap: 20px;
  width: max-content;
  animation: acmp-accion-scroll 60s linear infinite;
}
.acmp-accion-marquee:hover .acmp-accion-track { animation-play-state: paused; }
.acmp-accion-card {
  flex: 0 0 auto;
  width: 336px; aspect-ratio: 9 / 12;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 32px rgba(34, 43, 73, 0.10);
}
.acmp-accion-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
@keyframes acmp-accion-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- Ebook ---- */
.acmp-ebook { background: #f2f2f2; }
.acmp-ebook-wrap {
  max-width: 1200px; margin: 0 auto;
  padding: 96px 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
.acmp-ebook-copy { text-align: left; }
.acmp-ebook-eyebrow {
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: 34px; letter-spacing: -0.03em;
  color: var(--acmp-navy); margin: 0 0 18px;
  text-transform: uppercase;
}
.acmp-ebook-title {
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: 30px; line-height: 1.2;
  color: var(--acmp-navy); margin: 0 0 28px;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.acmp-ebook-media { display: flex; justify-content: center; }
.acmp-ebook-cover {
  position: relative;
  aspect-ratio: 3 / 4;
  width: 100%; max-width: 360px;
  transform: rotate(-3deg);
  transition: transform var(--dur-base) var(--ease-standard);
}
.acmp-ebook-cover:hover { transform: rotate(-1deg) translateY(-4px); }
.acmp-ebook-cover-inner {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 6px 12px 12px 6px;
  overflow: hidden;
  background: #f2f2f2;
  box-shadow:
    0 30px 60px rgba(34, 43, 73, 0.30),
    0 12px 24px rgba(34, 43, 73, 0.18),
    inset -6px 0 16px rgba(0,0,0,0.12);
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 0;
}
.acmp-ebook-cover-logo {
  height: 48px; width: auto; display: block;
  margin: 38px auto 6px;
}
.acmp-ebook-cover-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  min-height: 0;
}
.acmp-ebook-cover-meta {
  background: var(--acmp-orange);
  color: #fff;
  text-align: center;
  padding: 18px 18px 22px;
}
.acmp-ebook-cover-kicker {
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: #fff; opacity: 0.92; margin: 0 0 8px;
}
.acmp-ebook-cover-title {
  font-family: 'Poppins', sans-serif; font-weight: 800;
  font-size: 18px; line-height: 1.1; letter-spacing: -0.02em;
  margin: 0 auto 8px; color: #fff;
  max-width: 16ch;
  text-wrap: balance;
}
.acmp-ebook-cover-author {
  font-family: var(--font-body); font-weight: 600;
  font-size: 11px; letter-spacing: 0.06em;
  color: #fff; opacity: 0.92;
  text-transform: uppercase;
}
.acmp-ebook-spine {
  position: absolute; left: 0; top: 2%; bottom: 2%;
  width: 12px;
  background: linear-gradient(90deg, rgba(0,0,0,0.30), rgba(0,0,0,0));
  border-radius: 4px 0 0 4px;
  pointer-events: none;
}
@media (max-width: 900px) {
  .acmp-ebook-wrap { grid-template-columns: 1fr; gap: 48px; }
  .acmp-ebook-copy { text-align: center; }
  .acmp-ebook-title { margin-left: auto; margin-right: auto; }
  .acmp-ebook-cover { max-width: 280px; }
}

/* ---- Learning Outcomes ---- */
.acmp-outcomes { background: #f2f2f2; }
.acmp-outcomes-wrap { max-width: 1200px; margin: 0 auto; padding: 96px 28px; }
.acmp-outcomes-head { margin-bottom: 48px; text-align: center; }
.acmp-outcomes-head .eyebrow {
  font-family: var(--font-section); font-weight: 700;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--acmp-orange); margin-bottom: 10px;
}
.acmp-outcomes-head h2 {
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: 34px;
  letter-spacing: -0.04em; line-height: 1.05;
  color: #000; margin: 0; text-wrap: balance;
}
.acmp-outcomes-head h2 .kw { color: var(--acmp-orange); }
.acmp-outcomes-grid {
  display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: 40px; align-items: center;
}
.acmp-outcomes-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.acmp-outcomes-list li {
  display: grid; grid-template-columns: 28px 1fr; gap: 12px;
  align-items: start;
  font-family: var(--font-body); font-size: 16px; line-height: 1.5;
  color: #000; letter-spacing: -0.01em;
}
.acmp-outcomes-check {
  width: 24px; height: 24px; border-radius: 999px;
  background: var(--acmp-orange); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 2px; flex-shrink: 0;
}
.acmp-outcomes-media { position: relative; }
.acmp-outcomes-photo {
  aspect-ratio: 4 / 5; border-radius: var(--radius-lg);
  background: #f2f2f2; border: 1px solid var(--border-subtle);
  overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  color: var(--fg-3);
  font-family: var(--font-section); font-weight: 500;
  font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
}
.acmp-outcomes-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) {
  .acmp-outcomes-grid { grid-template-columns: 1fr; gap: 40px; }
  .acmp-outcomes-media { position: static; order: -1; }
}

/* ---- VSL Section ---- */
.acmp-vsl-wrap {
  max-width: 1200px; margin: 0 auto;
  padding: 80px 28px 40px;
}
.acmp-vsl-head {
  max-width: 720px; margin: 0 auto 32px; text-align: center;
}
.acmp-vsl-head .eyebrow {
  font-family: var(--font-section); font-weight: 700;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--acmp-orange); margin-bottom: 10px;
}
.acmp-vsl-head h2 { color: #000; margin: 0 0 8px; text-wrap: balance; }
.acmp-vsl-head h2 .kw { color: var(--acmp-orange); }
.acmp-vsl-head .desc { color: var(--fg-2); max-width: 60ch; margin: 0 auto; }
.acmp-vsl-frame {
  position: relative; aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl); overflow: hidden;
  background: var(--acmp-navy);
  box-shadow: 0 30px 80px rgba(34, 43, 73, 0.22);
}
.acmp-vsl-frame vturb-smartplayer {
  position: absolute; inset: 0;
  width: 100% !important; height: 100% !important;
}
.acmp-vsl-player {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(ellipse at center, rgba(247,70,4,0.18) 0%, rgba(34,43,73,0) 60%), var(--acmp-navy);
}
.acmp-vsl-play {
  width: 96px; height: 96px; border-radius: 999px;
  background: var(--acmp-orange); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: var(--shadow-orange);
  transition: transform var(--dur-base) var(--ease-standard);
}
.acmp-vsl-play:hover { transform: scale(1.06); }
.acmp-vsl-play svg { margin-left: 4px; }
.acmp-vsl-meta {
  position: absolute; left: 24px; bottom: 22px;
  font-family: var(--font-section); font-weight: 700;
  font-size: 11px; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.78);
}

/* ---- FAQ ---- */
.acmp-faq { background: #fff; }
.acmp-faq-wrap {
  max-width: 880px; margin: 0 auto;
  padding: 96px 28px;
}
.acmp-faq-head { text-align: center; margin-bottom: 40px; }
.acmp-faq-head .eyebrow {
  font-family: var(--font-section); font-weight: 700;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--acmp-orange); margin-bottom: 10px;
}
.acmp-faq-title {
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: 34px; line-height: 1.05; letter-spacing: -0.03em;
  color: var(--acmp-navy); margin: 0;
}
.acmp-faq-list {
  display: flex; flex-direction: column; gap: 10px;
}
.acmp-faq-item {
  width: 100%; text-align: left;
  background: #fff;
  border: 1px solid #e6e6e6; border-radius: 14px;
  padding: 0; cursor: pointer;
  transition: all var(--dur-base) var(--ease-standard);
  font-family: var(--font-body);
}
.acmp-faq-item:hover { border-color: var(--acmp-orange); }
.acmp-faq-item.is-open {
  border-color: var(--acmp-orange);
  box-shadow: 0 12px 32px rgba(247, 70, 4, 0.10);
}
.acmp-faq-row {
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 16px;
  padding: 18px 22px;
}
.acmp-faq-q {
  font-family: 'Poppins', sans-serif; font-weight: 600;
  font-size: 17px; color: var(--acmp-navy);
  letter-spacing: -0.02em; line-height: 1.3;
}
.acmp-faq-chev {
  width: 32px; height: 32px; border-radius: 999px;
  background: #f5f5f5; color: var(--acmp-navy);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur-base) var(--ease-standard);
  flex-shrink: 0;
}
.acmp-faq-item.is-open .acmp-faq-chev {
  background: var(--acmp-orange); color: #fff; transform: rotate(180deg);
}
.acmp-faq-a {
  margin: 0; padding: 0 22px 20px 22px;
  font-family: var(--font-body); font-size: 15px; line-height: 1.6;
  color: var(--fg-2); letter-spacing: -0.01em;
  max-width: 70ch;
}

/* ---- Certificates ---- */
.acmp-certs {
  background: #f2f2f2;
  padding: 80px 0;
  overflow: hidden;
}
.acmp-certs-head {
  max-width: 880px; margin: 0 auto 40px;
  padding: 0 28px; text-align: center;
}
.acmp-certs-title {
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: 34px; line-height: 1.1; letter-spacing: -0.03em;
  color: var(--acmp-navy); margin: 0 0 14px;
}
.acmp-certs-sub {
  font-family: var(--font-body); font-size: 16px; line-height: 1.55;
  color: var(--fg-2); margin: 0; letter-spacing: -0.01em;
  max-width: 60ch; margin-left: auto; margin-right: auto;
}
.acmp-certs-marquee {
  overflow: hidden; position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.acmp-certs-track {
  display: flex; gap: 24px;
  width: max-content;
  animation: acmp-certs-scroll 60s linear infinite;
}
.acmp-certs-marquee:hover .acmp-certs-track { animation-play-state: paused; }
.acmp-certs-card {
  flex: 0 0 auto;
  width: 340px;
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(34, 43, 73, 0.10);
}
.acmp-certs-card img {
  width: 100%; height: auto; object-fit: cover; display: block;
}
@keyframes acmp-certs-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- Socials ---- */
.acmp-socials { background: #fff; }
.acmp-socials-wrap {
  max-width: 1100px; margin: 0 auto;
  padding: 32px 28px 96px;
  text-align: center;
}
.acmp-socials .eyebrow {
  font-family: var(--font-section); font-weight: 700;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--acmp-orange); margin-bottom: 24px;
}
.acmp-socials-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 72px;
}
.acmp-social-link {
  display: inline-flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 0; background: none; border: none;
  color: var(--acmp-orange);
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  letter-spacing: -0.02em; text-decoration: none;
  transition: transform var(--dur-base) var(--ease-standard);
}
.acmp-social-link:hover {
  background: none; color: var(--acmp-orange);
  transform: translateY(-2px);
}
.acmp-social-ico { display: inline-flex; }

/* ---- Footer ---- */
.acmp-footer {
  background: var(--acmp-orange);
  color: rgba(255,255,255,0.92);
}
.acmp-footer-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 64px 28px 32px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
}
.acmp-footer h4 {
  font-family: var(--font-section); font-weight: 700;
  font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase;
  color: #fff; margin: 0 0 14px;
}
.acmp-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.acmp-footer ul a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 14px; }
.acmp-footer ul a:hover { color: #fff; }
.acmp-footer .tagline { font-size: 14px; line-height: 1.6; max-width: 36ch; opacity: 0.82; margin: 14px 0 22px; }
.acmp-footer .socials { display: flex; gap: 12px; }
.acmp-footer .socials a {
  width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,255,255,0.06);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; transition: all var(--dur-fast) var(--ease-standard);
}
.acmp-footer .socials a { background: rgba(255,255,255,0.14); }
.acmp-footer .socials a:hover { background: rgba(255,255,255,0.28); }
.acmp-footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding: 24px 28px 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.52);
}

/* ---- Modal ---- */
.acmp-scrim {
  position: fixed; inset: 0;
  background: rgba(34, 43, 73, 0.64);
  backdrop-filter: blur(2px);
  display: flex; align-items: center; justify-content: center;
  z-index: 100; padding: 32px;
}
.acmp-modal {
  background: #fff; border-radius: var(--radius-xl);
  max-width: 640px; width: 100%;
  padding: 36px;
  box-shadow: 0 40px 80px rgba(34, 43, 73, 0.4);
}
.acmp-modal h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 32px; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--acmp-navy); margin: 0 0 12px;
}
.acmp-modal h3 .kw { color: var(--acmp-orange); }
.acmp-modal p { color: var(--fg-2); }
.acmp-modal .modal-actions { display: flex; gap: 12px; margin-top: 24px; }

/* ---- Responsive shrink for the canvas ---- */
@media (max-width: 1100px) {
  .acmp-hero { grid-template-columns: 1fr; gap: 32px; padding: 64px 28px; }
  .acmp-method-inner { grid-template-columns: 1fr; gap: 32px; padding: 64px 28px; }
  .acmp-courses { grid-template-columns: repeat(2, 1fr); }
  .acmp-stats { grid-template-columns: repeat(2, 1fr); }
  .acmp-footer-inner { grid-template-columns: 1fr 1fr; }
}
