/* =============================================
   LEAN PROCESS EXCELLENCE SEMINAR
   ISIS Papyrus Software - Seminar Page Styles
   ============================================= */

/* CSS Variables */
:root {
  --lps-primary: #6bb8be;
  --lps-primary-dark: #5aa8ae;
  --lps-primary-darker: #4a9da3;
  --lps-primary-glow: rgba(107, 184, 190, 0.25);
  --lps-navy: #1e293b;
  --lps-navy-light: #334155;
  --lps-text: #334155;
  --lps-text-light: #64748b;
  --lps-text-lighter: #94a3b8;
  --lps-bg: #f8fafc;
  --lps-bg-alt: #f1f5f9;
  --lps-white: #ffffff;
  --lps-border: #e2e8f0;
  --lps-radius: 14px;
  --lps-radius-lg: 20px;
  --lps-radius-xl: 28px;
  --lps-shadow: 0 4px 24px rgba(30, 41, 59, 0.08);
  --lps-shadow-lg: 0 12px 40px rgba(30, 41, 59, 0.12);
  --lps-shadow-xl: 0 20px 60px rgba(30, 41, 59, 0.15);
  --lps-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --lps-ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Global overflow fix */
.lps-page-wrapper {
  overflow-x: hidden;
  width: 100%;
}

/* =============================================
   HERO SECTION
   ============================================= */
.lps-hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--lps-navy);
}

.lps-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lps-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.lps-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(30, 41, 59, 0.88) 0%,
    rgba(30, 41, 59, 0.7) 35%,
    rgba(30, 41, 59, 0.45) 60%,
    rgba(30, 41, 59, 0.3) 100%
  );
}

.lps-hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 24px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: center;
  box-sizing: border-box;
}

/* Hero Content */
.lps-hero__content {
  max-width: 640px;
}

.lps-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(107, 184, 190, 0.15);
  border: 1px solid rgba(107, 184, 190, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.lps-hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--lps-primary);
  border-radius: 50%;
  animation: lps-pulse 2s ease-in-out infinite;
}

@keyframes lps-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(107, 184, 190, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(107, 184, 190, 0); }
}

.lps-hero__badge-text {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lps-primary);
}

.lps-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--lps-white);
  line-height: 1.15;
  margin: 0 0 20px;
}

.lps-hero__title span {
  color: var(--lps-primary);
}

.lps-hero__subtitle {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin: 0 0 32px;
  max-width: 620px;
}

/* Hero Meta Info */
.lps-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 32px;
}

.lps-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
}

.lps-hero__meta-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(107, 184, 190, 0.15);
  border-radius: 10px;
  color: var(--lps-primary);
  font-size: 1rem;
}

.lps-hero__meta-text strong {
  display: block;
  color: var(--lps-white);
  font-weight: 600;
}

/* Hero CTA */
.lps-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.lps-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--lps-radius);
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.3s var(--lps-ease);
  cursor: pointer;
  border: none;
}

.lps-hero__btn--primary {
  background: var(--lps-primary);
  color: var(--lps-white) !important;
  box-shadow: 0 4px 20px var(--lps-primary-glow);
}

.lps-hero__btn--primary:hover {
  background: var(--lps-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(107, 184, 190, 0.4);
}

.lps-hero__btn--glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9) !important;
}

.lps-hero__btn--glass:hover {
  background: rgba(107, 184, 190, 0.2);
  border-color: rgba(107, 184, 190, 0.4);
  transform: translateY(-3px);
}

/* Hero Speaker Card */
.lps-hero__speaker {
  position: relative;
}

.lps-hero__speaker-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--lps-radius-xl);
  padding: 32px;
  text-align: center;
}

.lps-hero__speaker-photo {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 24px;
}

.lps-hero__speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
  border: 4px solid rgba(107, 184, 190, 0.3);
}

.lps-hero__speaker-photo::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed rgba(107, 184, 190, 0.3);
  animation: lps-rotate 20s linear infinite;
}

