@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;300;400;500;600;700;800&display=swap");

/* define variable for primary color = #7c3aed*/
:root {
	--header-color: #3e3d40;
	--span-color: #14b8a6;
	--btn-color: #29282a;
	--offer-price-color: #ff5e00;
}

* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	font-family: "Inter", sans-serif;
	color: var(--header-color);
}

/* Global Styles */

/* a { */
/* text-decoration: none; */
/* color: var(--header-color); */
/* } */

body {
	width: 100%;
	height: auto;
	overflow-x: hidden;
}

/* Loading Screen Styles */
.loading-screen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
	opacity: 0;
	visibility: hidden;
}

.loading-container {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
}

.loading-logo img {
	height: 50px;
	width: auto;
	animation: fadeInUp 0.8s ease;
}

.loading-spinner {
	display: flex;
	align-items: center;
	justify-content: center;
}

.spinner {
	width: 40px;
	height: 40px;
	border: 4px solid #e2e8f0;
	border-top: 4px solid var(--span-color);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}

.loading-text {
	font-size: 1.1rem;
	color: var(--header-color);
	font-weight: 500;
	animation: fadeInUp 0.8s ease 0.2s both;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

nav {
	padding: 20px 7%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
	z-index: 1;
}
nav .logo {
	display: flex;
	align-items: center;
}
nav .logo img {
	height: 35px;
	width: auto;
	margin-right: 10px;
}
nav .logo h1 {
	font-size: 1.1rem;
	background: linear-gradient(to right, #b927fc 0%, #2c64fc 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

nav ul {
	list-style: none;
	display: flex;
}
nav ul li {
	margin-left: 1.5rem;
}
nav ul li a {
	text-decoration: none;
	color: #000;
	font-size: 95%;
	font-weight: 400;
	padding: 4px 8px;
	border-radius: 5px;
}

nav ul li a:hover {
	background-color: #f5f5f5;
}

.hamburger {
	display: none;
	cursor: pointer;
}

.hamburger .line {
	width: 25px;
	height: 1px;
	background-color: #1f1f1f;
	display: block;
	margin: 7px auto;
	transition: all 0.3s ease-in-out;
}
.hamburger-active {
	transition: all 0.3s ease-in-out;
	transition-delay: 0.6s;
	transform: rotate(45deg);
}

.hamburger-active .line:nth-child(2) {
	width: 0px;
}

.hamburger-active .line:nth-child(1),
.hamburger-active .line:nth-child(3) {
	transition-delay: 0.3s;
}

.hamburger-active .line:nth-child(1) {
	transform: translateY(12px);
}

.hamburger-active .line:nth-child(3) {
	transform: translateY(-5px) rotate(90deg);
}

.menubar {
	position: absolute;
	top: 0;
	left: -60%;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	width: 60%;
	height: 100vh;
	padding: 20% 0;
	background: rgba(255, 255, 255);
	transition: all 0.5s ease-in;
	z-index: 2;
}
.active {
	left: 0;
	box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.menubar ul {
	padding: 0;
	list-style: none;
}
.menubar ul li {
	margin-bottom: 32px;
}

.menubar ul li a {
	text-decoration: none;
	color: #000;
	font-size: 95%;
	font-weight: 400;
	padding: 5px 10px;
	border-radius: 5px;
}

.menubar ul li a:hover {
	background-color: #f5f5f5;
}
@media screen and (max-width: 790px) {
	.hamburger {
		display: block;
	}
	nav ul {
		display: none;
	}
}

/* Unified Section Styles */
.offers-section {
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
	padding: 80px 0;
	margin-top: 0;
	position: relative;
}

.offers-section::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.offers-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.offers-header {
	text-align: center;
	margin-bottom: 50px;
}

.offers-header h2 {
	font-size: 3.5rem;
	font-weight: 700;
	color: var(--offer-price-color);
	margin-bottom: 15px;
	line-height: 1.2;
}

.offers-header p {
	font-size: 1.2rem;
	color: #6b7280;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

.offers-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 40px;
}

.offer-card {
	background: white;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 10px 20px rgba(0, 0, 0, 0.04);
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
	border: 1px solid #e2e8f0;
	height: auto;
	display: flex;
	flex-direction: column;
}

.offer-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
	border-color: var(--span-color);
}

.offer-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(
		--gradient,
		linear-gradient(135deg, var(--span-color) 0%, #0ea5e9 100%)
	);
}

.offer-badge {
	position: absolute;
	top: 15px;
	right: 15px;
	background: linear-gradient(135deg, #ff6b6b, #ee5a24);
	color: white;
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.offer-header {
	margin-bottom: 25px;
	margin-top: 15px;
}

.offer-title {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--header-color);
	margin-bottom: 10px;
	line-height: 1.3;
}

.offer-description {
	color: #6b7280;
	font-size: 1rem;
	line-height: 1.5;
}

.offer-pricing {
	display: flex;
	align-items: center;
	gap: 15px;
	margin: 25px 0;
	flex-wrap: wrap;
}

.original-price {
	font-size: 1.5rem;
	color: #9ca3af;
	text-decoration: line-through;
	font-weight: 500;
}

.sale-price {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--offer-price-color);
}

.sale-price .period {
	font-size: 1rem;
	font-weight: 400;
	color: #6b7280;
}

.discount-badge {
	background: linear-gradient(135deg, #10b981, #059669);
	color: white;
	padding: 8px 16px;
	border-radius: 25px;
	font-weight: 700;
	font-size: 1rem;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
}

.offer-features {
	margin: 25px 0;
}

.offer-features ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	gap: 12px;
}

.offer-features li {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.95rem;
	color: #4b5563;
	padding: 8px 0;
}

.offer-features li::before {
	content: "✓";
	background: linear-gradient(135deg, var(--span-color), #0ea5e9);
	color: white;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 0.75rem;
	flex-shrink: 0;
}

.offer-countdown {
	background: linear-gradient(135deg, #fef3c7, #fbbf24);
	padding: 15px;
	border-radius: 12px;
	margin: 20px 0;
	text-align: center;
	border: 1px solid #f59e0b;
}

.countdown-text {
	font-size: 0.9rem;
	color: #92400e;
	font-weight: 600;
	margin-bottom: 5px;
}

.countdown-timer {
	font-size: 1.1rem;
	font-weight: 700;
	color: #b45309;
}

.offer-actions {
	display: flex;
	gap: 15px;
	margin-top: 30px;
}

.offer-btn {
	flex: 1;
	padding: 15px 20px;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 600;
	text-align: center;
	transition: all 0.3s ease;
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border: 2px solid transparent;
}

.offer-btn-primary {
	background: linear-gradient(135deg, var(--span-color), #0ea5e9);
	color: white;
}

.offer-btn-primary:hover {
	background: linear-gradient(135deg, #0ea5e9, var(--span-color));
	transform: translateY(-2px);
	box-shadow: 0 10px 20px rgba(20, 184, 166, 0.3);
}

.offer-btn-secondary {
	background: transparent;
	color: var(--header-color);
	border-color: #e5e7eb;
}

.offer-btn-secondary:hover {
	background: #f9fafb;
	border-color: var(--span-color);
	color: var(--span-color);
}

main .section-1 .section-1-1 .section-main .link-groups .link-1,
main .section-3 .section-3-1 .section-main .link-1 {
	background: #1d1b67;
	color: #f0eeeb;
	font-weight: 500;
	padding: 10px 15px;
	border-radius: 5px;
	cursor: pointer;
	text-decoration: none;
}

.footer {
	background-color: #fdf8f4;
	padding: 40px 20px;
	color: #333;
}

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

.footer-section {
	flex: 1;
	margin: 10px 20px;
}

.footer-section h4 {
	margin-bottom: 15px;
	font-size: 16px;
	font-weight: bold;
}

.footer-section p {
	margin: 5px 0;
	font-size: 14px;
	line-height: 1.5;
}

.footer-section a {
	color: #333;
	text-decoration: none;
}

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

/* Social Icons */
.social-icons {
	margin-top: 10px;
	display: flex;
	gap: 10px;
}

.social-icons a img {
	width: 24px;
	height: 24px;
}

/* Logo Section */
.logo h1 {
	font-size: 18px;
	font-weight: bold;
	color: #333;
}

/* Footer Bottom */
.footer-bottom {
	text-align: center;
	padding-top: 20px;
	font-size: 14px;
	color: #888;
	border-top: 1px solid #ddd;
	margin-top: 20px;
}

main {
	width: 100%;
}

main .section-4 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 80px 0px;
	row-gap: 60px;
	margin-top: 0;
	background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
	position: relative;
}

main .section-4::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}
main .section-4 .section-4-1,
main .section-4 .section-4-2 {
	width: 100%;
	max-width: 1200px;
	display: flex;
	justify-content: center;
	padding: 0 20px;
}
main .section-4 .section-4-1 .section-main {
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 10px;
}
main .section-4 .section-4-1 .section-main h1 {
	font-size: 3.5rem;
	line-height: 1.2;
	color: var(--header-color);
	text-align: center;
	margin-bottom: 15px;
	font-weight: 700;
}
main .section-4 .section-4-1 .section-main p {
	color: #6b7280;
	line-height: 1.6;
	text-align: center;
	font-size: 1.2rem;
	max-width: 600px;
	margin: 0 auto;
}
main .section-4 .section-4-2 .section-main div.pricing-body {
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 30px;
}
main
	.section-4
	.section-4-2
	.section-main
	div.pricing-body
	.pricing-body-header {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	row-gap: 15px;
}
main
	.section-4
	.section-4-2
	.section-main
	div.pricing-body
	.pricing-body-header
	.pricing-checkbox {
	display: flex;
	column-gap: 10px;
	align-items: center;
}

/* Style the products section header similar to offers */
main
	.section-4
	.section-4-2
	.section-main
	div.pricing-body
	.pricing-body-header
	.pricing-checkbox
	h3 {
	font-size: 2.5rem;
	font-weight: 600;
	color: var(--header-color);
	text-align: center;
	margin-bottom: 20px;
}

main
	.section-4
	.section-4-2
	.section-main
	div.pricing-body
	.pricing-body-header
	.pricing-checkbox
	span {
	font-size: 14px;
	color: #425466;
}

main
	.section-4
	.section-4-2
	.section-main
	div.pricing-body
	.pricing-body-header
	.pricing-checkbox
	> div {
	width: 45px;
	background: #1d1b67;
	height: 24px;
	border-radius: 15px;
	position: relative;
	cursor: pointer;
}

main
	.section-4
	.section-4-2
	.section-main
	div.pricing-body
	.pricing-body-header
	.pricing-checkbox
	> div
	div {
	position: absolute;
	width: 18px;
	height: 18px;
	background-color: #fff;
	top: 50%;
	left: 3px;
	transform: translateY(-50%);
	border-radius: 50%;
}

main
	.section-4
	.section-4-2
	.section-main
	div.pricing-body
	.pricing-body-header
	.pricing-checkbox
	> div.anually
	div {
	left: unset;
	right: 3px;
}

main
	.section-4
	.section-4-2
	.section-main
	div.pricing-body
	.pricing-body-plans
	> div {
	display: block;
}

main
	.section-4
	.section-4-2
	.section-main
	div.pricing-body
	.pricing-body-plans
	> div
	> div {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 20px;
}

main
	.section-4
	.section-4-2
	.section-main
	div.pricing-body
	.pricing-body-plans
	> div
	> div
	.card {
	padding: 30px;
	border-radius: 12px;
	width: 100%;
	max-width: 380px;
	position: relative;
	border: 1px solid #e2e8f0;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 10px 20px rgba(0, 0, 0, 0.04);
	height: auto;
	background: white;
	transition: all 0.3s ease;
	overflow: hidden;
	justify-self: center;
	display: flex;
	flex-direction: column;
}

/* Add hover effect for regular product cards */
main
	.section-4
	.section-4-2
	.section-main
	div.pricing-body
	.pricing-body-plans
	> div
	> div
	.card:hover {
	transform: translateY(-8px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
	border-color: var(--span-color);
}

/* Add top border accent like offer cards */
main
	.section-4
	.section-4-2
	.section-main
	div.pricing-body
	.pricing-body-plans
	> div
	> div
	.card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(135deg, var(--span-color) 0%, #0ea5e9 100%);
}

main
	.section-4
	.section-4-2
	.section-main
	div.pricing-body
	.pricing-body-plans
	> div
	> div
	.card
	.card-header {
	display: flex;
	flex-direction: column;
	row-gap: 10px;
	justify-content: center;
	align-items: center;
	margin-top: 15px;
}

main
	.section-4
	.section-4-2
	.section-main
	div.pricing-body
	.pricing-body-plans
	> div
	> div
	.card
	.card-header
	.card-price {
	font-size: 26px;
}
main
	.section-4
	.section-4-2
	.section-main
	div.pricing-body
	.pricing-body-plans
	> div
	> div
	.card
	.card-header
	.card-price
	span {
	font-size: 14px;
	color: darkgray;
}

main
	.section-4
	.section-4-2
	.section-main
	div.pricing-body
	.pricing-body-plans
	> div
	> div
	.card
	.card-header
	p {
	color: #425466;
	line-height: 24px;
}

main
	.section-4
	.section-4-2
	.section-main
	div.pricing-body
	.pricing-body-plans
	> div
	> div
	.card
	.card-body {
	padding-top: 25px;
	border-top: 1px solid lightgray;
	margin-top: 15px;
}

main
	.section-4
	.section-4-2
	.section-main
	div.pricing-body
	.pricing-body-plans
	> div
	> div
	.card
	.card-body
	ul {
	list-style-type: none;
	display: flex;
	flex-direction: column;
	row-gap: 12px;
}

main
	.section-4
	.section-4-2
	.section-main
	div.pricing-body
	.pricing-body-plans
	> div
	> div
	.card
	.card-body
	ul
	li {
	color: #b5b6b8;
	position: relative;
	font-size: 14px;
	display: flex;
	column-gap: 10px;
	align-items: center;
}
main
	.section-4
	.section-4-2
	.section-main
	div.pricing-body
	.pricing-body-plans
	> div
	> div
	.card
	.card-body
	ul
	li
	img {
	width: 20px;
}

main
	.section-4
	.section-4-2
	.section-main
	div.pricing-body
	.pricing-body-plans
	> div
	> div
	.card
	.card-body
	ul
	li::before {
	color: #1d1b67;
	font-weight: bold;
	width: 20px;
	margin-left: -18px;
	font-size: 25px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

main
	.section-4
	.section-4-2
	.section-main
	div.pricing-body
	.pricing-body-plans
	> div
	> div
	.card
	.card-footer {
	margin-top: 30px;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

main
	.section-4
	.section-4-2
	.section-main
	div.pricing-body
	.pricing-body-plans
	> div
	> div
	.card
	.card-footer
	a {
	background: var(--btn-color);
	color: #f0eeeb;
	font-weight: 500;
	padding: 10px 15px;
	border-radius: 4px;
	cursor: pointer;
	text-decoration: none;
	font-size: 14px;
	width: 48%;
	text-align: center;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

main
	.section-4
	.section-4-2
	.section-main
	div.pricing-body
	.pricing-body-plans
	> div
	> div
	.card
	.card-footer
	a:hover {
	background: #4f4f4f;
}

main
	.section-4
	.section-4-2
	.section-main
	div.pricing-body
	.pricing-body-plans
	> div
	> div
	.card:nth-of-type(2)
	.card-footer
	button {
	background: #ff6e6e;
	color: #fff;
}

main
	.section-4
	.section-4-2
	.section-main
	div.pricing-body
	.pricing-body-plans
	> div
	> div
	.card:nth-of-type(2)
	.card-footer
	button:hover {
	background: transparent;
	color: #b5b6b8;
}

main
	.section-4
	.section-4-2
	.section-main
	div.pricing-body
	.pricing-body-plans
	> div.active {
	display: block;
}

@media only screen and (max-width: 1200px) {
	nav .nav-1 .nav-main {
		column-gap: 20px;
	}

	nav .nav-1 .nav-main,
	nav .nav-2 .nav-main {
		width: 90%;
	}

	footer .footer-main {
		width: 90%;
	}

	footer .footer-main .footer-content .footer-subcontent {
		flex-direction: column;
		row-gap: 30px;
	}

	footer .footer-main .footer-content .footer-subcontent .footer-links,
	footer .footer-main .footer-content .footer-subcontent .footer-newsletter {
		width: 100%;
	}

	footer .footer-main .footer-content .footer-subcontent .footer-newsletter {
		justify-content: flex-start;
	}

	main .section-4 {
		padding: 60px 0px;
	}
	main .section-4 .section-4-1,
	main .section-4 .section-4-2 {
		width: 100%;
		padding: 0 20px;
	}
	main
		.section-4
		.section-4-2
		.section-main
		div.pricing-body
		.pricing-body-plans
		> div
		> div {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	main
		.section-4
		.section-4-2
		.section-main
		div.pricing-body
		.pricing-body-plans
		> div
		> div
		.card {
		width: 100%;
		max-width: none;
		height: unset;
	}
}

/* Responsive styles for offers section */
@media only screen and (max-width: 1024px) {
	.offers-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}

	main
		.section-4
		.section-4-2
		.section-main
		div.pricing-body
		.pricing-body-plans
		> div
		> div {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
}

@media only screen and (max-width: 768px) {
	.offers-header h2 {
		font-size: 2.5rem;
	}

	.offers-header p {
		font-size: 1rem;
		padding: 0 10px;
	}

	.offers-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		margin-top: 30px;
	}

	.offer-card {
		padding: 25px;
		margin: 0 10px;
	}

	.offer-title {
		font-size: 1.5rem;
	}

	.sale-price {
		font-size: 2rem;
	}

	.original-price {
		font-size: 1.3rem;
	}

	.offer-actions {
		flex-direction: column;
		gap: 10px;
	}

	.offer-btn {
		padding: 12px 16px;
		font-size: 0.9rem;
	}

	main
		.section-4
		.section-4-2
		.section-main
		div.pricing-body
		.pricing-body-plans
		> div
		> div {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

@media only screen and (max-width: 480px) {
	.offers-section {
		padding: 60px 0;
	}

	.offers-header h2 {
		font-size: 2rem;
	}

	.offer-card {
		padding: 20px;
		margin: 0 5px;
	}

	.offer-pricing {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.discount-badge {
		font-size: 0.9rem;
		padding: 6px 12px;
	}
}

@media only screen and (max-width: 600px) {
	nav .nav-2 .nav-main .nav-mobile-menu {
		display: block;
	}

	nav .nav-1 .nav-main ul,
	nav .nav-2 .nav-main ul {
		display: none;
	}

	nav .nav-2 {
		justify-content: flex-start;
	}

	nav .nav-2 .nav-main {
		justify-content: flex-end;
	}

	main .section-4 .section-4-1 .section-main h1 {
		font-size: 2.5rem;
	}

	main
		.section-4
		.section-4-2
		.section-main
		div.pricing-body
		.pricing-body-plans
		> div
		> div {
		grid-template-columns: 1fr;
	}

	main
		.section-4
		.section-4-2
		.section-main
		div.pricing-body
		.pricing-body-plans
		> div
		> div
		.card {
		width: 100%;
		height: fit-content;
	}

	/* Unify section header styles on mobile */
	main
		.section-4
		.section-4-2
		.section-main
		div.pricing-body
		.pricing-body-header
		.pricing-checkbox
		h3 {
		font-size: 1.8rem;
	}
}

.spanColor {
	color: var(--span-color) !important;
}

.btn-color2 {
	background-color: #10b981 !important;
}

.btn-color2:hover {
	background-color: #047857 !important;
}
