/* Services1A */
.Services1A {
  background-color: #222222;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8vh 6vw;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  height: auto;
}

.Services1AContent {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.Services1ATitle {
  color: #e6fffb;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  margin: 0;
}

.Services1AList {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ServiceBar {
  --service-bar-primary: rgba(32, 203, 176, 0.45);
  background: linear-gradient(120deg, rgba(9, 24, 23, 0.92), rgba(12, 36, 32, 0.82));
  border: 1px solid var(--service-bar-primary);
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ServiceBar:hover,
.ServiceBar[open] {
  background: linear-gradient(120deg, rgba(16, 42, 38, 0.92), rgba(20, 60, 52, 0.86));
  transform: translateY(-4px);
  border-color: rgba(68, 226, 201, 0.9);
  box-shadow: 0 18px 34px rgba(32, 203, 176, 0.26);
}

.ServiceBar.is-locked:hover,
.ServiceBar.is-locked[open],
.ServiceBar.is-coming-soon:hover,
.ServiceBar.is-coming-soon[open] {
  transform: none;
  box-shadow: none;
  border-color: var(--service-bar-primary);
}

.ServiceBarSummary {
  list-style: none;
  cursor: pointer;
  padding: 12px 18px;
  position: relative;
  z-index: 1;
}

.ServiceBarSummary::-webkit-details-marker {
  display: none;
}

.ServiceBarScreen {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(68, 226, 201, 0.18), transparent 55%);
  opacity: 0.8;
  z-index: 0;
}

.ServiceBarContent {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.ServiceBarDetails {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #e6fffb;
  flex: 1 1 auto;
}

.ServiceBarDetails h3 {
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.05rem;
}

.ServiceBarDetails .Text {
  color: rgba(230, 255, 251, 0.7);
  font-size: 0.95rem;
  line-height: 1.5;
}

.ServiceBar .ProductButton {
  margin-top: 0;
  align-self: center;
}

.ServiceBarButton {
  text-decoration: none;
}

.ServiceBarPanel {
  padding: 0 18px 16px;
  border-top: 1px solid rgba(32, 203, 176, 0.2);
  position: relative;
  z-index: 1;
}

.ServiceBarPackages {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ServiceBarPackages li {
  margin: 0;
}

.ServicePackage {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration: none;
  color: rgba(230, 255, 251, 0.9);
  background: rgba(10, 30, 26, 0.6);
  border: 1px solid rgba(32, 203, 176, 0.25);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
}

.ServicePackage:hover {
  border-color: rgba(68, 226, 201, 0.7);
  box-shadow: 0 10px 20px rgba(32, 203, 176, 0.18);
  transform: translateY(-1px);
}

.ServicePackage.is-locked:hover,
.ServicePackage.is-coming-soon:hover {
  border-color: rgba(32, 203, 176, 0.25);
  box-shadow: none;
  transform: none;
}

.ServicePackageName {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.ServicePackageSpecs {
  display: block;
  font-size: 0.85rem;
  color: rgba(230, 255, 251, 0.65);
  margin-top: 4px;
}

.ServicePackagePrice {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: rgba(230, 255, 251, 0.85);
}

.LockedOverlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 18, 0.55);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  color: #e6fffb;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  z-index: 6;
}

.is-coming-soon .LockedOverlay {
  opacity: 0.9;
}

.ServiceBarSummary.is-locked,
.ServiceBarSummary.is-coming-soon,
.ServicePackage.is-locked,
.ServicePackage.is-coming-soon,
.Package1ARow.is-locked,
.Package1ARow.is-coming-soon,
.Product2AHero.is-locked,
.Product2AHero.is-coming-soon {
  cursor: not-allowed;
}

.ServiceBarButton.is-locked,
.ServiceBarButton.is-coming-soon,
.ProductButton.is-locked,
.ProductButton.is-coming-soon {
  opacity: 0.6;
  pointer-events: none;
  box-shadow: none;
}

/* Package1A */
.Package1A {
  background-color: #222222;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8vh 6vw;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  height: auto;
}

.Package1A .LiquidBackground {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.Package1A .LiquidBackground canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.Package1AContent {
  position: relative;
  z-index: 1;
  width: min(1200px, 100%);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.Package1AHero {
  display: grid;
  grid-template-columns: minmax(200px, 260px) 1fr;
  gap: 28px;
  align-items: center;
  background: linear-gradient(160deg, rgba(27, 45, 43, 0.65), rgba(7, 15, 22, 0.3));
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(32, 203, 176, 0.2);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.25);
}

.Package1AAlbum {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(10, 16, 22, 0.95), rgba(18, 36, 32, 0.95));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e6fffb;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 2rem;
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.15);
}

.Package1AAlbum img {
  width: 70%;
  height: 70%;
  object-fit: contain;
}

.Package1AAlbumIcon {
  font-size: 2.2rem;
}

.Package1AHeroText {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #e6fffb;
}

.Package1AHeroText h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0;
}

.Package1AKicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(230, 255, 251, 0.65);
}

.PackageTabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.PackageTab {
  border: 1px solid rgba(68, 226, 201, 0.35);
  background: rgba(10, 30, 26, 0.65);
  color: rgba(230, 255, 251, 0.85);
  padding: 10px 18px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.PackageTab.is-active {
  border-color: rgba(68, 226, 201, 0.85);
  color: #e6fffb;
  box-shadow: 0 12px 24px rgba(32, 203, 176, 0.25);
}

.Package1AList {
  background: rgba(10, 16, 22, 0.7);
  border-radius: 18px;
  border: 1px solid rgba(32, 203, 176, 0.2);
  padding: 16px 12px;
}

.Package1AListHeader,
.Package1ARow {
  display: grid;
  grid-template-columns: 40px minmax(140px, 1.2fr) 120px 160px 120px 120px;
  gap: 16px;
  align-items: center;
  padding: 12px 12px;
}

.Package1AListHeader {
  color: rgba(230, 255, 251, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  border-bottom: 1px solid rgba(32, 203, 176, 0.2);
}

.Package1AHeaderPrice {
  text-align: right;
}

.Package1ARow {
  text-decoration: none;
  color: rgba(230, 255, 251, 0.9);
  border-radius: 12px;
  transition: background 0.2s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
}

.Package1ARow:hover {
  background: rgba(32, 203, 176, 0.08);
  transform: translateY(-1px);
}

.Package1ARow.is-locked:hover,
.Package1ARow.is-coming-soon:hover {
  background: transparent;
  transform: none;
}

.Package1AIndex {
  color: rgba(230, 255, 251, 0.55);
}

.Package1ATitle {
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.Package1ASpec {
  color: rgba(230, 255, 251, 0.7);
}

.Package1APrice {
  font-weight: 600;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* Product2A */
.Product2A {
  background-color: #222222;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8vh 6vw;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  height: auto;
}

.Product2A .LiquidBackground {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.Product2A .LiquidBackground canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.Product2AContent {
  position: relative;
  z-index: 1;
  width: min(1200px, 100%);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.Product2AHero {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 28px;
  align-items: center;
  background: linear-gradient(160deg, rgba(27, 45, 43, 0.7), rgba(7, 15, 22, 0.3));
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(32, 203, 176, 0.2);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}

.Product2AThumb {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 18px;
  background: linear-gradient(140deg, rgba(32, 203, 176, 0.9), rgba(18, 70, 110, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.12);
}

.Product2AThumbFallback {
  color: #e6fffb;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 2rem;
}

.Product2AHeroText {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #e6fffb;
}

.Product2AHeroText h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.Product2AKicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(230, 255, 251, 0.65);
}

.Product2APrice {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.Product2AButton {
  width: fit-content;
  text-decoration: none;
}

.Product2ASpecs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.Product2ASpec {
  background: rgba(10, 30, 26, 0.65);
  border: 1px solid rgba(32, 203, 176, 0.25);
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: rgba(230, 255, 251, 0.85);
}

.Product2ASpec strong {
  font-size: 1rem;
  color: #e6fffb;
}

@media (max-width: 900px) {
  .Product2AHero {
    grid-template-columns: 1fr;
  }
}

