[data-page="lumion-view"] {
    --page-primary: #66263D;
    --page-secondary: #DB99B5;
    --page-bg-light: #f5eef1;
}

/* Lumion View specific styles */

.lv-meet-section {
  padding: 80px 20px;
  background: var(--page-bg-light);
}
.lv-meet-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: center;
}
.lv-meet-text {
  flex: 1;
}
.lv-meet-text h2 {
  font-size: 2.5rem;
  color: var(--page-primary);
  margin-bottom: 20px;
  font-weight: 600;
}
.lv-meet-text p {
  font-size: 1.125rem;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}
.lv-meet-text a {
  color: var(--page-primary);
  text-decoration: underline;
  font-weight: 600;
}
.lv-meet-media {
  flex: 1;
  aspect-ratio: 16/9;
}
.lv-meet-media iframe {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .lv-meet-inner {
    flex-direction: column;
  }
  .lv-meet-media {
    width: 100%;
  }
}

.lv-versions-section {
  padding: 80px 20px;
  background: var(--page-primary);
  color: #fff;
}
.lv-versions-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.lv-versions-head {
  text-align: left;
  margin-bottom: 50px;
}
.lv-versions-head h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}
.lv-versions-head p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
}
.lv-versions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .lv-versions-grid {
    grid-template-columns: 1fr;
  }
}
.lv-version-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.lv-version-img {
  width: 100%;
  aspect-ratio: 16/9;
}
.lv-version-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lv-version-content {
  padding: 30px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.lv-version-content h4 {
  font-size: 1.3rem;
  color: var(--page-primary);
  margin-bottom: 25px;
  font-weight: 600;
}
.lv-btn {
  background: var(--page-primary);
  color: #fff;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: 0.3s;
}
.lv-btn:hover {
  background: #4a1b2d;
  color: #fff;
}

.lv-accordion-section {
  padding: 80px 20px;
  background: var(--page-bg-light);
}
.lv-accordion-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
}
.lv-accordion-text {
  flex: 1;
}
.lv-accordion-text h2 {
  font-size: 2.5rem;
  color: var(--page-primary);
  margin-bottom: 20px;
  font-weight: 600;
}
.lv-accordion-text p {
  font-size: 1.125rem;
  color: #444;
  margin-bottom: 40px;
  line-height: 1.6;
}
.lv-accordion-media {
  flex: 1;
}
.lv-accordion-media video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
  .lv-accordion-inner {
    flex-direction: column;
  }
}

.lv-accordion-list {
  display: flex;
  flex-direction: column;
}
.lv-accordion-item {
  border-bottom: 1px solid #ddd;
}
.lv-accordion-header {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 25px 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--page-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lv-accordion-header svg {
  transition: transform 0.3s;
}
.lv-accordion-header[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.lv-accordion-body {
  display: none;
  padding-bottom: 25px;
  color: #444;
  line-height: 1.6;
}
.lv-accordion-body ul {
  padding-left: 20px;
  margin: 10px 0;
}
.lv-accordion-body a {
  color: var(--page-primary);
  text-decoration: underline;
  font-weight: 600;
}

.lv-trial-section {
  padding: 80px 20px;
  background: var(--page-primary);
  color: #fff;
}
.lv-trial-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.lv-trial-text {
  flex: 1;
}
.lv-trial-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 600;
}
.lv-trial-text p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}
.lv-trial-form {
  flex: 1;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
@media (max-width: 768px) {
  .lv-trial-inner {
    flex-direction: column;
  }
}

.lv-faq-section {
  padding: 80px 20px;
  background: var(--page-bg-light);
}
.lv-faq-inner {
  max-width: 800px;
  margin: 0 auto;
}
.lv-faq-inner h2 {
  font-size: 2.5rem;
  color: var(--page-primary);
  margin-bottom: 50px;
  text-align: center;
  font-weight: 600;
}