@keyframes lps-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.lps-hero__speaker-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--lps-white);
  margin: 0 0 8px;
}

.lps-hero__speaker-title {
  font-size: 1.2rem;
  color: var(--lps-primary);
  font-weight: 500;
  margin: 0 0 16px;
}

.lps-hero__speaker-credentials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.lps-hero__credential {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.lps-hero__credential i {
  color: var(--lps-primary);
}

/* =============================================
   SECTION STYLES
   ============================================= */
.lps-section {
  padding: 90px 24px;
}

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

.lps-section--dark {
  background: var(--lps-navy);
}

.lps-container {
  max-width: 1200px;
  margin: 0 auto;
}

.lps-section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.lps-section__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lps-primary);
  margin-bottom: 16px;
}

.lps-section__label i {
  /* inherits size */
}

.lps-section__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--lps-navy);
  line-height: 1.2;
  margin: 0 0 18px;
}

.lps-section--dark .lps-section__title {
  color: var(--lps-white);
}

.lps-section__desc {
  color: var(--lps-text-light);
  line-height: 1.7;
  margin: 0;
}

.lps-section--dark .lps-section__desc {
  color: rgba(255, 255, 255, 0.7);
}

/* =============================================
   INTRO SECTION
   ============================================= */
.lps-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.lps-intro__content h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--lps-navy);
  margin: 0 0 24px;
  line-height: 1.2;
}

.lps-intro__content p {
  color: var(--lps-text);
  line-height: 1.8;
  margin: 0;
}

.lps-intro__visual {
  position: relative;
}

/* Why This Matters - Redesigned as horizontal card */
.lps-intro__card {
  background: var(--lps-white);
  border-radius: var(--lps-radius-lg);
  padding: 32px 36px;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  box-shadow: var(--lps-shadow);
  border: 1px solid var(--lps-border);
  transition: all 0.4s var(--lps-ease);
}

.lps-intro__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lps-shadow-lg);
  border-color: rgba(107, 184, 190, 0.3);
}

.lps-intro__card-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--lps-primary) 0%, var(--lps-primary-dark) 100%);
  border-radius: 14px;
  box-shadow: 0 8px 20px var(--lps-primary-glow);
}

.lps-intro__card-icon i {
  font-size: 1.4rem;
  color: var(--lps-white);
}

.lps-intro__card-content {
  flex: 1;
}

.lps-intro__card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--lps-navy);
  margin: 0 0 10px;
}

.lps-intro__card p {
  color: var(--lps-text-light);
  line-height: 1.7;
  margin: 0;
}

/* =============================================
   LEARNINGS GRID
   ============================================= */
.lps-learnings {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.lps-learning-card {
  background: var(--lps-white);
  border: 1px solid var(--lps-border);
  border-radius: var(--lps-radius-lg);
  padding: 32px 28px;
  transition: all 0.4s var(--lps-ease);
  position: relative;
}

.lps-learning-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--lps-shadow-lg);
  border-color: rgba(107, 184, 190, 0.3);
}

.lps-learning-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(107, 184, 190, 0.12) 0%, rgba(107, 184, 190, 0.05) 100%);
  border-radius: 14px;
  margin-bottom: 20px;
  transition: all 0.4s var(--lps-ease);
}

.lps-learning-card:hover .lps-learning-card__icon {
  background: linear-gradient(135deg, var(--lps-primary) 0%, var(--lps-primary-dark) 100%);
  box-shadow: 0 8px 24px var(--lps-primary-glow);
}

.lps-learning-card__icon i {
  font-size: 1.4rem;
  color: var(--lps-primary);
  transition: color 0.4s var(--lps-ease);
}

.lps-learning-card:hover .lps-learning-card__icon i {
  color: var(--lps-white);
}

.lps-learning-card__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--lps-navy);
  margin: 0 0 12px;
  line-height: 1.3;
}

.lps-learning-card__text {
  color: var(--lps-text-light);
  line-height: 1.65;
  margin: 0;
}

