/* ===========================
   LAC Page - Dedicated Styles
   =========================== */

/* ---------- Hero ---------- */
.lac-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  overflow: hidden;
  padding-top: var(--header-h);
}

.lac-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.lac-hero__particles {
  position: absolute;
  inset: 0;
}

.lac-hero__particles .dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(0,0,0,0.06);
  border-radius: 50%;
}

.lac-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #444;
  padding: 0 24px;
}

.lac-hero__logo {
  width: 80px;
  height: auto;
  margin: 0 auto 20px;
  display: block;
}

.lac-hero__label {
  font-size: 18px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #999;
}

.lac-hero__title {
  font-size: clamp(36px, 7vw, 64px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #333;
}

.lac-hero__desc {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

.lac-hero__stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin-top: 48px;
}

.lac-hero__stat {
  text-align: center;
}

.lac-hero__num {
  display: block;
  font-size: 40px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  line-height: 1.2;
  color: #333;
}

.lac-hero__stat small {
  font-size: 18px;
  color: #999;
  margin-top: 4px;
  display: block;
}

.lac-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.lac-hero__scroll span {
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.5;
}

.lac-hero__scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(0,0,0,0.15);
  position: relative;
  overflow: hidden;
}

.lac-hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #333;
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ---------- Select Tabs ---------- */
.lac-select {
  padding: 80px 0;
  background: var(--color-bg);
}

.lac-select__lead {
  text-align: center;
  font-size: 18px;
  color: var(--color-text-light);
  margin-bottom: 28px;
  letter-spacing: 1px;
}

.lac-select__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lac-select__card {
  display: block;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  background: var(--color-white);
}

.lac-select__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lac-select__card:hover::before { transform: scaleX(1); }
.lac-select__card:hover { border-color: var(--color-accent); transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.lac-select__card--active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.lac-select__card--active::before { display: none; }

.lac-select__card strong {
  display: block;
  font-size: 22px;
  margin-bottom: 8px;
}

.lac-select__card p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.8;
}

.lac-select__badge {
  display: inline-block;
  margin-top: 12px;
  font-size: 18px;
  padding: 3px 12px;
  background: rgba(255,255,255,0.2);
  border-radius: 20px;
}

.lac-select__arrow {
  display: inline-block;
  margin-top: 12px;
  font-size: 18px;
  color: var(--color-accent);
  transition: transform 0.3s;
}

.lac-select__card:hover .lac-select__arrow { transform: translateX(6px); }

/* ---------- Sections ---------- */
.lac-section {
  padding: 100px 0;
}

.lac-section--alt {
  background: var(--color-bg-alt);
}

.lac-section__label {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  text-align: center;
  margin-bottom: 8px;
}

.lac-section__title {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  text-align: center;
  color: var(--color-main);
  margin-bottom: 16px;
}

.lac-section__desc {
  text-align: center;
  color: var(--color-text-light);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.lac-section__body {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-text);
}

.lac-section__body-wide {
  max-width: 740px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.9;
  text-align: center;
}

.lac-section__body-wide p { margin-bottom: 16px; }

/* ---------- Pain Points ---------- */
.lac-pain {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 700px;
  margin: 48px auto 0;
}

.lac-pain__item {
  display: flex;
  align-items: center;
  padding: 24px;
  background: var(--color-white);
  border-radius: var(--radius);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-main);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lac-pain__icon {
  font-size: 28px;
  margin-right: 14px;
  flex-shrink: 0;
}

.lac-pain__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* ---------- Orbit (3 Pillars Circular) ---------- */
.lac-orbit {
  position: relative;
  width: 100%;
  max-width: 680px;
  height: 560px;
  margin: 64px auto 0;
}

.lac-orbit__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  z-index: 3;
  box-shadow: 0 8px 32px rgba(0,102,204,0.3);
}

.lac-orbit__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Orbiting dot on the ring */
.lac-orbit__orbiter {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 440px;
  height: 440px;
  margin-top: -220px;
  margin-left: -220px;
  z-index: 1;
  pointer-events: none;
}

.lac-orbit__orbiter::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  margin-top: -6px;
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0,102,204,0.5);
}

