/* Font Faces - Using shared fonts */
@font-face {
	font-family: 'ETSans';
	src: url('../../shared/fonts/ETSans-Light.woff2') format('woff2');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'ETSans';
	src: url('../../shared/fonts/ETSans-LightItalic.woff2') format('woff2');
	font-weight: 300;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'ETSans';
	src: url('../../shared/fonts/ETSans-Regular.woff2') format('woff2');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'ETSans';
	src: url('../../shared/fonts/ETSans-Medium.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'ETSans';
	src: url('../../shared/fonts/ETSans-Medium.woff2') format('woff2');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'ETSans';
	src: url('../../shared/fonts/ETSans-Bold.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'ETSans';
	src: url('../../shared/fonts/ETSans-ExtraBold.woff2') format('woff2');
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'ETSans';
	src: url('../../shared/fonts/ETSans-ExtraBoldItalic.woff2') format('woff2');
	font-weight: 800;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'ET Title Slab';
	src: url('../../shared/fonts/ETTitle-Slab.woff2') format('woff2');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

/* Design Tokens - CSS Custom Properties */
:root {
	/* Colors - Primary */
	--color-primary-red: #EF3B23;
	--color-primary-red-hover: #D33520;
	--color-primary-blue: #0F3E8A;

	/* Colors - Background */
	--color-bg-light-blue: #D9EDF6;
	--color-bg-hero: #D9EDF6;
	--color-bg-white: #FFFFFF;
	--color-bg-gray-light: #F3F4F6;
	--color-bg-pay-by-check: #F6F7FB;
	--color-bg-footer: #444444;

	/* Colors - Text */
	--color-text-dark: #141414;
	--color-text-black: #000000;
	--color-text-gray: #1F2937;
	--color-text-gray-medium: #4B5563;
	--color-text-gray-light: #9CA3AF;

	/* Colors - Accents */
	--color-border: #E2E8F0;
	--color-border-card: #E5E7EB;
	--color-green: #00A878;
	--color-pink-stripe: #FFB6D9;
	--color-checkmark: #00A878;

	/* Typography - Hero */
	--font-size-hero-title-desktop: 36px;
	--font-size-hero-title-tablet-h: 32px;
	--font-size-hero-title-tablet-v: 28px;
	--font-size-hero-title-mobile: 24px;
	--font-size-hero-subtitle-desktop: 16px;
	--font-size-hero-subtitle-tablet: 15px;
	--font-size-hero-subtitle-mobile: 13px;
	--font-weight-hero-title: 800;
	--font-weight-hero-subtitle: 500;
	--line-height-hero-title: 1.25;
	--line-height-hero-subtitle: 1.45;

	/* Typography - Cards */
	--font-size-card-title: 27px;
	--font-size-sale-price: 44px;
	--font-size-original-price: 24px;
	--font-size-list-item: 15px;
	--font-size-section-title: 24px;
	--font-weight-card-title: 800;
	--font-weight-section-title: 700;

	/* Spacing */
	--spacing-hero-padding: 64px;
	--spacing-hero-container-height-desktop: 280px;
	--spacing-hero-container-height-tablet: 240px;
	--spacing-card-padding: 36px;
	--spacing-card-max-width: 680px;
	--spacing-container-max-width: 1180px;
	--spacing-pink-stripe-height: 12px;
	--spacing-topbar-gap: 24px;

	/* Breakpoints */
	--breakpoint-mobile: 767px;
	--breakpoint-tablet: 768px;
	--breakpoint-desktop: 1024px;

	/* Shadows */
	--shadow-topbar-shell: 0 4px 10px rgba(0, 0, 0, 0.07);
	--shadow-gift-card: 0 6px 24px rgba(0, 0, 0, 0.08);
	--shadow-discount-badge: 0 10px 20px rgba(0, 0, 0, 0.12);
	--shadow-gift-image: 0 10px 22px rgba(0, 0, 0, 0.14);
	--shadow-pay-by-check: 0 10px 26px rgba(0, 0, 0, 0.06);
	--shadow-chat-button: 0 4px 12px rgba(0, 0, 0, 0.3);

	/* Border Radius */
	--radius-topbar-shell: 6px;
	--radius-gift-card: 10px;
	--radius-duration-badge: 4px;
	--radius-cta-button: 6px;
	--radius-discount-badge: 50%;
	--radius-pink-stripe: 6px;
}

/* Reset & Base Styles */
* {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

*:focus {
	outline: none;
}

/* Accessibility - Visible focus states */
*:focus-visible {
	outline: 2px solid var(--color-primary-red);
	outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
.cta-button:focus-visible,
.download-button:focus-visible {
	outline: 3px solid var(--color-primary-red);
	outline-offset: 2px;
	box-shadow: 0 0 0 4px rgba(239, 59, 35, 0.2);
}

body {
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	font-family: 'ETSans', sans-serif;
	color: var(--color-text-gray);
	background-color: var(--color-bg-hero);
}

/* Topbar */

.topbar {
	width: 100%;
	background-color: var(--color-bg-white);
	padding: 0;
	position: relative;
}

.topbar-shell {
	max-width: var(--spacing-container-max-width);
	margin: 0 auto;
	background-color: var(--color-bg-white);
	border: none;
	box-shadow: none;
	border-radius: 0;
	padding: 12px 22px 14px;
}

.topbar-upper {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 16px;
	margin-bottom: 12px;
}

.topbar-upper-actions {
	grid-column: 3;
	justify-self: end;
}

.topbar-logo {
	grid-column: 2;
	display: flex;
	justify-content: center;
	align-items: center;
}

.topbar-logo img {
	height: 32px;
	width: auto;
	max-width: none; /* Preserve aspect ratio - don't constrain width */
}

.topbar-tabs {
	display: flex;
	justify-content: center;
	gap: 28px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.45;
	margin-top: 6px;
}

.topbar-subscribe {
	justify-self: end;
	display: flex;
	align-items: center;
}

.topbar-link {
	position: relative;
	color: #6B7280;
	text-decoration: none;
	padding: 4px 0 8px;
	transition: color 0.2s ease;
}

.topbar-link:hover {
	color: var(--color-primary-red);
	text-decoration: none;
}

.topbar-link:focus {
	outline: 2px solid var(--color-primary-red);
	outline-offset: 2px;
	border-radius: 2px;
}

.topbar-link.is-active {
	font-weight: 700;
	color: var(--color-text-black);
}

.topbar-link.is-active::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3px;
	background-color: var(--color-primary-red);
	border-radius: 999px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 4px;
	font-weight: 700;
	padding: 10px 20px;
	border: none;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.1s ease;
	font-size: 14px;
	line-height: 1.25;
	text-decoration: none;
}

.button-primary {
	background-color: var(--color-primary-red);
	color: var(--color-bg-white);
}

.button-primary:hover {
	background-color: var(--color-primary-red-hover);
	text-decoration: none;
	color: var(--color-bg-white);
}

.button-compact {
	padding: 8px 16px;
	font-size: 13px;
}

/* Sticky bar */

.sticky-bar {
	position: sticky;
	top: 0;
	z-index: 50;
	background-color: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(6px);
	border-bottom: 1px solid var(--color-border);
	height: 38px;
	display: none; /* Hidden by default, shown on scroll via JavaScript */
}


.sticky-inner {
	max-width: var(--spacing-container-max-width);
	margin: 0 auto;
	padding: 7px 16px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 12px;
}

.sticky-link {
	justify-self: start;
	color: var(--color-primary-blue);
	font-weight: 600;
	text-decoration: none;
	font-size: 13px;
}

.sticky-link.is-active {
	font-weight: 700;
}

.sticky-link:hover {
	color: var(--color-primary-red);
	text-decoration: none;
}

.sticky-link:focus {
	outline: 2px solid var(--color-primary-red);
	outline-offset: 2px;
	border-radius: 2px;
}

.sticky-logo {
	display: flex;
	justify-content: center;
}

.sticky-logo img {
	height: 24px;
	width: auto;
}

main {
	width: 100%;
	overflow-x: hidden;
	position: relative;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	text-decoration: none;
	color: inherit;
}

a:hover {
	text-decoration: underline;
}

/* Green Header Section */
.green-header-section {
	width: 100%;
	background-color: var(--color-green);
	padding: 24px 0;
	text-align: center;
}

.green-header-title {
	color: #FFFFFF;
	font-family: 'ETSans', sans-serif;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

/* Hero Banner Section */
.hero-banner-section {
	width: 100%;
	background: var(--color-bg-hero);
	padding: 0;
	position: relative;
	overflow: hidden;
}

.hero-top-ribbon {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 12px;
	background-color: var(--color-green);
}

.hero-banner-container {
	max-width: var(--spacing-container-max-width);
	margin: 0 auto;
	position: relative;
	min-height: 280px;
	padding: 64px 44px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-gift-left,
.hero-gift-right {
	position: absolute;
}

.hero-gift-left {
	top: 12px;
	left: 12px;
}

.hero-gift-right {
	right: 18px;
	bottom: 18px;
}

.hero-gift-image {
	width: 142px;
	height: auto;
	transform: rotate(-18deg);
	filter: drop-shadow(var(--shadow-gift-image));
}

.hero-gift-right .hero-gift-image {
	transform: rotate(18deg);
}

.hero-content {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
	position: relative;
	padding-top: 12px;
}

.hero-main-title {
	font-family: 'ET Title Slab', 'ETSans', serif;
	font-size: var(--font-size-hero-title-desktop);
	font-weight: var(--font-weight-hero-title);
	line-height: var(--line-height-hero-title);
	color: var(--color-text-dark);
	margin: 0 0 10px;
	text-align: center;
}

.hero-subtitle {
	font-family: 'ETSans', sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.45;
	color: var(--color-text-gray-medium);
	margin: 0;
	text-align: center;
}

.hero-pink-stripe {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 32px;
	width: min(820px, 80%);
	max-width: 900px;
	min-width: 260px;
	height: 12px;
	background: var(--color-pink-stripe);
	border-radius: var(--radius-pink-stripe);
}

/* Gift Offers Container */
.gift-offers-container {
	max-width: var(--spacing-container-max-width);
	margin: 0 auto;
	padding: 64px 20px 72px;
}

/* Gift Card Styles */
.gift-card {
	max-width: var(--spacing-card-max-width);
	margin: 0 auto 56px;
	background: var(--color-bg-white);
	border: 1px solid var(--color-border-card);
	border-radius: var(--radius-gift-card);
	padding: var(--spacing-card-padding);
	box-shadow: var(--shadow-gift-card);
}

.gift-card-header {
	text-align: center;
	margin-bottom: 12px;
}

.gift-duration {
	display: inline-block;
	background-color: var(--color-text-black);
	color: var(--color-bg-white);
	font-family: 'ETSans', sans-serif;
	font-size: 18px;
	font-weight: 700;
	padding: 6px 22px;
	border-radius: var(--radius-duration-badge);
}

.gift-card-title {
	font-family: 'ETSans', sans-serif;
	font-size: var(--font-size-card-title);
	font-weight: var(--font-weight-card-title);
	text-align: center;
	margin: 0 0 18px;
	color: var(--color-text-black);
}

.gift-card-image {
	position: relative;
	text-align: center;
	margin: 22px 0;
}

.gift-card-image img {
	margin: 0 auto;
	max-width: 320px;
	width: 100%;
}

.discount-badge {
	position: absolute;
	top: -8px;
	right: -8px;
	background-color: var(--color-primary-red);
	color: var(--color-bg-white);
	font-family: 'ETSans', sans-serif;
	font-size: 16px;
	font-weight: 700;
	padding: 0;
	border-radius: var(--radius-discount-badge);
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	box-shadow: var(--shadow-discount-badge);
}

.gift-card-pricing {
	text-align: center;
	margin: 22px 0 18px;
}

.original-price {
	color: var(--color-text-gray-light);
	font-family: 'ETSans', sans-serif;
	font-size: var(--font-size-original-price);
	font-weight: 400;
	text-decoration: line-through;
	margin-right: 8px;
}

.sale-price {
	color: var(--color-text-black);
	font-family: 'ETSans', sans-serif;
	font-size: var(--font-size-sale-price);
	font-weight: 800;
	line-height: 1;
}

.pricing-subtitle {
	color: var(--color-text-gray);
	font-family: 'ETSans', sans-serif;
	font-size: var(--font-size-list-item);
	font-weight: 400;
	margin: 6px 0 0;
}

.gift-card-features {
	margin: 26px 0 18px;
}

.features-title {
	color: var(--color-text-gray-light);
	font-family: 'ETSans', sans-serif;
	font-size: var(--font-size-list-item);
	font-weight: 700;
	letter-spacing: 0.8px;
	margin: 0 0 14px;
}

.features-list {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
}

.features-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 8px;
	font-family: 'ETSans', sans-serif;
	font-size: var(--font-size-list-item);
	font-weight: 400;
	line-height: 1.5;
	color: var(--color-text-gray);
}

.features-list strong {
	font-weight: 700;
}

.checkmark {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	color: var(--color-checkmark);
	margin-top: 2px;
}

.cta-button {
	display: block;
	width: 100%;
	max-width: 320px;
	margin: 0 auto;
	background-color: var(--color-primary-red);
	color: var(--color-bg-white);
	font-family: 'ETSans', sans-serif;
	font-size: 17px;
	font-weight: 700;
	text-align: center;
	padding: 13px 24px;
	border-radius: var(--radius-cta-button);
	border: none;
	cursor: pointer;
	transition: background-color 0.3s ease;
	text-decoration: none;
}

.cta-button:hover {
	background-color: var(--color-primary-red-hover);
	text-decoration: none;
	color: var(--color-bg-white);
}

.cta-button:focus {
	outline: 2px solid var(--color-primary-red);
	outline-offset: 2px;
}

.cta-button:active {
	background-color: var(--color-primary-red-hover);
	transform: translateY(1px);
}

.gift-card-bonus {
	margin-top: 28px;
	padding-top: 22px;
	border-top: 1px solid var(--color-border-card);
}

.bonus-title {
	color: var(--color-text-gray-light);
	font-family: 'ETSans', sans-serif;
	font-size: var(--font-size-list-item);
	font-weight: 700;
	letter-spacing: 0.8px;
	margin: 0 0 12px;
}

.bonus-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.bonus-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 8px;
	font-family: 'ETSans', sans-serif;
	font-size: var(--font-size-list-item);
	font-weight: 400;
	line-height: 1.5;
	color: var(--color-text-gray);
}

.bonus-list strong {
	font-weight: 700;
}

/* Alternative Header */
.alternative-header {
	text-align: center;
	margin: 44px 0 32px;
}

.alternative-header h2 {
	font-family: 'ETSans', sans-serif;
	font-size: var(--font-size-section-title);
	font-weight: var(--font-weight-section-title);
	color: var(--color-text-black);
	margin: 0;
}

/* Pay By Check Section */
.pay-by-check {
	max-width: var(--spacing-card-max-width);
	margin: 52px auto;
	text-align: center;
	padding: 32px;
	background-color: var(--color-bg-pay-by-check);
	border: 1px solid var(--color-border-card);
	border-radius: 10px;
	box-shadow: var(--shadow-pay-by-check);
}

.pay-by-check h2 {
	font-family: 'ETSans', sans-serif;
	font-size: var(--font-size-section-title);
	font-weight: var(--font-weight-section-title);
	color: var(--color-text-black);
	margin: 0 0 12px;
}

.pay-by-check p {
	font-family: 'ETSans', sans-serif;
	font-size: var(--font-size-list-item);
	font-weight: 400;
	line-height: 1.6;
	color: var(--color-text-gray);
	margin: 0 0 20px;
}

.download-button {
	display: inline-block;
	background-color: var(--color-primary-red);
	color: var(--color-bg-white);
	font-family: 'ETSans', sans-serif;
	font-size: var(--font-size-list-item);
	font-weight: 700;
	padding: 12px 28px;
	border-radius: 6px;
	transition: background-color 0.3s ease;
	text-decoration: none;
}

.download-button:hover {
	background-color: var(--color-primary-red-hover);
	text-decoration: none;
	color: var(--color-bg-white);
}

.download-button:focus {
	outline: 2px solid var(--color-primary-red);
	outline-offset: 2px;
}

.download-button:active {
	background-color: var(--color-primary-red-hover);
	transform: translateY(1px);
}

/* Footer - Old styles removed, see updated footer styles below (around line 1864) */

/* Live Chat Button */
#quiqChatLaunch {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 162px;
	height: 81px;
	border-radius: 50%;
	background-color: transparent;
	border: none;
	cursor: pointer;
	transition: transform 0.3s ease;
	z-index: 1000;
}

#quiqChatLaunch:hover {
	transform: scale(1.1);
}

#quiqChatLaunch img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Tablet Styles (768px - 1024px) */
@media screen and (max-width: 1024px) and (min-width: 768px) {
	.topbar {
		padding: 12px 14px 10px;
	}

	.topbar-shell {
		padding: 12px 16px;
	}

	.topbar-logo img {
		height: 28px;
	}

	.topbar-logo {
		margin-bottom: 12px;
	}

	.topbar-nav-row {
		min-height: 32px;
	}

	.topbar-tabs {
		gap: 18px;
		font-size: 13px;
	}

	.topbar-subscribe .button {
		padding: 8px 16px;
		font-size: 13px;
	}

	.button {
		font-size: 13px;
		padding: 8px 16px;
	}

	.sticky-bar {
		height: 36px;
	}

	.sticky-inner {
		padding: 7px 12px;
		grid-template-columns: 1fr auto 1fr;
	}

	.sticky-logo img {
		height: 22px;
	}

	.green-header-title {
		font-size: 22px;
	}

	.hero-banner-container {
		min-height: 240px;
		padding: 52px 32px 44px;
	}

	.hero-main-title {
		font-family: 'ET Title Slab', 'ETSans', serif;
		font-size: var(--font-size-hero-title-tablet-h);
		font-weight: var(--font-weight-hero-title);
		line-height: var(--line-height-hero-title);
	}

	.hero-subtitle {
		font-size: 15px;
	}

	.hero-gift-image {
		width: 118px;
	}

	.hero-gift-left {
		left: 0;
		top: 6px;
	}

	.hero-gift-right {
		right: 12px;
		bottom: 12px;
	}

	.hero-pink-stripe {
		display: none;
	}

	.gift-offers-container {
		padding: 48px 32px;
	}

	.gift-card {
		padding: 32px;
	}

	.gift-card-title {
		font-size: var(--font-size-card-title);
	}

	.sale-price {
		font-size: 44px;
	}

	.original-price {
		font-size: var(--font-size-original-price);
	}
}

/* Mobile Styles (up to 767px) */
@media screen and (max-width: 767px) {
	.topbar {
		padding: 8px 12px;
	}

	.topbar-shell {
		padding: 10px 12px;
	}

	.topbar-logo {
		justify-content: center;
		margin-bottom: 10px;
	}

	.topbar-logo img {
		height: 22px;
	}

	.topbar-nav-row {
		display: flex;
		flex-direction: column;
		gap: 12px;
	}

	.topbar-nav-row::before {
		display: none;
	}

	.topbar-tabs {
		gap: 20px;
		font-size: 12px;
	}

	.topbar-subscribe {
		justify-self: center;
	}

	.topbar-subscribe .button {
		padding: 10px 20px;
		font-size: 14px;
	}

	.button {
		padding: 10px 20px;
		font-size: 14px;
	}

	.sticky-bar {
		height: 32px;
	}

	.sticky-inner {
		grid-template-columns: auto 1fr auto;
		padding: 8px 10px;
	}

	.sticky-logo {
		justify-content: center;
	}

	.sticky-logo img {
		height: 20px;
	}

	.sticky-link {
		font-size: 12px;
	}

	.green-header-section {
		padding: 20px 0;
	}

	.green-header-title {
		font-size: 18px;
	}

	.hero-banner-container {
		min-height: 0;
		padding: 36px 16px 42px;
	}

	.hero-top-ribbon {
		height: 8px;
	}

	.hero-gift-left,
	.hero-gift-right {
		display: block;
	}

	.hero-gift-image {
		width: 82px;
	}

	.hero-gift-left {
		left: -6px;
		top: 6px;
	}

	.hero-gift-right {
		right: 6px;
		bottom: 10px;
	}

	.hero-main-title {
		font-family: 'ET Title Slab', 'ETSans', serif;
		font-size: var(--font-size-hero-title-mobile);
		font-weight: var(--font-weight-hero-title);
		line-height: var(--line-height-hero-title);
		margin-bottom: 8px;
	}

	.hero-subtitle {
		font-size: 13px;
	}

	.hero-pink-stripe {
		display: none;
	}

	.gift-offers-container {
		padding: 32px 16px;
	}

	.gift-card {
		padding: 30px 16px;
		margin-bottom: 48px;
	}

	.gift-duration {
		font-size: 18px;
		padding: 6px 20px;
	}

	.gift-card-title {
		font-size: 28px;
		margin-bottom: 14px;
	}

	.gift-card-image {
		margin: 24px 0;
	}

	.gift-card-image img {
		max-width: 180px;
	}

	.discount-badge {
		width: 48px;
		height: 48px;
		font-size: 14px;
		top: -8px;
		right: -6px;
	}

	.gift-card-pricing {
		margin: 24px 0;
	}

	.original-price {
		font-size: 28px;
		display: block;
		margin-bottom: 6px;
	}

	.sale-price {
		font-size: 46px;
	}

	.pricing-subtitle {
		font-size: 17px;
	}

	.features-title,
	.bonus-title {
		font-size: 16px;
	}

	.features-list li,
	.bonus-list li {
		font-size: 15px;
	}

	.cta-button {
		font-size: 17px;
		padding: 14px 22px;
	}

	.alternative-header {
		margin: 48px 0 32px;
	}

	.alternative-header h2 {
		font-size: 24px;
	}

	.pay-by-check {
		padding: 28px 16px;
		margin: 44px auto;
	}

	.pay-by-check h2 {
		font-size: 24px;
	}

	.pay-by-check p {
		font-size: 16px;
	}

	.download-button {
		font-size: 16px;
		padding: 12px 28px;
	}

	.gift-footer {
		padding: 32px 16px;
	}

	.footer-links .separator {
		margin: 0 8px;
	}

	#quiqChatLaunch {
		width: 118px;
		height: 54px;
		bottom: 16px;
		right: 16px;
	}
}

/* Main Pricing Section */
.main-pricing-section {
	background-color: #e0f2fe;
	padding: 44px 175px 60px;
	position: relative;
}

.main-pricing-container {
	max-width: 1090px;
	margin: 0 auto;
}

.hero-content-wrapper {
	display: grid;
	grid-template-columns: 142px 1fr 142px;
	gap: 20px;
	margin-bottom: 52px;
	position: relative;
	align-items: center;
}

.hero-gift-decoration {
	position: relative;
	flex-shrink: 0;
	overflow: visible;
}

.hero-gift-decoration.hero-gift-left {
	align-self: start;
	transform: rotate(319deg);
	justify-self: start;
}

.hero-gift-decoration.hero-gift-right {
	align-self: end;
	transform: rotate(34deg);
	justify-self: end;
}

.hero-gift-decoration .hero-gift-image {
	width: 142px;
	height: 142px;
	object-fit: cover;
}

.hero-content {
	min-width: 0;
	overflow: hidden;
}

.hero-content {
	text-align: center;
}

.hero-main-title {
	font-family: 'ET Title Slab', 'ETSans', serif;
	font-size: var(--font-size-hero-title-desktop);
	font-weight: var(--font-weight-hero-title);
	line-height: var(--line-height-hero-title);
	color: #212121;
	margin: 0 0 20px;
	text-transform: capitalize;
}

.hero-subtitle {
	font-family: 'ETSans', sans-serif;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.2;
	color: #707070;
	margin: 0;
	text-transform: capitalize;
	max-width: 612px;
}

.pricing-cards-wrapper {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 0;
	position: relative;
}

.pricing-card-container {
	position: relative;
	display: flex;
	flex-direction: column;
}

.duration-ribbon {
	background-color: #000000;
	color: #ffffff;
	font-family: 'ETSans', sans-serif;
	font-size: 20px;
	font-weight: 800;
	line-height: 1.2;
	padding: 0 1px;
	width: 260px;
	text-align: center;
	text-transform: capitalize;
	z-index: 10;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto -16px; /* Overlap card top border by 16px */
	position: relative;
}

.pricing-card {
	background-color: #ffffff;
	border: 1px solid #000000;
	border-bottom: none;
	padding: 48px 32px 32px;
	width: 440px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.pricing-card-title {
	font-family: 'ET Title Slab', 'ETSans', serif;
	font-size: 34px;
	font-weight: 900;
	line-height: 1.15;
	color: #212121;
	margin: 0;
	text-align: center;
	text-transform: capitalize;
}

.pricing-card-image-wrapper {
	display: flex;
	justify-content: center;
	position: relative;
	margin: 0 0 24px;
}

.pricing-card-image {
	width: 180px;
	height: 221px;
	object-fit: cover;
}

.pricing-card-pricing {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	margin-bottom: 16px;
}

.pricing-row {
	display: flex;
	align-items: center;
	gap: 8px;
}

.original-price {
	color: #939393;
	font-family: 'ETSans', sans-serif;
	font-size: 32px;
	font-weight: 400;
	text-decoration: line-through;
}

.sale-price {
	color: #2f2f2f;
	font-family: 'ETSans', sans-serif;
	font-size: 32px;
	font-weight: 700;
}

.pricing-subtitle {
	color: #2f2f2f;
	font-family: 'ETSans', sans-serif;
	font-size: 22px;
	font-weight: 400;
	line-height: 1.25;
	margin: 0;
}

.pricing-card-features {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.features-title {
	color: #939393;
	font-family: 'ETSans', sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.25;
	margin: 0;
	text-transform: uppercase;
}

.features-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.features-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.features-list li span {
	font-family: 'ETSans', sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.25;
	color: #212121;
}

.features-list li strong {
	font-weight: 700;
}

.checkmark {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	color: #212121;
}

.cta-button {
	background-color: #ff3953;
	color: #ffffff;
	font-family: 'ETSans', sans-serif;
	font-size: 27px;
	font-weight: 500;
	line-height: 1.15;
	padding: 12px 24px;
	border-radius: 4px;
	border: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 180px;
	width: 100%;
	height: 52px;
	max-height: 52px;
	transition: background-color 0.2s ease;
}

.cta-button:hover {
	background-color: #e62e47;
	text-decoration: none;
	color: #ffffff;
}

.cta-button-long {
	max-width: 500px;
}

.pricing-card-bonus {
	background-color: #fafafa;
	border: 1px solid #000000;
	border-top: none;
	padding: 40px 32px;
	width: 440px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.bonus-title {
	color: #939393;
	font-family: 'ETSans', sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.25;
	margin: 0;
	text-transform: uppercase;
}

.bonus-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.bonus-list li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.bonus-list li span {
	font-family: 'ETSans', sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.25;
	color: #212121;
}

.bonus-list li strong {
	font-weight: 700;
}

/* Alternative Gift Section */
.alternative-gift-section {
	background-color: #ffffff;
	padding: 60px 175px;
}

.alternative-gift-container {
	max-width: 1090px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 36px;
}

.alternative-header-title {
	font-family: 'ETSans', sans-serif;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.2;
	color: #212121;
	text-align: center;
	margin: 0;
	text-transform: capitalize;
}

/* Pay By Check Section */
.pay-by-check-section {
	background-color: #ffffff;
	padding: 60px 175px;
}

.pay-by-check-inline {
	max-width: 440px;
	margin: 36px auto 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: flex-start;
	text-align: left;
}

.pay-by-check-container {
	max-width: 440px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.pay-by-check-title {
	font-family: 'ETSans', sans-serif;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.2;
	color: #212121;
	margin: 0;
	text-transform: capitalize;
}

.pay-by-check-description {
	font-family: 'ETSans', sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.25;
	color: #212121;
	margin: 0;
}

.download-button {
	background-color: #ff3953;
	color: #ffffff;
	font-family: 'ETSans', sans-serif;
	font-size: 21px;
	font-weight: 500;
	line-height: 1.25;
	padding: 10px 24px;
	border-radius: 4px;
	border: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 44px;
	max-height: 44px;
	transition: background-color 0.2s ease;
}

.download-button:hover {
	background-color: #e62e47;
	text-decoration: none;
	color: #ffffff;
}

/* Your Gift Includes Section */
.your-gift-includes-section {
	background-color: #f4f4f4;
	padding: 100px 175px 80px;
}

.your-gift-includes-container {
	max-width: 1090px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 48px;
	align-items: center;
}

.section-main-title {
	font-family: 'ET Title Slab', 'ETSans', serif;
	font-size: 58px;
	font-weight: 900;
	line-height: 1.15;
	color: #212121;
	margin: 0;
	text-align: center;
	text-transform: capitalize;
}

.feature-cards-grid {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
	max-width: 600px;
}

.feature-card {
	background-color: #fafafa;
	border: 1.8px solid #cfcfcf;
	padding: 16px;
	display: flex;
	gap: 20.962px;
	align-items: center;
	position: relative;
}

.feature-card-image {
	width: 226px;
	height: 171px;
	flex-shrink: 0;
}

.feature-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.feature-card-badge {
	position: absolute;
	left: 25.49px;
	top: 27.2px;
	background-color: #ff3953;
	color: #ffffff;
	font-family: 'ETSans', sans-serif;
	font-size: 12px;
	font-weight: 500;
	line-height: 24px;
	padding: 0 8px;
	border-radius: 2px;
	text-transform: uppercase;
	letter-spacing: 0.24px;
}

.feature-card-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 13.974px;
}

.feature-card-title {
	font-family: 'ETSans', sans-serif;
	font-size: 26px;
	font-weight: 500;
	line-height: 1.2;
	color: #2f2f2f;
	margin: 0;
	text-transform: capitalize;
}

.feature-card-description {
	font-family: 'ETSans', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.25;
	color: #3e3e3e;
	margin: 0;
}

.section-cta-wrapper {
	display: flex;
	justify-content: center;
	width: 100%;
	max-width: 600px;
}

/* Why The Epoch Times Section */
.why-epoch-section {
	background-color: #f4f4f4;
	padding: 80px 175px;
}

.why-epoch-container {
	max-width: 1090px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 48px;
	align-items: center;
}

.why-epoch-content {
	width: 100%;
}

.video-embed {
	position: relative;
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
}

.video-poster {
	position: relative;
	width: 100%;
	height: 335px;
	overflow: hidden;
}

.why-epoch-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(0, 0, 0, 0.65);
	border: none;
	border-radius: 50%;
	width: 72px;
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease;
}

.video-play-button:hover {
	transform: translate(-50%, -50%) scale(1.05);
	background: rgba(0, 0, 0, 0.75);
}

.video-play-icon {
	width: 0;
	height: 0;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	border-left: 18px solid #ffffff;
	margin-left: 4px;
}

.video-iframe {
	width: 100%;
	height: 335px;
	border: none;
	border-radius: 4px;
}

/* More Fun & Benefits Section */
.more-fun-section {
	background-color: #ffffff;
	padding: 80px 175px;
}

.more-fun-container {
	max-width: 1090px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 56px;
	align-items: center;
}

.more-fun-content {
	display: flex;
	flex-direction: column;
	gap: 32px;
	width: 480px;
}

.more-fun-card {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.more-fun-image {
	width: 100%;
	aspect-ratio: 437 / 352;
}

.more-fun-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.more-fun-title {
	font-family: 'ETSans', sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.15;
	color: #000000;
	margin: 0;
	text-transform: capitalize;
}

/* Fine Print Section */
.fine-print-section {
	background-color: var(--color-bg-white);
	padding: 0 175px 80px;
}

.fine-print-container {
	width: 100%;
	max-width: 440px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.fine-print-content {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-bottom: 0;
}

.fine-print-text {
	font-family: 'ETSans', sans-serif;
	font-size: 18px;
	font-weight: 300;
	font-style: italic;
	line-height: 1.45;
	color: #212121;
	margin: 0;
	display: block;
}

.fine-print-disclaimer {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.fine-print-disclaimer p {
	font-family: 'ETSans', sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.25;
	color: #212121;
	margin: 0;
}

/* Updated Footer */
.gift-footer {
	background-color: var(--color-bg-footer);
	padding: 100px 175px 140px;
}

.footer-content {
	max-width: 1090px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 0;
}

.footer-logo {
	width: 120px;
	height: 98.331px;
	flex-shrink: 0;
}

.footer-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.footer-info {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.footer-headline {
	font-family: 'ETSans', sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.45;
	color: #ffffff;
	margin: 0;
	text-transform: uppercase;
}

.footer-contact-info {
	display: flex;
	gap: 24px;
	align-items: flex-start;
}

.footer-address-phone {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 230px;
}

.footer-address {
	font-family: 'ETSans', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
	color: #ededed;
	margin: 0;
}

.footer-contact-details {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.footer-contact-details p {
	font-family: 'ETSans', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
	color: #ededed;
	margin: 0;
}

.footer-policies {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 230px;
}

.footer-policy-links {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.footer-policy-links a {
	font-family: 'ETSans', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
	color: #ededed;
	text-decoration: none;
	display: block;
}

.footer-policy-links a:hover {
	text-decoration: underline;
}

.footer-copyright {
	font-family: 'ETSans', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.2;
	color: #ededed;
	margin: 0;
	width: 230px;
}

/* Tablet and Mobile Responsive Styles */
@media screen and (max-width: 1024px) {
	.main-pricing-section {
		padding: 40px 40px 50px;
	}

	.hero-content-wrapper {
		grid-template-columns: 110px 1fr 110px;
		gap: 16px;
	}

	.hero-gift-decoration {
		display: block;
	}

	.hero-gift-decoration .hero-gift-image {
		width: 110px;
		height: 110px;
	}

	.pricing-card,
	.pricing-card-bonus {
		width: 100%;
		max-width: 440px;
	}

	.alternative-gift-section,
	.pay-by-check-section,
	.your-gift-includes-section,
	.why-epoch-section,
	.more-fun-section,
	.fine-print-section {
		padding-left: 40px;
		padding-right: 40px;
	}

	.gift-footer {
		padding: 60px 40px 80px;
	}

	.footer-content {
		flex-direction: column;
		gap: 40px;
	}
}

@media screen and (max-width: 768px) {
	.main-pricing-section {
		padding: 32px 20px 40px;
	}

	.topbar-upper {
		grid-template-columns: auto 1fr auto;
		justify-items: start;
		align-items: center;
		row-gap: 0;
		margin-bottom: 10px;
	}

	.topbar-logo {
		grid-column: 1;
		justify-self: start;
		margin-bottom: 0;
	}

	.topbar-logo img {
		height: 18px; /* Reduced from 22px to fit button */
		width: auto;
		max-width: none; /* Preserve aspect ratio - don't constrain width */
	}

	.topbar-upper-actions {
		grid-column: 3;
		justify-self: end;
	}

	.topbar-upper-actions .button-compact {
		padding: 6px 12px;
		font-size: 12px;
		white-space: nowrap;
	}

	.topbar-tabs {
		gap: 16px;
		font-size: 12px;
		flex-wrap: wrap;
	}

	.hero-main-title {
		font-family: 'ET Title Slab', 'ETSans', serif;
		font-size: var(--font-size-hero-title-mobile);
		font-weight: var(--font-weight-hero-title);
		line-height: var(--line-height-hero-title);
	}

	.hero-subtitle {
		font-size: 18px;
	}

	.pricing-card {
		padding: 32px 24px 24px;
	}

	.pricing-card-title {
		font-size: 28px;
	}

	.duration-ribbon {
		width: 200px;
		font-size: 18px;
	}

	.section-main-title {
		font-size: 42px;
	}

	.hero-content-wrapper {
		grid-template-columns: 1fr;
		position: relative;
	}

	.hero-content {
		padding-left: 60px;
		padding-right: 60px;
		position: relative;
		z-index: 2;
	}

	.hero-gift-decoration {
		position: absolute;
		z-index: 1;
	}

	.hero-gift-decoration .hero-gift-image {
		width: 80px;
		height: 80px;
	}

	.hero-gift-decoration.hero-gift-left {
		left: -10px;
		top: 0;
	}

	.hero-gift-decoration.hero-gift-right {
		right: -10px;
		bottom: -30px;
		transform: rotate(33deg);
	}

	.feature-card {
		flex-direction: row;
		text-align: left;
		padding: 12px;
		gap: 16px;
	}

	.feature-card-image {
		width: 160px;
		height: 120px;
		flex-shrink: 0;
	}

	.feature-card-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.feature-cards-grid {
		gap: 16px;
	}

	.feature-card-content {
		flex: 1;
		display: flex;
		flex-direction: column;
		text-align: left;
	}

	.feature-card-title {
		font-size: 20px;
	}

	.feature-card-description {
		font-size: 15px;
	}

	.feature-card-badge {
		left: 20px;
		top: 20px;
		font-size: 11px;
		padding: 0 6px;
	}

	.your-gift-includes-section {
		padding: 60px 16px 50px;
	}

	.section-cta-wrapper .cta-button {
		width: 100%;
		max-width: 100%;
	}

	.why-epoch-image {
		width: 100%;
		height: auto;
	}

	.more-fun-content {
		width: 100%;
	}

	.alternative-gift-section,
	.pay-by-check-section,
	.your-gift-includes-section,
	.why-epoch-section,
	.more-fun-section,
	.fine-print-section {
		padding-left: 20px;
		padding-right: 20px;
	}

	.gift-footer {
		padding: 40px 20px 60px;
	}

	.footer-contact-info {
		flex-direction: column;
		gap: 20px;
	}

	.footer-address-phone,
	.footer-policies {
		width: 100%;
	}
}

/* Extra Small Mobile (up to 480px) */
@media screen and (max-width: 480px) {
	/* Hero Section */
	.hero-content-wrapper {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.hero-gift-decoration {
		display: none;
	}

	.hero-content {
		padding-left: 16px;
		padding-right: 16px;
	}

	.hero-main-title {
		font-family: 'ET Title Slab', 'ETSans', serif;
		font-size: var(--font-size-hero-title-mobile);
		font-weight: var(--font-weight-hero-title);
		line-height: var(--line-height-hero-title);
	}

	.hero-subtitle {
		font-size: 15px;
	}

	/* Pricing Section */
	.main-pricing-section {
		padding: 24px 12px 32px;
	}

	.pricing-card {
		padding: 24px 16px 20px;
	}

	.pricing-card-title {
		font-size: 22px;
	}

	.sale-price {
		font-size: 26px;
	}

	.original-price {
		font-size: 20px;
	}

	.pricing-subtitle {
		font-size: 18px;
	}

	.pricing-card-image {
		width: 130px;
		height: auto;
	}

	.duration-ribbon {
		width: 160px;
		font-size: 15px;
		height: 26px;
	}

	.pricing-card-bonus {
		padding: 28px 16px;
	}

	.features-list li span,
	.bonus-list li span {
		font-size: 16px;
	}

	/* Feature Cards - "Your Gift Includes" */
	.your-gift-includes-section {
		padding: 48px 12px 40px;
	}

	.your-gift-includes-container {
		gap: 28px;
	}

	.section-main-title {
		font-size: 28px;
	}

	.feature-cards-grid {
		gap: 12px;
	}

	.feature-card {
		flex-direction: row;
		padding: 10px;
		gap: 12px;
	}

	.feature-card-image {
		width: 120px;
		height: 90px;
		flex-shrink: 0;
	}

	.feature-card-title {
		font-size: 17px;
		line-height: 1.2;
	}

	.feature-card-description {
		font-size: 13px;
		line-height: 1.35;
	}

	.feature-card-badge {
		left: 16px;
		top: 16px;
		font-size: 9px;
		padding: 0 5px;
		line-height: 18px;
	}

	/* Alternative Gift Section */
	.alternative-gift-section {
		padding: 40px 12px;
	}

	.alternative-header-title {
		font-size: 20px;
	}

	.pay-by-check-inline {
		padding: 0 4px;
	}

	.pay-by-check-title {
		font-size: 20px;
	}

	.pay-by-check-description {
		font-size: 16px;
	}

	/* Why Epoch Times Section */
	.why-epoch-section {
		padding: 48px 12px;
	}

	.video-poster {
		height: 200px;
	}

	.video-iframe {
		height: 200px;
	}

	.video-play-button {
		width: 56px;
		height: 56px;
	}

	/* More Fun Section */
	.more-fun-section {
		padding: 48px 12px;
	}

	.more-fun-container {
		gap: 40px;
	}

	.more-fun-title {
		font-size: 20px;
	}

	/* Fine Print Section */
	.fine-print-section {
		padding: 0 12px 48px;
	}

	.fine-print-text {
		font-size: 15px;
	}

	.fine-print-disclaimer p {
		font-size: 16px;
	}

	/* Footer */
	.gift-footer {
		padding: 32px 12px 48px;
	}

	.footer-content {
		flex-direction: column;
		align-items: flex-start;
		gap: 28px;
	}

	.footer-logo {
		width: 150px;
		height: 150px;
	}

	.footer-headline {
		font-size: 14px;
	}

	.footer-address,
	.footer-contact-details p,
	.footer-policy-links a,
	.footer-copyright {
		font-size: 14px;
	}

	/* CTA Button */
	.cta-button {
		font-size: 16px;
		padding: 11px 20px;
		height: 46px;
	}

	.download-button {
		font-size: 14px;
		height: 40px;
	}
}