/* =============================================
   CONTENT/TOPICS SECTION
   ============================================= */
.lps-topics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.lps-topic-card {
  background: var(--lps-white);
  border: 1px solid var(--lps-border);
  border-radius: var(--lps-radius-lg);
  padding: 32px;
  transition: all 0.4s var(--lps-ease);
  display: flex;
  gap: 20px;
}

.lps-topic-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lps-shadow);
  border-color: rgba(107, 184, 190, 0.3);
}

.lps-topic-card__number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--lps-primary) 0%, var(--lps-primary-dark) 100%);
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--lps-white);
}

.lps-topic-card__content h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--lps-navy);
  margin: 0 0 10px;
}

.lps-topic-card__content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lps-topic-card__content li {
  position: relative;
  padding-left: 18px;
  color: var(--lps-text-light);
  line-height: 1.6;
  margin-bottom: 6px;
}

.lps-topic-card__content li:last-child {
  margin-bottom: 0;
}

.lps-topic-card__content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--lps-primary);
  border-radius: 50%;
}

/* =============================================
   AGENDA SECTION
   ============================================= */
.lps-agenda {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.lps-agenda-day {
  background: var(--lps-white);
  border: 1px solid var(--lps-border);
  border-radius: var(--lps-radius-xl);
  overflow: hidden;
  transition: all 0.4s var(--lps-ease);
}

.lps-agenda-day:hover {
  box-shadow: var(--lps-shadow-lg);
}

.lps-agenda-day__header {
  background: linear-gradient(135deg, var(--lps-navy) 0%, var(--lps-navy-light) 100%);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.lps-agenda-day__badge {
  width: 56px;
  height: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.lps-agenda-day__badge-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lps-primary);
}

.lps-agenda-day__badge-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--lps-white);
  line-height: 1;
}

.lps-agenda-day__title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--lps-white);
  margin: 0;
}

.lps-agenda-day__content {
  padding: 28px 32px;
}

.lps-agenda-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--lps-border);
}

.lps-agenda-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.lps-agenda-item:first-child {
  padding-top: 0;
}

.lps-agenda-item__marker {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  background: var(--lps-primary);
  border-radius: 50%;
  margin-top: 6px;
}

.lps-agenda-item__text {
  color: var(--lps-text);
  line-height: 1.6;
}

/* =============================================
   SPEAKER BIO SECTION - REDESIGNED
   ============================================= */
.lps-speaker-grid {
  max-width: 900px;
  margin: 0 auto;
}

/* Video Feature */
.lps-speaker-video {
  margin-bottom: 48px;
}

.lps-video-trigger {
  display: block;
  position: relative;
  border-radius: var(--lps-radius-xl);
  overflow: hidden;
  box-shadow: var(--lps-shadow-lg);
  text-decoration: none !important;
}

.lps-video-trigger__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
}

.lps-video-trigger__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--lps-ease);
}

.lps-video-trigger:hover .lps-video-trigger__thumb img {
  transform: scale(1.03);
}

.lps-video-trigger__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(30, 41, 59, 0.4);
  transition: background 0.4s var(--lps-ease);
}

.lps-video-trigger:hover .lps-video-trigger__overlay {
  background: rgba(30, 41, 59, 0.55);
}

.lps-video-trigger__play {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lps-white);
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.4s var(--lps-ease);
}

.lps-video-trigger:hover .lps-video-trigger__play {
  transform: scale(1.1);
  background: var(--lps-primary);
  box-shadow: 0 12px 40px var(--lps-primary-glow);
}

.lps-video-trigger__play i {
  font-size: 1.6rem;
  color: var(--lps-primary);
  margin-left: 4px;
  transition: color 0.4s var(--lps-ease);
}

.lps-video-trigger:hover .lps-video-trigger__play i {
  color: var(--lps-white);
}

.lps-video-trigger__label {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lps-white);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s var(--lps-ease);
}