.lac-orbit__card {
  position: absolute;
  width: 190px;
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 20px 18px;
  box-shadow: var(--shadow);
  text-align: center;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.lac-orbit__card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.lac-orbit__card--1 { top: 0; left: 50%; transform: translateX(-50%); }
.lac-orbit__card--2 { bottom: 20px; left: 0; }
.lac-orbit__card--3 { bottom: 20px; right: 0; }

.lac-orbit__icon { color: var(--color-accent); margin-bottom: 8px; }
.lac-orbit__num { font-size: 28px; font-weight: 700; font-family: "Inter", sans-serif; color: var(--color-accent); opacity: 0.2; }
.lac-orbit__card h3 { font-size: 15px; font-weight: 700; color: var(--color-main); margin: 4px 0 6px; }
.lac-orbit__card p { font-size: 13px; color: var(--color-text-light); line-height: 1.5; }

/* ---------- 3 Pillars (LMS) ---------- */
.lac-pillars {
  position: relative;
  max-width: 900px;
  margin: 64px auto 0;
  display: flex;
  justify-content: center;
  gap: 28px;
}

.lac-pillar {
  flex: 1;
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.lac-pillar:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.lac-pillar__num {
  font-size: 36px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  color: var(--color-accent);
  opacity: 0.2;
  margin-bottom: 4px;
}

.lac-pillar__icon {
  color: var(--color-accent);
  margin-bottom: 16px;
}

.lac-pillar h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 16px;
  line-height: 1.5;
}

.lac-pillar ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.lac-pillar ul li {
  font-size: 14px;
  color: var(--color-text-light);
  padding: 5px 0 5px 16px;
  position: relative;
}

.lac-pillar ul li::before {
  content: "・";
  position: absolute;
  left: 0;
}

/* Orbiting connector ring */
.lac-pillars__orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.lac-pillars__orbit svg {
  width: 100%;
  height: 100%;
}

/* ---------- Value Cycle ---------- */
.lac-cycle {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 56px auto 40px;
}

.lac-cycle__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: var(--color-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  z-index: 3;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.lac-cycle__track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.lac-cycle__node {
  position: absolute;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  box-shadow: 0 4px 20px rgba(0,102,204,0.3);
  z-index: 2;
  transition: background 0.3s, box-shadow 0.3s;
}

/* Clockwise: top, right, bottom, left */
.lac-cycle__node--0 { top: 0;    left: 50%;  transform: translateX(-50%); }
.lac-cycle__node--1 { top: 50%;  right: 0;   transform: translateY(-50%); }
.lac-cycle__node--2 { bottom: 0; left: 50%;  transform: translateX(-50%); }
.lac-cycle__node--3 { top: 50%;  left: 0;    transform: translateY(-50%); }

/* Orbiting dot on the cycle track */
.lac-cycle__orbiter {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 310px;
  height: 310px;
  margin-top: -155px;
  margin-left: -155px;
  z-index: 1;
  pointer-events: none;
}

.lac-cycle__orbiter::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  margin-top: -5px;
  background: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,102,204,0.5);
}

/* ---------- Checks ---------- */
.lac-checks {
  max-width: 600px;
  margin: 40px auto 0;
}

.lac-check {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  font-size: 18px;
  border-bottom: 1px solid var(--color-border);
}

.lac-check:last-child { border-bottom: none; }

.lac-check span {
  color: var(--color-accent);
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

/* ---------- Results (4-col cards) ---------- */
.lac-results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 40px auto 0;
}

.lac-result {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lac-result:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.lac-result__icon {
  color: var(--color-accent);
  margin-bottom: 12px;
}

.lac-result p {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-main);
  line-height: 1.5;
}

/* ---------- Pricing ---------- */
.lac-pricing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 48px auto 0;
}

.lac-pricing__card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.lac-pricing__card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
}

.lac-pricing__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-bg-alt);
}

.lac-pricing__row span { font-size: 18px; color: var(--color-text-light); }
.lac-pricing__row strong { font-size: 18px; font-family: "Inter", sans-serif; }
.lac-pricing__row small { font-size: 18px; color: var(--color-text-light); }

.lac-pricing__card ul {
  list-style: none;
  padding: 0;
}

.lac-pricing__card ul li {
  font-size: 18px;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-bg-alt);
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.lac-pricing__card ul li::marker {
  content: none;
}

.lac-pricing__card ul li:last-child { border-bottom: none; }

/* ---------- Timeline ---------- */
.lac-timeline {
  max-width: 600px;
  margin: 48px auto 0;
  position: relative;
}

.lac-timeline__line {
  position: absolute;
  top: 0;
  left: 18px;
  width: 2px;
  height: 0;
  background: var(--color-accent);
  z-index: 0;
}

.lac-timeline__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
}

.lac-timeline__num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.lac-timeline__item p { font-size: 18px; }

/* ---------- Specs ---------- */
.lac-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 700px;
  margin: 48px auto 0;
}

.lac-specs__card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.lac-specs__card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}

.lac-specs__card ul { list-style: none; padding: 0; }
.lac-specs__card li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-bg-alt);
  gap: 16px;
}
.lac-specs__card li:last-child { border-bottom: none; }
.lac-specs__card span { font-size: 18px; color: var(--color-text-light); white-space: nowrap; }
.lac-specs__card strong { font-size: 18px; text-align: right; }

