:root {
	--pr-dark: #141414;
	--pr-accent: #25fabe;
	--pr-muted: #a3a3a3;
	--pr-bg: #f8f8f8;
	--pr-card-bg: #292929;
}

/* INTRO SECTION */
.pricing-intro-wrapper {
	height: 100vh;
	position: relative;
	background: var(--pr-bg);
}

.pricing-intro {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.pricing-intro-text {
	max-width: 680px;
	text-align: center;
}

.pricing-kicker {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: var(--pr-muted);
	display: block;
	margin-bottom: 1.5rem;
}

.pricing-intro-text h1 {
	font-size: clamp(3rem, 6vw, 5rem);
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: -0.05em;
	color: var(--pr-dark);
}

.text-highlight {
	color: var(--pr-muted);
	font-style: italic;
	font-weight: 400;
}

.pricing-intro-text p {
	font-size: 1.15rem;
	color: var(--pr-muted);
	margin-top: 2rem;
	line-height: 1.7;
}

/* STICKY TABS SECTION */
.section_pricing_tabs {
	background-color: var(--pr-dark);
	border-radius: 2.5rem;
	margin: 0 0 4rem;
	position: relative;
	z-index: 10;
}

.tabs_height_container {
	height: 400vh; /* Control how long people need to scroll */
}

.tabs_sticky_box {
	height: calc(100vh - 100px); /* Account for navbar height */
	position: sticky;
	top: 100px; /* Offset from the top to accommodate the sticky navbar */
	display: flex;
	align-items: center;
}

.tabs_main_component {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 2rem;
	width: 100%;
	padding: 0 4%;
	height: 80vh; /* Slightly reduced height for better fit */
}

/* CONTENT SIDE */
.tabs_info_area {
	background-color: var(--pr-card-bg);
	border-radius: 2rem;
	padding: 3rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}

.tabs_info_list {
	position: relative;
	height: 100%;
	width: 100%;
}

.pricing_content_item {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between; /* Distribute text evenly like the example */
	padding: 1rem 0;
	opacity: 0;
	pointer-events: none;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
	text-align: center;
}

.pricing_content_item.is-active {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.tier-label {
	color: var(--pr-accent);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.25em;
	margin-bottom: 0.5rem;
}

.tier-title {
	color: #fff;
	font-size: clamp(2rem, 4vw, 2.5rem);
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -0.04em;
	margin-bottom: 0.5rem;
}

.tier-price {
	color: var(--pr-muted);
	font-size: 1.25rem;
	font-weight: 300;
	margin-bottom: 1.5rem;
}

.tier-line {
	width: 100%;
	height: 1px;
	background-color: var(--pr-muted);
	opacity: 0.3;
	margin-bottom: 2rem;
}

.tier-features {
	list-style: none;
	padding: 0;
	margin-top: 0;
	margin-bottom: 2rem;
}

.tier-features li {
	color: var(--pr-muted);
	padding: 0.4rem 0;
	font-size: 0.95rem;
	line-height: 1.5;
}

.tier-btn {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255,255,255,0.3);
	padding: 0.8rem 1.5rem;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 500;
	text-transform: uppercase;
	font-size: 0.8rem;
	letter-spacing: 0.05em;
	transition: all 0.3s ease;
	align-self: center;
	width: 100%;
	max-width: 280px;
}

.tier-btn.is-accent {
	border-color: var(--pr-accent);
	color: var(--pr-accent);
}

.tier-btn:hover {
	transform: translateY(-3px);
	background: rgba(255,255,255,0.05);
	border-color: #fff;
}

/* VISUAL SIDE */
.tabs_visual_area {
	border-radius: 2rem;
	overflow: hidden;
	position: relative;
}

.visual_media_container {
	position: relative;
	width: 100%;
	height: 100%;
}

.pricing_actions_group {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center; /* Center buttons horizontally */
  align-items: center; /* Align vertically */
}

.pricing_or_text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  font-weight: 300;
  font-style: italic;
  font-family: 'Inter', sans-serif;
}

.btn-premium {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  border-radius: 9999px;
  overflow: hidden;
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
  background: transparent;
  cursor: pointer;
}

.btn-premium .btn-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.05);
  transform: rotate(45deg) translate(20px, -10px);
  pointer-events: none;
}

.btn-premium .btn-flash {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: #ffffff;
  transform: rotate(45deg) translate(-250px, -100px);
  transition: all 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  pointer-events: none;
}

.btn-premium:hover {
  color: #111111;
}

.btn-premium:hover .btn-flash {
  transform: rotate(45deg) translate(-30px, -20px);
}

.btn-premium span.btn-text {
  position: relative;
  z-index: 2;
}

.visual_media_item {
	position: absolute;
	inset: 0;
	opacity: 0;
	transform: scale(1.1);
	transition: opacity 0.8s ease, transform 1.2s ease;
}

.visual_media_item.is-active {
	opacity: 1;
	transform: scale(1);
}

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

.media-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 40%);
	display: flex;
	align-items: flex-end;
	padding: 2rem;
}

.media-badge-group {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.media-badge {
	background: #fff;
	color: var(--pr-dark);
	padding: 0.6rem 1.2rem;
	border-radius: 8px;
	font-weight: 700;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.media-badge.is-popular-badge {
	background: var(--pr-accent);
}

/* RESPONSIVE */
@media (max-width: 991px) {
	.tabs_main_component {
		grid-template-columns: 1fr;
		grid-template-rows: 1fr auto;
		height: auto;
		padding: 2rem;
	}

	.tabs_height_container {
		height: 300vh;
	}

	.tabs_sticky_box {
		align-items: flex-start;
		padding-top: 5vh;
	}

	.tabs_info_area {
		min-height: 450px;
	}

	.tabs_visual_area {
		display: none; /* Simplify on mobile to avoid overlap bugs */
	}

	.tier-title {
		font-size: 2.2rem;
	}
}