.lps-video-trigger:hover .lps-video-trigger__label {
  opacity: 1;
  transform: translateY(0);
}

/* Speaker Info Card */
.lps-speaker-info {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: var(--lps-white);
  border: 1px solid var(--lps-border);
  border-radius: var(--lps-radius-lg);
  padding: 32px;
  box-shadow: var(--lps-shadow);
}

.lps-speaker-info__photo {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(30, 41, 59, 0.12);
}

.lps-speaker-info__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lps-speaker-info__content {
  flex: 1;
}

.lps-speaker-info__role {
  color: var(--lps-primary);
  font-weight: 600;
  margin: 0 0 16px;
  line-height: 1.5;
}

.lps-speaker-info__bio {
  color: var(--lps-text);
  line-height: 1.7;
  margin: 0 0 20px;
}

.lps-speaker-info__credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.lps-speaker-info__cred {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--lps-bg);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--lps-text);
}

.lps-speaker-info__cred i {
  color: var(--lps-primary);
  font-size: 0.85rem;
}

.lps-speaker-info__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lps-primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s var(--lps-ease);
}

.lps-speaker-info__link:hover {
  color: var(--lps-primary-dark);
  text-decoration: none;
}

.lps-speaker-info__link i {
  font-size: 0.9rem;
}

/* Video Popup Styles */
.lps-video-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lps-video-popup.active {
  display: flex;
}

.lps-video-popup__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: var(--lps-white);
  font-size: 1.4rem;
  cursor: pointer;
  transition: all 0.3s var(--lps-ease);
}

.lps-video-popup__close:hover {
  background: var(--lps-white);
  border-color: var(--lps-white);
  color: var(--lps-navy);
}

.lps-video-popup__content {
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 16 / 9;
}

.lps-video-popup__content iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--lps-radius);
}

/* =============================================
   DATE SELECTION
   ============================================= */
.lps-dates {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.lps-date-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--lps-radius-xl);
  padding: 36px;
  text-align: center;
  transition: all 0.4s var(--lps-ease);
  cursor: default;
}

.lps-date-card:hover {
  border-color: rgba(107, 184, 190, 0.4);
  background: rgba(107, 184, 190, 0.1);
  transform: translateY(-4px);
}

.lps-date-card__month {
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lps-primary);
  margin-bottom: 8px;
}

.lps-date-card__days {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--lps-white);
  margin-bottom: 8px;
}

.lps-date-card__year {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.lps-date-card__weekdays {
  color: rgba(255, 255, 255, 0.5);
}

/* =============================================
   INVESTMENT/PRICE SECTION
   ============================================= */
.lps-investment {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: 900px;
  margin: 56px auto 0;
  padding: 40px 48px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--lps-radius-xl);
}

.lps-investment__price {
  text-align: center;
}

.lps-investment__amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--lps-white);
  line-height: 1;
}

.lps-investment__amount span {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.lps-investment__label {
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
}

.lps-investment__divider {
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.15);
}

.lps-investment__includes {
  flex: 1;
}

.lps-investment__includes-title {
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lps-primary);
  margin-bottom: 16px;
}

.lps-investment__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.lps-investment__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
}

.lps-investment__list li i {
  color: var(--lps-primary);
}

/* =============================================
   LOCATION SECTION
   ============================================= */
.lps-location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.lps-location__info h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--lps-navy);
  margin: 0 0 20px;
}

.lps-location__address {
  color: var(--lps-text);
  line-height: 1.8;
  margin: 0 0 24px;
  font-style: normal;
}

.lps-location__address strong {
  display: block;
  color: var(--lps-navy);
  margin-bottom: 8px;
}

.lps-location__features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lps-location__feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lps-bg);
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 1rem;
  color: var(--lps-text);
}

.lps-location__feature i {
  color: var(--lps-primary);
}

.lps-location__map {
  border-radius: var(--lps-radius-xl);
  overflow: hidden;
  box-shadow: var(--lps-shadow-lg);
  height: 320px;
}