/* ---------- Quote ---------- */
.lac-quote {
  max-width: 640px;
  margin: 40px auto 0;
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.lac-quote__label {
  font-size: 18px;
  color: var(--color-text-light);
  margin-bottom: 14px;
}

.lac-quote blockquote {
  font-size: 18px;
  font-style: italic;
  line-height: 1.8;
  color: var(--color-main);
  border-left: 3px solid var(--color-accent);
  padding-left: 20px;
  margin: 0;
}

/* ---------- Instructor ---------- */
.lac-instructor {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  max-width: 800px;
  margin: 48px auto 0;
}

.lac-instructor__photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.lac-instructor__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lac-instructor__name {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 4px;
}

.lac-instructor__role {
  font-size: 18px;
  color: var(--color-text-light);
  margin-bottom: 16px;
  line-height: 1.6;
}

.lac-instructor__text p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* ---------- Voice ---------- */
.lac-voice {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 700px;
  margin: 48px auto 0;
}

.lac-voice__card {
  display: block;
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.lac-voice__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.lac-voice__card time {
  font-size: 18px;
  color: var(--color-text-light);
  display: block;
  margin-bottom: 10px;
}

.lac-voice__card p {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-main);
  line-height: 1.6;
}

/* ---------- Growth Roadmap ---------- */
.lac-roadmap {
  max-width: 600px;
  margin: 48px auto 0;
}

.lac-roadmap__step {
  display: block;
  width: 100%;
  background: var(--color-white);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.lac-roadmap__step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.lac-roadmap__bar { display: none; }

.lac-roadmap__body {
  padding: 22px 24px;
  flex: 1;
}

.lac-roadmap__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.lac-roadmap__body h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 4px;
}

.lac-roadmap__body p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.7;
}

.lac-roadmap__member-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}
.lac-roadmap__member-badge--bronze {
  background: #b8742e;
  color: #fff;
}
.lac-roadmap__member-badge--silver {
  background: #777;
  color: #fff;
}

.lac-roadmap__goal {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-accent);
  background: rgba(0,102,204,0.08);
  padding: 3px 12px;
  border-radius: 20px;
  opacity: 0;
}

/* Bridge between layers */
.lac-roadmap__bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.lac-roadmap__line { flex-shrink: 0; display: block; }

/* ---------- 5 Skill Cards ---------- */
.lac-skill-grid {
  max-width: 900px;
  margin: 64px auto 0;
}

.lac-skill-grid__title {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 36px;
  color: var(--color-main);
}

.lac-skill-grid__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
/* 4,5 を中央寄せ */
.lac-skill-grid__cards > :nth-child(4) { grid-column: 1 / 2; }
.lac-skill-grid__cards > :nth-child(5) { grid-column: 2 / 3; }

.lac-skill-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 28px 24px 24px;
  border: 1px solid var(--color-border);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.lac-skill-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.lac-skill-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(0,102,204,0.06);
  color: var(--color-accent);
  margin: 0 auto 14px;
}

.lac-skill-card__num {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-light);
  text-align: center;
  margin-bottom: 6px;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.5px;
}

.lac-skill-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 4px;
  text-align: center;
}

.lac-skill-card__sub {
  font-size: 12px;
  color: var(--color-accent);
  margin-bottom: 12px;
  text-align: center;
}

.lac-skill-card p:last-of-type {
  font-size: 13px;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* Highlight card (#3) */
.lac-skill-card--highlight {
  border: 2px solid var(--color-accent);
  background: rgba(0,102,204,0.02);
}
.lac-skill-card--highlight .lac-skill-card__icon {
  background: rgba(0,102,204,0.12);
}

.lac-skill-card__accent {
  display: block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-accent);
  background: rgba(0,102,204,0.08);
  padding: 6px 14px;
  border-radius: 6px;
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .lac-skill-grid__cards {
    grid-template-columns: 1fr;
  }
  .lac-skill-grid__cards > :nth-child(4),
  .lac-skill-grid__cards > :nth-child(5) { grid-column: auto; }
  .lac-roadmap::before { display: none; }
  .lac-roadmap__body h3 { font-size: 17px; }
  .lac-roadmap__body p { font-size: 13px; }
  .lac-skill-card { padding: 22px 18px; }
  .lac-skill-grid__title { font-size: 19px; }
}

/* ---------- Related article card ---------- */
.lac-related-card {
  max-width: 480px;
  margin: 32px auto 0;
}

.lac-related-card a {
  display: block;
  padding: 20px 24px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.lac-related-card a:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.lac-related-card__label {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-accent);
  background: rgba(0,102,204,0.08);
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.lac-related-card__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-main);
  line-height: 1.5;
  margin-bottom: 8px;
}

.lac-related-card__more {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-accent);
}

/* ---------- Voice video embed ---------- */
.lac-voice__video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  margin-bottom: 14px;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}

.lac-voice__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ---------- Voice (with preview) ---------- */
.lac-voice__preview {
  font-size: 18px;
  font-style: italic;
  color: var(--color-text-light);
  border-left: 2px solid var(--color-accent);
  padding-left: 12px;
  margin: 12px 0;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, margin 0.4s ease;
}

.lac-voice__card:hover .lac-voice__preview {
  max-height: 80px;
  opacity: 1;
  margin: 12px 0;
}

.lac-voice__more {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-accent);
  transition: transform 0.3s;
  display: inline-block;
}

.lac-voice__card:hover .lac-voice__more {
  transform: translateX(6px);
}

/* ---------- Premiere (inside specs) ---------- */
.lac-premiere {
  max-width: 700px;
  margin: 48px auto 0;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 32px;
}

.lac-premiere h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-main);
  margin-bottom: 20px;
}

/* ---------- CTA ---------- */
.lac-cta {
  position: relative;
  padding: 100px 0;
  background: #fff;
  color: #444;
  text-align: center;
  overflow: hidden;
}

.lac-cta__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.lac-cta__inner { max-width: 600px; margin: 0 auto; position: relative; z-index: 1; }
.lac-cta h2 { font-size: clamp(24px, 4vw, 36px); margin-bottom: 16px; color: #333; }
.lac-cta p { color: #666; font-size: 16px; line-height: 1.7; margin-bottom: 36px; }

.lac-cta__btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  border-radius: 40px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(0,102,204,0.3);
}

.lac-cta__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,102,204,0.4);
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(0,102,204,0.3), 0 0 0 0 rgba(0,102,204,0.2); }
  50% { box-shadow: 0 4px 20px rgba(0,102,204,0.3), 0 0 24px 8px rgba(0,102,204,0.1); }
}

.lac-cta__btn { animation: ctaPulse 2.5s ease-in-out infinite; }

/* ---------- GSAP reveal base ---------- */
/* Initial state set by GSAP .set() in JS */

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .lac-select__grid { grid-template-columns: 1fr; }
  .lac-pillars { flex-direction: column; max-width: 400px; }
  .lac-pricing { grid-template-columns: 1fr; }
  .lac-specs { grid-template-columns: 1fr; }
  .lac-voice { grid-template-columns: 1fr; }
  .lac-cycle { width: 300px; height: 300px; }
  .lac-cycle__node { width: 85px; height: 85px; font-size: 12px; }
  .lac-cycle__center { width: 80px; height: 80px; font-size: 13px; }
  .lac-orbit { height: auto; min-height: 600px; }
  .lac-orbit__card { position: relative; width: 100%; top: auto !important; left: auto !important; right: auto !important; bottom: auto !important; transform: none !important; }
  .lac-orbit__center { position: relative; top: auto; left: auto; transform: none; margin: 0 auto 24px; }
  .lac-orbit__ring, .lac-orbit__lines { display: none; }
  .lac-orbit { display: flex; flex-direction: column; align-items: center; gap: 16px; }
  .lac-layer__content { flex-direction: column; align-items: flex-start; gap: 8px; }
  .lac-voice__preview { max-height: 80px; opacity: 1; margin: 12px 0; }
  .lac-results { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .lac-hero__stats { gap: 28px; flex-wrap: wrap; }
  .lac-hero__num { font-size: 32px; }
  .lac-section { padding: 56px 0; }
  .lac-section__title { font-size: 22px; }
  .lac-section__sub { font-size: 14px; }
  .lac-pain { grid-template-columns: 1fr; }
  .lac-pain__item { font-size: 15px; padding: 18px; }
  .lac-pain__icon svg { width: 20px; height: 20px; }
  .lac-instructor { flex-direction: column; align-items: center; text-align: center; }
  .lac-results { grid-template-columns: repeat(2, 1fr); }
  .lac-result p { font-size: 13px; }
  .lac-pricing { grid-template-columns: 1fr; }
  .lac-pricing__card { padding: 24px; }
  .lac-check { font-size: 15px; }
  .lac-orbit__card h3 { font-size: 16px; }
  .lac-orbit__card p { font-size: 13px; }
  .lac-lms-features { grid-template-columns: 1fr; }
  .lac-flow-node__label { font-size: 13px; }
  .lac-specs { grid-template-columns: 1fr; }
  .lac-voice__card { padding: 20px; }
  .lac-voice__card blockquote { font-size: 14px; }
  .lac-timeline__item { font-size: 14px; }
  .lac-premiere li { font-size: 14px; }
  .lac-pyramid__layer { padding: 16px 12px; }
  .lac-pyramid__title { font-size: 15px; }
  .lac-pyramid__desc { font-size: 12px; }
}