.lps-location__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* =============================================
   CTA SECTION
   ============================================= */
.lps-cta {
  text-align: center;
  padding: 100px 24px;
  background: linear-gradient(135deg, var(--lps-navy) 0%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}

.lps-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 150%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(107, 184, 190, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.lps-cta__container {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.lps-cta__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--lps-white);
  margin: 0 0 18px;
}

.lps-cta__text {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin: 0 0 36px;
}

.lps-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--lps-primary);
  color: var(--lps-white) !important;
  padding: 18px 40px;
  border-radius: var(--lps-radius);
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.4s var(--lps-ease);
  box-shadow: 0 4px 24px var(--lps-primary-glow);
}

.lps-cta__btn:hover {
  background: var(--lps-primary-dark);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(107, 184, 190, 0.4);
}

.lps-cta__btn i {
  transition: transform 0.3s var(--lps-ease);
}

.lps-cta__btn:hover i {
  transform: translateX(4px);
}

/* =============================================
   RESPONSIVE STYLES
   ============================================= */
@media (max-width: 1100px) {
  .lps-hero__container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .lps-hero__speaker {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .lps-learnings {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .lps-speaker-info {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .lps-speaker-info__credentials {
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .lps-hero {
    min-height: auto;
  }
  
  .lps-hero__container {
    padding: 60px 24px;
  }
  
  .lps-section {
    padding: 70px 24px;
  }
  
  .lps-intro {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .lps-topics {
    grid-template-columns: 1fr;
  }
  
  .lps-agenda {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .lps-location {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .lps-dates {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .lps-investment {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  
  .lps-investment__divider {
    width: 80px;
    height: 1px;
  }
  
  .lps-investment__list {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  
  .lps-related {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .lps-hero__title {
    font-size: 1.8rem;
  }
  
  .lps-hero__meta {
    flex-direction: column;
    gap: 14px;
  }
  
  .lps-hero__cta {
    flex-direction: column;
  }
  
  .lps-hero__btn {
    width: 100%;
    justify-content: center;
  }
  
  .lps-hero__speaker-card {
    padding: 24px;
  }
  
  .lps-hero__speaker-photo {
    width: 140px;
    height: 140px;
  }
  
  .lps-learnings {
    grid-template-columns: 1fr;
  }
  
  .lps-section__title {
    font-size: 1.6rem;
  }
  
  .lps-agenda-day__header {
    padding: 20px 24px;
  }
  
  .lps-agenda-day__content {
    padding: 20px 24px;
  }
  
  .lps-investment__amount {
    font-size: 2.4rem;
  }
  
  .lps-cta {
    padding: 70px 24px;
  }
}

@media (max-width: 480px) {
  .lps-hero__container {
    padding: 48px 16px;
  }
  
  .lps-section {
    padding: 56px 16px;
  }
  
  .lps-hero__badge {
    padding: 8px 14px;
  }
  
  .lps-hero__badge-text {
    font-size: 0.75rem;
  }
  
  .lps-topic-card {
    flex-direction: column;
    gap: 16px;
  }
  
  .lps-topic-card__number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

/* =============================================
   PRINT STYLES
   ============================================= */
@media print {
  .lps-hero {
    min-height: auto;
    background: var(--lps-bg) !important;
    color: var(--lps-navy) !important;
  }
  
  .lps-hero__bg {
    display: none;
  }
  
  .lps-hero__title,
  .lps-hero__subtitle {
    color: var(--lps-navy) !important;
  }
  
  .lps-hero__btn,
  .lps-cta {
    display: none;
  }
  
  .lps-section {
    padding: 40px 0;
    break-inside: avoid;
  }
}

/* =============================================
   ACCESSIBILITY - FOCUS STATES
   ============================================= */
.lps-hero__btn:focus-visible,
.lps-cta__btn:focus-visible,
.lps-related-card:focus-visible {
  outline: 3px solid var(--lps-primary);
  outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}